From 06a9a7b1a74a102dbf39f0d1d48ce899b34ac758 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Tue, 27 Sep 2022 15:11:28 +1000 Subject: [PATCH] - SW: Change all weapon recoils to work on pitch. --- source/games/sw/src/game.h | 2 +- source/games/sw/src/player.cpp | 4 ++-- source/games/sw/src/weapon.cpp | 2 +- source/games/sw/src/weapon.h | 13 +++++++------ wadsrc/static/zscript/games/sw/swgame.zs | 2 +- 5 files changed, 12 insertions(+), 11 deletions(-) diff --git a/source/games/sw/src/game.h b/source/games/sw/src/game.h index 2d5a92581..03c4c6171 100644 --- a/source/games/sw/src/game.h +++ b/source/games/sw/src/game.h @@ -590,7 +590,7 @@ struct PLAYER // variables that do not fit into sprite structure PlayerHorizon horizon; PlayerAngle angle; - int16_t recoil_amt; + double recoil_amt; int16_t recoil_speed; int16_t recoil_ndx; fixedhoriz recoil_ohorizoff, recoil_horizoff; diff --git a/source/games/sw/src/player.cpp b/source/games/sw/src/player.cpp index 5a1a53469..2e729e9d9 100644 --- a/source/games/sw/src/player.cpp +++ b/source/games/sw/src/player.cpp @@ -1731,7 +1731,7 @@ void DoPlayerBob(PLAYER* pp) // //--------------------------------------------------------------------------- -void DoPlayerBeginRecoil(PLAYER* pp, short pix_amt) +void DoPlayerBeginRecoil(PLAYER* pp, double pix_amt) { pp->Flags |= (PF_RECOIL); @@ -1761,7 +1761,7 @@ void DoPlayerRecoil(PLAYER* pp) // move pp->q16horiz up and down pp->recoil_ohorizoff = pp->recoil_horizoff; - pp->recoil_horizoff = pitchhoriz(HorizToPitch(pp->recoil_amt * BobVal(pp->recoil_ndx))); + pp->recoil_horizoff = pitchhoriz(pp->recoil_amt * BobVal(pp->recoil_ndx)); } //--------------------------------------------------------------------------- diff --git a/source/games/sw/src/weapon.cpp b/source/games/sw/src/weapon.cpp index 9333009e2..1e4750708 100644 --- a/source/games/sw/src/weapon.cpp +++ b/source/games/sw/src/weapon.cpp @@ -13928,7 +13928,7 @@ int InitNuke(PLAYER* pp) else return 0; - DoPlayerBeginRecoil(pp, ROCKET_RECOIL_AMT*12); + DoPlayerBeginRecoil(pp, NUKE_RECOIL_AMT); PlaySound(DIGI_RIOTFIRE, pp, v3df_dontpan|v3df_doppler); diff --git a/source/games/sw/src/weapon.h b/source/games/sw/src/weapon.h index 3f0a1f68d..29916dd2c 100644 --- a/source/games/sw/src/weapon.h +++ b/source/games/sw/src/weapon.h @@ -81,7 +81,7 @@ extern int LoWangsQueueHead; extern TObjPtr LoWangsQueue[MAX_LOWANGS_QUEUE]; void ChangeState(DSWActor* actor, STATE* statep); -void DoPlayerBeginRecoil(PLAYER* pp, short pix_amt); +void DoPlayerBeginRecoil(PLAYER* pp, double pix_amt); SECTOR_OBJECT* DetectSectorObject(sectortype*); SECTOR_OBJECT* DetectSectorObjectByWall(walltype*); void ScaleSpriteVector(DSWActor* actor, int scale); @@ -137,11 +137,12 @@ constexpr double SKEL_ELECTRO_VELOCITY = (850 / 16.); constexpr double COOLG_FIRE_VELOCITY = (400 / 16.); constexpr int GORO_FIREBALL_VELOCITY = 50; -#define GRENADE_RECOIL_AMT (12) -#define ROCKET_RECOIL_AMT (7) -#define RAIL_RECOIL_AMT (7) -#define SHOTGUN_RECOIL_AMT (12) -//#define MICRO_RECOIL_AMT (15) +// Recoil speeds in pitch/degrees. +constexpr double GRENADE_RECOIL_AMT = 5.356; +constexpr double ROCKET_RECOIL_AMT = 3.13; +constexpr double RAIL_RECOIL_AMT = 3.13; +constexpr double SHOTGUN_RECOIL_AMT = 5.356; +constexpr double NUKE_RECOIL_AMT = 33.275; // Damage amounts that determine the type of player death // The standard flip over death is default diff --git a/wadsrc/static/zscript/games/sw/swgame.zs b/wadsrc/static/zscript/games/sw/swgame.zs index af5253cac..810163041 100644 --- a/wadsrc/static/zscript/games/sw/swgame.zs +++ b/wadsrc/static/zscript/games/sw/swgame.zs @@ -206,7 +206,7 @@ struct SWPlayer native //native int /*cursectnum,*/lastcursectnum; // variables that do not fit into sprite structure - native int16 recoil_amt; + native double recoil_amt; native int16 recoil_speed; native int16 recoil_ndx; native int recoil_horizoff;