mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-04 23:12:15 +00:00
- Relocate processCrouchToggle()
.
This commit is contained in:
parent
31d3349d93
commit
23186cd8bb
1 changed files with 26 additions and 25 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue