From 6716d0f2e96ace3e85d83d32a182b0400c77a082 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Wed, 7 Sep 2022 17:00:58 +1000 Subject: [PATCH] - Floatify `smoothratio` for `calcChaseCamPos()`. --- source/core/gamefuncs.cpp | 6 +++--- source/core/gamefuncs.h | 4 ++-- source/games/exhumed/src/view.cpp | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/source/core/gamefuncs.cpp b/source/core/gamefuncs.cpp index 8f313716f..77875acb3 100644 --- a/source/core/gamefuncs.cpp +++ b/source/core/gamefuncs.cpp @@ -36,7 +36,7 @@ IntRect viewport3d; double cameradist, cameraclock; -bool calcChaseCamPos(DVector3& ppos, DCoreActor* act, sectortype** psect, DAngle ang, fixedhoriz horiz, double const smoothratio) +bool calcChaseCamPos(DVector3& ppos, DCoreActor* act, sectortype** psect, DAngle ang, fixedhoriz horiz, double const interpfrac) { HitInfoBase hitinfo; DAngle daang; @@ -90,7 +90,7 @@ bool calcChaseCamPos(DVector3& ppos, DCoreActor* act, sectortype** psect, DAngle { bakcstat = hit->spr.cstat; hit->spr.cstat &= ~(CSTAT_SPRITE_BLOCK | CSTAT_SPRITE_BLOCK_HITSCAN); - calcChaseCamPos(ppos, act, psect, ang, horiz, smoothratio); + calcChaseCamPos(ppos, act, psect, ang, horiz, interpfrac); hit->spr.cstat = bakcstat; return false; } @@ -115,7 +115,7 @@ bool calcChaseCamPos(DVector3& ppos, DCoreActor* act, sectortype** psect, DAngle ppos += npos * cameradist; // Calculate clock using GameTicRate so it increases the same rate on all speed computers. - double myclock = PlayClock + 120 / GameTicRate * smoothratio * (1. / MaxSmoothRatio); + double myclock = PlayClock + 120 / GameTicRate * interpfrac; if (cameraclock == INT_MIN) { // Third person view was just started. diff --git a/source/core/gamefuncs.h b/source/core/gamefuncs.h index 894e863c0..2f2a552db 100644 --- a/source/core/gamefuncs.h +++ b/source/core/gamefuncs.h @@ -257,12 +257,12 @@ extern double cameradist, cameraclock; void loaddefinitionsfile(const char* fn, bool cumulative = false, bool maingrp = false); -bool calcChaseCamPos(DVector3& ppos, DCoreActor* pspr, sectortype** psectnum, DAngle ang, fixedhoriz horiz, double const smoothratio); +bool calcChaseCamPos(DVector3& ppos, DCoreActor* pspr, sectortype** psectnum, DAngle ang, fixedhoriz horiz, double const interpfrac); inline bool calcChaseCamPos(int* px, int* py, int* pz, DCoreActor* pspr, sectortype** psectnum, DAngle ang, fixedhoriz horiz, double const smoothratio) { auto pos = DVector3((*px) * inttoworld, (*py) * inttoworld, (*pz) * zinttoworld); - auto res = calcChaseCamPos(pos, pspr, psectnum, ang, horiz, smoothratio); + auto res = calcChaseCamPos(pos, pspr, psectnum, ang, horiz, smoothratio * (1. / MaxSmoothRatio)); (*px) = pos.X * worldtoint; (*py) = pos.Y * worldtoint; (*pz) = pos.Z * zworldtoint; diff --git a/source/games/exhumed/src/view.cpp b/source/games/exhumed/src/view.cpp index d8ec734cf..ce18c2dbf 100644 --- a/source/games/exhumed/src/view.cpp +++ b/source/games/exhumed/src/view.cpp @@ -258,10 +258,10 @@ void DrawView(double interpfrac, bool sceneonly) if (bCamera) { nCamerapos.Z -= 10; - if (!calcChaseCamPos(nCamerapos, pPlayerActor, &pSector, nCameraang, nCamerapan, interpfrac * MaxSmoothRatio)) + if (!calcChaseCamPos(nCamerapos, pPlayerActor, &pSector, nCameraang, nCamerapan, interpfrac)) { nCamerapos.Z += 10; - calcChaseCamPos(nCamerapos, pPlayerActor, &pSector, nCameraang, nCamerapan, interpfrac * MaxSmoothRatio); + calcChaseCamPos(nCamerapos, pPlayerActor, &pSector, nCameraang, nCamerapan, interpfrac); } } }