Maps that need compatibility settings.
Moderator: GZDoom Developers
Forum rules
Please construct and post a simple demo whenever possible for all bug reports. Please provide links to everything.
If you can include a wad demonstrating the problem, please do so. Bug reports that include fully-constructed demos have a much better chance of being investigated in a timely manner than those that don't.
Please make a new topic for every bug. Don't combine multiple bugs into a single topic. Thanks!
Please construct and post a simple demo whenever possible for all bug reports. Please provide links to everything.
If you can include a wad demonstrating the problem, please do so. Bug reports that include fully-constructed demos have a much better chance of being investigated in a timely manner than those that don't.
Please make a new topic for every bug. Don't combine multiple bugs into a single topic. Thanks!
-
- Posts: 866
- Joined: Wed Nov 08, 2017 4:23 pm
- Graphics Processor: nVidia with Vulkan support
- Location: Germany
Re: Maps that need compatibility settings.
MAP16 of DTS-T is supposed to end when the BossBrain is killed, but it doesn't anymore in newer versions. It was released in 2012 and I sadly don't know the version it stopped working.
Please move it to the Bugs subforum if it can't be fixed via compat settings.
Edit: Nevermind, just realized this topic already is in Bugs
Please move it to the Bugs subforum if it can't be fixed via compat settings.
Edit: Nevermind, just realized this topic already is in Bugs
Last edited by StroggVorbis on Wed Jul 24, 2019 4:11 am, edited 1 time in total.
-
- Lead GZDoom+Raze Developer
- Posts: 49118
- Joined: Sat Jul 19, 2003 10:19 am
- Location: Germany
Re: Maps that need compatibility settings.
Please, ALWAYS provide a link to the map in question!
Topics like this tend to be pushed aside without one.
Topics like this tend to be pushed aside without one.
-
- Posts: 866
- Joined: Wed Nov 08, 2017 4:23 pm
- Graphics Processor: nVidia with Vulkan support
- Location: Germany
-
-
- Posts: 3814
- Joined: Sun Aug 07, 2011 4:32 am
Re: Maps that need compatibility settings.
This requires a proper fix, not just some compatibility settings. Here is PR.
In short, Exit_Normal(0) used to end the current level has some additional checks.
Before scriptification these conditions were not tested and the next map is always loaded.
I found no other way to replicated the same behavior but to expose new functions to ZScript.
In short, Exit_Normal(0) used to end the current level has some additional checks.
Before scriptification these conditions were not tested and the next map is always loaded.
I found no other way to replicated the same behavior but to expose new functions to ZScript.
-
- Posts: 13699
- Joined: Tue Jan 13, 2004 1:31 pm
- Preferred Pronouns: She/Her
Re: Maps that need compatibility settings.
Why was this moved to Closed Bugs?
I'm moving this back and reopening it. I don't think it's meant to be a "closed" topic.
I'm moving this back and reopening it. I don't think it's meant to be a "closed" topic.
-
-
- Posts: 3814
- Joined: Sun Aug 07, 2011 4:32 am
Re: Maps that need compatibility settings.
This wouldn't happen if the bug with DTS-T MAP16 was reported in its own topic. It was fixed BTW.
-
- Posts: 13699
- Joined: Tue Jan 13, 2004 1:31 pm
- Preferred Pronouns: She/Her
Re: Maps that need compatibility settings.
Isn't this topic meant for map-specific bugs that require specific fixes like the one you put in? I don't get it._mental_ wrote:This wouldn't happen if the bug with DTS-T MAP16 was reported in its own topic. It was fixed BTW.
-
-
- Posts: 3814
- Joined: Sun Aug 07, 2011 4:32 am
Re: Maps that need compatibility settings.
That bug wasn’t a compatibility issue but an engine bug caused by scriptification.
It just requires a very specific setup like with the given map.
It just requires a very specific setup like with the given map.
-
- Posts: 13699
- Joined: Tue Jan 13, 2004 1:31 pm
- Preferred Pronouns: She/Her
Re: Maps that need compatibility settings.
Thing is - DabbingSquidward isn't in a position where he should've been automatically expected to know that. I think he handled it correctly, given the tools at hand. But that's just me. /shrugs
-
- Lead GZDoom+Raze Developer
- Posts: 49118
- Joined: Sat Jul 19, 2003 10:19 am
- Location: Germany
Re: Maps that need compatibility settings.
Well, shit happens. It's an excusable mistake, and was easily undone once discovered.
-
- Vintage GZDoom Developer
- Posts: 3146
- Joined: Fri Apr 23, 2004 3:51 am
- Location: Spain
Re: Maps that need compatibility settings.
I would have created a new topic but i didn't due to a limited internet connection, i'm a poor guy you know.
Now this soluton doesn't work in the legacy build so i've created another topic here:
viewtopic.php?f=178&t=65087
Now this soluton doesn't work in the legacy build so i've created another topic here:
viewtopic.php?f=178&t=65087
-
- Posts: 442
- Joined: Sat Jun 23, 2012 7:44 am
- Graphics Processor: nVidia with Vulkan support
- Location: Czech Rep.
Re: Maps that need compatibility settings.
Janitor Adventure 3D MAP05 requires wall running to be set to off, otherwise the jump pad at X:8000 Y:3000 fails to properly propel the player into its target.
-
-
- Posts: 3814
- Joined: Sun Aug 07, 2011 4:32 am
Re: Maps that need compatibility settings.
Wall running disabled by default. Compatibility settings are needed when specific set of options are required.Xeotroid wrote:Janitor Adventure 3D MAP05 requires wall running to be set to off, otherwise the jump pad at X:8000 Y:3000 fails to properly propel the player into its target.
-
-
- Posts: 17906
- Joined: Fri Jul 06, 2007 3:22 pm
Re: Maps that need compatibility settings.
Something to investigate:
https://onemandoom.blogspot.com/2019/10 ... rfwad.html
Four quivers in the starting room.
https://onemandoom.blogspot.com/2019/10 ... rfwad.html
https://www.doomworld.com/idgames/level ... p-r/riverfAnother big thing that might color your experience isn't Pablo's fault. He has the entire starting area kitted out with plenty of ethereal arrows, more than you will probably need. Due to where they are placed, though - in between the chapel benches and the wall - the player can't pick them up in ZDoom.
Four quivers in the starting room.
-
-
- Posts: 3814
- Joined: Sun Aug 07, 2011 4:32 am
Re: Maps that need compatibility settings.
Inability to grab those quivers is caused by differences between this and this. Notice less/greater vs. less-or-equal/greater-or-equal.
Top of an item is at the same height as a floor of sector from it can be picked up. Vanilla Heretic and GZDoom treat intersection player with item differently in this case.
If we don't plan to change the conditions in question (I believe we don't), the simplest solution is lower four sectors by one unit.
Top of an item is at the same height as a floor of sector from it can be picked up. Vanilla Heretic and GZDoom treat intersection player with item differently in this case.
If we don't plan to change the conditions in question (I believe we don't), the simplest solution is lower four sectors by one unit.