From c3e5cf322e935d4291a1e0f60d2a36deb2048c55 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 19 Apr 2021 00:24:25 +0200 Subject: [PATCH] - SW: cleaned up the depth variable handling in SECT_USER which was endian dependent, including the savegame handler --- source/games/sw/src/actor.cpp | 4 ++-- source/games/sw/src/coolg.cpp | 4 ++-- source/games/sw/src/coolie.cpp | 2 +- source/games/sw/src/eel.cpp | 4 ++-- source/games/sw/src/game.h | 6 +---- source/games/sw/src/hornet.cpp | 4 ++-- source/games/sw/src/jweapon.cpp | 8 +++---- source/games/sw/src/player.cpp | 4 ++-- source/games/sw/src/rooms.cpp | 4 ++-- source/games/sw/src/save.cpp | 2 +- source/games/sw/src/sprite.cpp | 6 ++--- source/games/sw/src/track.cpp | 39 +++++---------------------------- source/games/sw/src/weapon.cpp | 12 +++++----- 13 files changed, 34 insertions(+), 65 deletions(-) diff --git a/source/games/sw/src/actor.cpp b/source/games/sw/src/actor.cpp index 65b017abb..79f8601e5 100644 --- a/source/games/sw/src/actor.cpp +++ b/source/games/sw/src/actor.cpp @@ -455,7 +455,7 @@ DoActorDebris(short SpriteNum) } } - if (SectUser[sp->sectnum].Data() && SectUser[sp->sectnum]->depth > 10) // JBF: added null check + if (SectUser[sp->sectnum].Data() && FixedToInt(SectUser[sp->sectnum]->depth_fixed) > 10) // JBF: added null check { u->WaitTics = (u->WaitTics + (ACTORMOVETICS << 3)) & 1023; //sp->z = Z(2) + u->loz + ((Z(4) * (int) bsin(u->WaitTics)) >> 14); @@ -540,7 +540,7 @@ KeepActorOnFloor(short SpriteNum) return; if (u->lo_sectp && SectUser[u->lo_sectp - sector].Data()) - depth = SectUser[u->lo_sectp - sector]->depth; + depth = FixedToInt(SectUser[u->lo_sectp - sector]->depth_fixed); else depth = 0; diff --git a/source/games/sw/src/coolg.cpp b/source/games/sw/src/coolg.cpp index 6ae1b33cf..d4ee8cd8b 100644 --- a/source/games/sw/src/coolg.cpp +++ b/source/games/sw/src/coolg.cpp @@ -668,8 +668,8 @@ int DoCoolgMatchPlayerZ(short SpriteNum) hiz = u->hiz; // adjust loz/hiz for water depth - if (u->lo_sectp && SectUser[u->lo_sectp - sector].Data() && SectUser[u->lo_sectp - sector]->depth) - loz -= Z(SectUser[u->lo_sectp - sector]->depth) - Z(8); + if (u->lo_sectp && SectUser[u->lo_sectp - sector].Data() && FixedToInt(SectUser[u->lo_sectp - sector]->depth_fixed)) + loz -= Z(FixedToInt(SectUser[u->lo_sectp - sector]->depth_fixed)) - Z(8); // lower bound if (u->lo_sp) diff --git a/source/games/sw/src/coolie.cpp b/source/games/sw/src/coolie.cpp index cdb011e90..ddfe249c6 100644 --- a/source/games/sw/src/coolie.cpp +++ b/source/games/sw/src/coolie.cpp @@ -478,7 +478,7 @@ void EnemyDefaults(short SpriteNum, ACTOR_ACTION_SETp action, PERSONALITYp perso if (SectUser[sectnum].Data() && TEST(u->lo_sectp->extra, SECTFX_SINK)) { - depth = SectUser[sectnum]->depth; + depth = FixedToInt(SectUser[sectnum]->depth_fixed); } else { diff --git a/source/games/sw/src/eel.cpp b/source/games/sw/src/eel.cpp index fa6900585..ab96b766f 100644 --- a/source/games/sw/src/eel.cpp +++ b/source/games/sw/src/eel.cpp @@ -504,8 +504,8 @@ int DoEelMatchPlayerZ(short SpriteNum) hiz = u->hiz; // adjust loz/hiz for water depth - if (u->lo_sectp && SectUser[u->lo_sectp - sector].Data() && SectUser[u->lo_sectp - sector]->depth) - loz -= Z(SectUser[u->lo_sectp - sector]->depth) - Z(8); + if (u->lo_sectp && SectUser[u->lo_sectp - sector].Data() && FixedToInt(SectUser[u->lo_sectp - sector]->depth_fixed)) + loz -= Z(FixedToInt(SectUser[u->lo_sectp - sector]->depth_fixed)) - Z(8); // lower bound if (u->lo_sp && u->tgt_sp == u->hi_sp) diff --git a/source/games/sw/src/game.h b/source/games/sw/src/game.h index bda4566a1..804525de2 100644 --- a/source/games/sw/src/game.h +++ b/source/games/sw/src/game.h @@ -1552,11 +1552,7 @@ typedef struct SECT_USER { SECT_USER() { memset(this, 0, sizeof(*this)); } int dist, flags; - union - { - struct { short depth_fract, depth; }; // do NOT change this, doubles as a long FIXED point number - int depth_fixed; - }; + int depth_fixed; short stag, // ST? tag number - for certain things it helps to know it ang, height, diff --git a/source/games/sw/src/hornet.cpp b/source/games/sw/src/hornet.cpp index a5fa6bd85..6a7230b30 100644 --- a/source/games/sw/src/hornet.cpp +++ b/source/games/sw/src/hornet.cpp @@ -380,8 +380,8 @@ int DoHornetMatchPlayerZ(short SpriteNum) hiz = u->hiz; // adjust loz/hiz for water depth - if (u->lo_sectp && SectUser[u->lo_sectp - sector].Data() && SectUser[u->lo_sectp - sector]->depth) - loz -= Z(SectUser[u->lo_sectp - sector]->depth) - Z(8); + if (u->lo_sectp && SectUser[u->lo_sectp - sector].Data() && FixedToInt(SectUser[u->lo_sectp - sector]->depth_fixed)) + loz -= Z(FixedToInt(SectUser[u->lo_sectp - sector]->depth_fixed)) - Z(8); // lower bound if (u->lo_sp) diff --git a/source/games/sw/src/jweapon.cpp b/source/games/sw/src/jweapon.cpp index ee357d651..70ad98837 100644 --- a/source/games/sw/src/jweapon.cpp +++ b/source/games/sw/src/jweapon.cpp @@ -515,7 +515,7 @@ DoBloodSpray(int16_t Weapon) SET(u->Flags, SPR_BOUNCE); // no bouncing // underwater - if (u->lo_sectp && SectUser[sp->sectnum].Data() && SectUser[sp->sectnum]->depth) + if (u->lo_sectp && SectUser[sp->sectnum].Data() && FixedToInt(SectUser[sp->sectnum]->depth_fixed)) SET(u->Flags, SPR_BOUNCE); // no bouncing on // shallow water @@ -739,7 +739,7 @@ DoPhosphorus(int16_t Weapon) SET(u->Flags, SPR_BOUNCE); // no bouncing // underwater - if (u->lo_sectp && SectUser[sp->sectnum].Data() && SectUser[sp->sectnum]->depth) + if (u->lo_sectp && SectUser[sp->sectnum].Data() && FixedToInt(SectUser[sp->sectnum]->depth_fixed)) SET(u->Flags, SPR_BOUNCE); // no bouncing on // shallow water @@ -976,7 +976,7 @@ DoChemBomb(int16_t Weapon) SET(u->Flags, SPR_BOUNCE); // no bouncing // underwater - if (u->lo_sectp && SectUser[sp->sectnum].Data() && SectUser[sp->sectnum]->depth) + if (u->lo_sectp && SectUser[sp->sectnum].Data() && FixedToInt(SectUser[sp->sectnum]->depth_fixed)) SET(u->Flags, SPR_BOUNCE); // no bouncing on // shallow water @@ -1210,7 +1210,7 @@ DoCaltrops(int16_t Weapon) SET(u->Flags, SPR_BOUNCE); // no bouncing // underwater - if (u->lo_sectp && SectUser[sp->sectnum].Data() && SectUser[sp->sectnum]->depth) + if (u->lo_sectp && SectUser[sp->sectnum].Data() && FixedToInt(SectUser[sp->sectnum]->depth_fixed)) SET(u->Flags, SPR_BOUNCE); // no bouncing on // shallow water diff --git a/source/games/sw/src/player.cpp b/source/games/sw/src/player.cpp index 6ef06080d..90367ccdb 100644 --- a/source/games/sw/src/player.cpp +++ b/source/games/sw/src/player.cpp @@ -1462,8 +1462,8 @@ DoPlayerSetWadeDepth(PLAYERp pp) if (TEST(sectp->extra, SECTFX_SINK)) { // make sure your even in the water - if (pp->posz + PLAYER_HEIGHT > pp->lo_sectp->floorz - Z(SectUser[pp->lo_sectp - sector]->depth)) - pp->WadeDepth = SectUser[pp->lo_sectp - sector]->depth; + if (pp->posz + PLAYER_HEIGHT > pp->lo_sectp->floorz - Z(FixedToInt(SectUser[pp->lo_sectp - sector]->depth_fixed))) + pp->WadeDepth = FixedToInt(SectUser[pp->lo_sectp - sector]->depth_fixed); } } diff --git a/source/games/sw/src/rooms.cpp b/source/games/sw/src/rooms.cpp index 0ee79b5ba..e0684d681 100644 --- a/source/games/sw/src/rooms.cpp +++ b/source/games/sw/src/rooms.cpp @@ -492,8 +492,8 @@ void WaterAdjust(short florhit, int32_t* loz) { SECT_USERp sectu = SectUser[NORM_SECTOR(florhit)].Data(); - if (sectu && sectu->depth) - *loz += Z(sectu->depth); + if (sectu && FixedToInt(sectu->depth_fixed)) + *loz += Z(FixedToInt(sectu->depth_fixed)); } break; case HIT_SPRITE: diff --git a/source/games/sw/src/save.cpp b/source/games/sw/src/save.cpp index bd9c09cf6..8d237682b 100644 --- a/source/games/sw/src/save.cpp +++ b/source/games/sw/src/save.cpp @@ -801,7 +801,7 @@ FSerializer& Serialize(FSerializer& arc, const char* keyname, SECT_USER& w, SECT { arc("dist", w.dist, def->dist) ("flags", w.flags, def->flags) - ("depth_fract", w.depth_fract, def->depth_fract) + ("depth", w.depth_fixed, def->depth_fixed) ("stag", w.stag, def->stag) ("ang", w.ang, def->ang) ("height", w.height, def->height) diff --git a/source/games/sw/src/sprite.cpp b/source/games/sw/src/sprite.cpp index dabedb11a..c35ad0e52 100644 --- a/source/games/sw/src/sprite.cpp +++ b/source/games/sw/src/sprite.cpp @@ -1984,7 +1984,7 @@ SpriteSetup(void) if (TEST(bit, SECTFX_SINK)) { sectu = GetSectUser(sp->sectnum); - sectu->depth = sp->lotag; + sectu->depth_fixed = IntToFixed(sp->lotag); KillSprite(SpriteNum); } else if (TEST(bit, SECTFX_OPERATIONAL)) @@ -7155,8 +7155,8 @@ MissileWaterAdjust(short SpriteNum) if (u->lo_sectp) { SECT_USERp sectu = SectUser[u->lo_sectp - sector].Data(); - if (sectu && sectu->depth) - u->loz -= Z(sectu->depth); + if (sectu && FixedToInt(sectu->depth_fixed)) + u->loz -= Z(FixedToInt(sectu->depth_fixed)); } return 0; } diff --git a/source/games/sw/src/track.cpp b/source/games/sw/src/track.cpp index ed2d80f33..fdb44f96e 100644 --- a/source/games/sw/src/track.cpp +++ b/source/games/sw/src/track.cpp @@ -834,7 +834,7 @@ SectorObjectSetupBounds(SECTOR_OBJECTp sop) sop->zorig_ceiling[sop->num_sectors] = sector[k].ceilingz; if (TEST(sector[k].extra, SECTFX_SINK)) - sop->zorig_floor[sop->num_sectors] += Z(SectUser[k]->depth); + sop->zorig_floor[sop->num_sectors] += Z(FixedToInt(SectUser[k]->depth_fixed)); // lowest and highest floorz's if (sector[k].floorz > sop->floor_loz) @@ -2269,46 +2269,19 @@ void CallbackSOsink(ANIMp ap, void *data) ASSERT(su != NULL); ASSERT(GetSectUser(src_sector)); - tgt_depth = (GetSectUser(src_sector))->depth; + tgt_depth = FixedToInt((GetSectUser(src_sector))->depth_fixed); -#if 0 - for (w = &Water[0]; w < &Water[MAX_WATER]; w++) + short sectnum; + for (sectnum = 0; sectnum < numsectors; sectnum++) { - if (w->sector == dest_sector) + if (sectnum == dest_sector) { - ndx = AnimSet(&w->depth, Z(tgt_depth), ap->vel>>8); + ndx = AnimSet(ANIM_SUdepth, dest_sector, IntToFixed(tgt_depth), (ap->vel << 8) >> 8); AnimSetVelAdj(ndx, ap->vel_adj); - - // This is interesting - // Added a depth_fract to the struct so I could do a - // 16.16 Fixed point representation to change the depth - // in a more precise way - ndx = AnimSet((int *)&su->depth_fract, IntToFixed(tgt_depth), (ap->vel<<8)>>8); - AnimSetVelAdj(ndx, ap->vel_adj); - found = true; break; } } -#else - { - short sectnum; - for (sectnum = 0; sectnum < numsectors; sectnum++) - { - if (sectnum == dest_sector) - { - // This is interesting - // Added a depth_fract to the struct so I could do a - // 16.16 Fixed point representation to change the depth - // in a more precise way - ndx = AnimSet(ANIM_SUdepth, dest_sector, IntToFixed(tgt_depth), (ap->vel << 8) >> 8); - AnimSetVelAdj(ndx, ap->vel_adj); - found = true; - break; - } - } - } -#endif ASSERT(found); diff --git a/source/games/sw/src/weapon.cpp b/source/games/sw/src/weapon.cpp index b24a2c946..d2ea1f4d6 100644 --- a/source/games/sw/src/weapon.cpp +++ b/source/games/sw/src/weapon.cpp @@ -4516,7 +4516,7 @@ WeaponMoveHit(short SpriteNum) return true; } - if (SectUser[hit_sect].Data() && SectUser[hit_sect]->depth > 0) + if (SectUser[hit_sect].Data() && FixedToInt(SectUser[hit_sect]->depth_fixed) > 0) { SpawnSplash(SpriteNum); //SetSuicide(SpriteNum); @@ -4798,7 +4798,7 @@ DoFireballFlames(short SpriteNum) } else { - if (SectUser[sp->sectnum].Data() && SectUser[sp->sectnum]->depth > 0) + if (SectUser[sp->sectnum].Data() && FixedToInt(SectUser[sp->sectnum]->depth_fixed) > 0) { if (labs(sector[sp->sectnum].floorz - sp->z) <= Z(4)) { @@ -4871,7 +4871,7 @@ DoBreakFlames(short SpriteNum) } else { - if (SectUser[sp->sectnum].Data() && SectUser[sp->sectnum]->depth > 0) + if (SectUser[sp->sectnum].Data() && FixedToInt(SectUser[sp->sectnum]->depth_fixed) > 0) { if (labs(sector[sp->sectnum].floorz - sp->z) <= Z(4)) { @@ -8077,7 +8077,7 @@ DoStar(int16_t Weapon) if (sp->z > DIV2(u->hiz + u->loz)) { - if (SectUser[hit_sect].Data() && SectUser[hit_sect]->depth > 0) + if (SectUser[hit_sect].Data() && FixedToInt(SectUser[hit_sect]->depth_fixed) > 0) { SpawnSplash(Weapon); KillSprite(Weapon); @@ -9078,7 +9078,7 @@ DoGrenade(int16_t Weapon) if (TEST(u->Flags, SPR_UNDERWATER)) SET(u->Flags, SPR_BOUNCE); // no bouncing underwater - if (u->lo_sectp && SectUser[sp->sectnum].Data() && SectUser[sp->sectnum]->depth) + if (u->lo_sectp && SectUser[sp->sectnum].Data() && FixedToInt(SectUser[sp->sectnum]->depth_fixed)) SET(u->Flags, SPR_BOUNCE); // no bouncing on shallow water if (!TEST(u->Flags, SPR_BOUNCE)) @@ -21257,7 +21257,7 @@ DoShrapVelocity(int16_t SpriteNum) if (TEST(u->Flags, SPR_UNDERWATER)) SET(u->Flags, SPR_BOUNCE); // no bouncing underwater - if (u->lo_sectp && SectUser[sp->sectnum].Data() && SectUser[sp->sectnum]->depth) + if (u->lo_sectp && SectUser[sp->sectnum].Data() && FixedToInt(SectUser[sp->sectnum]->depth_fixed)) SET(u->Flags, SPR_BOUNCE); // no bouncing on shallow water if (!TEST(u->Flags, SPR_BOUNCE))