From c6a0d30245329a72ae5c64d3b5503a60a35f51a5 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 9 Sep 2022 18:33:03 +0200 Subject: [PATCH] - wrapped most remaining clipdist access Only modifying operators left --- source/games/blood/src/actor.cpp | 2 +- source/games/blood/src/ai.cpp | 2 +- source/games/blood/src/aiunicult.cpp | 2 +- source/games/blood/src/nnexts.cpp | 2 +- source/games/sw/src/jweapon.cpp | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/source/games/blood/src/actor.cpp b/source/games/blood/src/actor.cpp index e795fb517..c1c080eba 100644 --- a/source/games/blood/src/actor.cpp +++ b/source/games/blood/src/actor.cpp @@ -6139,7 +6139,7 @@ void actCheckFlares() if (target->hasX() && target->xspr.health > 0) { DVector3 pos = target->spr.pos; - pos.XY() += (actor->xspr.goalAng + target->spr.angle).ToVector() * target->spr.clipdist * 2 * inttoworld; + pos.XY() += (actor->xspr.goalAng + target->spr.angle).ToVector() * target->fClipdist() * 0.5; pos.Z += actor->xspr.TargetPos.Z; SetActor(actor, pos); actor->vel = target->vel; diff --git a/source/games/blood/src/ai.cpp b/source/games/blood/src/ai.cpp index be0743a5c..27c7b4f33 100644 --- a/source/games/blood/src/ai.cpp +++ b/source/games/blood/src/ai.cpp @@ -179,7 +179,7 @@ bool CanMove(DBloodActor* actor, DBloodActor* target, int nAngle, int nRange) case kDudeGargoyleFlesh: case kDudeGargoyleStone: case kDudeBat: - if (actor->spr.clipdist > nDist) + if (actor->native_clipdist() > nDist) return 0; if (Depth) { diff --git a/source/games/blood/src/aiunicult.cpp b/source/games/blood/src/aiunicult.cpp index 886fd9e00..54cb7a081 100644 --- a/source/games/blood/src/aiunicult.cpp +++ b/source/games/blood/src/aiunicult.cpp @@ -1896,7 +1896,7 @@ DBloodActor* genDudeSpawn(DBloodActor* source, DBloodActor* actor, int nDist) spawned->xspr.busyTime = source->xspr.busyTime; // inherit clipdist? - if (source->spr.clipdist > 0) + if (source->native_clipdist() > 0) spawned->copy_clipdist(source); // inherit custom hp settings diff --git a/source/games/blood/src/nnexts.cpp b/source/games/blood/src/nnexts.cpp index 729b4cd77..ae0fb9bc3 100644 --- a/source/games/blood/src/nnexts.cpp +++ b/source/games/blood/src/nnexts.cpp @@ -1175,7 +1175,7 @@ void nnExtProcessSuperSprites() if (!pProx->xspr.Proximity || (!pProx->xspr.Interrutable && pProx->xspr.state != pProx->xspr.restState) || pProx->xspr.locked == 1 || pProx->xspr.isTriggered) continue; // don't process locked or triggered sprites - int okDist = (pProx->IsDudeActor()) ? 96 : ClipLow(pProx->spr.clipdist * 3, 32); + int okDist = (pProx->IsDudeActor()) ? 96 : ClipLow(pProx->native_clipdist() * 3, 32); auto pos = pProx->spr.pos; auto pSect = pProx->sector(); diff --git a/source/games/sw/src/jweapon.cpp b/source/games/sw/src/jweapon.cpp index 4d854d96c..c6e644976 100644 --- a/source/games/sw/src/jweapon.cpp +++ b/source/games/sw/src/jweapon.cpp @@ -1735,8 +1735,8 @@ int InitPhosphorus(DSWActor* actor) actorNew->spr.xrepeat = 64; actorNew->spr.shade = -15; // !FRANK - clipbox must be <= weapon otherwise can clip thru walls - if (actor->spr.clipdist > 0) - actorNew->set_native_clipdist(actor->spr.clipdist-1); + if (actor->native_clipdist() > 0) + actorNew->set_native_clipdist(actor->native_clipdist() - 1); else actorNew->copy_clipdist(actor); actorNew->user.WeaponNum = actor->user.WeaponNum;