From 6e3d414b3c977eb39ff65e170586412cd6b96eaa Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Sat, 7 Nov 2020 18:16:16 +1100 Subject: [PATCH] - inputstate.cpp: Move `checkCrouchToggle()` from gameinput.ccp into `ApplyGlobalInput()` and use static bool for crouch toggling vs. game-side bool. --- source/blood/src/controls.cpp | 3 --- source/blood/src/player.h | 1 - source/core/gameinput.cpp | 25 ------------------------- source/core/gameinput.h | 1 - source/core/inputstate.cpp | 14 ++++++++++++-- source/core/inputstate.h | 2 +- source/exhumed/src/input.cpp | 3 --- source/exhumed/src/player.h | 2 -- source/games/duke/src/actors_d.cpp | 2 +- source/games/duke/src/gameexec.cpp | 2 +- source/games/duke/src/input.cpp | 16 +++++++--------- source/games/duke/src/player_d.cpp | 2 +- source/games/duke/src/player_r.cpp | 2 +- source/games/duke/src/savegame.cpp | 3 +-- source/games/duke/src/types.h | 2 -- source/sw/src/game.h | 1 - source/sw/src/input.cpp | 3 --- source/sw/src/player.cpp | 2 +- 18 files changed, 26 insertions(+), 60 deletions(-) diff --git a/source/blood/src/controls.cpp b/source/blood/src/controls.cpp index c2784f905..324d90090 100644 --- a/source/blood/src/controls.cpp +++ b/source/blood/src/controls.cpp @@ -49,9 +49,6 @@ void GameInterface::GetInput(InputPacket* packet, ControlInfo* const hidInput) ApplyGlobalInput(gInput, hidInput); processMovement(&input, &gInput, hidInput, scaleAdjust); - // Handle crouch toggling. - checkCrouchToggle(&gInput, &pPlayer->crouch_toggle); - if (!cl_syncinput && gamestate == GS_LEVEL) { // Perform unsynchronised angle/horizon if not dead. diff --git a/source/blood/src/player.h b/source/blood/src/player.h index e3b0bc0c2..3fa6efa06 100644 --- a/source/blood/src/player.h +++ b/source/blood/src/player.h @@ -183,7 +183,6 @@ struct PLAYER int player_par; int nWaterPal; POSTURE pPosture[kModeMax][kPostureMax]; - bool crouch_toggle; }; struct PROFILE diff --git a/source/core/gameinput.cpp b/source/core/gameinput.cpp index eb7cbe8b2..431b8c720 100644 --- a/source/core/gameinput.cpp +++ b/source/core/gameinput.cpp @@ -353,31 +353,6 @@ void applylook(PlayerAngle* angle, float const avel, ESyncBits* actions, double } } -//--------------------------------------------------------------------------- -// -// Crouch toggle functionality used within Duke/RR, Blood and Exhumed. -// -//--------------------------------------------------------------------------- - -void checkCrouchToggle(InputPacket* inputBuffer, bool* crouch_toggle, bool const crouchable, bool const forceoff) -{ - if (buttonMap.ButtonDown(gamefunc_Toggle_Crouch) || *crouch_toggle) - { - inputBuffer->actions |= SB_CROUCH; - } - - if (buttonMap.ButtonDown(gamefunc_Toggle_Crouch)) - { - *crouch_toggle = !*crouch_toggle && crouchable; - - if (crouchable) - buttonMap.ClearButton(gamefunc_Toggle_Crouch); - } - - if (buttonMap.ButtonDown(gamefunc_Crouch) || buttonMap.ButtonDown(gamefunc_Jump) || forceoff) - *crouch_toggle = false; -} - FSerializer& Serialize(FSerializer& arc, const char* keyname, PlayerAngle& w, PlayerAngle* def) { if (arc.BeginObject(keyname)) diff --git a/source/core/gameinput.h b/source/core/gameinput.h index c8617dcc0..3e82f6054 100644 --- a/source/core/gameinput.h +++ b/source/core/gameinput.h @@ -195,4 +195,3 @@ FSerializer& Serialize(FSerializer& arc, const char* keyname, PlayerHorizon& w, void processMovement(InputPacket* currInput, InputPacket* inputBuffer, ControlInfo* const hidInput, double const scaleAdjust, int const drink_amt = 0, bool const allowstrafe = true, double const turnscale = 1); void sethorizon(fixedhoriz* horiz, float const horz, ESyncBits* actions, double const scaleAdjust); void applylook(PlayerAngle* angle, float const avel, ESyncBits* actions, double const scaleAdjust, bool const crouching); -void checkCrouchToggle(InputPacket* inputBuffer, bool* crouch_toggle, bool const crouchable = true, bool const forceoff = false); diff --git a/source/core/inputstate.cpp b/source/core/inputstate.cpp index 1fa03b2c9..29e094e19 100644 --- a/source/core/inputstate.cpp +++ b/source/core/inputstate.cpp @@ -327,8 +327,9 @@ CCMD(pause) } +static bool crouch_toggle; -void ApplyGlobalInput(InputPacket& input, ControlInfo* hidInput) +void ApplyGlobalInput(InputPacket& input, ControlInfo* hidInput, bool const crouchable, bool const disableToggle) { if (WeaponToSend != 0) input.setNewWeapon(WeaponToSend); WeaponToSend = 0; @@ -366,9 +367,18 @@ void ApplyGlobalInput(InputPacket& input, ControlInfo* hidInput) if (buttonMap.ButtonDown(gamefunc_Jump)) input.actions |= SB_JUMP; - if (buttonMap.ButtonDown(gamefunc_Crouch)) + if (buttonMap.ButtonDown(gamefunc_Crouch) || buttonMap.ButtonDown(gamefunc_Toggle_Crouch) || crouch_toggle) input.actions |= SB_CROUCH; + if (buttonMap.ButtonDown(gamefunc_Toggle_Crouch)) + { + crouch_toggle = !crouch_toggle && crouchable; + if (crouchable) buttonMap.ClearButton(gamefunc_Toggle_Crouch); + } + + if (buttonMap.ButtonDown(gamefunc_Crouch) || buttonMap.ButtonDown(gamefunc_Jump) || disableToggle) + crouch_toggle = false; + if (buttonMap.ButtonDown(gamefunc_Fire)) input.actions |= SB_FIRE; diff --git a/source/core/inputstate.h b/source/core/inputstate.h index 028ac7a70..e37eb447e 100644 --- a/source/core/inputstate.h +++ b/source/core/inputstate.h @@ -102,6 +102,6 @@ enum GameFunction_t }; void SetupGameButtons(); -void ApplyGlobalInput(InputPacket& input, ControlInfo* const hidInput); +void ApplyGlobalInput(InputPacket& input, ControlInfo* const hidInput, bool const crouchable = true, bool const disableToggle = false); extern ESyncBits ActionsToSend; double InputScale(); diff --git a/source/exhumed/src/input.cpp b/source/exhumed/src/input.cpp index 83f807924..b53770bb7 100644 --- a/source/exhumed/src/input.cpp +++ b/source/exhumed/src/input.cpp @@ -120,9 +120,6 @@ void GameInterface::GetInput(InputPacket* packet, ControlInfo* const hidInput) processMovement(&input, &localInput, hidInput, scaleAdjust); } - // Handle crouch toggling. - checkCrouchToggle(&localInput, &pPlayer->crouch_toggle); - if (!cl_syncinput) { if (!nFreeze) diff --git a/source/exhumed/src/player.h b/source/exhumed/src/player.h index 2e30465c7..254796ae0 100644 --- a/source/exhumed/src/player.h +++ b/source/exhumed/src/player.h @@ -75,8 +75,6 @@ struct Player PlayerHorizon horizon; PlayerAngle angle; vec3_t opos; - - bool crouch_toggle; }; extern short PlayerCount; diff --git a/source/games/duke/src/actors_d.cpp b/source/games/duke/src/actors_d.cpp index 83580fb33..4844edc05 100644 --- a/source/games/duke/src/actors_d.cpp +++ b/source/games/duke/src/actors_d.cpp @@ -2080,7 +2080,7 @@ void movetransports_d(void) if (onfloorz == 0 && abs(spr->z - ps[p].posz) < 6144) if ((ps[p].jetpack_on == 0) || (ps[p].jetpack_on && (PlayerInput(p, SB_JUMP))) || - (ps[p].jetpack_on && (PlayerInput(p, SB_CROUCH) ^ !!ps[p].crouch_toggle))) + (ps[p].jetpack_on && PlayerInput(p, SB_CROUCH))) { ps[p].oposx = ps[p].posx += Owner->s.x - spr->x; ps[p].oposy = ps[p].posy += Owner->s.y - spr->y; diff --git a/source/games/duke/src/gameexec.cpp b/source/games/duke/src/gameexec.cpp index 6de5f7600..d0b9edcdc 100644 --- a/source/games/duke/src/gameexec.cpp +++ b/source/games/duke/src/gameexec.cpp @@ -2390,7 +2390,7 @@ int ParseState::parse(void) s = g_sp->xvel; // sigh.. this was yet another place where number literals were used as bit masks for every single value, making the code totally unreadable. - if( (l& pducking) && ps[g_p].on_ground && (PlayerInput(g_p, SB_CROUCH) ^ !!(ps[g_p].crouch_toggle) )) + if( (l& pducking) && ps[g_p].on_ground && PlayerInput(g_p, SB_CROUCH)) j = 1; else if( (l& pfalling) && ps[g_p].jumping_counter == 0 && !ps[g_p].on_ground && ps[g_p].poszv > 2048 ) j = 1; diff --git a/source/games/duke/src/input.cpp b/source/games/duke/src/input.cpp index af615b5fe..b3724a219 100644 --- a/source/games/duke/src/input.cpp +++ b/source/games/duke/src/input.cpp @@ -522,7 +522,12 @@ enum static void processInputBits(player_struct *p, ControlInfo* const hidInput) { - ApplyGlobalInput(loc, hidInput); + // Set-up crouch bools. + int const sectorLotag = p->cursectnum != -1 ? sector[p->cursectnum].lotag : 0; + bool const crouchable = sectorLotag != ST_2_UNDERWATER && (sectorLotag != ST_1_ABOVE_WATER || p->spritebridge); + bool const disableToggle = p->jetpack_on || (!crouchable && p->on_ground) || (isRRRA() && (p->OnMotorcycle || p->OnBoat)); + + ApplyGlobalInput(loc, hidInput, crouchable, disableToggle); if (isRR() && (loc.actions & SB_CROUCH)) loc.actions &= ~SB_JUMP; if (p->OnMotorcycle || p->OnBoat) @@ -859,7 +864,6 @@ void GameInterface::GetInput(InputPacket* packet, ControlInfo* const hidInput) if (isRRRA() && (p->OnMotorcycle || p->OnBoat)) { - p->crouch_toggle = 0; processInputBits(p, hidInput); processVehicleInput(p, hidInput, input, scaleAdjust); FinalizeInput(myconnectindex, input, true); @@ -873,12 +877,6 @@ void GameInterface::GetInput(InputPacket* packet, ControlInfo* const hidInput) { processInputBits(p, hidInput); processMovement(&input, &loc, hidInput, scaleAdjust, p->drink_amt); - - // Handle crouch toggling. - int const sectorLotag = p->cursectnum != -1 ? sector[p->cursectnum].lotag : 0; - bool const crouchable = sectorLotag != ST_2_UNDERWATER && (sectorLotag != ST_1_ABOVE_WATER || p->spritebridge); - checkCrouchToggle(&loc, &p->crouch_toggle, crouchable, p->jetpack_on || (!crouchable && p->on_ground)); - FinalizeInput(myconnectindex, input, false); } @@ -889,7 +887,7 @@ void GameInterface::GetInput(InputPacket* packet, ControlInfo* const hidInput) // Do these in the same order as the old code. calcviewpitch(p, scaleAdjust); processavel(p, &input.avel); - applylook(&p->angle, input.avel, &p->sync.actions, scaleAdjust, p->crouch_toggle || p->sync.actions & SB_CROUCH); + applylook(&p->angle, input.avel, &p->sync.actions, scaleAdjust, p->sync.actions & SB_CROUCH); sethorizon(&p->horizon.horiz, input.horz, &p->sync.actions, scaleAdjust); } diff --git a/source/games/duke/src/player_d.cpp b/source/games/duke/src/player_d.cpp index 33ba5b10f..6a2066a29 100644 --- a/source/games/duke/src/player_d.cpp +++ b/source/games/duke/src/player_d.cpp @@ -2892,7 +2892,7 @@ void processinput_d(int snum) // may still be needed later for demo recording processavel(p, &sb_avel); - applylook(&p->angle, sb_avel, &p->sync.actions, 1, p->crouch_toggle || actions & SB_CROUCH); + applylook(&p->angle, sb_avel, &p->sync.actions, 1, actions & SB_CROUCH); } if (p->spritebridge == 0) diff --git a/source/games/duke/src/player_r.cpp b/source/games/duke/src/player_r.cpp index e0ffdf800..cb12bf079 100644 --- a/source/games/duke/src/player_r.cpp +++ b/source/games/duke/src/player_r.cpp @@ -3635,7 +3635,7 @@ void processinput_r(int snum) // may still be needed later for demo recording processavel(p, &sb_avel); - applylook(&p->angle, sb_avel, &p->sync.actions, 1, p->crouch_toggle || actions & SB_CROUCH); + applylook(&p->angle, sb_avel, &p->sync.actions, 1, actions & SB_CROUCH); apply_seasick(p, 1); } diff --git a/source/games/duke/src/savegame.cpp b/source/games/duke/src/savegame.cpp index 74a9195dc..c456fadf0 100644 --- a/source/games/duke/src/savegame.cpp +++ b/source/games/duke/src/savegame.cpp @@ -291,7 +291,6 @@ FSerializer& Serialize(FSerializer& arc, const char* keyname, player_struct& w, ("moto_on_oil", w.moto_on_oil) ("moto_on_mud", w.moto_on_mud) // new stuff - ("crouch_toggle", w.crouch_toggle) ("actions", w.sync.actions) .EndObject(); @@ -305,7 +304,7 @@ FSerializer& Serialize(FSerializer& arc, const char* keyname, player_struct& w, w.okickback_pic = w.kickback_pic; w.orandom_club_frame = w.random_club_frame; w.ohard_landing = w.hard_landing; - w.sync.actions &= SB_CENTERVIEW; // this is the only bit we need to preserve. + w.sync.actions &= SB_CENTERVIEW|SB_CROUCH; // these are the only bits we need to preserve. } return arc; } diff --git a/source/games/duke/src/types.h b/source/games/duke/src/types.h index a30410e20..2ab9b0038 100644 --- a/source/games/duke/src/types.h +++ b/source/games/duke/src/types.h @@ -278,8 +278,6 @@ struct player_struct double vehForwardScale, vehReverseScale, MotoSpeed; bool vehTurnLeft, vehTurnRight; - bool crouch_toggle; - // input stuff. InputPacket sync; diff --git a/source/sw/src/game.h b/source/sw/src/game.h index cf3f28bcd..e0a150b9b 100644 --- a/source/sw/src/game.h +++ b/source/sw/src/game.h @@ -1004,7 +1004,6 @@ struct PLAYERstruct int cookieTime; char WpnReloadState; - bool crouch_toggle; }; extern PLAYER Player[MAX_SW_PLAYERS_REG+1]; diff --git a/source/sw/src/input.cpp b/source/sw/src/input.cpp index f46ecb461..26c007f4f 100644 --- a/source/sw/src/input.cpp +++ b/source/sw/src/input.cpp @@ -98,9 +98,6 @@ static void processInputBits(PLAYERp const pp, ControlInfo* const hidInput) else RESET(Player[myconnectindex].Flags, PF_AUTO_AIM); } - - // Handle crouch toggling. - checkCrouchToggle(&loc, &pp->crouch_toggle); } //--------------------------------------------------------------------------- diff --git a/source/sw/src/player.cpp b/source/sw/src/player.cpp index 73c1a24b1..ff715be03 100644 --- a/source/sw/src/player.cpp +++ b/source/sw/src/player.cpp @@ -1521,7 +1521,7 @@ UpdatePlayerSpriteAngle(PLAYERp pp) void DoPlayerTurn(PLAYERp pp, float const avel, double const scaleAdjust) { - applylook(&pp->angle, avel, &pp->input.actions, scaleAdjust, pp->input.actions & SB_CROUCH || pp->crouch_toggle); + applylook(&pp->angle, avel, &pp->input.actions, scaleAdjust, pp->input.actions & SB_CROUCH); UpdatePlayerSpriteAngle(pp); }