Ultimate Torment & Torture (New Screens p.26)

New maps, and other projects whose primary focus is new maps, belong here.

Note: This forum, and all forums below it, are not for questions or troubleshooting! Threads created here are for active projects only! If you have questions please feel free to use the Editing subforums or General forum.
Forum rules
The Projects forums are only for projects. If you are asking questions about a project, either find that project's thread, or start a thread in the General section instead.

Got a cool project idea but nothing else? Put it in the project ideas thread instead!

Projects for any Doom-based engine (especially 3DGE) are perfectly acceptable here too.

Please read the full rules for more details.
User avatar
Vader
Posts: 4241
Joined: Fri Jul 30, 2004 4:00 am
Location: Germany

Post by Vader »

I´ve seen worse skyboxes, but let´s say it´s just not perfect :wink:
User avatar
Graf Zahl
Lead GZDoom+Raze Developer
Lead GZDoom+Raze Developer
Posts: 49130
Joined: Sat Jul 19, 2003 10:19 am
Location: Germany

Post by Graf Zahl »

I'd say something non-warping would be better. How about the KDIZD sky in red? I think that would look great.
User avatar
Tormentor667
Posts: 13547
Joined: Wed Jul 16, 2003 3:52 am

Post by Tormentor667 »

Graf Zahl wrote:I'd say something non-warping would be better. How about the KDIZD sky in red? I think that would look great.
This is something I had in mind before... let's see if I can modify that a bit and make it look better for maps like TNT3 M2 ... ;)
Nightmare Doom
Posts: 487
Joined: Tue Oct 12, 2004 7:21 pm

Post by Nightmare Doom »

what about stacked sectors in KDIZD?
User avatar
Siggi
Posts: 3288
Joined: Sun Oct 03, 2004 8:57 am
Preferred Pronouns: They/Them
Location: South Africa

Post by Siggi »

Nothing. Now go away.
User avatar
Tormentor667
Posts: 13547
Joined: Wed Jul 16, 2003 3:52 am

Post by Tormentor667 »

Nightmare Doom wrote:what about stacked sectors in KDIZD?
Already in use, but not part of this thread!
king_necro
Posts: 28
Joined: Sat Mar 12, 2005 1:17 pm
Location: Around many places of intrest

Post by king_necro »

Hmmm..well can't wait to see the new sky, the one shown reminds me a bit of blood and lava was that what you were going for or it was just a random pick? Well either way continue to keep up the great work. :D
User avatar
Ryan Cordell
Posts: 4349
Joined: Sun Feb 06, 2005 6:39 am
Preferred Pronouns: No Preference
Operating System Version (Optional): Windows 10
Graphics Processor: nVidia (Modern GZDoom)
Location: Capital of Explodistan

Post by Ryan Cordell »

Hey Torm, one question. How can I edit TNT3 so I can exclude the particle snow? Apparently it's slowing my GZDoom to snail-speed.. Nonplayable, literally.
User avatar
Graf Zahl
Lead GZDoom+Raze Developer
Lead GZDoom+Raze Developer
Posts: 49130
Joined: Sat Jul 19, 2003 10:19 am
Location: Germany

Post by Graf Zahl »

You have to open the level in an editor, go to the script editor and delete script 100. After that the snow is gone.

Script 100 looks like this:

Code: Select all

// Snow
script 100 OPEN
{
        Thing_Projectile(random(const:1,6), T_BRAINS, random(0, 224), 10, -(5));
        delay(random(const: 5, 16));
        restart;
}
User avatar
Ryan Cordell
Posts: 4349
Joined: Sun Feb 06, 2005 6:39 am
Preferred Pronouns: No Preference
Operating System Version (Optional): Windows 10
Graphics Processor: nVidia (Modern GZDoom)
Location: Capital of Explodistan

Post by Ryan Cordell »

This is what I hate, finding out how to solve problems right after I post them. Gets me on my nerves. :?

Thanks anyway, Graf.
User avatar
Bio Hazard
Posts: 4019
Joined: Fri Aug 15, 2003 8:15 pm
Location: ferret ~/C/ZDL $

Post by Bio Hazard »

Strange, I don't have any problems with the snow.

P42.2 2048x1536@75 ZD96x

Pulls 30-50FPS rather consistantly.
User avatar
Graf Zahl
Lead GZDoom+Raze Developer
Lead GZDoom+Raze Developer
Posts: 49130
Joined: Sat Jul 19, 2003 10:19 am
Location: Germany

Post by Graf Zahl »

The snow is much more expensive in GL. With snow off I can play the map with 85 fps (VSync on) but as soon as the snow starts falling I'm down to 40 fps. With the software renderer the overall percentage of execution time the snow needs is considerably lower, especially at high resolutions.

Slower computers will start to choke much earlier though. With snow on there are 700 or more moving actors in the map and that costs quite some time to handle, especially the pointer cleanup.
User avatar
Bio Hazard
Posts: 4019
Joined: Fri Aug 15, 2003 8:15 pm
Location: ferret ~/C/ZDL $

Post by Bio Hazard »

So why aren't there generic configurable particle fountains yet? it would certainly make things like weather effects easier.
User avatar
Ryan Cordell
Posts: 4349
Joined: Sun Feb 06, 2005 6:39 am
Preferred Pronouns: No Preference
Operating System Version (Optional): Windows 10
Graphics Processor: nVidia (Modern GZDoom)
Location: Capital of Explodistan

Post by Ryan Cordell »

Graf Zahl wrote:The snow is much more expensive in GL. With snow off I can play the map with 85 fps (VSync on) but as soon as the snow starts falling I'm down to 40 fps. With the software renderer the overall percentage of execution time the snow needs is considerably lower, especially at high resolutions.

Slower computers will start to choke much earlier though. With snow on there are 700 or more moving actors in the map and that costs quite some time to handle, especially the pointer cleanup.
Explains why my 1.5 or 1.7 GHZ system can't handle it. =/
User avatar
Graf Zahl
Lead GZDoom+Raze Developer
Lead GZDoom+Raze Developer
Posts: 49130
Joined: Sat Jul 19, 2003 10:19 am
Location: Germany

Post by Graf Zahl »

Bio Hazard wrote:So why aren't there generic configurable particle fountains yet? it would certainly make things like weather effects easier.

Not really. In this case the big problem is that the snowflakes still have to do collision checks. This is pretty much unavoidable and can't be done with particles without getting the same kind of speed hit.

Return to “Levels”