From 6636064d1fb7e6bdac283a210190d5acc85da889 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 30 Sep 2022 11:38:25 +0200 Subject: [PATCH] - did a few checks with the compatibility optioned slope adjustment and decided to enable it unconditionally. A CVar was added to make it user-settable, but having this dramatically improves handling on slope edges. --- source/core/gamefuncs.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/core/gamefuncs.cpp b/source/core/gamefuncs.cpp index 3888036cb..4986580aa 100644 --- a/source/core/gamefuncs.cpp +++ b/source/core/gamefuncs.cpp @@ -29,6 +29,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. IntRect viewport3d; constexpr double MAXCLIPDISTF = 64; +CVARD(Bool, strict_compatibility, false, CVAR_ARCHIVE | CVAR_GLOBALCONFIG, "Enables stricter compatibility checks in the backend code") //--------------------------------------------------------------------------- // @@ -899,7 +900,7 @@ bool checkRangeOfWall(walltype* wal, EWallFlags flagmask, const DVector3& pos, d if (BoxOnLineSide(boxtl, boxbr, pos1, pos2 - pos1) != -1) return false; auto closest = pos.XY(); - if (enginecompatibility_mode == ENGINECOMPATIBILITY_NONE) // todo: need to check if it makes sense to have this always on. + if (enginecompatibility_mode == ENGINECOMPATIBILITY_NONE || !strict_compatibility) SquareDistToSector(closest.X, closest.Y, nextsect, &closest); getzsofslopeptr(nextsect, closest.X, closest.Y, &theZs[0], &theZs[1]); @@ -997,7 +998,7 @@ void getzrange(const DVector3& pos, sectortype* sect, double* ceilz, CollisionBa const ESpriteFlags dasprclipmask = ESpriteFlags::FromInt(cliptype >> 16); auto closest = pos.XY(); - if (enginecompatibility_mode == ENGINECOMPATIBILITY_NONE) + if (enginecompatibility_mode == ENGINECOMPATIBILITY_NONE || !strict_compatibility) SquareDistToSector(closest.X, closest.Y, sect, &closest); getzsofslopeptr(sect, closest, ceilz, florz);