Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doom Episode 4 par times #174

Open
robwill80 opened this issue Dec 12, 2021 · 0 comments
Open

Doom Episode 4 par times #174

robwill80 opened this issue Dec 12, 2021 · 0 comments

Comments

@robwill80
Copy link

robwill80 commented Dec 12, 2021

Doom 3 BFG Edition added par time information for "Thy Flesh Consumed," which was missing in the original release of Ultimate Doom.

The source code for BFG Edition includes this info:

// DHM - Nerve :: Added episode 4 par times
// DOOM Par Times
const int pars[5][10] = 
{ 
	{0}, 
	{0,30,75,120,90,165,180,180,30,165},
	{0,90,90,90,120,90,360,240,30,170},
	{0,90,45,90,150,90,90,165,30,135},
	{0,165,255,135,150,180,390,135,360,180}
}; 

A similar section exists in the code for this core:

// DOOM Par Times
int pars[4][10] = {
  {0},
  {0,30,75,120,90,165,180,180,30,165},
  {0,90,90,90,120,90,360,240,30,170},
  {0,90,45,90,150,90,90,165,30,135}
};

I know there will be other things "hooked-up" to this code that would need to be seen to, but I wouldn't know where they are, or what to do to them. I'm not clever enough to figure that out.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant