From a00969fbeb471a2fc6b3b5f09d6b7077f6db4f17 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 20 Aug 2022 18:34:00 +0200 Subject: [PATCH] - partial floatification of furthestcanseepoint. --- source/build/include/build.h | 5 +++++ source/games/duke/src/actors.cpp | 9 ++++----- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/source/build/include/build.h b/source/build/include/build.h index 4208853bd..5251e88bf 100644 --- a/source/build/include/build.h +++ b/source/build/include/build.h @@ -155,6 +155,11 @@ inline int hitscan(const DVector3& start, const sectortype* startsect, const DVe vec3_t idir( int(direction.X * worldtoint), int(direction.Y * worldtoint), int(direction.Z * zworldtoint) ); return hitscan(istart, startsect, idir, hitinfo, cliptype); } +inline int hitscan(const DVector3& start, const sectortype* startsect, const vec3_t& direction, HitInfoBase& hitinfo, unsigned cliptype) +{ + vec3_t istart(int(start.X * worldtoint), int(start.Y * worldtoint), int(start.Z * zworldtoint)); + return hitscan(istart, startsect, direction, hitinfo, cliptype); +} void neartag(const vec3_t& pos, sectortype* sect, int angle, HitInfoBase& result, int neartagrange, int tagsearch); diff --git a/source/games/duke/src/actors.cpp b/source/games/duke/src/actors.cpp index 981af46f6..6524639e2 100644 --- a/source/games/duke/src/actors.cpp +++ b/source/games/duke/src/actors.cpp @@ -4965,7 +4965,6 @@ int furthestangle(DDukeActor *actor, int angs) int furthestcanseepoint(DDukeActor *actor, DDukeActor* tosee, int* dax, int* day) { int j, angincs; - int d, da;//, d, cd, ca,tempx,tempy,cx,cy; HitInfo hit{}; if ((actor->temp_data[0] & 63)) return -1; @@ -4976,13 +4975,13 @@ int furthestcanseepoint(DDukeActor *actor, DDukeActor* tosee, int* dax, int* day for (j = tosee->int_ang(); j < (2048 + tosee->int_ang()); j += (angincs - (krand() & 511))) { - hitscan(vec3_t( tosee->int_pos().X, tosee->int_pos().Y, tosee->int_pos().Z - (16 << 8) ), tosee->sector(), { bcos(j), bsin(j), 16384 - (krand() & 32767) }, hit, CLIPMASK1); + hitscan(tosee->spr.pos.plusZ(-16), tosee->sector(), vec3_t(bcos(j), bsin(j), 16384 - (krand() & 32767)), hit, CLIPMASK1); - d = abs(hit.int_hitpos().X - tosee->int_pos().X) + abs(hit.int_hitpos().Y - tosee->int_pos().Y); - da = abs(hit.int_hitpos().X - actor->int_pos().X) + abs(hit.int_hitpos().Y - actor->int_pos().Y); + double d = abs(hit.hitpos.X - tosee->spr.pos.X) + abs(hit.hitpos.Y - tosee->spr.pos.Y); + double da = abs(hit.hitpos.X - actor->spr.pos.X) + abs(hit.hitpos.Y - actor->spr.pos.Y); if (d < da && hit.hitSector) - if (cansee(hit.int_hitpos().X, hit.int_hitpos().Y, hit.int_hitpos().Z, hit.hitSector, actor->int_pos().X, actor->int_pos().Y, actor->int_pos().Z - (16 << 8), actor->sector())) + if (cansee(hit.hitpos, hit.hitSector, actor->spr.pos.plusZ(-16), actor->sector())) { *dax = hit.int_hitpos().X; *day = hit.int_hitpos().Y;