From 7e2431ebd8e689354eb84da0145feea4c4773899 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 14 Dec 2021 10:15:58 +0100 Subject: [PATCH] - replaced the remaining content from compat.h --- source/build/include/compat.h | 7 ---- source/build/src/clip.cpp | 12 +++--- source/build/src/engine.cpp | 2 +- source/build/src/mdsprite.cpp | 4 +- source/build/src/polymost.cpp | 72 +++++++++++++++++----------------- source/common/utility/basics.h | 7 ++++ source/core/defparser.cpp | 4 +- 7 files changed, 54 insertions(+), 54 deletions(-) diff --git a/source/build/include/compat.h b/source/build/include/compat.h index b005efb06..42016ace8 100644 --- a/source/build/include/compat.h +++ b/source/build/include/compat.h @@ -55,13 +55,6 @@ #include "engineerrors.h" -typedef intptr_t bssize_t; - -#define BMAX_PATH 256 - -using native_t = intptr_t; - - #include "basics.h" #endif // compat_h_ diff --git a/source/build/src/clip.cpp b/source/build/src/clip.cpp index 343604de0..6e3527a56 100644 --- a/source/build/src/clip.cpp +++ b/source/build/src/clip.cpp @@ -296,7 +296,7 @@ static inline int32_t cliptrace(vec2_t const pos, vec2_t * const goal) continue; int32_t const bot = diff.x*area.y - area.x*diff.y; - native_t cnt = 256; + int cnt = 256; if (!bot) continue; @@ -492,7 +492,7 @@ int32_t clipmove(vec3_t * const pos, int * const sectnum, int32_t xvect, int32_t int const endwall = startwall + sec->wallnum; auto wal = (uwallptr_t)&wall[startwall]; - for (native_t j=startwall; jpoint2]; @@ -733,7 +733,7 @@ int32_t clipmove(vec3_t * const pos, int * const sectnum, int32_t xvect, int32_t else tempint = DMulScale(clipr.x, move.x, clipr.y, move.y, 6); - for (native_t i=cnt+1, j; i<=clipmoveboxtracenum; ++i) + for (int i=cnt+1, j; i<=clipmoveboxtracenum; ++i) { j = hitwalls[i]; @@ -772,7 +772,7 @@ int32_t clipmove(vec3_t * const pos, int * const sectnum, int32_t xvect, int32_t if (enginecompatibility_mode != ENGINECOMPATIBILITY_NONE) { - for (native_t j=0; jx, pos->y, clipsectorlist[j]) == 1) { *sectnum = clipsectorlist[j]; @@ -979,7 +979,7 @@ void getzrange(const vec3_t *pos, int16_t sectnum, const int startwall = startsec->wallptr; const int endwall = startwall + startsec->wallnum; - for (bssize_t j=startwall; jwallnum,wal=(uwallptr_t)&wall[sec->wallptr]; cnt>0; cnt--,wal++) { auto const wal2 = (uwallptr_t)&wall[wal->point2]; diff --git a/source/build/src/mdsprite.cpp b/source/build/src/mdsprite.cpp index 1a02b8fba..520eb4462 100644 --- a/source/build/src/mdsprite.cpp +++ b/source/build/src/mdsprite.cpp @@ -1451,7 +1451,7 @@ static void md3free(md3model_t *m) if (m->head.surfs) { - for (bssize_t surfi=m->head.numsurfs-1; surfi>=0; surfi--) + for (int surfi=m->head.numsurfs-1; surfi>=0; surfi--) { md3surf_t *s = &m->head.surfs[surfi]; M_Free(s->tris); @@ -1554,7 +1554,7 @@ void updateModelInterpolation() omdtims = mdtims; mdtims = I_msTime(); - for (native_t i = 0; i < MAXSPRITES; ++i) + for (int i = 0; i < MAXSPRITES; ++i) if ((mdpause && spriteext[i].mdanimtims) || (spriteext[i].flags & SPREXT_NOMDANIM)) spriteext[i].mdanimtims += mdtims - omdtims; } diff --git a/source/build/src/polymost.cpp b/source/build/src/polymost.cpp index 42cd4b0df..32167b19d 100644 --- a/source/build/src/polymost.cpp +++ b/source/build/src/polymost.cpp @@ -340,7 +340,7 @@ static void polymost_drawpoly(FVector2 const * const dpxy, int32_t const n, int3 { float f = 0; //f is area of polygon / 2 - for (bssize_t i=n-2, j=n-1,k=0; kmVertexData->AllocVertices(npoints); auto vt = data.first; - for (bssize_t i = 0; i < npoints; ++i, vt++) + for (intptr_t i = 0; i < npoints; ++i, vt++) { float const r = 1.f / dd[i]; @@ -502,7 +502,7 @@ static void polymost_drawpoly(FVector2 const * const dpxy, int32_t const n, int3 static inline void vsp_finalize_init(int32_t const vcnt) { - for (bssize_t i=0; i= n2) j = 0; @@ -697,7 +697,7 @@ static void polymost_domost(float x0, float y0, float x1, float y1, float y0top int32_t spt[4]; int firstnode = vsp[0].n; - for (bssize_t newi, i=vsp[0].n; i; i=newi) + for (intptr_t newi, i=vsp[0].n; i; i=newi) { newi = vsp[i].n; n0.X = vsp[i].x; n1.X = vsp[newi].x; @@ -762,7 +762,7 @@ static void polymost_domost(float x0, float y0, float x1, float y1, float y0top float const rdx = 1.f/dx; - for (bssize_t z=0, vcnt=0; z<=scnt; z++,i=vcnt) + for (intptr_t z=0, vcnt=0; z<=scnt; z++,i=vcnt) { float t; @@ -1204,7 +1204,7 @@ static void calc_ypanning(int32_t refposz, float ryp0, float ryp1, static inline int32_t testvisiblemost(float const x0, float const x1) { - for (bssize_t i=vsp[0].n, newi; i; i=newi) + for (intptr_t i=vsp[0].n, newi; i; i=newi) { newi = vsp[i].n; if ((x0 < vsp[newi].x) && (vsp[i].x < x1) && (vsp[i].ctag >= 0)) @@ -1349,7 +1349,7 @@ static void polymost_flatskyrender(FVector2 const* const dpxy, int32_t const n, float x0 = xys[0].X, x1 = xys[0].X; - for (bssize_t i=n-1; i>=1; i--) + for (intptr_t i=n-1; i>=1; i--) { if (xys[i].X < x0) x0 = xys[i].X; if (xys[i].X > x1) x1 = xys[i].X; @@ -1444,7 +1444,7 @@ static void polymost_flatskyrender(FVector2 const* const dpxy, int32_t const n, int n2 = 0, n3 = 0; // Clip to o.x - for (bssize_t i=0; i=0; z=bunchp2[z]) + for (intptr_t z=bunchfirst[bunch]; z>=0; z=bunchp2[z]) { int32_t const wallnum = thewall[z]; @@ -2019,7 +2019,7 @@ void polymost_scansector(int32_t sectnum) } } - for (bssize_t z=onumscans; z nexttowardf(dxb1[bunchp2[z]], dxb2[z]))) { @@ -2028,7 +2028,7 @@ void polymost_scansector(int32_t sectnum) } } - for (bssize_t z=bunchfrst; z=0; zz=bunchp2[zz]) { } @@ -2051,7 +2051,7 @@ static void polymost_initmosts(const float * px, const float * py, int const n) int32_t imin = (px[1] < px[0]); - for (bssize_t i=n-1; i>=2; i--) + for (intptr_t i=n-1; i>=2; i--) if (px[i] < px[imin]) imin = i; int32_t vcnt = 1; //0 is dummy solid node @@ -2120,7 +2120,7 @@ static void polymost_initmosts(const float * px, const float * py, int const n) xbt = py[0]; xbb = py[0]; - for (bssize_t i=n-1; i>=1; i--) + for (intptr_t i=n-1; i>=1; i--) { if (xbl > px[i]) xbl = px[i]; if (xbr < px[i]) xbr = px[i]; @@ -2229,7 +2229,7 @@ void polymost_drawrooms() FVector3 p2[6]; - for (bssize_t i=0; i<4; i++) + for (intptr_t i=0; i<4; i++) { int const j = i < 3 ? i + 1 : 0; @@ -2251,7 +2251,7 @@ void polymost_drawrooms() float sx[6], sy[6]; - for (bssize_t i = 0; i < n; i++) + for (intptr_t i = 0; i < n; i++) { float const r = (ghalfx / gvrcorrection) / p2[i].Z; sx[i] = p2[i].X * r + ghalfx; @@ -2297,13 +2297,13 @@ void polymost_drawrooms() int32_t closest = 0; //Almost works, but not quite :( - for (bssize_t i=1; i= n2) j = 0; @@ -2634,7 +2634,7 @@ static inline int32_t polymost_findwall(tspritetype const * const tspr, vec2_t c auto const sect = §or[tspr->sectnum]; vec2_t n; - for (bssize_t i=sect->wallptr; iwallptr + sect->wallnum; i++) + for (intptr_t i=sect->wallptr; iwallptr + sect->wallnum; i++) { if ((wall[i].nextsector == -1 || ((sector[wall[i].nextsector].ceilingz > (tspr->z - ((tsiz->y * tspr->yrepeat) << 2))) || sector[wall[i].nextsector].floorz < tspr->z)) && !polymost_getclosestpointonwall((const vec2_t *) tspr, i, &n)) @@ -3113,7 +3113,7 @@ void polymost_drawsprite(int32_t snum) FVector2 pxy[6]; // Project 3D to 2D - for (bssize_t j = 0; j < 4; j++) + for (intptr_t j = 0; j < 4; j++) { FVector2 s0 = { (float)(tspr->x - globalposx), (float)(tspr->y - globalposy) }; @@ -3153,7 +3153,7 @@ void polymost_drawsprite(int32_t snum) int32_t npoints = 0; FVector2 p2[6]; - for (bssize_t i = 0, j = 1; i < 4; j = ((++i + 1) & 3)) + for (intptr_t i = 0, j = 1; i < 4; j = ((++i + 1) & 3)) { if (pxy[i].Y >= SCISDIST) p2[npoints++] = pxy[i]; @@ -3183,7 +3183,7 @@ void polymost_drawsprite(int32_t snum) float f = (float)(pos.z - globalposz + fadjust) * gyxscale; - for (bssize_t j = 0; j < npoints; j++) + for (intptr_t j = 0; j < npoints; j++) { float const ryp0 = 1.f / p2[j].Y; pxy[j] = { ghalfx * p2[j].X * ryp0 + ghalfx, f * ryp0 + ghoriz }; @@ -3407,7 +3407,7 @@ static void sortsprites(int const start, int const end) gap = 1; while (gap < end - start) gap = (gap << 1) + 1; for (gap >>= 1; gap > 0; gap >>= 1) //Sort sprite list for (i = start; i < end - gap; i++) - for (bssize_t l = i; l >= start; l -= gap) + for (intptr_t l = i; l >= start; l -= gap) { if (spritesxyz[l].y <= spritesxyz[l + gap].y) break; std::swap(tspriteptr[l], tspriteptr[l + gap]); @@ -3416,7 +3416,7 @@ static void sortsprites(int const start, int const end) } ys = spritesxyz[start].y; i = start; - for (bssize_t j = start + 1; j <= end; j++) + for (intptr_t j = start + 1; j <= end; j++) { if (j < end) { @@ -3429,7 +3429,7 @@ static void sortsprites(int const start, int const end) if (j > i + 1) { - for (bssize_t k = i; k < j; k++) + for (intptr_t k = i; k < j; k++) { auto const s = tspriteptr[k]; @@ -3448,8 +3448,8 @@ static void sortsprites(int const start, int const end) } } - for (bssize_t k = i + 1; k < j; k++) - for (bssize_t l = i; l < k; l++) + for (intptr_t k = i + 1; k < j; k++) + for (intptr_t l = i; l < k; l++) if (comparetsprites(k, l) < 0) { std::swap(tspriteptr[k], tspriteptr[l]); @@ -3566,7 +3566,7 @@ void renderDrawMasks(void) if (pm_spritesortcnt < numSprites) { i = pm_spritesortcnt; - for (bssize_t i = pm_spritesortcnt; i < numSprites;) + for (intptr_t i = pm_spritesortcnt; i < numSprites;) { int32_t py = spritesxyz[i].y; int32_t pcstat = tspriteptr[i]->cstat & 48; @@ -3590,7 +3590,7 @@ void renderDrawMasks(void) { GLInterface.SetDepthMask(false); - for (bssize_t k = j - 1; k >= i; k--) + for (intptr_t k = j - 1; k >= i; k--) { debugmask_add(k | 32768, tspriteptr[k]->owner); Polymost::polymost_drawsprite(k); @@ -3600,7 +3600,7 @@ void renderDrawMasks(void) GLInterface.SetColorMask(false); - for (bssize_t k = j - 1; k >= i; k--) + for (intptr_t k = j - 1; k >= i; k--) { Polymost::polymost_drawsprite(k); tspriteptr[k] = NULL; diff --git a/source/common/utility/basics.h b/source/common/utility/basics.h index 29ee19593..8661372e9 100644 --- a/source/common/utility/basics.h +++ b/source/common/utility/basics.h @@ -38,6 +38,13 @@ typedef uint32_t angle_t; #define FORCE_PACKED #endif +// Todo: get rid of this. Static file name buffers suck. +#ifndef PATH_MAX +#define BMAX_PATH 256 +#else +#define BMAX_PATH PATH_MAX +#endif + #ifdef __GNUC__ #define GCCPRINTF(stri,firstargi) __attribute__((format(printf,stri,firstargi))) diff --git a/source/core/defparser.cpp b/source/core/defparser.cpp index 2cb346b5b..b1ebdcc60 100644 --- a/source/core/defparser.cpp +++ b/source/core/defparser.cpp @@ -1194,8 +1194,8 @@ static bool parseBasePaletteRaw(FScanner& sc, FScriptPosition& pos, int id) { if (shiftleft != 0) { - for (bssize_t k = 0; k < 768; k++) - palbuf[k] <<= shiftleft; + for (auto& pe : palbuf) + pe <<= shiftleft; } paletteSetColorTable(id, palbuf.Data(), false, false);