From ca2f1bb5564f4ec9fde640bda8b4ddeb84a58cee Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Thu, 24 Sep 2020 08:11:56 +1000 Subject: [PATCH 1/5] - Exhumed: Fix ramses/spirit head issues in `DoSpiritHead()` and clamp horizon in draw code in case for whatever reason (like before) we exceed the game's defined bounds. --- source/exhumed/src/ramses.cpp | 3 ++- source/exhumed/src/view.cpp | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/source/exhumed/src/ramses.cpp b/source/exhumed/src/ramses.cpp index f3a2f2647..bc17a7bfa 100644 --- a/source/exhumed/src/ramses.cpp +++ b/source/exhumed/src/ramses.cpp @@ -25,6 +25,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #include "aistuff.h" #include "player.h" #include "mapinfo.h" +#include "ps_input.h" BEGIN_PS_NS @@ -209,7 +210,7 @@ void DoSpiritHead() { static short dimSectCount = 0; - PlayerList[0].q16horiz += PlayerList[0].q16horiz / 4; + sPlayerInput[0].actions |= SB_CENTERVIEW; TileFiles.InvalidateTile(kTileRamsesWorkTile); int totalclock = leveltime * 4; diff --git a/source/exhumed/src/view.cpp b/source/exhumed/src/view.cpp index a5702401f..89cb54ac6 100644 --- a/source/exhumed/src/view.cpp +++ b/source/exhumed/src/view.cpp @@ -348,6 +348,8 @@ void DrawView(double smoothRatio, bool sceneonly) viewz = playerZ; } + pan = clamp(pan, gi->playerHorizMin(), gi->playerHorizMax()); + nCamerax = playerX; nCameray = playerY; nCameraz = playerZ; From 081dfb187cfed5733612cfcd26d4ee70217597d6 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Thu, 24 Sep 2020 09:05:42 +1000 Subject: [PATCH 2/5] - Duke: Make changes in ce7af5fe0e1e1ca2863d5a62c3cc0a40711c7d5c easier to read by way of aliases. --- source/games/duke/src/actors.cpp | 49 +++++++++++++++----------------- 1 file changed, 23 insertions(+), 26 deletions(-) diff --git a/source/games/duke/src/actors.cpp b/source/games/duke/src/actors.cpp index cc870e838..d8efe8741 100644 --- a/source/games/duke/src/actors.cpp +++ b/source/games/duke/src/actors.cpp @@ -1999,42 +1999,39 @@ void camera(int i) if (s->hitag > 0) { + // alias our temp_data array indexes. + auto& increment = t[1]; + auto& minimum = t[2]; + auto& maximum = t[3]; + auto& setupflag = t[4]; + // set up camera if already not. - if (t[4] != 1) + if (setupflag != 1) { - // set amount to adjust camera angle every tic. - t[1] = 8; - - // set min/max camera angles respectively. hitag is used as a viewing arc -/+ the initial camera angle. - t[2] = s->ang - s->hitag - t[1]; - t[3] = s->ang + s->hitag - t[1]; - - // flag that we've set up the camera. - t[4] = 1; + increment = 8; + minimum = s->ang - s->hitag - increment; + maximum = s->ang + s->hitag - increment; + setupflag = 1; } - // if already at min/max, invert the adjustment, add it and return. - if (s->ang == t[2] || s->ang == t[3]) + // update angle accordingly. + if (s->ang == minimum || s->ang == maximum) { - t[1] = -t[1]; - s->ang += t[1]; - return; + increment = -increment; + s->ang += increment; } - - // if we're below the min or above the max, just return either. - if (s->ang + t[1] < t[2]) + else if (s->ang + increment < minimum) { - s->ang = t[2]; - return; + s->ang = minimum; } - if (s->ang + t[1] > t[3]) + else if (s->ang + increment > maximum) { - s->ang = t[3]; - return; + s->ang = maximum; + } + else + { + s->ang += increment; } - - // if we're within range, increment ang with adjustment. - s->ang += t[1]; } } } From a4438fd21821174f1fcb1c44818c1ab23a1e5963 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Thu, 24 Sep 2020 22:55:27 +1000 Subject: [PATCH 3/5] - Exhumed: Actually fix ramses/spirit head issues... --- source/exhumed/src/player.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/source/exhumed/src/player.cpp b/source/exhumed/src/player.cpp index a7713c968..6cfcd9b0e 100644 --- a/source/exhumed/src/player.cpp +++ b/source/exhumed/src/player.cpp @@ -1065,15 +1065,13 @@ void FuncPlayer(int a, int nDamage, int nRun) StopLocalSound(); InitSpiritHead(); - playerSetHoriz(&PlayerList[nPlayer].q16horiz, &PlayerList[nPlayer].horizTarget, 100); - if (currentLevel->levelNumber == 11) { - playerAddHoriz(&PlayerList[nPlayer].q16horiz, &PlayerList[nPlayer].horizAdjust, 46); + playerSetHoriz(&PlayerList[nPlayer].q16horiz, &PlayerList[nPlayer].horizTarget, 146); } else { - playerAddHoriz(&PlayerList[nPlayer].q16horiz, &PlayerList[nPlayer].horizAdjust, 11); + playerSetHoriz(&PlayerList[nPlayer].q16horiz, &PlayerList[nPlayer].horizTarget, 111); } } } From f0262039b6ce5f968f984b8f9a0d347d0a39e353 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Fri, 25 Sep 2020 00:04:19 +1000 Subject: [PATCH 4/5] - Exhumed: Fixed issues with call to `playerProcessHelpers()` not occurring after dying. --- source/exhumed/src/input.cpp | 11 ++++++----- source/exhumed/src/player.cpp | 2 ++ 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/source/exhumed/src/input.cpp b/source/exhumed/src/input.cpp index bef919f6f..2c23998fa 100644 --- a/source/exhumed/src/input.cpp +++ b/source/exhumed/src/input.cpp @@ -94,14 +94,13 @@ void CheckKeys2() } -static void processMovement(ControlInfo* const hidInput) +static void processMovement(ControlInfo* const hidInput, double const scaleAdjust) { // JBF: Run key behaviour is selectable int const playerRunning = !!(localInput.actions & SB_RUN); int const turnAmount = playerRunning ? 12 : 8; int const keyMove = playerRunning ? 12 : 6; bool const mouseaim = !(localInput.actions & SB_AIMMODE); - double const scaleAdjust = InputScale(); InputPacket tempinput {}; if (buttonMap.ButtonDown(gamefunc_Strafe)) @@ -200,8 +199,6 @@ static void processMovement(ControlInfo* const hidInput) sethorizon(&pPlayer->q16horiz, tempinput.q16horz, &sPlayerInput[nLocalPlayer].actions, scaleAdjust); UpdatePlayerSpriteAngle(pPlayer); } - - playerProcessHelpers(&pPlayer->q16angle, &pPlayer->angAdjust, &pPlayer->angTarget, &pPlayer->q16horiz, &pPlayer->horizAdjust, &pPlayer->horizTarget, scaleAdjust); } } @@ -221,6 +218,10 @@ void GameInterface::GetInput(InputPacket* packet, ControlInfo* const hidInput) if (PlayerList[nLocalPlayer].nHealth == 0) localInput.actions &= SB_OPEN; } + double const scaleAdjust = InputScale(); + Player* pPlayer = &PlayerList[nLocalPlayer]; + playerProcessHelpers(&pPlayer->q16angle, &pPlayer->angAdjust, &pPlayer->angTarget, &pPlayer->q16horiz, &pPlayer->horizAdjust, &pPlayer->horizTarget, scaleAdjust); + if (PlayerList[nLocalPlayer].nHealth == 0) { lPlayerYVel = 0; @@ -228,7 +229,7 @@ void GameInterface::GetInput(InputPacket* packet, ControlInfo* const hidInput) return; } - processMovement(hidInput); + processMovement(hidInput, scaleAdjust); if (packet) *packet = localInput; } diff --git a/source/exhumed/src/player.cpp b/source/exhumed/src/player.cpp index 6cfcd9b0e..6672b12d1 100644 --- a/source/exhumed/src/player.cpp +++ b/source/exhumed/src/player.cpp @@ -725,6 +725,8 @@ void FuncPlayer(int a, int nDamage, int nRun) short nSprite2; + PlayerList[nPlayer].angAdjust = 0; + PlayerList[nPlayer].horizAdjust = 0; PlayerList[nPlayer].opos = sprite[nPlayerSprite].pos; PlayerList[nPlayer].oq16angle = PlayerList[nPlayer].q16angle; PlayerList[nPlayer].oq16horiz = PlayerList[nPlayer].q16horiz; From 16cee1148b85fe52405cfdc5af08093485b87f97 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Fri, 25 Sep 2020 00:09:31 +1000 Subject: [PATCH 5/5] - Duke: Change a few ps[] to use the p alias available following changes in f4fff5ee3001177c9c6a0d76632c14dad6843dfe. --- source/games/duke/src/input.cpp | 10 +++++----- source/games/duke/src/player.cpp | 20 ++++++++++---------- source/games/duke/src/player_d.cpp | 4 ++-- source/games/duke/src/player_r.cpp | 4 ++-- source/games/duke/src/premap.cpp | 2 +- 5 files changed, 20 insertions(+), 20 deletions(-) diff --git a/source/games/duke/src/input.cpp b/source/games/duke/src/input.cpp index 6ed72818e..320325979 100644 --- a/source/games/duke/src/input.cpp +++ b/source/games/duke/src/input.cpp @@ -67,7 +67,7 @@ void hud_input(int snum) i = p->aim_mode; p->aim_mode = !PlayerInput(snum, SB_AIMMODE); if (p->aim_mode < i) - ps[snum].sync.actions |= SB_CENTERVIEW; + p->sync.actions |= SB_CENTERVIEW; // Backup weapon here as hud_input() is the first function where any one of the weapon variables can change. backupweapon(p); @@ -483,7 +483,7 @@ void hud_input(int snum) OnEvent(EVENT_TURNAROUND, -1, snum, -1); if (GetGameVarID(g_iReturnVarID, -1, snum) != 0) { - ps[snum].sync.actions &= ~SB_TURNAROUND; + p->sync.actions &= ~SB_TURNAROUND; } } } @@ -963,7 +963,7 @@ static void FinalizeInput(int playerNum, InputPacket& input, bool vehicle) loc.q16avel = input.q16avel = 0; } - if (p->newowner == -1 && !(ps[playerNum].sync.actions & SB_CENTERVIEW)) + if (p->newowner == -1 && !(p->sync.actions & SB_CENTERVIEW)) { loc.q16horz = clamp(loc.q16horz + input.q16horz, IntToFixed(-MAXHORIZVEL), IntToFixed(MAXHORIZVEL)); } @@ -1025,8 +1025,8 @@ static void GetInputInternal(InputPacket &locInput, ControlInfo* const hidInput) // Do these in the same order as the old code. calcviewpitch(p, scaleAdjust); processq16avel(p, &input.q16avel); - applylook(&p->q16ang, &p->q16look_ang, &p->q16rotscrnang, &p->one_eighty_count, input.q16avel, &ps[myconnectindex].sync.actions, scaleAdjust, p->crouch_toggle || ps[myconnectindex].sync.actions & SB_CROUCH); - sethorizon(&p->q16horiz, input.q16horz, &ps[myconnectindex].sync.actions, scaleAdjust); + applylook(&p->q16ang, &p->q16look_ang, &p->q16rotscrnang, &p->one_eighty_count, input.q16avel, &p->sync.actions, scaleAdjust, p->crouch_toggle || p->sync.actions & SB_CROUCH); + sethorizon(&p->q16horiz, input.q16horz, &p->sync.actions, scaleAdjust); } playerProcessHelpers(&p->q16ang, &p->angAdjust, &p->angTarget, &p->q16horiz, &p->horizAdjust, &p->horizTarget, scaleAdjust); diff --git a/source/games/duke/src/player.cpp b/source/games/duke/src/player.cpp index 779ab6274..94115c9d3 100644 --- a/source/games/duke/src/player.cpp +++ b/source/games/duke/src/player.cpp @@ -165,7 +165,7 @@ void forceplayerangle(int snum) n = 128 - (krand() & 255); playerAddHoriz(&p->q16horiz, &p->horizAdjust, 64); - ps[snum].sync.actions |= SB_CENTERVIEW; + p->sync.actions |= SB_CENTERVIEW; p->setlookang(n >> 1); p->setrotscrnang(n >> 1); } @@ -407,7 +407,7 @@ void dokneeattack(int snum, int pi, const std::initializer_list & respawnli { p->knee_incs++; playerAddHoriz(&p->q16horiz, &p->horizAdjust, -48); - ps[snum].sync.actions |= SB_CENTERVIEW; + p->sync.actions |= SB_CENTERVIEW; if (p->knee_incs > 15) { p->knee_incs = 0; @@ -961,11 +961,11 @@ void playerCenterView(int snum) OnEvent(EVENT_RETURNTOCENTER, p->i, snum, -1); if (GetGameVarID(g_iReturnVarID, p->i, snum) == 0) { - ps[snum].sync.actions |= SB_CENTERVIEW; + p->sync.actions |= SB_CENTERVIEW; } else { - ps[snum].sync.actions &= ~SB_CENTERVIEW; + p->sync.actions &= ~SB_CENTERVIEW; } } @@ -976,11 +976,11 @@ void playerLookUp(int snum, ESyncBits actions) OnEvent(EVENT_LOOKUP, p->i, snum, -1); if (GetGameVarID(g_iReturnVarID, p->i, snum) == 0) { - ps[snum].sync.actions |= SB_CENTERVIEW; + p->sync.actions |= SB_CENTERVIEW; } else { - ps[snum].sync.actions &= ~SB_LOOK_UP; + p->sync.actions &= ~SB_LOOK_UP; } } @@ -991,11 +991,11 @@ void playerLookDown(int snum, ESyncBits actions) OnEvent(EVENT_LOOKDOWN, p->i, snum, -1); if (GetGameVarID(g_iReturnVarID, p->i, snum) == 0) { - ps[snum].sync.actions |= SB_CENTERVIEW; + p->sync.actions |= SB_CENTERVIEW; } else { - ps[snum].sync.actions &= ~SB_LOOK_DOWN; + p->sync.actions &= ~SB_LOOK_DOWN; } } @@ -1006,7 +1006,7 @@ void playerAimUp(int snum, ESyncBits actions) OnEvent(EVENT_AIMUP, p->i, snum, -1); if (GetGameVarID(g_iReturnVarID, p->i, snum) != 0) { - ps[snum].sync.actions &= ~SB_AIM_UP; + p->sync.actions &= ~SB_AIM_UP; } } @@ -1017,7 +1017,7 @@ void playerAimDown(int snum, ESyncBits actions) OnEvent(EVENT_AIMDOWN, p->i, snum, -1); if (GetGameVarID(g_iReturnVarID, p->i, snum) != 0) { - ps[snum].sync.actions &= ~SB_AIM_DOWN; + p->sync.actions &= ~SB_AIM_DOWN; } } diff --git a/source/games/duke/src/player_d.cpp b/source/games/duke/src/player_d.cpp index cba8ba845..089870db4 100644 --- a/source/games/duke/src/player_d.cpp +++ b/source/games/duke/src/player_d.cpp @@ -2840,7 +2840,7 @@ void processinput_d(int snum) // may still be needed later for demo recording processq16avel(p, &sb_avel); - applylook(&p->q16ang, &p->q16look_ang, &p->q16rotscrnang, &p->one_eighty_count, sb_avel, &ps[snum].sync.actions, 1, p->crouch_toggle || actions & SB_CROUCH); + applylook(&p->q16ang, &p->q16look_ang, &p->q16rotscrnang, &p->one_eighty_count, sb_avel, &p->sync.actions, 1, p->crouch_toggle || actions & SB_CROUCH); } if (p->spritebridge == 0) @@ -3072,7 +3072,7 @@ HORIZONLY: if (cl_syncinput) { - sethorizon(&p->q16horiz, PlayerHorizon(snum), &ps[snum].sync.actions, 1); + sethorizon(&p->q16horiz, PlayerHorizon(snum), &p->sync.actions, 1); } checkhardlanding(p); diff --git a/source/games/duke/src/player_r.cpp b/source/games/duke/src/player_r.cpp index 50a54f2a7..6ef71f6e4 100644 --- a/source/games/duke/src/player_r.cpp +++ b/source/games/duke/src/player_r.cpp @@ -3741,7 +3741,7 @@ void processinput_r(int snum) // may still be needed later for demo recording processq16avel(p, &sb_avel); - applylook(&p->q16ang, &p->q16look_ang, &p->q16rotscrnang, &p->one_eighty_count, sb_avel, &ps[snum].sync.actions, 1, p->crouch_toggle || actions & SB_CROUCH); + applylook(&p->q16ang, &p->q16look_ang, &p->q16rotscrnang, &p->one_eighty_count, sb_avel, &p->sync.actions, 1, p->crouch_toggle || actions & SB_CROUCH); apply_seasick(p, 1); } @@ -4097,7 +4097,7 @@ HORIZONLY: if (cl_syncinput) { - sethorizon(&p->q16horiz, PlayerHorizon(snum), &ps[snum].sync.actions, 1); + sethorizon(&p->q16horiz, PlayerHorizon(snum), &p->sync.actions, 1); } checkhardlanding(p); diff --git a/source/games/duke/src/premap.cpp b/source/games/duke/src/premap.cpp index 4d6a3ab8b..4503b20a6 100644 --- a/source/games/duke/src/premap.cpp +++ b/source/games/duke/src/premap.cpp @@ -119,7 +119,7 @@ void resetplayerstats(int snum) p->bobcounter = 0; p->on_ground = 0; p->player_par = 0; - ps[snum].sync.actions |= SB_CENTERVIEW; + p->sync.actions |= SB_CENTERVIEW; p->airleft = 15*26; p->rapid_fire_hold = 0; p->toggle_key_flag = 0;