From 23186cd8bb9226e677c37ecd9a77e81a740ec556 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Mon, 3 Apr 2023 18:38:10 +1000 Subject: [PATCH] - Relocate `processCrouchToggle()`. --- source/core/gameinput.cpp | 51 ++++++++++++++++++++------------------- 1 file changed, 26 insertions(+), 25 deletions(-) diff --git a/source/core/gameinput.cpp b/source/core/gameinput.cpp index 6241a8099..b266bf509 100644 --- a/source/core/gameinput.cpp +++ b/source/core/gameinput.cpp @@ -115,6 +115,32 @@ static inline void resetTurnHeldAmt() } +//--------------------------------------------------------------------------- +// +// Handle all the game-side crouch requirements. +// +//--------------------------------------------------------------------------- + +void processCrouchToggle(bool& toggle, ESyncBits& actions, const bool crouchable, const bool disabletoggle) +{ + if (actions & SB_CROUCH_LOCK) + { + toggle = !toggle && crouchable; + actions &= ~SB_CROUCH_LOCK; + } + + if ((actions & (SB_CROUCH|SB_JUMP)) || disabletoggle) + { + toggle = 0; + } + + if (toggle) + { + actions |= SB_CROUCH; + } +} + + //--------------------------------------------------------------------------- // // Player's movement function, called from game's ticker or from gi->GetInput() as required. @@ -321,31 +347,6 @@ static void ApplyGlobalInput(HIDInput* const hidInput) } -//--------------------------------------------------------------------------- -// -// Handle all the game-side crouch requirements. -// -//--------------------------------------------------------------------------- - -void processCrouchToggle(bool& toggle, ESyncBits& actions, const bool crouchable, const bool disabletoggle) -{ - if (actions & SB_CROUCH_LOCK) - { - toggle = !toggle && crouchable; - actions &= ~SB_CROUCH_LOCK; - } - - if ((actions & (SB_CROUCH|SB_JUMP)) || disabletoggle) - { - toggle = 0; - } - - if (toggle) - { - actions |= SB_CROUCH; - } -} - //--------------------------------------------------------------------------- // // Processes input and returns a packet if provided.