From 2d6bc783c4837e167e8b76f64230f901adbcb8b3 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Thu, 30 Dec 2021 22:39:32 +1100 Subject: [PATCH] - Duke: Replace `player_struct` `exity` with `exit.Y` calls. --- source/games/duke/src/gameexec.cpp | 4 ++-- source/games/duke/src/player.cpp | 2 +- source/games/duke/src/premap.cpp | 2 +- source/games/duke/src/premap_d.cpp | 2 +- source/games/duke/src/premap_r.cpp | 2 +- source/games/duke/src/savegame.cpp | 2 +- source/games/duke/src/types.h | 2 +- wadsrc/static/zscript/games/duke/dukegame.zs | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/source/games/duke/src/gameexec.cpp b/source/games/duke/src/gameexec.cpp index 99e283554..e8b86c6d3 100644 --- a/source/games/duke/src/gameexec.cpp +++ b/source/games/duke/src/gameexec.cpp @@ -301,8 +301,8 @@ void DoPlayer(bool bSet, int lVar1, int lLabelID, int lVar2, DDukeActor* sActor, break; case PLAYER_EXITY: - if (bSet) ps[iPlayer].exity = lValue; - else SetGameVarID(lVar2, ps[iPlayer].exity, sActor, sPlayer); + if (bSet) ps[iPlayer].exit.Y = lValue; + else SetGameVarID(lVar2, ps[iPlayer].exit.Y, sActor, sPlayer); break; case PLAYER_LOOGIEX: diff --git a/source/games/duke/src/player.cpp b/source/games/duke/src/player.cpp index 6647c1abc..64611d35e 100644 --- a/source/games/duke/src/player.cpp +++ b/source/games/duke/src/player.cpp @@ -1073,7 +1073,7 @@ DEFINE_FIELD_X(DukePlayer, player_struct, hard_landing) DEFINE_FIELD_X(DukePlayer, player_struct, ohard_landing) DEFINE_FIELD_X(DukePlayer, player_struct, psectlotag) //DEFINE_FIELD_X(DukePlayer, player_struct, exitx) -DEFINE_FIELD_X(DukePlayer, player_struct, exity) +//DEFINE_FIELD_X(DukePlayer, player_struct, exity) DEFINE_FIELD_X(DukePlayer, player_struct, loogiex) DEFINE_FIELD_X(DukePlayer, player_struct, loogiey) DEFINE_FIELD_X(DukePlayer, player_struct, numloogs) diff --git a/source/games/duke/src/premap.cpp b/source/games/duke/src/premap.cpp index 3c16b4499..886b4bce3 100644 --- a/source/games/duke/src/premap.cpp +++ b/source/games/duke/src/premap.cpp @@ -717,7 +717,7 @@ void prelevel_common(int g) if (sectp->lotag == -1) { ps[0].exit.X = sectp->firstWall()->pos.X; - ps[0].exity = sectp->firstWall()->pos.Y; + ps[0].exit.Y = sectp->firstWall()->pos.Y; continue; } } diff --git a/source/games/duke/src/premap_d.cpp b/source/games/duke/src/premap_d.cpp index d8cc51b99..16f80fe3c 100644 --- a/source/games/duke/src/premap_d.cpp +++ b/source/games/duke/src/premap_d.cpp @@ -290,7 +290,7 @@ void prelevel_d(int g, TArray& actors) if (ac->spr.lotag == -1 && (ac->spr.cstat & CSTAT_SPRITE_ALIGNMENT_WALL)) { ps[0].exit.X = ac->spr.pos.X; - ps[0].exity = ac->spr.pos.Y; + ps[0].exit.Y = ac->spr.pos.Y; } else switch (ac->spr.picnum) { diff --git a/source/games/duke/src/premap_r.cpp b/source/games/duke/src/premap_r.cpp index 0ef79f677..8f9b49e47 100644 --- a/source/games/duke/src/premap_r.cpp +++ b/source/games/duke/src/premap_r.cpp @@ -534,7 +534,7 @@ void prelevel_r(int g, TArray& actors) if (ac->spr.lotag == -1 && (ac->spr.cstat & CSTAT_SPRITE_ALIGNMENT_WALL)) { ps[0].exit.X = ac->spr.pos.X; - ps[0].exity = ac->spr.pos.Y; + ps[0].exit.Y = ac->spr.pos.Y; } else switch (ac->spr.picnum) { diff --git a/source/games/duke/src/savegame.cpp b/source/games/duke/src/savegame.cpp index 1bf6c7a5f..819c84039 100644 --- a/source/games/duke/src/savegame.cpp +++ b/source/games/duke/src/savegame.cpp @@ -117,7 +117,7 @@ FSerializer& Serialize(FSerializer& arc, const char* keyname, player_struct& w, ("fricx", w.fric.X) ("fricy", w.fric.Y) ("exitx", w.exit.X) - ("exity", w.exity) + ("exity", w.exit.Y) ("numloogs", w.numloogs) ("loogcnt", w.loogcnt) .Array("loogiex", w.loogiex, w.numloogs) diff --git a/source/games/duke/src/types.h b/source/games/duke/src/types.h index c20e9c301..cc72bebb4 100644 --- a/source/games/duke/src/types.h +++ b/source/games/duke/src/types.h @@ -201,7 +201,7 @@ struct player_struct short psectlotag; // From here on it is unaltered from JFDuke with the exception of a few fields that are no longer needed and were removed. - int exity, loogiex[64], loogiey[64], numloogs, loogcnt; + int loogiex[64], loogiey[64], numloogs, loogcnt; int invdisptime; int bobposx, bobposy, pyoff, opyoff; int last_pissed_time, truefz, truecz; diff --git a/wadsrc/static/zscript/games/duke/dukegame.zs b/wadsrc/static/zscript/games/duke/dukegame.zs index 70ee8bfae..acb54eb95 100644 --- a/wadsrc/static/zscript/games/duke/dukegame.zs +++ b/wadsrc/static/zscript/games/duke/dukegame.zs @@ -150,7 +150,7 @@ struct DukePlayer native int16 psectlotag; // From here on it is unaltered from JFDuke with the exception of a few fields that are no longer needed and were removed. - native int exity, loogiex[64], loogiey[64], numloogs, loogcnt; + native int loogiex[64], loogiey[64], numloogs, loogcnt; native int invdisptime; native int bobposx, bobposy, pyoff, opyoff; native int last_pissed_time, truefz, truecz;