From cf68018909906c51f6c2ec180649417c6e93231f Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Thu, 30 Dec 2021 17:37:47 +1100 Subject: [PATCH] - SW: Replace `PLAYERstruct` `RevolveY` with `Revolve.Y` calls. --- source/games/sw/src/game.h | 1 - source/games/sw/src/player.cpp | 2 +- source/games/sw/src/save.cpp | 2 +- source/games/sw/src/track.cpp | 8 ++++---- wadsrc/static/zscript/games/sw/swgame.zs | 1 - 5 files changed, 6 insertions(+), 8 deletions(-) diff --git a/source/games/sw/src/game.h b/source/games/sw/src/game.h index 95811a1c0..a86617b03 100644 --- a/source/games/sw/src/game.h +++ b/source/games/sw/src/game.h @@ -664,7 +664,6 @@ struct PLAYERstruct int oldposx,oldposy,oldposz; vec3_t Revolve; - int RevolveY; int16_t RevolveDeltaAng; binangle RevolveAng; diff --git a/source/games/sw/src/player.cpp b/source/games/sw/src/player.cpp index ed82a5137..11bb1a3f8 100644 --- a/source/games/sw/src/player.cpp +++ b/source/games/sw/src/player.cpp @@ -7114,7 +7114,7 @@ DEFINE_FIELD_X(SWPlayer, PLAYERstruct, oldposx) DEFINE_FIELD_X(SWPlayer, PLAYERstruct, oldposy) DEFINE_FIELD_X(SWPlayer, PLAYERstruct, oldposz) //DEFINE_FIELD_X(SWPlayer, PLAYERstruct, Revolve.X) -DEFINE_FIELD_X(SWPlayer, PLAYERstruct, RevolveY) +//DEFINE_FIELD_X(SWPlayer, PLAYERstruct, Revolve.Y) DEFINE_FIELD_X(SWPlayer, PLAYERstruct, RevolveDeltaAng) DEFINE_FIELD_X(SWPlayer, PLAYERstruct, pnum) DEFINE_FIELD_X(SWPlayer, PLAYERstruct, LadderSector) diff --git a/source/games/sw/src/save.cpp b/source/games/sw/src/save.cpp index 86bfc3fc9..a183a65b8 100644 --- a/source/games/sw/src/save.cpp +++ b/source/games/sw/src/save.cpp @@ -493,7 +493,7 @@ FSerializer& Serialize(FSerializer& arc, const char* keyname, PLAYERstruct& w, P ("oldposy", w.oldposy) ("oldposz", w.oldposz) ("revolvex", w.Revolve.X) - ("revolvey", w.RevolveY) + ("revolvey", w.Revolve.Y) ("RevolveDeltaAng", w.RevolveDeltaAng) ("RevolveAng", w.RevolveAng) ("PlayerSprite", w.actor) diff --git a/source/games/sw/src/track.cpp b/source/games/sw/src/track.cpp index 1c4fce8d1..1af7a3a8e 100644 --- a/source/games/sw/src/track.cpp +++ b/source/games/sw/src/track.cpp @@ -734,7 +734,7 @@ void SectorObjectSetupBounds(SECTOR_OBJECTp sop) { pp->RevolveAng = pp->angle.ang; pp->Revolve.X = pp->pos.X; - pp->RevolveY = pp->posy; + pp->Revolve.Y = pp->pos.Y; pp->RevolveDeltaAng = 0; pp->Flags |= (PF_PLAYER_RIDING); @@ -1525,7 +1525,7 @@ void MovePlayer(PLAYERp pp, SECTOR_OBJECTp sop, int nx, int ny) pp->RevolveAng = pp->angle.ang; pp->Revolve.X = pp->pos.X; - pp->RevolveY = pp->pos.Y; + pp->Revolve.Y = pp->pos.Y; // set the delta angle to 0 when moving pp->RevolveDeltaAng = 0; @@ -1549,7 +1549,7 @@ void MovePlayer(PLAYERp pp, SECTOR_OBJECTp sop, int nx, int ny) // know where he was last pp->RevolveAng = pp->angle.ang; pp->Revolve.X = pp->pos.X; - pp->RevolveY = pp->pos.Y; + pp->Revolve.Y = pp->pos.Y; // set the delta angle to 0 when moving pp->RevolveDeltaAng = 0; @@ -1560,7 +1560,7 @@ void MovePlayer(PLAYERp pp, SECTOR_OBJECTp sop, int nx, int ny) // Move saved x&y variables pp->Revolve.X += nx; - pp->RevolveY += ny; + pp->Revolve.Y += ny; // Last known angle is now adjusted by the delta angle pp->RevolveAng = pp->angle.ang - buildang(pp->RevolveDeltaAng); diff --git a/wadsrc/static/zscript/games/sw/swgame.zs b/wadsrc/static/zscript/games/sw/swgame.zs index adb9ec4fc..cf5caaeea 100644 --- a/wadsrc/static/zscript/games/sw/swgame.zs +++ b/wadsrc/static/zscript/games/sw/swgame.zs @@ -220,7 +220,6 @@ struct SWPlayer native native int recoil_horizoff; native int oldposx,oldposy,oldposz; - native int RevolveY; native int16 RevolveDeltaAng; native int16 pnum; // carry along the player number