From 2e4996e8fc04973354a38252c22c877e8a5ac98c Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Tue, 27 Sep 2022 21:58:22 +1000 Subject: [PATCH] - floatified nnextCanMove and deleted most deprecated updatesector variants. --- source/core/updatesector.h | 20 -------------------- source/games/blood/src/nnexts.cpp | 20 +++++++++++--------- 2 files changed, 11 insertions(+), 29 deletions(-) diff --git a/source/core/updatesector.h b/source/core/updatesector.h index f74a12104..3485c8844 100644 --- a/source/core/updatesector.h +++ b/source/core/updatesector.h @@ -124,26 +124,6 @@ inline void updatesector(int x_, int y_, int* sectnum) DoUpdateSector(x, y, 0, sectnum, MAXUPDATESECTORDIST, inside0); } -[[deprecated]] -inline void updatesectorz(int x_, int y_, int z_, int* sectnum) -{ - double x = x_ * inttoworld; - double y = y_ * inttoworld; - double z = z_ * zinttoworld; - - DoUpdateSector(x, y, z, sectnum, MAXUPDATESECTORDIST, insideZ); -} - -[[deprecated]] -inline void updatesector(int const x_, int const y_, sectortype** const sectp) -{ - double x = x_ * inttoworld; - double y = y_ * inttoworld; - int sectno = *sectp ? sector.IndexOf(*sectp) : -1; - DoUpdateSector(x, y, 0, §no, MAXUPDATESECTORDIST, inside0); - *sectp = sectno == -1 ? nullptr : §or[sectno]; -} - [[deprecated]] inline void updatesectorz(int x_, int y_, int z_, sectortype** const sectp) { diff --git a/source/games/blood/src/nnexts.cpp b/source/games/blood/src/nnexts.cpp index 291573053..0c0a8f31a 100644 --- a/source/games/blood/src/nnexts.cpp +++ b/source/games/blood/src/nnexts.cpp @@ -7691,19 +7691,21 @@ bool setDataValueOfObject(int objType, sectortype* sect, walltype* wal, DBloodAc // //--------------------------------------------------------------------------- -bool nnExtCanMove(DBloodActor* actor, DBloodActor* target, DAngle nAngle_, int nRange) +bool nnExtCanMove(DBloodActor* actor, DBloodActor* target, DAngle nAngle, int nRange_) { - int nAngle = nAngle_.Buildang(); - int x = actor->int_pos().X, y = actor->int_pos().Y, z = actor->int_pos().Z; + double nRange = nRange_ * inttoworld; + DVector3 pos = actor->spr.pos; + DVector2 nAngVect = nAngle.ToVector(); + auto pSector = actor->sector(); - HitScan(actor, z, Cos(nAngle) >> 16, Sin(nAngle) >> 16, 0, CLIPMASK0, nRange); - int nDist = approxDist(actor->spr.pos.XY() - gHitInfo.hitpos.XY()); - if (target != nullptr && nDist - (actor->int_clipdist()) < nRange) + HitScan(actor, pos.Z * zworldtoint, nAngVect.X * (1 << 14), nAngVect.Y * (1 << 14), 0, CLIPMASK0, nRange); + double nDist = (actor->spr.pos.XY() - gHitInfo.hitpos.XY()).Length(); + + if (target != nullptr && nDist - actor->fClipdist() < nRange) return (target == gHitInfo.actor()); - x += MulScale(nRange, Cos(nAngle), 30); - y += MulScale(nRange, Sin(nAngle), 30); - updatesectorz(x, y, z, &pSector); + pos += nAngVect * nRange; + updatesectorz(pos, &pSector); if (!pSector) return false; if (pSector->hasX()) {