From e2fdb5fc02b93a4a3fb791abe4c946d650dec2cf Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 31 Aug 2022 19:18:21 +0200 Subject: [PATCH] - vneartag in ActorTrackDecide --- source/games/sw/src/track.cpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/source/games/sw/src/track.cpp b/source/games/sw/src/track.cpp index 3d6e11878..c0345739a 100644 --- a/source/games/sw/src/track.cpp +++ b/source/games/sw/src/track.cpp @@ -3061,20 +3061,19 @@ bool ActorTrackDecide(TRACK_POINT* tpoint, DSWActor* actor) case TRACK_ACTOR_QUICK_OPERATE: { HitInfo near; - int z[2]; - int i; + double z[2]; if (actor->user.Rot == actor->user.ActorActionSet->Sit || actor->user.Rot == actor->user.ActorActionSet->Stand) return false; actor->spr.angle = tpoint->angle; - z[0] = actor->int_pos().Z - int_ActorSizeZ(actor) + Z(5); - z[1] = actor->int_pos().Z - (int_ActorSizeZ(actor) >> 1); + z[0] = actor->spr.pos.Z - ActorSizeZ(actor) + 5; + z[1] = actor->spr.pos.Z - (ActorSizeZ(actor) * 0.5); - for (i = 0; i < (int)SIZ(z); i++) + for (auto& zz : z) { - neartag({ actor->int_pos().X, actor->int_pos().Y, z[i] }, actor->sector(), actor->int_ang(), near, 1024, NTAG_SEARCH_LO_HI); + neartag(DVector3(actor->spr.pos.XY(), zz), actor->sector(), actor->spr.angle, near, 1024, NTAG_SEARCH_LO_HI); if (near.actor() != nullptr && near.int_hitpos().X < 1024) {