From 7fce0ed7ae6f60106e7ec06a819b9d9dc69fceed Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 4 Feb 2022 17:36:38 +0100 Subject: [PATCH] - renamed truefz and truecz --- source/games/duke/src/actors.cpp | 10 +++++----- source/games/duke/src/game_misc.cpp | 2 +- source/games/duke/src/gameexec.cpp | 8 ++++---- source/games/duke/src/player_d.cpp | 6 +++--- source/games/duke/src/player_r.cpp | 8 ++++---- source/games/duke/src/render.cpp | 4 ++-- source/games/duke/src/savegame.cpp | 4 ++-- source/games/duke/src/types.h | 2 +- source/games/duke/src/vmexports.cpp | 6 +++--- wadsrc/static/zscript/games/duke/dukegame.zs | 2 +- 10 files changed, 26 insertions(+), 26 deletions(-) diff --git a/source/games/duke/src/actors.cpp b/source/games/duke/src/actors.cpp index f9b96c5b5..c89e1526a 100644 --- a/source/games/duke/src/actors.cpp +++ b/source/games/duke/src/actors.cpp @@ -3839,8 +3839,8 @@ void handle_se17(DDukeActor* actor) int p = act1->spr.yvel; if (numplayers < 2) ps[p].opos.Z = ps[p].pos.Z; ps[p].pos.Z += q; - ps[p].truefz += q; - ps[p].truecz += q; + ps[p].__int_truefz += q; + ps[p].__int_truecz += q; if (numplayers > 1) ps[p].opos.Z = ps[p].pos.Z; } if (act1->spr.statnum != STAT_EFFECTOR) @@ -3900,8 +3900,8 @@ void handle_se17(DDukeActor* actor) ps[p].bobpos.Y = ps[p].opos.Y = ps[p].pos.Y; ps[p].opos.Z = ps[p].pos.Z; - ps[p].truefz = act3->actor_int_floorz(); - ps[p].truecz = act3->actor_int_ceilingz(); + ps[p].__int_truefz = act3->actor_int_floorz(); + ps[p].__int_truecz = act3->actor_int_ceilingz(); ps[p].bobcounter = 0; ChangeActorSect(act3, act2->sector()); @@ -4420,7 +4420,7 @@ void handle_se24(DDukeActor *actor, bool scroll, int shift) { if (ps[p].cursector == actor->sector() && ps[p].on_ground) { - if (abs(ps[p].pos.Z - ps[p].truefz) < gs.playerheight + (9 << 8)) + if (abs(ps[p].pos.Z - ps[p].__int_truefz) < gs.playerheight + (9 << 8)) { ps[p].fric.X += x << 3; ps[p].fric.Y += y << 3; diff --git a/source/games/duke/src/game_misc.cpp b/source/games/duke/src/game_misc.cpp index 0310a6403..7cbd7d6b3 100644 --- a/source/games/duke/src/game_misc.cpp +++ b/source/games/duke/src/game_misc.cpp @@ -577,7 +577,7 @@ bool GameInterface::DrawAutomapPlayer(int mx, int my, int cposx, int cposy, int else i = TILE_APLAYERTOP; - j = abs(pp.truefz - pp.pos.Z) >> 8; + j = abs(pp.__int_truefz - pp.pos.Z) >> 8; j = czoom * (act->spr.yrepeat + j); if (j < 22000) j = 22000; diff --git a/source/games/duke/src/gameexec.cpp b/source/games/duke/src/gameexec.cpp index e7511ff00..255cd2348 100644 --- a/source/games/duke/src/gameexec.cpp +++ b/source/games/duke/src/gameexec.cpp @@ -423,13 +423,13 @@ void DoPlayer(bool bSet, int lVar1, int lLabelID, int lVar2, DDukeActor* sActor, break; case PLAYER_TRUEFZ: - if (bSet) ps[iPlayer].truefz = lValue; - else SetGameVarID(lVar2, ps[iPlayer].truefz, sActor, sPlayer); + if (bSet) ps[iPlayer].__int_truefz = lValue; + else SetGameVarID(lVar2, ps[iPlayer].__int_truefz, sActor, sPlayer); break; case PLAYER_TRUECZ: - if (bSet) ps[iPlayer].truecz = lValue; - else SetGameVarID(lVar2, ps[iPlayer].truecz, sActor, sPlayer); + if (bSet) ps[iPlayer].__int_truecz = lValue; + else SetGameVarID(lVar2, ps[iPlayer].__int_truecz, sActor, sPlayer); break; case PLAYER_PLAYER_PAR: diff --git a/source/games/duke/src/player_d.cpp b/source/games/duke/src/player_d.cpp index f1afe9290..3fa6814a6 100644 --- a/source/games/duke/src/player_d.cpp +++ b/source/games/duke/src/player_d.cpp @@ -2740,8 +2740,8 @@ void processinput_d(int snum) j = getflorzofslopeptr(psectp, p->pos.X, p->pos.Y); - p->truefz = j; - p->truecz = getceilzofslopeptr(psectp, p->pos.X, p->pos.Y); + p->__int_truefz = j; + p->__int_truecz = getceilzofslopeptr(psectp, p->pos.X, p->pos.Y); truefdist = abs(p->pos.Z - j); if (clz.type == kHitSector && psectlotag == 1 && truefdist > gs.playerheight + (16 << 8)) @@ -2761,7 +2761,7 @@ void processinput_d(int snum) if (chz.actor()->spr.statnum == 1 && chz.actor()->spr.extra >= 0) { chz.setNone(); - cz = p->truecz; + cz = p->__int_truecz; } } diff --git a/source/games/duke/src/player_r.cpp b/source/games/duke/src/player_r.cpp index 47cdf5a65..adc73372a 100644 --- a/source/games/duke/src/player_r.cpp +++ b/source/games/duke/src/player_r.cpp @@ -3410,8 +3410,8 @@ void processinput_r(int snum) tempfz = getflorzofslopeptr(psectp, p->pos.X, p->pos.Y); } - p->truefz = tempfz; - p->truecz = getceilzofslopeptr(psectp, p->pos.X, p->pos.Y); + p->__int_truefz = tempfz; + p->__int_truecz = getceilzofslopeptr(psectp, p->pos.X, p->pos.Y); truefdist = abs(p->pos.Z - tempfz); if (clz.type == kHitSector && psectlotag == 1 && truefdist > gs.playerheight + (16 << 8)) @@ -3431,7 +3431,7 @@ void processinput_r(int snum) if (chz.actor()->spr.statnum == 1 && chz.actor()->spr.extra >= 0) { chz.setNone(); - cz = p->truecz; + cz = p->__int_truecz; } else if (chz.actor()->spr.picnum == LADDER) { @@ -3441,7 +3441,7 @@ void processinput_r(int snum) if ((actions & SB_JUMP) && !p->OnMotorcycle) { chz.setNone(); - cz = p->truecz; + cz = p->__int_truecz; } } else diff --git a/source/games/duke/src/render.cpp b/source/games/duke/src/render.cpp index 630ebf271..685f546b4 100644 --- a/source/games/duke/src/render.cpp +++ b/source/games/duke/src/render.cpp @@ -368,8 +368,8 @@ void displayrooms(int snum, double smoothratio, bool sceneonly) else if (p->spritebridge == 0 && p->newOwner == nullptr) { - if (cposz < (p->truecz + (4 << 8))) cposz = cz + (4 << 8); - else if (cposz > (p->truefz - (4 << 8))) cposz = fz - (4 << 8); + if (cposz < (p->__int_truecz + (4 << 8))) cposz = cz + (4 << 8); + else if (cposz > (p->__int_truefz - (4 << 8))) cposz = fz - (4 << 8); } if (sect) diff --git a/source/games/duke/src/savegame.cpp b/source/games/duke/src/savegame.cpp index 047397e06..3926e2224 100644 --- a/source/games/duke/src/savegame.cpp +++ b/source/games/duke/src/savegame.cpp @@ -128,8 +128,8 @@ FSerializer& Serialize(FSerializer& arc, const char* keyname, player_struct& w, ("posyv", w.vel.Y) ("poszv", w.vel.Z) ("last_pissed_time", w.last_pissed_time) - ("truefz", w.truefz) - ("truecz", w.truecz) + ("truefz", w.__int_truefz) + ("truecz", w.__int_truecz) ("player_par", w.player_par) ("visibility", w.visibility) ("bobcounter", w.bobcounter) diff --git a/source/games/duke/src/types.h b/source/games/duke/src/types.h index c5947fff3..44b4637f8 100644 --- a/source/games/duke/src/types.h +++ b/source/games/duke/src/types.h @@ -238,7 +238,7 @@ struct player_struct int numloogs, oloogcnt, loogcnt; int invdisptime; int pyoff, opyoff; - int last_pissed_time, truefz, truecz; + int last_pissed_time, __int_truefz, __int_truecz; int player_par, visibility; int bobcounter; int randomflamex, crack_time; diff --git a/source/games/duke/src/vmexports.cpp b/source/games/duke/src/vmexports.cpp index 53d8327eb..980d61378 100644 --- a/source/games/duke/src/vmexports.cpp +++ b/source/games/duke/src/vmexports.cpp @@ -221,8 +221,8 @@ DEFINE_FIELD_X(DukePlayer, player_struct, opyoff) //DEFINE_FIELD_X(DukePlayer, player_struct, posyv) //DEFINE_FIELD_X(DukePlayer, player_struct, poszv) DEFINE_FIELD_X(DukePlayer, player_struct, last_pissed_time) -DEFINE_FIELD_X(DukePlayer, player_struct, truefz) -DEFINE_FIELD_X(DukePlayer, player_struct, truecz) +//DEFINE_FIELD_X(DukePlayer, player_struct, truefz) +//DEFINE_FIELD_X(DukePlayer, player_struct, truecz) DEFINE_FIELD_X(DukePlayer, player_struct, player_par) DEFINE_FIELD_X(DukePlayer, player_struct, visibility) DEFINE_FIELD_X(DukePlayer, player_struct, bobcounter) @@ -432,4 +432,4 @@ DEFINE_PROPERTY(spriteset, Ssssssssssssssssssss, DukeActor) } -END_DUKE_NS \ No newline at end of file +END_DUKE_NS diff --git a/wadsrc/static/zscript/games/duke/dukegame.zs b/wadsrc/static/zscript/games/duke/dukegame.zs index 381433138..16bd09b90 100644 --- a/wadsrc/static/zscript/games/duke/dukegame.zs +++ b/wadsrc/static/zscript/games/duke/dukegame.zs @@ -160,7 +160,7 @@ struct DukePlayer native int numloogs, loogcnt; native int invdisptime; native int pyoff, opyoff; - native int last_pissed_time, truefz, truecz; + native int last_pissed_time;//, truefz, truecz; native int player_par, visibility; native int bobcounter; native int randomflamex, crack_time;