From 88e6a6e8942ddd5e08b746d942a2896c2fa826c2 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Wed, 22 Mar 2023 19:54:07 +1100 Subject: [PATCH] - Rework ff652f454c035965ee4ebc3186d36ff0a1e8f3b4 slightly to accept an `InputPacket` pointer. --- source/core/gameinput.cpp | 2 +- source/core/gamestruct.h | 2 +- source/games/blood/src/blood.h | 2 +- source/games/duke/src/duke3d.h | 2 +- source/games/duke/src/gameloop.cpp | 2 +- source/games/exhumed/src/exhumed.h | 2 +- source/games/sw/src/game.h | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/source/core/gameinput.cpp b/source/core/gameinput.cpp index b13d38916..f26ca065f 100644 --- a/source/core/gameinput.cpp +++ b/source/core/gameinput.cpp @@ -194,7 +194,7 @@ void getInput(const double scaleAdjust, PlayerAngles* const plrAngles, InputPack if (packet) { - inputBuffer.actions |= gi->GetNeededInputBits(); + gi->reapplyInputBits(&inputBuffer); *packet = inputBuffer; clearLocalInputBuffer(); } diff --git a/source/core/gamestruct.h b/source/core/gamestruct.h index 001276c50..2a4c86daf 100644 --- a/source/core/gamestruct.h +++ b/source/core/gamestruct.h @@ -120,7 +120,7 @@ struct GameInterface virtual void RemoveQAVInterpProps(const int res_id) { } virtual bool WantEscape() { return false; } virtual void StartSoundEngine() = 0; - virtual ESyncBits GetNeededInputBits() = 0; + virtual void reapplyInputBits(InputPacket* const input) = 0; virtual void GetInput(HIDInput* const hidInput, InputPacket* const inputBuffer, InputPacket* const currInput, const double scaleAdjust) { processMovement(hidInput, inputBuffer, currInput, scaleAdjust); diff --git a/source/games/blood/src/blood.h b/source/games/blood/src/blood.h index b88235542..d5776f658 100644 --- a/source/games/blood/src/blood.h +++ b/source/games/blood/src/blood.h @@ -145,7 +145,7 @@ struct GameInterface : public ::GameInterface void AddQAVInterpProps(const int res_id, const FString& interptype, const bool loopable, const TMap>&& ignoredata) override; void RemoveQAVInterpProps(const int res_id) override; void StartSoundEngine() override; - ESyncBits GetNeededInputBits() override { return gPlayer[myconnectindex].input.actions & ~(SB_BUTTON_MASK | SB_RUN | SB_WEAPONMASK_BITS); } + void reapplyInputBits(InputPacket* const input) override { input->actions |= gPlayer[myconnectindex].input.actions & ~(SB_BUTTON_MASK | SB_RUN | SB_WEAPONMASK_BITS); } GameStats getStats() override; }; diff --git a/source/games/duke/src/duke3d.h b/source/games/duke/src/duke3d.h index 1f2ee82e6..6f3716d78 100644 --- a/source/games/duke/src/duke3d.h +++ b/source/games/duke/src/duke3d.h @@ -39,7 +39,7 @@ struct GameInterface : public ::GameInterface void SerializeGameState(FSerializer& arc) override; void ExitFromMenu() override; void DrawPlayerSprite(const DVector2& origin, bool onteam) override; - ESyncBits GetNeededInputBits() override { return ps[myconnectindex].sync.actions & SB_CENTERVIEW; } + void reapplyInputBits(InputPacket* const input) override { input->actions |= ps[myconnectindex].sync.actions & SB_CENTERVIEW; } void GetInput(HIDInput* const hidInput, InputPacket* const inputBuffer, InputPacket* const currInput, const double scaleAdjust) override; void UpdateSounds() override; void Startup() override; diff --git a/source/games/duke/src/gameloop.cpp b/source/games/duke/src/gameloop.cpp index f54b34442..27142f66f 100644 --- a/source/games/duke/src/gameloop.cpp +++ b/source/games/duke/src/gameloop.cpp @@ -63,7 +63,7 @@ void GameInterface::Ticker() // temporary workaround for issue where first packet // seems captured after the playsim has ran once. - playercmds[myconnectindex].ucmd.actions |= gi->GetNeededInputBits(); + gi->reapplyInputBits(&playercmds[myconnectindex].ucmd); // this must be done before the view is backed up. for (int i = connecthead; i >= 0; i = connectpoint2[i]) diff --git a/source/games/exhumed/src/exhumed.h b/source/games/exhumed/src/exhumed.h index 7215be6b9..f482af5fe 100644 --- a/source/games/exhumed/src/exhumed.h +++ b/source/games/exhumed/src/exhumed.h @@ -239,7 +239,7 @@ struct GameInterface : public ::GameInterface void processSprites(tspriteArray& tsprites, const DVector3& view, DAngle viewang, double interpfrac) override; int GetCurrentSkill() override; void StartSoundEngine() override; - ESyncBits GetNeededInputBits() override { return PlayerList[nLocalPlayer].input.actions & SB_CENTERVIEW; } + void reapplyInputBits(InputPacket* const input) override { input->actions |= PlayerList[nLocalPlayer].input.actions & SB_CENTERVIEW; } ::GameStats getStats() override; }; diff --git a/source/games/sw/src/game.h b/source/games/sw/src/game.h index 49a1b069f..e3dfac421 100644 --- a/source/games/sw/src/game.h +++ b/source/games/sw/src/game.h @@ -1888,7 +1888,7 @@ struct GameInterface : public ::GameInterface void ExitFromMenu() override; int GetCurrentSkill() override; void StartSoundEngine() override; - ESyncBits GetNeededInputBits() override { return Player[myconnectindex].input.actions & SB_CENTERVIEW; } + void reapplyInputBits(InputPacket* const input) override { input->actions |= Player[myconnectindex].input.actions & SB_CENTERVIEW; } void GetInput(HIDInput* const hidInput, InputPacket* const inputBuffer, InputPacket* const currInput, const double scaleAdjust) override { processMovement(hidInput, inputBuffer, currInput, scaleAdjust, 0, !Player[myconnectindex].sop, Player[myconnectindex].sop_control ? 3. / 1.40625 : 1.);