diff --git a/source/core/gameinput.cpp b/source/core/gameinput.cpp index 599c49186..70c422f40 100644 --- a/source/core/gameinput.cpp +++ b/source/core/gameinput.cpp @@ -198,7 +198,6 @@ void getInput(const double scaleAdjust, PlayerAngles* const plrAngles, InputPack if (packet) { - gi->reapplyInputBits(&inputBuffer); *packet = inputBuffer; clearLocalInputBuffer(); } @@ -217,20 +216,26 @@ void PlayerAngles::doPitchKeys(InputPacket* const input) if (input->horz) input->actions &= ~SB_CENTERVIEW; + // Set up a myriad of bools. + const auto aimingUp = (input->actions & SB_LOOK_UP) == SB_AIM_UP; + const auto aimingDown = (input->actions & SB_LOOK_DOWN) == SB_AIM_DOWN; + const auto lookingUp = (input->actions & SB_LOOK_UP) == SB_LOOK_UP; + const auto lookingDown = (input->actions & SB_LOOK_DOWN) == SB_LOOK_DOWN; + // Process keyboard input. - if (const auto aiming = !!(input->actions & SB_AIM_DOWN) - !!(input->actions & SB_AIM_UP)) + if (const auto aiming = aimingDown - aimingUp) { pActor->spr.Angles.Pitch += DAngle::fromDeg(getTicrateScale(PITCH_AIMSPEED) * aiming); input->actions &= ~SB_CENTERVIEW; } - if (const auto looking = !!(input->actions & SB_LOOK_DOWN) - !!(input->actions & SB_LOOK_UP)) + if (const auto looking = lookingDown - lookingUp) { pActor->spr.Angles.Pitch += DAngle::fromDeg(getTicrateScale(PITCH_LOOKSPEED) * looking); input->actions |= SB_CENTERVIEW; } // Do return to centre. - if ((input->actions & SB_CENTERVIEW) && !(input->actions & (SB_LOOK_UP|SB_LOOK_DOWN))) + if ((input->actions & SB_CENTERVIEW) && !(lookingUp || lookingDown)) { const auto pitch = abs(pActor->spr.Angles.Pitch); const auto scale = pitch > PITCH_CNTRSINEOFFSET ? (pitch - PITCH_CNTRSINEOFFSET).Cos() : 1.; diff --git a/source/core/inputstate.cpp b/source/core/inputstate.cpp index 649b71d30..f1c8f496a 100644 --- a/source/core/inputstate.cpp +++ b/source/core/inputstate.cpp @@ -374,14 +374,22 @@ void ApplyGlobalInput(HIDInput* const hidInput, InputPacket* const inputBuffer) } else dpad_lock = 0; + gi->reapplyInputBits(inputBuffer); + inputBuffer->actions |= ActionsToSend; ActionsToSend = 0; if (buttonMap.ButtonDown(gamefunc_Aim_Up) || (buttonMap.ButtonDown(gamefunc_Dpad_Aiming) && hidInput->joyaxes[JOYAXIS_Forward] > 0)) + { inputBuffer->actions |= SB_AIM_UP; + inputBuffer->actions &= ~SB_CENTERVIEW; + } if ((buttonMap.ButtonDown(gamefunc_Aim_Down) || (buttonMap.ButtonDown(gamefunc_Dpad_Aiming) && hidInput->joyaxes[JOYAXIS_Forward] < 0))) + { inputBuffer->actions |= SB_AIM_DOWN; + inputBuffer->actions &= ~SB_CENTERVIEW; + } if (buttonMap.ButtonDown(gamefunc_Dpad_Aiming)) hidInput->joyaxes[JOYAXIS_Forward] = 0; diff --git a/source/core/packet.h b/source/core/packet.h index 9c33dd899..f981b2dcb 100644 --- a/source/core/packet.h +++ b/source/core/packet.h @@ -31,8 +31,8 @@ enum ESyncBits_ : uint32_t SB_AIM_DOWN = 1 << 22, SB_LOOK_LEFT = 1 << 23, SB_LOOK_RIGHT = 1 << 24, - SB_LOOK_UP = 1 << 25, - SB_LOOK_DOWN = 1 << 26, + SB_LOOK_UP = SB_AIM_UP|SB_CENTERVIEW, + SB_LOOK_DOWN = SB_AIM_DOWN|SB_CENTERVIEW, SB_RUN = 1 << 27, SB_JUMP = 1 << 28, SB_CROUCH = 1 << 29, diff --git a/source/games/duke/src/player_d.cpp b/source/games/duke/src/player_d.cpp index 60f2903e0..2b4b78c63 100644 --- a/source/games/duke/src/player_d.cpp +++ b/source/games/duke/src/player_d.cpp @@ -2973,19 +2973,19 @@ HORIZONLY: { playerCenterView(snum); } - else if (actions & SB_LOOK_UP) + else if ((actions & SB_LOOK_UP) == SB_LOOK_UP) { playerLookUp(snum, actions); } - else if (actions & SB_LOOK_DOWN) + else if ((actions & SB_LOOK_DOWN) == SB_LOOK_DOWN) { playerLookDown(snum, actions); } - else if (actions & SB_AIM_UP) + else if ((actions & SB_LOOK_UP) == SB_AIM_UP) { playerAimUp(snum, actions); } - else if (actions & SB_AIM_DOWN) + else if ((actions & SB_LOOK_DOWN) == SB_AIM_DOWN) { // aim_down playerAimDown(snum, actions); } diff --git a/source/games/duke/src/player_r.cpp b/source/games/duke/src/player_r.cpp index 126414dd7..7500e8cfb 100644 --- a/source/games/duke/src/player_r.cpp +++ b/source/games/duke/src/player_r.cpp @@ -3694,19 +3694,19 @@ HORIZONLY: { playerCenterView(snum); } - else if (actions & SB_LOOK_UP) + else if ((actions & SB_LOOK_UP) == SB_LOOK_UP) { playerLookUp(snum, actions); } - else if (actions & SB_LOOK_DOWN) + else if ((actions & SB_LOOK_DOWN) == SB_LOOK_DOWN) { playerLookDown(snum, actions); } - else if ((actions & SB_AIM_UP) && !p->OnMotorcycle) + else if ((actions & SB_LOOK_UP) == SB_AIM_UP && !p->OnMotorcycle) { playerAimUp(snum, actions); } - else if ((actions & SB_AIM_DOWN) && !p->OnMotorcycle) + else if ((actions & SB_LOOK_DOWN) == SB_AIM_DOWN && !p->OnMotorcycle) { playerAimDown(snum, actions); }