From 49b9863e42c8ae3c4d3fba6c5bf7e00f2f4d0daa Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 1 Sep 2022 22:58:26 +0200 Subject: [PATCH] - handle parts of CameraView --- source/games/sw/src/draw.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/source/games/sw/src/draw.cpp b/source/games/sw/src/draw.cpp index b63cc5db5..dc13b103a 100644 --- a/source/games/sw/src/draw.cpp +++ b/source/games/sw/src/draw.cpp @@ -1073,6 +1073,7 @@ void DrawCrosshair(PLAYER* pp) void CameraView(PLAYER* pp, int *tx, int *ty, int *tz, sectortype** tsect, DAngle *tang, fixedhoriz *thoriz) { + DAngle ang; bool found_camera = false; bool player_in_camera = false; @@ -1084,12 +1085,14 @@ void CameraView(PLAYER* pp, int *tx, int *ty, int *tz, sectortype** tsect, DAngl SWStatIterator it(STAT_DEMO_CAMERA); while (auto actor = it.Next()) { - ang = VecToAngle(*tx - actor->int_pos().X, *ty - actor->int_pos().Y); + DVector3 test1(*tx * inttoworld, *ty * inttoworld, *tz * zinttoworld); + + ang = VecToAngle(test1.XY() - actor->spr.pos.XY()); ang_test = deltaangle(ang, actor->spr.angle) < DAngle::fromBuild(actor->spr.lotag); FAFcansee_test = - (FAFcansee_(actor->int_pos().X, actor->int_pos().Y, actor->int_pos().Z, actor->sector(), *tx, *ty, *tz, pp->cursector) || - FAFcansee_(actor->int_pos().X, actor->int_pos().Y, actor->int_pos().Z, actor->sector(), *tx, *ty, *tz + int_ActorSizeZ(pp->actor), pp->cursector)); + (FAFcansee(actor->spr.pos, actor->sector(), test1, pp->cursector) || + FAFcansee(actor->spr.pos, actor->sector(), test1.plusZ(ActorSizeZ(pp->actor)), pp->cursector)); player_in_camera = ang_test && FAFcansee_test;