From 7dc0bde2bece5816a3b020064590666fcafda1d7 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Wed, 4 Oct 2023 10:16:15 +1100 Subject: [PATCH] - Duke: Clean up player/actor accesses in `operateJetpack()`. --- source/games/duke/src/player_d.cpp | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/source/games/duke/src/player_d.cpp b/source/games/duke/src/player_d.cpp index 09af54946..a958aa389 100644 --- a/source/games/duke/src/player_d.cpp +++ b/source/games/duke/src/player_d.cpp @@ -574,9 +574,8 @@ void checkweapons_d(DDukePlayer* p) // //--------------------------------------------------------------------------- -static void operateJetpack(int snum, ESyncBits actions, int psectlotag, double floorz, double ceilingz, int shrunk) +static void operateJetpack(DDukePlayer* const p, ESyncBits actions, int psectlotag, double floorz, double ceilingz, int shrunk) { - const auto p = getPlayer(snum); const auto pact = p->GetActor(); const auto kbdDir = !!(actions & SB_JUMP) - !!(actions & SB_CROUCH); const double dist = shrunk ? 2 : 8; @@ -603,9 +602,9 @@ static void operateJetpack(int snum, ESyncBits actions, int psectlotag, double f if (velZ > 0) //A (soar high) { // jump - SetGameVarID(g_iReturnVarID, 0, pact, snum); - OnEvent(EVENT_SOARUP, snum, pact, -1); - if (GetGameVarID(g_iReturnVarID, pact, snum).value() == 0) + SetGameVarID(g_iReturnVarID, 0, pact, p->pnum); + OnEvent(EVENT_SOARUP, p->pnum, pact, -1); + if (GetGameVarID(g_iReturnVarID, pact, p->pnum).value() == 0) { pact->spr.pos.Z -= velZ; p->crack_time = CRACK_TIME; @@ -615,9 +614,9 @@ static void operateJetpack(int snum, ESyncBits actions, int psectlotag, double f if (velZ < 0) //Z (soar low) { // crouch - SetGameVarID(g_iReturnVarID, 0, pact, snum); - OnEvent(EVENT_SOARDOWN, snum, pact, -1); - if (GetGameVarID(g_iReturnVarID, pact, snum).value() == 0) + SetGameVarID(g_iReturnVarID, 0, pact, p->pnum); + OnEvent(EVENT_SOARDOWN, p->pnum, pact, -1); + if (GetGameVarID(g_iReturnVarID, pact, p->pnum).value() == 0) { pact->spr.pos.Z -= velZ; p->crack_time = CRACK_TIME; @@ -1697,7 +1696,7 @@ void processinput_d(int snum) } else if (p->jetpack_on) { - operateJetpack(snum, actions, psectlotag, floorz, ceilingz, shrunk); + operateJetpack(p, actions, psectlotag, floorz, ceilingz, shrunk); } else if (psectlotag != ST_2_UNDERWATER) {