From 3c9a94dba8a852088fa667beecc197c7f90125d1 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 13 Sep 2022 19:40:32 +0200 Subject: [PATCH] =?UTF-8?q?-=20consolidated=20Duke=E2=80=99s=20=E2=80=9Aaw?= =?UTF-8?q?ay=20from=20wall=E2=80=98=20check=20in=20the=20backend?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was also very useful in SW to avoid spawning ‚floating‘ footprints due to lack of an equivalent check in the original. --- source/core/gamefuncs.cpp | 29 ++++++++++++++++++ source/core/gamefuncs.h | 2 +- source/games/duke/src/gameexec.cpp | 18 +---------- source/games/duke/src/spawn.cpp | 48 +++++------------------------- source/games/sw/src/weapon.cpp | 3 ++ 5 files changed, 42 insertions(+), 58 deletions(-) diff --git a/source/core/gamefuncs.cpp b/source/core/gamefuncs.cpp index 68dd5efe7..c2b4dbcb8 100644 --- a/source/core/gamefuncs.cpp +++ b/source/core/gamefuncs.cpp @@ -560,6 +560,35 @@ sectortype* nextsectorneighborzptr(sectortype* sectp, double startz, int flags) return bestsec; } + +//========================================================================== +// +// +// +//========================================================================== + +bool isAwayFromWall(DCoreActor* ac, double delta) +{ + sectortype* s1; + + updatesector(ac->spr.pos + DVector2(delta, delta), &s1); + if (s1 == ac->sector()) + { + updatesector(ac->spr.pos - DVector2(delta, delta), &s1); + if (s1 == ac->sector()) + { + updatesector(ac->spr.pos + DVector2(delta, -delta), &s1); + if (s1 == ac->sector()) + { + updatesector(ac->spr.pos + DVector2(-delta, delta), &s1); + if (s1 == ac->sector()) + return true; + } + } + } + return false; +} + //========================================================================== // // diff --git a/source/core/gamefuncs.h b/source/core/gamefuncs.h index 855401be1..7c65ee9a5 100644 --- a/source/core/gamefuncs.h +++ b/source/core/gamefuncs.h @@ -350,7 +350,7 @@ enum EFindNextSector Find_FloorDown = Find_Floor | Find_Down, }; sectortype* nextsectorneighborzptr(sectortype* sectp, double startz, int flags); - +bool isAwayFromWall(DCoreActor* ac, double delta); inline double WallStartX(int wallnum) diff --git a/source/games/duke/src/gameexec.cpp b/source/games/duke/src/gameexec.cpp index b28e9fe29..6427c1754 100644 --- a/source/games/duke/src/gameexec.cpp +++ b/source/games/duke/src/gameexec.cpp @@ -2801,23 +2801,7 @@ int ParseState::parse(void) { auto s1 = g_ac->sector(); - j = 0; - - updatesector(g_ac->int_pos().X + 108, g_ac->int_pos().Y + 108, &s1); - if (s1 == g_ac->sector()) - { - updatesector(g_ac->int_pos().X - 108, g_ac->int_pos().Y - 108, &s1); - if (s1 == g_ac->sector()) - { - updatesector(g_ac->int_pos().X + 108, g_ac->int_pos().Y - 108, &s1); - if (s1 == g_ac->sector()) - { - updatesector(g_ac->int_pos().X - 108, g_ac->int_pos().Y + 108, &s1); - if (s1 == g_ac->sector()) - j = 1; - } - } - } + j = isAwayFromWall(g_ac, 6.75); parseifelse(j); break; } diff --git a/source/games/duke/src/spawn.cpp b/source/games/duke/src/spawn.cpp index 9b0184799..d474658d3 100644 --- a/source/games/duke/src/spawn.cpp +++ b/source/games/duke/src/spawn.cpp @@ -340,28 +340,12 @@ void spawntransporter(DDukeActor *actj, DDukeActor* act, bool beam) int spawnbloodpoolpart1(DDukeActor* act) { - auto s1 = act->sector(); - - updatesector(act->int_pos().X + 108, act->int_pos().Y + 108, &s1); - if (s1 && s1->floorz == act->sector()->floorz) + bool away = isAwayFromWall(act, 6.75); + + if (!away) { - updatesector(act->int_pos().X - 108, act->int_pos().Y - 108, &s1); - if (s1 && s1->floorz == act->sector()->floorz) - { - updatesector(act->int_pos().X + 108, act->int_pos().Y - 108, &s1); - if (s1 && s1->floorz == act->sector()->floorz) - { - updatesector(act->int_pos().X - 108, act->int_pos().Y + 108, &s1); - if (s1 && s1->floorz != act->sector()->floorz) - { - act->spr.xrepeat = act->spr.yrepeat = 0; ChangeActorStat(act, STAT_MISC); return true; - } - } - else { act->spr.xrepeat = act->spr.yrepeat = 0; ChangeActorStat(act, STAT_MISC); return true; } - } - else { act->spr.xrepeat = act->spr.yrepeat = 0; ChangeActorStat(act, STAT_MISC); return true; } + act->spr.xrepeat = act->spr.yrepeat = 0; ChangeActorStat(act, STAT_MISC); return true; } - else { act->spr.xrepeat = act->spr.yrepeat = 0; ChangeActorStat(act, STAT_MISC); return true; } if (act->sector()->lotag == 1) { @@ -382,28 +366,12 @@ void initfootprint(DDukeActor* actj, DDukeActor* act) auto sect = act->sector(); if (actj) { - auto s1 = act->sector(); - - updatesector(act->int_pos().X + 84, act->int_pos().Y + 84, &s1); - if (s1 && s1->floorz == act->sector()->floorz) + bool away = isAwayFromWall(act, 5.25); + if (!away) { - updatesector(act->int_pos().X - 84, act->int_pos().Y - 84, &s1); - if (s1 && s1->floorz == act->sector()->floorz) - { - updatesector(act->int_pos().X + 84, act->int_pos().Y - 84, &s1); - if (s1 && s1->floorz == act->sector()->floorz) - { - updatesector(act->int_pos().X - 84, act->int_pos().Y + 84, &s1); - if (s1 && s1->floorz != act->sector()->floorz) - { - act->spr.xrepeat = act->spr.yrepeat = 0; ChangeActorStat(act, STAT_MISC); return; - } - } - else { act->spr.xrepeat = act->spr.yrepeat = 0; return; } - } - else { act->spr.xrepeat = act->spr.yrepeat = 0; return; } + act->spr.xrepeat = act->spr.yrepeat = 0; + return; } - else { act->spr.xrepeat = act->spr.yrepeat = 0; return; } act->spr.cstat = CSTAT_SPRITE_ALIGNMENT_FLOOR; if ((ps[actj->PlayerIndex()].footprintcount & 1)) act->spr.cstat |= CSTAT_SPRITE_XFLIP; diff --git a/source/games/sw/src/weapon.cpp b/source/games/sw/src/weapon.cpp index 7b05a4ace..a30f31bc3 100644 --- a/source/games/sw/src/weapon.cpp +++ b/source/games/sw/src/weapon.cpp @@ -18124,6 +18124,9 @@ int QueueFootPrint(DSWActor* actor) if (TestDontStickSector(actor->sector())) return -1; // Not on special sectors you don't + + if (!isAwayFromWall(actor, 5.25)) + return -1; // not if it goes ouzside the sector // So, are we like, done checking now!? if (FloorBloodQueue[FloorBloodQueueHead] != nullptr)