From c935fc222667d4984ae48bea3d1bc1f8d30d04c6 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Sat, 27 Aug 2022 17:15:12 +1000 Subject: [PATCH] - Refactor chase cam positional code to use `DAngle` input rather than `binangle`. * These changes still maintain Build's integer positional values in Q28.4/Q24.8, changing this will be done later on. --- source/core/gamefuncs.cpp | 44 ++++++++++++++---------------- source/core/gamefuncs.h | 2 +- source/core/gamestruct.h | 4 +-- source/games/blood/src/blood.h | 4 +-- source/games/blood/src/view.cpp | 2 +- source/games/duke/src/duke3d.h | 4 +-- source/games/duke/src/render.cpp | 4 +-- source/games/exhumed/src/exhumed.h | 4 +-- source/games/exhumed/src/view.cpp | 4 +-- source/games/sw/src/draw.cpp | 4 +-- source/games/sw/src/game.h | 4 +-- 11 files changed, 34 insertions(+), 46 deletions(-) diff --git a/source/core/gamefuncs.cpp b/source/core/gamefuncs.cpp index 016276c03..670f17be7 100644 --- a/source/core/gamefuncs.cpp +++ b/source/core/gamefuncs.cpp @@ -36,7 +36,7 @@ IntRect viewport3d; int cameradist, cameraclock; -bool calcChaseCamPos(int* px, int* py, int* pz, DCoreActor* act, sectortype** psect, binangle ang, fixedhoriz horiz, double const smoothratio) +bool calcChaseCamPos(int* px, int* py, int* pz, DCoreActor* act, sectortype** psect, DAngle ang, fixedhoriz horiz, double const smoothratio) { HitInfoBase hitinfo; binangle daang; @@ -44,14 +44,12 @@ bool calcChaseCamPos(int* px, int* py, int* pz, DCoreActor* act, sectortype** ps if (!*psect) return false; // Calculate new pos to shoot backwards, using averaged values from the big three. - int nx = gi->chaseCamX(ang); - int ny = gi->chaseCamY(ang); - int nz = gi->chaseCamZ(horiz); + vec3_t np = gi->chaseCamPos(ang, horiz); auto bakcstat = act->spr.cstat; act->spr.cstat &= ~CSTAT_SPRITE_BLOCK_ALL; updatesectorz(*px, *py, *pz, psect); - hitscan({ *px, *py, *pz }, *psect, { nx, ny, nz }, hitinfo, CLIPMASK1); + hitscan({ *px, *py, *pz }, *psect, np, hitinfo, CLIPMASK1); act->spr.cstat = bakcstat; int hx = hitinfo.hitpos.X - *px; @@ -63,7 +61,7 @@ bool calcChaseCamPos(int* px, int* py, int* pz, DCoreActor* act, sectortype** ps } // If something is in the way, make pp->camera_dist lower if necessary - if (abs(nx) + abs(ny) > abs(hx) + abs(hy)) + if (abs(np.X) + abs(np.Y) > abs(hx) + abs(hy)) { if (hitinfo.hitWall != nullptr) { @@ -71,22 +69,22 @@ bool calcChaseCamPos(int* px, int* py, int* pz, DCoreActor* act, sectortype** ps *psect = hitinfo.hitSector; daang = bvectangbam(hitinfo.hitWall->point2Wall()->pos.X - hitinfo.hitWall->pos.X, hitinfo.hitWall->point2Wall()->pos.Y - hitinfo.hitWall->pos.Y); - newdist = nx * daang.bsin() + ny * -daang.bcos(); + newdist = np.X * daang.bsin() + np.Y * -daang.bcos(); - if (abs(nx) > abs(ny)) - hx -= MulScale(nx, newdist, 28); + if (abs(np.X) > abs(np.Y)) + hx -= MulScale(np.X, newdist, 28); else - hy -= MulScale(ny, newdist, 28); + hy -= MulScale(np.Y, newdist, 28); } else if (hitinfo.hitActor == nullptr) { // Push you off the ceiling/floor *psect = hitinfo.hitSector; - if (abs(nx) > abs(ny)) - hx -= (nx >> 5); + if (abs(np.X) > abs(np.Y)) + hx -= (np.X >> 5); else - hy -= (ny >> 5); + hy -= (np.Y >> 5); } else { @@ -105,28 +103,28 @@ bool calcChaseCamPos(int* px, int* py, int* pz, DCoreActor* act, sectortype** ps { // same as wall calculation. daang = buildang(act->int_ang() - 512); - newdist = nx * daang.bsin() + ny * -daang.bcos(); + newdist = np.X * daang.bsin() + np.Y * -daang.bcos(); - if (abs(nx) > abs(ny)) - hx -= MulScale(nx, newdist, 28); + if (abs(np.X) > abs(np.Y)) + hx -= MulScale(np.X, newdist, 28); else - hy -= MulScale(ny, newdist, 28); + hy -= MulScale(np.Y, newdist, 28); } } - if (abs(nx) > abs(ny)) - newdist = DivScale(hx, nx, 16); + if (abs(np.X) > abs(np.Y)) + newdist = DivScale(hx, np.X, 16); else - newdist = DivScale(hy, ny, 16); + newdist = DivScale(hy, np.Y, 16); if (newdist < cameradist) cameradist = newdist; } // Actually move you! (Camerdist is 65536 if nothing is in the way) - *px += MulScale(nx, cameradist, 16); - *py += MulScale(ny, cameradist, 16); - *pz += MulScale(nz, cameradist, 16); + *px += MulScale(np.X, cameradist, 16); + *py += MulScale(np.Y, cameradist, 16); + *pz += MulScale(np.Z, cameradist, 16); // Caculate clock using GameTicRate so it increases the same rate on all speed computers. int myclock = PlayClock + MulScale(120 / GameTicRate, int(smoothratio), 16); diff --git a/source/core/gamefuncs.h b/source/core/gamefuncs.h index 98637756f..ff0b414c5 100644 --- a/source/core/gamefuncs.h +++ b/source/core/gamefuncs.h @@ -156,7 +156,7 @@ extern int cameradist, cameraclock; void loaddefinitionsfile(const char* fn, bool cumulative = false, bool maingrp = false); -bool calcChaseCamPos(int* px, int* py, int* pz, DCoreActor* pspr, sectortype** psectnum, binangle ang, fixedhoriz horiz, double const smoothratio); +bool calcChaseCamPos(int* px, int* py, int* pz, DCoreActor* pspr, sectortype** psectnum, DAngle ang, fixedhoriz horiz, double const smoothratio); void PlanesAtPoint(const sectortype* sec, float dax, float day, float* ceilz, float* florz); diff --git a/source/core/gamestruct.h b/source/core/gamestruct.h index 1794272ed..21b1883b0 100644 --- a/source/core/gamestruct.h +++ b/source/core/gamestruct.h @@ -116,9 +116,7 @@ struct GameInterface virtual void ToggleThirdPerson() { } virtual void SwitchCoopView() { Printf("Unsupported command\n"); } virtual void ToggleShowWeapon() { Printf("Unsupported command\n"); } - virtual int chaseCamX(binangle ang) { return 0; } - virtual int chaseCamY(binangle ang) { return 0; } - virtual int chaseCamZ(fixedhoriz horiz) { return 0; } + virtual vec3_t chaseCamPos(DAngle ang, fixedhoriz horiz) { return vec3_t(0,0,0); } virtual void processSprites(tspriteArray& tsprites, int viewx, int viewy, int viewz, binangle viewang, double smoothRatio) = 0; virtual void UpdateCameras(double smoothratio) {} virtual void EnterPortal(DCoreActor* viewer, int type) {} diff --git a/source/games/blood/src/blood.h b/source/games/blood/src/blood.h index e7608bcf7..f9237f40b 100644 --- a/source/games/blood/src/blood.h +++ b/source/games/blood/src/blood.h @@ -142,9 +142,7 @@ struct GameInterface : public ::GameInterface void ToggleThirdPerson() override; void SwitchCoopView() override; void ToggleShowWeapon() override; - int chaseCamX(binangle ang) override { return MulScale(-Cos(ang.asbuild()), 1280, 30); } - int chaseCamY(binangle ang) override { return MulScale(-Sin(ang.asbuild()), 1280, 30); } - int chaseCamZ(fixedhoriz horiz) override { return FixedToInt(MulScale(horiz.asq16(), 1280, 3)) - (16 << 8); } + vec3_t chaseCamPos(DAngle ang, fixedhoriz horiz) { return vec3_t(int(-ang.Cos() * 1280.), int(-ang.Sin() * 1280.), FixedToInt(MulScale(horiz.asq16(), 1280, 3)) - (16 << 8)); } void processSprites(tspriteArray& tsprites, int viewx, int viewy, int viewz, binangle viewang, double smoothRatio) override; void EnterPortal(DCoreActor* viewer, int type) override; void LeavePortal(DCoreActor* viewer, int type) override; diff --git a/source/games/blood/src/view.cpp b/source/games/blood/src/view.cpp index fa6bc9080..2fc495bbd 100644 --- a/source/games/blood/src/view.cpp +++ b/source/games/blood/src/view.cpp @@ -563,7 +563,7 @@ void SetupView(int& cX, int& cY, int& cZ, binangle& cA, fixedhoriz& cH, sectorty } else { - calcChaseCamPos((int*)&cX, (int*)&cY, (int*)&cZ, gView->actor, &pSector, cA, cH, gInterpolate); + calcChaseCamPos((int*)&cX, (int*)&cY, (int*)&cZ, gView->actor, &pSector, DAngle::fromBam(cA.asbam()), cH, gInterpolate); } if (pSector != nullptr) CheckLink((int*)&cX, (int*)&cY, (int*)&cZ, &pSector); diff --git a/source/games/duke/src/duke3d.h b/source/games/duke/src/duke3d.h index 9f3968c58..e338d6cd5 100644 --- a/source/games/duke/src/duke3d.h +++ b/source/games/duke/src/duke3d.h @@ -56,9 +56,7 @@ struct GameInterface : public ::GameInterface void ToggleThirdPerson() override; void SwitchCoopView() override; void ToggleShowWeapon() override; - int chaseCamX(binangle ang) { return -ang.bcos(-4); } - int chaseCamY(binangle ang) { return -ang.bsin(-4); } - int chaseCamZ(fixedhoriz horiz) { return horiz.asq16() >> 9; } + vec3_t chaseCamPos(DAngle ang, fixedhoriz horiz) { return vec3_t(int(-ang.Cos() * 1024.), int(-ang.Sin() * 1024.), horiz.asq16() >> 9); } void processSprites(tspriteArray& tsprites, int viewx, int viewy, int viewz, binangle viewang, double smoothRatio) override; void UpdateCameras(double smoothratio) override; void EnterPortal(DCoreActor* viewer, int type) override; diff --git a/source/games/duke/src/render.cpp b/source/games/duke/src/render.cpp index d573bdb25..3301cd113 100644 --- a/source/games/duke/src/render.cpp +++ b/source/games/duke/src/render.cpp @@ -348,10 +348,10 @@ void displayrooms(int snum, double smoothratio, bool sceneonly) cposz -= isRR() ? 3840 : 3072; viewer = p->GetActor(); - if (!calcChaseCamPos(&cposx, &cposy, &cposz, viewer, §, cang, choriz, smoothratio)) + if (!calcChaseCamPos(&cposx, &cposy, &cposz, viewer, §, DAngle::fromBam(cang.asbam()), choriz, smoothratio)) { cposz += isRR() ? 3840 : 3072; - calcChaseCamPos(&cposx, &cposy, &cposz, viewer, §, cang, choriz, smoothratio); + calcChaseCamPos(&cposx, &cposy, &cposz, viewer, §, DAngle::fromBam(cang.asbam()), choriz, smoothratio); } } diff --git a/source/games/exhumed/src/exhumed.h b/source/games/exhumed/src/exhumed.h index 804fe7ae9..5cac2847c 100644 --- a/source/games/exhumed/src/exhumed.h +++ b/source/games/exhumed/src/exhumed.h @@ -236,9 +236,7 @@ struct GameInterface : public ::GameInterface int playerKeyMove() override { return 6; } void WarpToCoords(int x, int y, int z, int a, int h) override; void ToggleThirdPerson() override; - int chaseCamX(binangle ang) { return -(ang.bcos() * 3) >> 5; } - int chaseCamY(binangle ang) { return -(ang.bsin() * 3) >> 5; } - int chaseCamZ(fixedhoriz horiz) { return (horiz.asq16() * 3) >> 10; } + vec3_t chaseCamPos(DAngle ang, fixedhoriz horiz) { return vec3_t(int(-ang.Cos() * 1536.), int(-ang.Sin() * 1536.), (horiz.asq16() * 3) >> 10); } void processSprites(tspriteArray& tsprites, int viewx, int viewy, int viewz, binangle viewang, double smoothRatio) override; int GetCurrentSkill() override; diff --git a/source/games/exhumed/src/view.cpp b/source/games/exhumed/src/view.cpp index 879a5a3e7..7128d0144 100644 --- a/source/games/exhumed/src/view.cpp +++ b/source/games/exhumed/src/view.cpp @@ -284,10 +284,10 @@ void DrawView(double smoothRatio, bool sceneonly) if (bCamera) { viewz -= 2560; - if (!calcChaseCamPos(&playerX, &playerY, &viewz, pPlayerActor, &pSector, nAngle, pan, smoothRatio)) + if (!calcChaseCamPos(&playerX, &playerY, &viewz, pPlayerActor, &pSector, DAngle::fromBam(nAngle.asbam()), pan, smoothRatio)) { viewz += 2560; - calcChaseCamPos(&playerX, &playerY, &viewz, pPlayerActor, &pSector, nAngle, pan, smoothRatio); + calcChaseCamPos(&playerX, &playerY, &viewz, pPlayerActor, &pSector, DAngle::fromBam(nAngle.asbam()), pan, smoothRatio); } } } diff --git a/source/games/sw/src/draw.cpp b/source/games/sw/src/draw.cpp index ebd6234b2..89b8ec816 100644 --- a/source/games/sw/src/draw.cpp +++ b/source/games/sw/src/draw.cpp @@ -1457,10 +1457,10 @@ void drawscreen(PLAYER* pp, double smoothratio, bool sceneonly) { tz -= 8448; - if (!calcChaseCamPos(&tx, &ty, &tz, pp->actor, &tsect, tang, thoriz, smoothratio)) + if (!calcChaseCamPos(&tx, &ty, &tz, pp->actor, &tsect, DAngle::fromBam(tang.asbam()), thoriz, smoothratio)) { tz += 8448; - calcChaseCamPos(&tx, &ty, &tz, pp->actor, &tsect, tang, thoriz, smoothratio); + calcChaseCamPos(&tx, &ty, &tz, pp->actor, &tsect, DAngle::fromBam(tang.asbam()), thoriz, smoothratio); } } else diff --git a/source/games/sw/src/game.h b/source/games/sw/src/game.h index 93d93c60e..554285957 100644 --- a/source/games/sw/src/game.h +++ b/source/games/sw/src/game.h @@ -1919,9 +1919,7 @@ struct GameInterface : public ::GameInterface void WarpToCoords(int x, int y, int z, int a, int h) override; void ToggleThirdPerson() override; void SwitchCoopView() override; - int chaseCamX(binangle ang) override { return -ang.bcos(-3); } - int chaseCamY(binangle ang) override { return -ang.bsin(-3); } - int chaseCamZ(fixedhoriz horiz) override { return horiz.asq16() >> 8; } + vec3_t chaseCamPos(DAngle ang, fixedhoriz horiz) { return vec3_t(int(-ang.Cos() * 2048.), int(-ang.Sin() * 2048.), horiz.asq16() >> 8); } void processSprites(tspriteArray& tsprites, int viewx, int viewy, int viewz, binangle viewang, double smoothRatio) override; void UpdateCameras(double smoothratio) override; void EnterPortal(DCoreActor* viewer, int type) override;