From 8c41294cb0fe75a253578fc49be68fb7bcaa3003 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 10 Dec 2022 00:56:40 +0100 Subject: [PATCH] - overpicnum lightening. Especially make sure that it is never set to tile 0. There seems to have been some undefined behavior here treating 0 as 'no texture', but doing so inconsistently. --- source/core/maploader.cpp | 12 +++++++++--- source/games/blood/src/db.cpp | 1 + source/games/duke/src/actors.cpp | 9 +++++---- source/games/duke/src/actors_d.cpp | 2 +- source/games/duke/src/actors_r.cpp | 2 +- source/games/duke/src/funct.h | 2 +- source/games/duke/src/player_d.cpp | 2 +- source/games/sw/src/break.cpp | 6 +++--- source/games/sw/src/copysect.cpp | 1 - source/games/sw/src/jsector.cpp | 4 ++-- 10 files changed, 24 insertions(+), 17 deletions(-) diff --git a/source/core/maploader.cpp b/source/core/maploader.cpp index 86cfc2e81..7bbcc7b2f 100644 --- a/source/core/maploader.cpp +++ b/source/core/maploader.cpp @@ -193,7 +193,9 @@ static void ReadWallV7(FileReader& fr, walltype& wall) wall.nextsector = fr.ReadInt16(); wall.cstat = EWallFlags::FromInt(fr.ReadUInt16()); wall.wallpicnum = fr.ReadInt16(); - wall.overpicnum = fr.ReadInt16(); + int overpicnum = fr.ReadInt16(); + if (overpicnum == 0) overpicnum = -1; + wall.overpicnum = overpicnum; wall.shade = fr.ReadInt8(); wall.pal = fr.ReadUInt8(); wall.xrepeat = fr.ReadUInt8(); @@ -214,7 +216,9 @@ static void ReadWallV6(FileReader& fr, walltype& wall) wall.nextsector = fr.ReadInt16(); wall.nextwall = fr.ReadInt16(); wall.wallpicnum = fr.ReadInt16(); - wall.overpicnum = fr.ReadInt16(); + int overpicnum = fr.ReadInt16(); + if (overpicnum == 0) overpicnum = -1; + wall.overpicnum = overpicnum; wall.shade = fr.ReadInt8(); wall.pal = fr.ReadUInt8(); wall.cstat = EWallFlags::FromInt(fr.ReadUInt16()); @@ -234,7 +238,9 @@ static void ReadWallV5(FileReader& fr, walltype& wall) wall.setPosFromMap(x, y); wall.point2 = fr.ReadInt16(); wall.wallpicnum = fr.ReadInt16(); - wall.overpicnum = fr.ReadInt16(); + int overpicnum = fr.ReadInt16(); + if (overpicnum == 0) overpicnum = -1; + wall.overpicnum = overpicnum; wall.shade = fr.ReadInt8(); wall.cstat = EWallFlags::FromInt(fr.ReadUInt16()); wall.xrepeat = fr.ReadUInt8(); diff --git a/source/games/blood/src/db.cpp b/source/games/blood/src/db.cpp index 00c9ebc42..ab53d375e 100644 --- a/source/games/blood/src/db.cpp +++ b/source/games/blood/src/db.cpp @@ -403,6 +403,7 @@ void dbLoadMap(const char* pPath, DVector3& pos, short* pAngle, sectortype** cur pWall->nextsector = LittleShort(load.nextsector); pWall->cstat = EWallFlags::FromInt(LittleShort(load.cstat)); pWall->setwalltexture(tileGetTextureID(LittleShort(load.picnum))); + if (load.overpic == 0) load.overpic = -1; pWall->setovertexture(tileGetTextureID(LittleShort(load.overpic))); pWall->type = LittleShort(load.type); pWall->hitag = LittleShort(load.hitag); diff --git a/source/games/duke/src/actors.cpp b/source/games/duke/src/actors.cpp index 1a347f6b1..4861ab19b 100644 --- a/source/games/duke/src/actors.cpp +++ b/source/games/duke/src/actors.cpp @@ -2142,7 +2142,7 @@ DDukeActor* ifhitsectors(sectortype* sect) // //--------------------------------------------------------------------------- -void handle_se19(DDukeActor *actor, int BIGFORCE) +void handle_se19(DDukeActor *actor) { auto sc = actor->sector(); int sh = actor->spr.hitag; @@ -2152,16 +2152,17 @@ void handle_se19(DDukeActor *actor, int BIGFORCE) if (actor->temp_data[0] == 1) { actor->temp_data[0]++; + auto bigforce = TexMan.CheckForTexture("BIGFORCE", ETextureType::Any); for (auto& wal : sc->walls) { - if (wal.overpicnum == BIGFORCE) + if (wal.overtexture() == bigforce) { wal.cstat &= (CSTAT_WALL_TRANSLUCENT | CSTAT_WALL_1WAY | CSTAT_WALL_XFLIP | CSTAT_WALL_ALIGN_BOTTOM | CSTAT_WALL_BOTTOM_SWAP); - wal.overpicnum = 0; + wal.setovertexture(FNullTextureID()); auto nextwal = wal.nextWall(); if (nextwal != nullptr) { - nextwal->overpicnum = 0; + nextwal->setovertexture(FNullTextureID()); nextwal->cstat &= (CSTAT_WALL_TRANSLUCENT | CSTAT_WALL_1WAY | CSTAT_WALL_XFLIP | CSTAT_WALL_ALIGN_BOTTOM | CSTAT_WALL_BOTTOM_SWAP); } } diff --git a/source/games/duke/src/actors_d.cpp b/source/games/duke/src/actors_d.cpp index 4b2236bef..f4d0343f5 100644 --- a/source/games/duke/src/actors_d.cpp +++ b/source/games/duke/src/actors_d.cpp @@ -1413,7 +1413,7 @@ void moveeffectors_d(void) //STATNUM 3 break; case SE_19_EXPLOSION_LOWERS_CEILING: - handle_se19(act, DTILE_BIGFORCE); + handle_se19(act); break; case SE_20_STRETCH_BRIDGE: diff --git a/source/games/duke/src/actors_r.cpp b/source/games/duke/src/actors_r.cpp index 5d798e588..c5dea9bdf 100644 --- a/source/games/duke/src/actors_r.cpp +++ b/source/games/duke/src/actors_r.cpp @@ -1311,7 +1311,7 @@ void moveeffectors_r(void) //STATNUM 3 break; case SE_19_EXPLOSION_LOWERS_CEILING: - handle_se19(act, RTILE_BIGFORCE); + handle_se19(act); break; case SE_20_STRETCH_BRIDGE: diff --git a/source/games/duke/src/funct.h b/source/games/duke/src/funct.h index 720d86e45..3a881c63a 100644 --- a/source/games/duke/src/funct.h +++ b/source/games/duke/src/funct.h @@ -63,7 +63,7 @@ void handle_se15(DDukeActor* i); void handle_se16(DDukeActor* i); void handle_se17(DDukeActor* i); void handle_se18(DDukeActor* i, bool morecheck); -void handle_se19(DDukeActor* i, int BIGFORCE); +void handle_se19(DDukeActor* i); void handle_se20(DDukeActor* i); void handle_se21(DDukeActor* i); void handle_se22(DDukeActor* i); diff --git a/source/games/duke/src/player_d.cpp b/source/games/duke/src/player_d.cpp index 03b6064f8..1540cb5e5 100644 --- a/source/games/duke/src/player_d.cpp +++ b/source/games/duke/src/player_d.cpp @@ -2002,7 +2002,7 @@ int operateTripbomb(int snum) if (hit.hitWall != nullptr && hit.hitSector->lotag > 2) return 0; - if (hit.hitWall != nullptr && hit.hitWall->overpicnum >= 0) + if (hit.hitWall != nullptr) if (hit.hitWall->overpicnum == DTILE_BIGFORCE) return 0; diff --git a/source/games/sw/src/break.cpp b/source/games/sw/src/break.cpp index c0b920d0b..f433663a0 100644 --- a/source/games/sw/src/break.cpp +++ b/source/games/sw/src/break.cpp @@ -611,17 +611,17 @@ int AutoBreakWall(walltype* wallp, const DVector3& hit_pos, DAngle ang, int type } // change the wall - if (wallp->overpicnum > 0 && (wallp->cstat & CSTAT_WALL_MASKED)) + if (wallp->overtexture().isValid() && (wallp->cstat & CSTAT_WALL_MASKED)) { if (break_info->breaknum == -1) { wallp->cstat &= ~(CSTAT_WALL_MASKED|CSTAT_WALL_1WAY|CSTAT_WALL_BLOCK_HITSCAN|CSTAT_WALL_BLOCK); - wallp->overpicnum = 0; + wallp->setovertexture(FNullTextureID()); if (wallp->twoSided()) { nwp = wallp->nextWall(); nwp->cstat &= ~(CSTAT_WALL_MASKED|CSTAT_WALL_1WAY|CSTAT_WALL_BLOCK_HITSCAN|CSTAT_WALL_BLOCK); - nwp->overpicnum = 0; + nwp->setovertexture(FNullTextureID()); } } else diff --git a/source/games/sw/src/copysect.cpp b/source/games/sw/src/copysect.cpp index 4319718e6..21a5f98cf 100644 --- a/source/games/sw/src/copysect.cpp +++ b/source/games/sw/src/copysect.cpp @@ -63,7 +63,6 @@ void CopySectorWalls(sectortype* dest_sect, sectortype* src_sect) dwall->xrepeat = swall->xrepeat; dwall->yrepeat = swall->yrepeat; - dwall->overpicnum = swall->overpicnum; dwall->pal = swall->pal; dwall->cstat = swall->cstat; dwall->shade = swall->shade; diff --git a/source/games/sw/src/jsector.cpp b/source/games/sw/src/jsector.cpp index 6575c6237..25ede2082 100644 --- a/source/games/sw/src/jsector.cpp +++ b/source/games/sw/src/jsector.cpp @@ -279,7 +279,7 @@ void JS_InitMirrors(void) if (mirrorcnt >= MAXMIRRORS) { Printf("MAXMIRRORS reached! Skipping mirror wall\n"); - wal.overpicnum = legacyTileNum(sec->ceilingtexture); + wal.setovertexture(sec->ceilingtexture); continue; } @@ -372,7 +372,7 @@ void JS_InitMirrors(void) mirrorcnt++; } else - wal.overpicnum = legacyTileNum(sec->ceilingtexture); + wal.setovertexture(sec->ceilingtexture); } } } // InitMirrors