From 125ec7ad2cef5b67b83e12dc85a04643e89d67fd Mon Sep 17 00:00:00 2001 From: hendricks266 Date: Fri, 8 Nov 2019 04:22:58 +0000 Subject: [PATCH] SW: Replace MAXLONG with INT32_MAX git-svn-id: https://svn.eduke32.com/eduke32@8281 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/sw/src/break.cpp | 6 +++--- source/sw/src/game.h | 2 +- source/sw/src/morph.cpp | 4 ++-- source/sw/src/sector.cpp | 6 +++--- source/sw/src/sync.cpp | 2 +- source/sw/src/track.cpp | 18 +++++++++--------- source/sw/src/weapon.cpp | 4 ++-- 7 files changed, 21 insertions(+), 21 deletions(-) diff --git a/source/sw/src/break.cpp b/source/sw/src/break.cpp index 9d60bf756..916076ef0 100644 --- a/source/sw/src/break.cpp +++ b/source/sw/src/break.cpp @@ -597,7 +597,7 @@ int AutoBreakWall(WALLp wallp, int hit_x, int hit_y, int hit_z, short ang, short // Check to see if it should break with current weapon type if (!CheckBreakToughness(break_info, type)) return FALSE; - if (hit_x != MAXLONG) + if (hit_x != INT32_MAX) { vec3_t hit_pos = { hit_x, hit_y, hit_z }; // need correct location for spawning shrap @@ -811,7 +811,7 @@ int WallBreakPosition(short hit_wall, short *sectnum, int *x, int *y, int *z, sh updatesectorz(*x,*y,*z,sectnum); if (*sectnum < 0) { - *x = MAXLONG; // don't spawn shrap, just change wall + *x = INT32_MAX; // don't spawn shrap, just change wall return FALSE; } @@ -830,7 +830,7 @@ SWBOOL HitBreakWall(WALLp wp, int hit_x, int hit_y, int hit_z, short ang, short return TRUE; } - //if (hit_x == MAXLONG) + //if (hit_x == INT32_MAX) { short sectnum; WallBreakPosition(wp - wall, §num, &hit_x, &hit_y, &hit_z, &ang); diff --git a/source/sw/src/game.h b/source/sw/src/game.h index ed577269e..7f6b65ba3 100644 --- a/source/sw/src/game.h +++ b/source/sw/src/game.h @@ -2269,7 +2269,7 @@ extern SWBOOL NightVision; int _PlayerSound(const char *file, int line, int num, int *x, int *y, int *z, Voc3D_Flags flags, PLAYERp pp); #define PlayerSound(num, x, y, z, flags, pp) _PlayerSound(__FILE__, __LINE__, (num), (x), (y), (z), (flags), (pp)) -#define MAXSO (MAXLONG) +#define MAXSO (INT32_MAX) /////////////////////////////////////////////////////////////// // diff --git a/source/sw/src/morph.cpp b/source/sw/src/morph.cpp index 0e858ebeb..4915d3938 100644 --- a/source/sw/src/morph.cpp +++ b/source/sw/src/morph.cpp @@ -47,7 +47,7 @@ DoSectorObjectSetScale(short match) for (sop = SectorObject; sop < &SectorObject[MAX_SECTOR_OBJECTS]; sop++) { - if (sop->xmid == MAXLONG) + if (sop->xmid == INT32_MAX) continue; if (sop->match_event == match) @@ -122,7 +122,7 @@ DoSOevent(short match, short state) for (sop = SectorObject; sop < &SectorObject[MAX_SECTOR_OBJECTS]; sop++) { - if (sop->xmid == MAXLONG) + if (sop->xmid == INT32_MAX) continue; if (sop->match_event == match) diff --git a/source/sw/src/sector.cpp b/source/sw/src/sector.cpp index ea9e41c8c..2b62da57e 100644 --- a/source/sw/src/sector.cpp +++ b/source/sw/src/sector.cpp @@ -496,7 +496,7 @@ SectorSetup(void) SectorObject[ndx].Animator = NULL; SectorObject[ndx].controller = NULL; SectorObject[ndx].sp_child = NULL; - SectorObject[ndx].xmid = MAXLONG; + SectorObject[ndx].xmid = INT32_MAX; } memset(SineWaveFloor, -1, sizeof(SineWaveFloor)); @@ -1451,7 +1451,7 @@ DoSectorObjectKillMatch(short match) for (sop = SectorObject; sop < &SectorObject[MAX_SECTOR_OBJECTS]; sop++) { - if (sop->xmid == MAXLONG) + if (sop->xmid == INT32_MAX) continue; if (sop->match_event == match) @@ -3419,7 +3419,7 @@ DoSector(void) for (sop = SectorObject; sop < &SectorObject[MAX_SECTOR_OBJECTS]; sop++) { - if (sop->xmid == MAXLONG /*|| sop->xmid == MAXSO*/) + if (sop->xmid == INT32_MAX /*|| sop->xmid == MAXSO*/) continue; diff --git a/source/sw/src/sync.cpp b/source/sw/src/sync.cpp index 8302a169a..63ff219ee 100644 --- a/source/sw/src/sync.cpp +++ b/source/sw/src/sync.cpp @@ -109,7 +109,7 @@ SOSync(void) for (sop = SectorObject; sop < &SectorObject[MAX_SECTOR_OBJECTS]; sop++) { - // if (sop->xmid == MAXLONG) + // if (sop->xmid == INT32_MAX) // continue; updatecrc(crc, (sop->xmid) & 255); diff --git a/source/sw/src/track.cpp b/source/sw/src/track.cpp index 5bcc85dfa..b3f5255ef 100644 --- a/source/sw/src/track.cpp +++ b/source/sw/src/track.cpp @@ -1428,7 +1428,7 @@ PostSetupSectorObject(void) for (sop = SectorObject; sop < &SectorObject[MAX_SECTOR_OBJECTS]; sop++) { - if (sop->xmid == MAXLONG) + if (sop->xmid == INT32_MAX) continue; FindMainSector(sop); } @@ -1442,7 +1442,7 @@ PlayerOnObject(short sectnum_match) SECTOR_OBJECTp sop; // place each sector object on the track - //for (i = 0; (SectorObject[i].xmid != MAXLONG) && (i < MAX_SECTOR_OBJECTS); i++) + //for (i = 0; (SectorObject[i].xmid != INT32_MAX) && (i < MAX_SECTOR_OBJECTS); i++) for (i = 0; (i < MAX_SECTOR_OBJECTS); i++) { sop = &SectorObject[i]; @@ -1477,7 +1477,7 @@ PlaceSectorObjectsOnTracks(void) TRACK_POINTp tpoint = NULL; short spnum, next_spnum; - if (sop->xmid == MAXLONG) + if (sop->xmid == INT32_MAX) continue; @@ -1693,14 +1693,14 @@ MovePoints(SECTOR_OBJECTp sop, short delta_ang, int nx, int ny) short i, nexti, rot_ang; SWBOOL PlayerMove = TRUE; - if (sop->xmid >= (int)MAXSO) + if (sop->xmid >= MAXSO) PlayerMove = FALSE; // move along little midpoint sop->xmid += BOUND_4PIX(nx); sop->ymid += BOUND_4PIX(ny); - if (sop->xmid >= (int)MAXSO) + if (sop->xmid >= MAXSO) PlayerMove = FALSE; // move child sprite along also @@ -1882,7 +1882,7 @@ PlayerPart: // Does not necessarily move with the sector so must accout for // moving across sectors - if (sop->xmid < (int)MAXSO) // special case for operating SO's + if (sop->xmid < MAXSO) // special case for operating SO's setspritez(sop->sp_num[i], (vec3_t *)sp); } @@ -1902,7 +1902,7 @@ PlayerPart: // update here AFTER sectors/player has been manipulated // prevents you from falling into map HOLEs created by moving // Sectors and sprites around. - //if (sop->xmid < (int)MAXSO) + //if (sop->xmid < MAXSO) COVERupdatesector(pp->posx, pp->posy, &pp->cursectnum); // in case you are in a whirlpool @@ -2077,7 +2077,7 @@ DetectSectorObject(SECTORp sectph) // move all points to nx,ny for (sop = SectorObject; sop < &SectorObject[MAX_SECTOR_OBJECTS]; sop++) { - if (sop->xmid == MAXLONG /*|| sop->xmid == MAXSO*/) + if (sop->xmid == INT32_MAX /*|| sop->xmid == MAXSO*/) continue; for (sectp = sop->sectp, j = 0; *sectp; sectp++, j++) @@ -2105,7 +2105,7 @@ DetectSectorObjectByWall(WALLp wph) // move all points to nx,ny for (sop = SectorObject; sop < &SectorObject[MAX_SECTOR_OBJECTS]; sop++) { - if (sop->xmid == MAXLONG /*|| sop->xmid == MAXSO*/) + if (sop->xmid == INT32_MAX /*|| sop->xmid == MAXSO*/) continue; for (sectp = sop->sectp, j = 0; *sectp; sectp++, j++) diff --git a/source/sw/src/weapon.cpp b/source/sw/src/weapon.cpp index d1b089480..90178d946 100644 --- a/source/sw/src/weapon.cpp +++ b/source/sw/src/weapon.cpp @@ -7762,10 +7762,10 @@ void TraverseBreakableWalls(short start_sect, int x, int y, int z, short ang, in if (WallBreakPosition(j, §num, &hit_x, &hit_y, &hit_z, &wall_ang)) { - if (hit_x != MAXLONG && sectnum >= 0 && FAFcansee(x, y, z, start_sect, hit_x, hit_y, hit_z, sectnum)) + if (hit_x != INT32_MAX && sectnum >= 0 && FAFcansee(x, y, z, start_sect, hit_x, hit_y, hit_z, sectnum)) { //HitBreakWall(&wall[j], x, y, z, ang, 0); - HitBreakWall(&wall[j], MAXLONG, MAXLONG, MAXLONG, ang, 0); + HitBreakWall(&wall[j], INT32_MAX, INT32_MAX, INT32_MAX, ang, 0); break_count++; if (break_count > 4)