From 5655015691d3effda336f9b9350316d763c93846 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 14 Jul 2020 16:06:14 +0200 Subject: [PATCH] - YAX is also gone now. --- source/blood/src/db.cpp | 4 - source/blood/src/db.h | 11 - source/build/include/build.h | 60 -- source/build/src/clip.cpp | 211 +------ source/build/src/engine.cpp | 1071 +------------------------------- source/build/src/engine_priv.h | 25 - source/build/src/polymost.cpp | 642 +------------------ source/core/savegamehelp.cpp | 11 - source/exhumed/src/init.cpp | 4 - 9 files changed, 9 insertions(+), 2030 deletions(-) diff --git a/source/blood/src/db.cpp b/source/blood/src/db.cpp index 6d4117021..8d40b62e3 100644 --- a/source/blood/src/db.cpp +++ b/source/blood/src/db.cpp @@ -1203,10 +1203,6 @@ int dbLoadMap(const char *pPath, int *pX, int *pY, int *pZ, short *pAngle, short } } -#ifdef YAX_ENABLE - yax_update((header.version & 0xff00) > 0x700 ? 0 : 1); -#endif - g_loadedMapVersion = 7; return 0; diff --git a/source/blood/src/db.h b/source/blood/src/db.h index 119c011af..5fc24af2a 100644 --- a/source/blood/src/db.h +++ b/source/blood/src/db.h @@ -300,19 +300,8 @@ extern unsigned short nextXSprite[kMaxXSprites]; extern unsigned short nextXWall[kMaxXWalls]; extern unsigned short nextXSector[kMaxXSectors]; -#ifdef YAX_ENABLE -static inline bool yax_hasnextwall(int nWall) -{ - return yax_getnextwall(nWall, YAX_CEILING) >= 0 || yax_getnextwall(nWall, YAX_FLOOR) >= 0; -} -#endif - static inline int GetWallType(int nWall) { -#ifdef YAX_ENABLE - if (yax_hasnextwall(nWall)) - return 0; -#endif return wall[nWall].type; } diff --git a/source/build/include/build.h b/source/build/include/build.h index bd6627d9e..df6e29eed 100644 --- a/source/build/include/build.h +++ b/source/build/include/build.h @@ -124,56 +124,8 @@ enum rendmode_t { # define YAX_NEXTWALLBIT(Cf) (1<<(10+Cf)) # define YAX_NEXTWALLBITS (YAX_NEXTWALLBIT(0)|YAX_NEXTWALLBIT(1)) -#ifdef YAX_ENABLE - - // More user tag hijacking: lotag/extra. :/ -# define YAX_PTRNEXTWALL(Ptr, Wall, Cf) (*(int16_t *)(&Ptr[Wall].lotag + (playing_blood ? 1 : 2)*Cf)) -# define YAX_NEXTWALLDEFAULT(Cf) (playing_blood ? 0 : ((Cf)==YAX_CEILING) ? 0 : -1) - extern int16_t yax_bunchnum[MAXSECTORS][2]; - extern int16_t yax_nextwall[MAXWALLS][2]; - - -# define YAX_NEXTWALL(Wall, Cf) YAX_PTRNEXTWALL(wall, Wall, Cf) - -# define YAX_ITER_WALLS(Wal, Itervar, Cfvar) Cfvar=0, Itervar=(Wal); Itervar!=-1; \ - Itervar=yax_getnextwall(Itervar, Cfvar), \ - (void)(Itervar==-1 && Cfvar==0 && (Cfvar=1) && (Itervar=yax_getnextwall((Wal), Cfvar))) - -# define SECTORS_OF_BUNCH(Bunchnum, Cf, Itervar) Itervar = headsectbunch[Cf][Bunchnum]; \ - Itervar != -1; Itervar = nextsectbunch[Cf][Itervar] - -extern int32_t r_tror_nomaskpass; - - -int16_t yax_getbunch(int16_t i, int16_t cf); -static FORCE_INLINE void yax_getbunches(int16_t i, int16_t *cb, int16_t *fb) -{ - *cb = yax_getbunch(i, YAX_CEILING); - *fb = yax_getbunch(i, YAX_FLOOR); -} -int16_t yax_getnextwall(int16_t wal, int16_t cf); -void yax_setnextwall(int16_t wal, int16_t cf, int16_t thenextwall); - - -void yax_setbunch(int16_t i, int16_t cf, int16_t bunchnum); -void yax_setbunches(int16_t i, int16_t cb, int16_t fb); -int16_t yax_vnextsec(int16_t line, int16_t cf); -void yax_update(int32_t resetstat); -int32_t yax_getneighborsect(int32_t x, int32_t y, int32_t sectnum, int32_t cf); - -static FORCE_INLINE CONSTEXPR int32_t yax_waltosecmask(int32_t const walclipmask) -{ - // blocking: walstat&1 --> secstat&512 - // hitscan: walstat&64 --> secstat&2048 - return ((walclipmask&1)<<9) | ((walclipmask&64)<<5); -} -void yax_preparedrawrooms(void); -void yax_drawrooms(void (*SpriteAnimFunc)(int32_t,int32_t,int32_t,int32_t,int32_t), - int16_t sectnum, int32_t didmirror, int32_t smoothr); -#else # define yax_preparedrawrooms() # define yax_drawrooms(SpriteAnimFunc, sectnum, didmirror, smoothr) -#endif #define CLIPMASK0 (((1)<<16)+1) #define CLIPMASK1 (((256)<<16)+64) @@ -410,18 +362,6 @@ struct validmode_t { }; EXTERN struct validmode_t validmode[MAXVALIDMODES]; -EXTERN int32_t numyaxbunches; -#ifdef YAX_ENABLE -// Singly-linked list of sectnums grouped by bunches and ceiling (0)/floor (1) -// Usage e.g.: -// int16_t bunchnum = yax_getbunch(somesector, YAX_CEILING); -// Iteration over all sectors whose floor bunchnum equals 'bunchnum' (i.e. "all -// floors of the other side"): -// for (i=headsectbunch[1][bunchnum]; i!=-1; i=nextsectbunch[1][i]) -// - -EXTERN int16_t headsectbunch[2][YAX_MAXBUNCHES], nextsectbunch[2][MAXSECTORS]; -#endif EXTERN int32_t Numsprites; EXTERN int16_t numsectors, numwalls; diff --git a/source/build/src/clip.cpp b/source/build/src/clip.cpp index 7e95be61b..64d89e213 100644 --- a/source/build/src/clip.cpp +++ b/source/build/src/clip.cpp @@ -248,11 +248,7 @@ static int cliptestsector(int const dasect, int const nextsect, int32_t const fl int32_t dacz2 = sec2->ceilingz; if ((sec2->floorstat|sec2->ceilingstat) & 2) -#ifdef YAX_ENABLE - yax_getzsofslope(nextsect, pos.x, pos.y, &dacz2, &daz2); -#else getcorrectzsofslope(nextsect, pos.x, pos.y, &dacz2, &daz2); -#endif if (daz2 <= dacz2) return 1; @@ -263,11 +259,7 @@ static int cliptestsector(int const dasect, int const nextsect, int32_t const fl int32_t dacz = sec->ceilingz; if ((sec->floorstat|sec->ceilingstat) & 2) -#ifdef YAX_ENABLE - yax_getzsofslope(dasect, pos.x, pos.y, &dacz, &daz); -#else getcorrectzsofslope(dasect, pos.x, pos.y, &dacz, &daz); -#endif int32_t const sec2height = klabs(daz2-dacz2); @@ -555,20 +547,6 @@ int32_t clipmove(vec3_t * const pos, int16_t * const sectnum, int32_t xvect, int if (wal->nextsector < 0 || (wal->cstat&dawalclipmask)) { clipyou = 1; -#ifdef YAX_ENABLE - int const cb = yax_getbunch(dasect, YAX_CEILING); - - if (cb >= 0 && (sec->ceilingstat & yax_waltosecmask(dawalclipmask)) == 0) - { - int const ynw = yax_getnextwall(j, YAX_CEILING); - - if (ynw >= 0 && wall[ynw].nextsector >= 0 && (wall[ynw].cstat & dawalclipmask) == 0) - { - clipmove_tweak_pos(pos, diff.x, diff.y, p1.x, p1.y, p2.x, p2.y, &v.x, &v.y); - clipyou = cliptestsector(dasect, wall[ynw].nextsector, flordist, ceildist, v, pos->z); - } - } -#endif } else if (editstatus == 0) { @@ -1025,11 +1003,6 @@ void getzrange(const vec3_t *pos, int16_t sectnum, int32_t clipsectcnt = 0; -#ifdef YAX_ENABLE - // YAX round, -1:center, 0:ceiling, 1:floor - int32_t mcf=-1; -#endif - uspriteptr_t curspr=NULL; // non-NULL when handling sprite with sector-like clipping int32_t curidx=-1, clipspritecnt = 0; @@ -1053,20 +1026,12 @@ void getzrange(const vec3_t *pos, int16_t sectnum, getzsofslope(sectnum,closest.x,closest.y,ceilz,florz); *ceilhit = sectnum+16384; *florhit = sectnum+16384; -#ifdef YAX_ENABLE - origclipsectorlist[0] = sectnum; - origclipsectnum = 1; -#endif clipsectorlist[0] = sectnum; clipsectnum = 1; clipspritenum = 0; Bmemset(clipsectormap, 0, (numsectors+7)>>3); bitmap_set(clipsectormap, sectnum); - -#ifdef YAX_ENABLE -restart_grand: -#endif do //Collect sectors inside your square first { ////////// Walls ////////// @@ -1119,10 +1084,6 @@ restart_grand: if (d.y > 0) da.y -= d.y*MAXCLIPDIST; else da.y += d.y*MAXCLIPDIST; if (da.x >= da.y) continue; -#ifdef YAX_ENABLE - if (mcf==-1 && curspr==NULL) - origclipsectorlist[origclipsectnum++] = k; -#endif //It actually got here, through all the continue's!!! int32_t daz, daz2; closest = pos->vec2; @@ -1137,20 +1098,10 @@ restart_grand: getzsofslope(k, closest.x,closest.y, &daz,&daz2); { -#ifdef YAX_ENABLE - int16_t cb, fb; - yax_getbunches(k, &cb, &fb); -#endif if (daz > *ceilz) -#ifdef YAX_ENABLE - if (mcf!=YAX_FLOOR && cb < 0) -#endif *ceilz = daz, *ceilhit = k+16384; if (daz2 < *florz) -#ifdef YAX_ENABLE - if (mcf!=YAX_CEILING && fb < 0) -#endif *florz = daz2, *florhit = k+16384; } } @@ -1228,22 +1179,13 @@ restart_grand: if (clipyou != 0) { - if ((pos->z > daz) && (daz > *ceilz -#ifdef YAX_ENABLE - || (daz == *ceilz && yax_getbunch(clipsectorlist[i], YAX_CEILING)>=0) -#endif - )) + if ((pos->z > daz) && (daz > *ceilz)) { *ceilz = daz; *ceilhit = j+49152; } - if ((pos->z < daz2) && (daz2 < *florz -#ifdef YAX_ENABLE - // can have a floor-sprite lying directly on the floor! - || (daz2 == *florz && yax_getbunch(clipsectorlist[i], YAX_FLOOR)>=0) -#endif - )) + if ((pos->z < daz2) && (daz2 < *florz)) { *florz = daz2; *florhit = j+49152; @@ -1253,104 +1195,6 @@ restart_grand: } } -#ifdef YAX_ENABLE - if (numyaxbunches > 0) - { - int const dasecclipmask = yax_waltosecmask(dawalclipmask); - int16_t cb, fb; - - yax_getbunches(sectnum, &cb, &fb); - - mcf++; - clipsectcnt = 0; clipsectnum = 0; - - int didchange = 0; - if (cb>=0 && mcf==0 && *ceilhit==sectnum+16384) - { - int i; - for (i=0; i= 0) - if (sector[j].ceilingstat&dasecclipmask) - break; - } - - if (i==origclipsectnum) - for (i=0; ix,pos->y, j)==1) - { - addclipsect(j); - - closest = pos->vec2; - if (enginecompatibility_mode == ENGINECOMPATIBILITY_NONE) - getsectordist(closest, j, &closest); - int const daz = getceilzofslope(j, closest.x, closest.y); - - if (!didchange || daz > *ceilz) - didchange=1, *ceilhit = j+16384, *ceilz = daz; - } - } - - if (clipsectnum==0) - mcf++; - } - else if (mcf==0) - mcf++; - - didchange = 0; - if (fb>=0 && mcf==1 && *florhit==sectnum+16384) - { - int i=0; - for (; i= 0) - if (sector[j].floorstat&dasecclipmask) - break; - } - - // (almost) same as above, but with floors... - if (i==origclipsectnum) - for (i=0; ix,pos->y, j)==1) - { - addclipsect(j); - - closest = pos->vec2; - if (enginecompatibility_mode == ENGINECOMPATIBILITY_NONE) - getsectordist(closest, j, &closest); - int const daz = getflorzofslope(j, closest.x,closest.y); - - if (!didchange || daz < *florz) - didchange=1, *florhit = j+16384, *florz = daz; - } - } - } - - if (clipsectnum > 0) - { - // sector-like sprite re-init: - curidx = -1; - curspr = NULL; - clipspritecnt = 0; clipspritenum = 0; - - goto restart_grand; - } - } -#endif } @@ -1490,11 +1334,7 @@ int32_t hitscan(const vec3_t *sv, int16_t sectnum, int32_t vx, int32_t vy, int32 uspriteptr_t curspr = NULL; int32_t clipspritecnt, curidx=-1; // tmp: { (int32_t)curidx, (spritetype *)curspr, (!=0 if outer sector) } - intptr_t tmp[3], *tmpptr=NULL; -#ifdef YAX_ENABLE - vec3_t newsv; - int32_t oldhitsect = -1, oldhitsect2 = -2; -#endif + intptr_t *tmpptr=NULL; const int32_t dawalclipmask = (cliptype&65535); const int32_t dasprclipmask = (cliptype>>16); @@ -1502,9 +1342,6 @@ int32_t hitscan(const vec3_t *sv, int16_t sectnum, int32_t vx, int32_t vy, int32 if (sectnum < 0) return -1; -#ifdef YAX_ENABLE -restart_grand: -#endif hit->pos.vec2 = hitscangoal; clipsectorlist[0] = sectnum; @@ -1721,48 +1558,6 @@ restart_grand: } while (++tempshortcnt < tempshortnum || clipspritecnt < clipspritenum); -#ifdef YAX_ENABLE - if (numyaxbunches == 0 || editstatus) - return 0; - - if (hit->sprite==-1 && hit->wall==-1 && hit->sect!=oldhitsect - && hit->sect != oldhitsect2) // 'ping-pong' infloop protection - { - if (hit->sect == -1 && oldhitsect >= 0) - { - // this is bad: we didn't hit anything after going through a ceiling/floor - Bmemcpy(&hit->pos, &newsv, sizeof(vec3_t)); - hit->sect = oldhitsect; - - return 0; - } - - // 1st, 2nd, ... ceil/floor hit - // hit->sect is >=0 because if oldhitsect's init and check above - if (SECTORFLD(hit->sect,stat, hitscan_hitsectcf)&yax_waltosecmask(dawalclipmask)) - return 0; - - i = yax_getneighborsect(hit->pos.x, hit->pos.y, hit->sect, hitscan_hitsectcf); - if (i >= 0) - { - Bmemcpy(&newsv, &hit->pos, sizeof(vec3_t)); - sectnum = i; - sv = &newsv; - - oldhitsect2 = oldhitsect; - oldhitsect = hit->sect; - hit->sect = -1; - - // sector-like sprite re-init: - curspr = 0; - curidx = -1; - tmpptr = NULL; - - goto restart_grand; - } - } -#endif - return 0; } diff --git a/source/build/src/engine.cpp b/source/build/src/engine.cpp index 34475ee7d..0dd293c57 100644 --- a/source/build/src/engine.cpp +++ b/source/build/src/engine.cpp @@ -173,739 +173,6 @@ void faketimerhandler() -#if !defined YAX_ENABLE -# warning Non-TROR builds are supported only for debugging. Expect savegame breakage etc... -#endif - -#ifdef YAX_ENABLE -// all references to floor/ceiling bunchnums should be through the -// get/set functions! - -int32_t g_nodraw = 0; -int32_t scansector_retfast = 0; -int32_t scansector_collectsprites = 1; -int32_t yax_globalcf = -1, yax_nomaskpass=0, yax_nomaskdidit; // engine internal -int32_t r_tror_nomaskpass = 1; // cvar -int32_t yax_globallev = YAX_MAXDRAWS; -int32_t yax_globalbunch = -1; -int32_t yax_polymostclearzbuffer = 1; - -// duplicated tsprites -// [i]: -// i==MAXDRAWS: base level -// iMAXDRAWS: i-MAXDRAWS-1 is level towards floor -static int16_t yax_spritesortcnt[1 + 2*YAX_MAXDRAWS]; -static uint16_t yax_tsprite[1 + 2*YAX_MAXDRAWS][MAXSPRITESONSCREEN]; -static uint8_t yax_tsprfrombunch[1 + 2*YAX_MAXDRAWS][MAXSPRITESONSCREEN]; - -// drawn sectors -uint8_t yax_gotsector[(MAXSECTORS+7)>>3]; // engine internal - -# if !defined NEW_MAP_FORMAT -// Game-time YAX data structures, V7-V9 map formats. -int16_t yax_bunchnum[MAXSECTORS][2]; -int16_t yax_nextwall[MAXWALLS][2]; - -static FORCE_INLINE int32_t yax_islockededge(int32_t line, int32_t cf) -{ - return !!(wall[line].cstat&(YAX_NEXTWALLBIT(cf))); -} - -#define YAX_PTRBUNCHNUM(Ptr, Sect, Cf) (*(&Ptr[Sect].ceilingxpanning + 8*Cf)) -#define YAX_BUNCHNUM(Sect, Cf) YAX_PTRBUNCHNUM(sector, Sect, Cf) - -//// bunch getters/setters -int16_t yax_getbunch(int16_t i, int16_t cf) -{ - if (editstatus==0) - return yax_bunchnum[i][cf]; - - return (*(§or[i].ceilingstat + cf) & YAX_BIT) ? YAX_BUNCHNUM(i, cf) : -1; -} -# endif - -// bunchnum: -1: also clear yax-nextwalls (forward and reverse) -// -2: don't clear reverse yax-nextwalls -// -3: don't clear either forward or reverse yax-nextwalls -void yax_setbunch(int16_t i, int16_t cf, int16_t bunchnum) -{ - if (editstatus==0) - { - yax_bunchnum[i][cf] = bunchnum; - return; - } - - if (bunchnum < 0) - { - if (bunchnum > -3) - { - // TODO: for in-game too? - for (bssize_t ynw, j=sector[i].wallptr; j= 0) - { - if (bunchnum > -2) - yax_setnextwall(ynw, !cf, -1); - yax_setnextwall(j, cf, -1); - } - } - } - - *(§or[i].ceilingstat + cf) &= ~YAX_BIT; - // NOTE: Don't reset xpanning-as-index, since we can be called from - // e.g. Mapster32's "Inner loop made into new sector" functionality. - return; - } - - *(§or[i].ceilingstat + cf) |= YAX_BIT; - YAX_BUNCHNUM(i, cf) = bunchnum; -} - -void yax_setbunches(int16_t i, int16_t cb, int16_t fb) -{ - yax_setbunch(i, YAX_CEILING, cb); - yax_setbunch(i, YAX_FLOOR, fb); -} - -# if !defined NEW_MAP_FORMAT -//// nextwall getters/setters -int16_t yax_getnextwall(int16_t wal, int16_t cf) -{ - if (editstatus==0) - return yax_nextwall[wal][cf]; - - return yax_islockededge(wal, cf) ? YAX_NEXTWALL(wal, cf) : -1; -} - -// unchecked! -void yax_setnextwall(int16_t wal, int16_t cf, int16_t thenextwall) -{ - if (editstatus==0) - { - yax_nextwall[wal][cf] = thenextwall; - return; - } - - if (thenextwall >= 0) - { - wall[wal].cstat |= YAX_NEXTWALLBIT(cf); - YAX_NEXTWALL(wal, cf) = thenextwall; - } - else - { - wall[wal].cstat &= ~YAX_NEXTWALLBIT(cf); - YAX_NEXTWALL(wal, cf) = YAX_NEXTWALLDEFAULT(cf); - } -} -# endif - -// make one step in the vertical direction, and if the wall we arrive at -// is red, return its nextsector. -int16_t yax_vnextsec(int16_t line, int16_t cf) -{ - int16_t const ynw = yax_getnextwall(line, cf); - return (ynw < 0) ? -1 : wall[ynw].nextsector; -} - - -//// in-struct --> array transfer (only resetstat==0); list construction -// resetstat: 0: reset and read data from structs and construct linked lists etc. -// 1: only reset -// 2: read data from game-time arrays and construct linked lists etc. -void yax_update(int32_t resetstat) -{ - int32_t i; -#if !defined NEW_MAP_FORMAT - int32_t j; - const int32_t oeditstatus=editstatus; -#endif - int16_t cb, fb; - - if (resetstat != 2) - numyaxbunches = 0; - - for (i=0; i=numsectors) - yax_bunchnum[i][0] = yax_bunchnum[i][1] = -1; -#endif - nextsectbunch[0][i] = nextsectbunch[1][i] = -1; - } - for (i=0; i=numwalls) - yax_nextwall[i][0] = yax_nextwall[i][1] = -1; -#endif - - if (resetstat==1) - return; - - // Constuct singly linked list of sectors-of-bunch. - -#if !defined NEW_MAP_FORMAT - // Read bunchnums directly from the sector struct in yax_[gs]etbunch{es}! - editstatus = (resetstat==0); - // NOTE: Use oeditstatus to check for in-gamedness from here on! -#endif - - if (resetstat==0) - { - // make bunchnums consecutive - uint8_t *const havebunch = (uint8_t *)tempbuf; - uint8_t *const bunchmap = havebunch + ((YAX_MAXBUNCHES+7)>>3); - int32_t dasub = 0; - - Bmemset(havebunch, 0, (YAX_MAXBUNCHES+7)>>3); - for (i=0; i=0) - havebunch[cb>>3] |= pow2char[cb&7]; - if (fb>=0) - havebunch[fb>>3] |= pow2char[fb&7]; - } - - for (i=0; i>3]&pow2char[i&7])==0) - { - bunchmap[i] = 255; - dasub++; - continue; - } - - bunchmap[i] = i-dasub; - } - - for (i=0; i=0) - yax_setbunch(i, YAX_CEILING, bunchmap[cb]); - if (fb>=0) - yax_setbunch(i, YAX_FLOOR, bunchmap[fb]); - } - } - - // In-struct --> array transfer (resetstat==0 and !defined NEW_MAP_FORMAT) - // and list construction. - for (i=numsectors-1; i>=0; i--) - { - yax_getbunches(i, &cb, &fb); -#if !defined NEW_MAP_FORMAT - if (resetstat==0) - { - yax_bunchnum[i][0] = cb; - yax_bunchnum[i][1] = fb; - } -#endif - - if (cb >= 0) - { -#if !defined NEW_MAP_FORMAT - if (resetstat==0) - for (j=sector[i].wallptr; j= 0) - { -#if !defined NEW_MAP_FORMAT - if (resetstat==0) - for (j=sector[i].wallptr; j>3]; - -static inline int32_t yax_walldist(int32_t w) -{ - vec2_t closest; - getclosestpointonwall_internal({ globalposx, globalposy }, w, &closest); - return klabs(closest.x-globalposx) + klabs(closest.y-globalposy); -} - -// calculate distances to bunches and best start-drawing sectors -static void yax_scanbunches(int32_t bbeg, int32_t numhere, const uint8_t *lastgotsector) -{ - int32_t bnchcnt, bunchnum, j, k; - int32_t startwall, endwall; - - UNREFERENCED_PARAMETER(lastgotsector); - - scansector_retfast = 1; - scansector_collectsprites = 0; - - for (bnchcnt=bbeg; bnchcnt=0) - if ((ns=wall[w].nextsector)>=0) - if ((lastgotsector[ns>>3]&pow2char[ns&7])==0) - continue; -*/ - walldist = yax_walldist(j); - if (walldist < bestwalldist) - { - checkthisec = 1; - bestwalldist = walldist; - } - } - - if (checkthisec) - { - numscans = numbunches = 0; - - polymost_scansector(k); - - if (numbunches > 0) - { - bestsec = k; - bestbestdist = bestwalldist; - } - } - } - - bunchsec[bunchnum] = bestsec; - bunchdist[bunchnum] = bestbestdist; - } - - scansector_collectsprites = 1; - scansector_retfast = 0; -} - -static int yax_cmpbunches(const void *b1, const void *b2) -{ - return (bunchdist[B_UNBUF16(b2)] - bunchdist[B_UNBUF16(b1)]); -} - - -void yax_tweakpicnums(int32_t bunchnum, int32_t cf, int32_t restore) -{ - // for polymer, this is called before polymer_drawrooms() with restore==0 - // and after polymer_drawmasks() with restore==1 - - int32_t i, dastat; - static int16_t opicnum[2][MAXSECTORS]; - - for (SECTORS_OF_BUNCH(bunchnum, cf, i)) - { - dastat = (SECTORFLD(i,stat, cf)&(128+256)); - - // only consider non-masked ceilings/floors - if (dastat==0 || (restore==1 && opicnum[cf][i]&0x8000)) - { - if (!restore) - { - opicnum[cf][i] = SECTORFLD(i,picnum, cf); - if (editstatus && showinvisibility) - SECTORFLD(i,picnum, cf) = MAXTILES-1; - else //if ((dastat&(128+256))==0) - SECTORFLD(i,picnum, cf) = playing_blood ? MAXTILES-2 : 13; //FOF; - } - else - { - SECTORFLD(i,picnum, cf) = opicnum[cf][i]; - } - } - } -} - -static void yax_copytsprites() -{ - int32_t i, spritenum, gotthrough, sectnum; - int32_t sortcnt = yax_spritesortcnt[yax_globallev]; - uspriteptr_t spr; - - for (i=0; isectnum; - - if (gotthrough == (MAXSPRITES|(MAXSPRITES<<1))) - { - if (yax_globalbunch != yax_tsprfrombunch[yax_globallev][i]) - continue; - } - else - { - int32_t cf = -1; - - if (gotthrough == MAXSPRITES) - cf = YAX_CEILING; // sprite got here through the ceiling of lower sector - else if (gotthrough == (MAXSPRITES<<1)) - cf = YAX_FLOOR; // sprite got here through the floor of upper sector - - if (cf != -1) - { - if ((yax_globallev-YAX_MAXDRAWS)*(-1 + 2*cf) > 0) - if (yax_getbunch(sectnum, cf) != yax_globalbunch) - continue; - - sectnum = yax_getneighborsect(spr->x, spr->y, sectnum, cf); - if (sectnum < 0) - continue; - } - } - - if (spritesortcnt >= maxspritesonscreen) - break; - - tspriteptr_t tsp = renderAddTSpriteFromSprite(spritenum); - tsp->sectnum = sectnum; // potentially tweak sectnum! - } -} - - -void yax_preparedrawrooms(void) -{ - if (videoGetRenderMode() == REND_POLYMER || numyaxbunches==0) - return; - - g_nodraw = 1; - memset(yax_spritesortcnt, 0, sizeof(yax_spritesortcnt)); - memset(haveymost, 0, (numyaxbunches+7)>>3); - -} - -void yax_drawrooms(void (*SpriteAnimFunc)(int32_t,int32_t,int32_t,int32_t,int32_t), - int16_t sectnum, int32_t didmirror, int32_t smoothr) -{ - static uint8_t havebunch[(YAX_MAXBUNCHES+7)>>3]; - - const fix16_t horiz = global100horiz; - - int32_t i, j, k, lev, cf, nmp; - int32_t bnchcnt, bnchnum[2] = {0,0}, maxlev[2]; - int16_t ourbunch[2] = {-1,-1}, osectnum=sectnum; - int32_t bnchbeg[YAX_MAXDRAWS][2], bnchend[YAX_MAXDRAWS][2]; - int32_t bbeg, numhere; - - // original (1st-draw) and accumulated ('per-level') gotsector bitmaps - static uint8_t ogotsector[(MAXSECTORS+7)>>3], lgotsector[(MAXSECTORS+7)>>3]; -#ifdef YAX_DEBUG - uint64_t t; -#endif - - if (videoGetRenderMode() == REND_POLYMER || numyaxbunches==0) - { - return; - } - - // if we're here, there was just a drawrooms() call with g_nodraw=1 - - Bmemcpy(ogotsector, gotsector, (numsectors+7)>>3); - - if (sectnum >= 0) - yax_getbunches(sectnum, &ourbunch[0], &ourbunch[1]); - Bmemset(&havebunch, 0, (numyaxbunches+7)>>3); - - // first scan all bunches above, then all below... - for (cf=0; cf<2; cf++) - { - yax_globalcf = cf; - - if (cf==1) - { - sectnum = osectnum; - Bmemcpy(gotsector, ogotsector, (numsectors+7)>>3); - } - - for (lev=0; /*lev>3]&pow2char[i&7])) - continue; - - j = yax_getbunch(i, cf); - if (j >= 0 && !(havebunch[j>>3]&pow2char[j&7])) - { - if ((SECTORFLD(i,stat, cf)&2) || - (cf==0 && globalposz >= sector[i].ceilingz) || - (cf==1 && globalposz <= sector[i].floorz)) - { - havebunch[j>>3] |= pow2char[j&7]; - bunches[cf][bnchnum[cf]++] = j; - bnchend[lev][cf]++; - numhere++; - } - } - } - - if (numhere > 0) - { - // found bunches -- need to fake-draw - - yax_scanbunches(bbeg, numhere, (uint8_t *)gotsector); - - qsort(&bunches[cf][bbeg], numhere, sizeof(int16_t), &yax_cmpbunches); - - if (numhere > 1 && lev != YAX_MAXDRAWS-1) - Bmemset(lgotsector, 0, sizeof(lgotsector)); - - for (bnchcnt=bbeg; bnchcnt < bbeg+numhere; bnchcnt++) - { - j = bunches[cf][bnchcnt]; // the actual bunchnum... - yax_globalbunch = j; -#ifdef YAX_DEBUG - t=timerGetTicksU64(); -#endif - k = bunchsec[j]; - - if (k < 0) - { - yaxprintf("%s, l %d: skipped bunch %d\n", cf?"v":"^", lev, j); - continue; - } - - if (lev != YAX_MAXDRAWS-1) - { -#ifdef YAX_DEBUG - int32_t odsprcnt = yax_spritesortcnt[yax_globallev]; -#endif - // +MAXSECTORS: force - renderDrawRoomsQ16(globalposx,globalposy,globalposz,qglobalang,horiz,k+MAXSECTORS); - if (numhere > 1) - for (i=0; i<(numsectors+7)>>3; i++) - lgotsector[i] |= gotsector[i]; - - yaxdebug("l%d: faked (bn %2d) sec %4d,%3d dspr, ob=[%2d,%2d], sn=%4d, %.3f ms", - yax_globallev-YAX_MAXDRAWS, j, k, yax_spritesortcnt[yax_globallev]-odsprcnt, - ourbunch[0],ourbunch[1],sectnum, - (double)(1000*(timerGetTicksU64()-t))/u64tickspersec); - } - - if (ourbunch[cf]==j) - { - ourbunch[cf] = yax_getbunch(k, cf); - sectnum = k; - } - } - - if (numhere > 1 && lev != YAX_MAXDRAWS-1) - Bmemcpy(gotsector, lgotsector, (numsectors+7)>>3); - } - - if (numhere==0 || lev==YAX_MAXDRAWS-1) - { - // no new bunches or max level reached - maxlev[cf] = lev - (numhere==0); - break; - } - } - } - -// yax_globalcf = -1; - - // now comes the real drawing! - g_nodraw = 0; - scansector_collectsprites = 0; - -#ifdef USE_OPENGL - if (videoGetRenderMode() == REND_POLYMOST) - { - GLInterface.ClearScreen(0, true); - yax_polymostclearzbuffer = 0; - } -#endif - - for (cf=0; cf<2; cf++) - { - yax_globalcf = cf; - - for (lev=maxlev[cf]; lev>=0; lev--) - { - yax_globallev = YAX_MAXDRAWS + (-1 + 2*cf)*(lev+1); - scansector_collectsprites = (lev == YAX_MAXDRAWS-1); - - for (bnchcnt=bnchbeg[lev][cf]; bnchcnt=0; nmp--) - { - yax_nomaskpass = nmp; - renderDrawRoomsQ16(globalposx,globalposy,globalposz,qglobalang,horiz,k+MAXSECTORS); // +MAXSECTORS: force - - if (nmp==1) - { - yaxdebug("nm1 l%d: DRAWN (bn %2d) sec %4d, %.3f ms", - yax_globallev-YAX_MAXDRAWS, j, k, - (double)(1000*(timerGetTicksU64()-t))/u64tickspersec); - - if (!yax_nomaskdidit) - { - yax_nomaskpass = 0; - break; // no need to draw the same stuff twice - } - Bmemcpy(yax_gotsector, gotsector, (numsectors+7)>>3); - } - } - - if (!scansector_collectsprites) - spritesortcnt = 0; - yax_copytsprites(); - yaxdebug("nm0 l%d: DRAWN (bn %2d) sec %4d,%3d tspr, %.3f ms", - yax_globallev-YAX_MAXDRAWS, j, k, spritesortcnt, - (double)(1000*(timerGetTicksU64()-t))/u64tickspersec); - - SpriteAnimFunc(globalposx, globalposy, globalposz, globalang, smoothr); - renderDrawMasks(); - } - - if (lev < maxlev[cf]) - for (bnchcnt=bnchbeg[lev+1][cf]; bnchcnt= 0) - for (bnchcnt=bnchbeg[0][cf]; bnchcnt=0 && wall[k].nextwall != i) continue; -#ifdef YAX_ENABLE - yax_getbunches(sectnum, &cb[0], &fb[0]); - yax_getbunches(j, &cb[1], &fb[1]); - - if ((cb[0]>=0 && cb[0]==cb[1]) || (fb[0]>=0 && fb[0]==fb[1])) - { - tmpscore = INT32_MAX; - } - else -#endif { getzsofslope(sectnum, x1,y1, &cz[0],&fz[0]); getzsofslope(sectnum, x2,y2, &cz[1],&fz[1]); @@ -1052,12 +306,6 @@ int32_t checksectorpointer(int16_t i, int16_t sectnum) // sectnum -2 means dry run if (bestnextwall >= 0 && sectnum!=-2) -#ifdef YAX_ENABLE - // for walls with TROR neighbors, be conservative in case if score <=0 - // (meaning that no wall area is mutually visible) -- it could be that - // another sector is a better candidate later on - if ((yax_getnextwall(i, 0)<0 && yax_getnextwall(i, 1)<0) || bestwallscore>0) -#endif { // Printf("w%d new nw=%d (score %d)\n", i, bestnextwall, bestwallscore) wall[i].nextsector = bestnextsec; @@ -1165,70 +413,11 @@ char apptitle[256] = "Build Engine"; int32_t renderAddTsprite(int16_t z, int16_t sectnum) { auto const spr = (uspriteptr_t)&sprite[z]; -#ifdef YAX_ENABLE - if (g_nodraw==0) - { - if (numyaxbunches==0) - { -#endif - if (spritesortcnt >= maxspritesonscreen) - return 1; + if (spritesortcnt >= maxspritesonscreen) + return 1; - renderAddTSpriteFromSprite(z); + renderAddTSpriteFromSprite(z); -#ifdef YAX_ENABLE - } - } - else - if (yax_nomaskpass==0) - { - int16_t *sortcnt = &yax_spritesortcnt[yax_globallev]; - - if (*sortcnt >= maxspritesonscreen) - return 1; - - yax_tsprite[yax_globallev][*sortcnt] = z; - if (yax_globalbunch >= 0) - { - yax_tsprite[yax_globallev][*sortcnt] |= (MAXSPRITES|(MAXSPRITES<<1)); - yax_tsprfrombunch[yax_globallev][*sortcnt] = yax_globalbunch; - } - (*sortcnt)++; - - // now check whether the tsprite needs duplication into another level - if ((spr->cstat&48)==32) - return 0; - - int16_t cb, fb; - - yax_getbunches(sectnum, &cb, &fb); - if (cb < 0 && fb < 0) - return 0; - - int32_t spheight; - int16_t spzofs = spriteheightofs(z, &spheight, 1); - - // TODO: get*zofslope? - if (cb>=0 && spr->z+spzofs-spheight < sector[sectnum].ceilingz) - { - sortcnt = &yax_spritesortcnt[yax_globallev-1]; - if (*sortcnt < maxspritesonscreen) - { - yax_tsprite[yax_globallev-1][*sortcnt] = z|MAXSPRITES; - (*sortcnt)++; - } - } - if (fb>=0 && spr->z+spzofs > sector[sectnum].floorz) - { - sortcnt = &yax_spritesortcnt[yax_globallev+1]; - if (*sortcnt < maxspritesonscreen) - { - yax_tsprite[yax_globallev+1][*sortcnt] = z|(MAXSPRITES<<1); - (*sortcnt)++; - } - } - } -#endif return 0; } @@ -2241,9 +1430,6 @@ int32_t renderDrawRoomsQ16(int32_t daposx, int32_t daposy, int32_t daposz, Bmemset(gotsector, 0, sizeof(gotsector)); if (videoGetRenderMode() != REND_CLASSIC -#ifdef YAX_ENABLE - || yax_globallev==YAX_MAXDRAWS -#endif ) { i = xdimen-1; @@ -3228,10 +2414,6 @@ void renderDrawMapView(int32_t dax, int32_t day, int32_t zoome, int16_t ang) for (s=0,sec=(usectorptr_t)§or[s]; s= 0 && (sector[s].floorstat&(256+128))==0) - continue; -#endif int32_t npoints = 0; i = 0; int32_t startwall = sec->wallptr; j = startwall; l = 0; @@ -3649,9 +2831,6 @@ int32_t engineLoadBoard(const char *filename, char flags, vec3_t *dapos, int16_t { // Not map-text. We expect a little-endian version int now. mapversion = B_LITTLE32(mapversion); -#ifdef YAX_ENABLE - ok |= (mapversion==9); -#endif #if MAXSECTORS==MAXSECTORSV8 // v8 engine ok |= (mapversion==8); @@ -3770,20 +2949,9 @@ int32_t engineLoadBoard(const char *filename, char flags, vec3_t *dapos, int16_t // Back up the map version of the *loaded* map. Must be before yax_update(). g_loadedMapVersion = mapversion; -#ifdef YAX_ENABLE - yax_update(mapversion<9); -#endif if ((myflags&8)==0) { -#if 0 // No, no! This is absolutely unacceptable. I won't support mods that require this kind of access. - char fn[BMAX_PATH]; - - Bstrcpy(fn, filename); - append_ext_UNSAFE(fn, ".cfg"); - - OSD_Exec(fn); -#endif // Per-map ART artSetupMapArt(filename); } @@ -4500,28 +3668,10 @@ int32_t cansee(int32_t x1, int32_t y1, int32_t z1, int16_t sect1, int32_t x2, in const int32_t x21 = x2-x1, y21 = y2-y1, z21 = z2-z1; static uint8_t sectbitmap[(MAXSECTORS+7)>>3]; -#ifdef YAX_ENABLE - int16_t pendingsectnum; - vec3_t pendingvec; - - // Negative sectnums can happen, for example if the player is using noclip. - // MAXSECTORS can happen from C-CON, e.g. canseespr with a sprite not in - // the game world. - if ((unsigned)sect1 >= MAXSECTORS || (unsigned)sect2 >= MAXSECTORS) - return 0; - - Bmemset(&pendingvec, 0, sizeof(vec3_t)); // compiler-happy -#endif Bmemset(sectbitmap, 0, sizeof(sectbitmap)); -#ifdef YAX_ENABLE -restart_grand: -#endif if (x1 == x2 && y1 == y2) return (sect1 == sect2); -#ifdef YAX_ENABLE - pendingsectnum = -1; -#endif sectbitmap[sect1>>3] |= pow2char[sect1&7]; clipsectorlist[0] = sect1; danum = 1; @@ -4531,14 +3681,6 @@ restart_grand: auto const sec = (usectorptr_t)§or[dasectnum]; uwallptr_t wal; bssize_t cnt; -#ifdef YAX_ENABLE - int32_t cfz1[2], cfz2[2]; // both wrt dasectnum - int16_t bn[2]; - - yax_getbunches(dasectnum, &bn[0], &bn[1]); - getzsofslope(dasectnum, x1,y1, &cfz1[0], &cfz1[1]); - getzsofslope(dasectnum, x2,y2, &cfz2[0], &cfz2[1]); -#endif for (cnt=sec->wallnum,wal=(uwallptr_t)&wall[sec->wallptr]; cnt>0; cnt--,wal++) { auto const wal2 = (uwallptr_t)&wall[wal->point2]; @@ -4554,49 +3696,11 @@ restart_grand: t = y31*x34-x31*y34; if ((unsigned)t >= (unsigned)bot) { -#ifdef YAX_ENABLE - if (t >= bot) - { - int32_t cf, frac, ns; - for (cf=0; cf<2; cf++) - { - if ((cf==0 && bn[0]>=0 && z1 > cfz1[0] && cfz2[0] > z2) || - (cf==1 && bn[1]>=0 && z1 < cfz1[1] && cfz2[1] < z2)) - { - if ((cfz1[cf]-cfz2[cf])-(z1-z2)==0) - continue; - frac = divscale24(z1-cfz1[cf], (z1-z2)-(cfz1[cf]-cfz2[cf])); - - if ((unsigned)frac >= (1<<24)) - continue; - - x = x1 + mulscale24(x21,frac); - y = y1 + mulscale24(y21,frac); - - ns = yax_getneighborsect(x, y, dasectnum, cf); - if (ns < 0) - continue; - - if (!(sectbitmap[ns>>3] & pow2char[ns&7]) && pendingsectnum==-1) - { - sectbitmap[ns>>3] |= pow2char[ns&7]; - pendingsectnum = ns; - pendingvec.x = x; - pendingvec.y = y; - pendingvec.z = z1 + mulscale24(z21,frac); - } - } - } - } -#endif continue; } nexts = wal->nextsector; -#ifdef YAX_ENABLE - if (bn[0]<0 && bn[1]<0) -#endif if (nexts < 0 || wal->cstat&32) return 0; @@ -4609,44 +3713,13 @@ restart_grand: if (z <= cfz[0] || z >= cfz[1]) { -#ifdef YAX_ENABLE - int32_t cf, frac; - - // XXX: Is this any good? - for (cf=0; cf<2; cf++) - if ((cf==0 && bn[0]>=0 && z <= cfz[0] && z1 >= cfz1[0]) || - (cf==1 && bn[1]>=0 && z >= cfz[1] && z1 <= cfz1[1])) - { - if ((cfz1[cf]-cfz[cf])-(z1-z)==0) - continue; - - frac = divscale24(z1-cfz1[cf], (z1-z)-(cfz1[cf]-cfz[cf])); - t = mulscale24(t, frac); - - if ((unsigned)t < (1<<24)) - { - x = x1 + mulscale24(x21,t); - y = y1 + mulscale24(y21,t); - - nexts = yax_getneighborsect(x, y, dasectnum, cf); - if (nexts >= 0) - goto add_nextsector; - } - } - -#endif return 0; } -#ifdef YAX_ENABLE - if (nexts < 0 || (wal->cstat&32)) - return 0; -#endif getzsofslope(nexts, x,y, &cfz[0],&cfz[1]); if (z <= cfz[0] || z >= cfz[1]) return 0; -add_nextsector: if (!(sectbitmap[nexts>>3] & pow2char[nexts&7])) { sectbitmap[nexts>>3] |= pow2char[nexts&7]; @@ -4654,16 +3727,6 @@ add_nextsector: } } -#ifdef YAX_ENABLE - if (pendingsectnum>=0) - { - sect1 = pendingsectnum; - x1 = pendingvec.x; - y1 = pendingvec.y; - z1 = pendingvec.z; - goto restart_grand; - } -#endif } if (sectbitmap[sect2>>3] & pow2char[sect2&7]) @@ -4799,21 +3862,10 @@ void dragpoint(int16_t pointhighlight, int32_t dax, int32_t day, uint8_t flags) while (1) { - int32_t j, tmpcf; - wall[w].x = dax; wall[w].y = day; walbitmap[w>>3] |= pow2char[w&7]; - for (YAX_ITER_WALLS(w, j, tmpcf)) - { - if ((walbitmap[j>>3]&pow2char[j&7])==0) - { - walbitmap[j>>3] |= pow2char[j&7]; - yaxwalls[numyaxwalls++] = j; - } - } - if (!clockwise) //search points CCW { if (wall[w].nextwall >= 0) @@ -5058,21 +4110,6 @@ void updatesectorz(int32_t const x, int32_t const y, int32_t const z, int16_t * int32_t cz, fz; getzsofslope(*sectnum, x, y, &cz, &fz); -#ifdef YAX_ENABLE - if (z < cz) - { - int const next = yax_getneighborsect(x, y, *sectnum, YAX_CEILING); - if (next >= 0 && z >= getceilzofslope(next, x, y)) - SET_AND_RETURN(*sectnum, next); - } - - if (z > fz) - { - int const next = yax_getneighborsect(x, y, *sectnum, YAX_FLOOR); - if (next >= 0 && z <= getflorzofslope(next, x, y)) - SET_AND_RETURN(*sectnum, next); - } -#endif if (nofirstzcheck || (z >= cz && z <= fz)) if (inside_p(x, y, *sectnum)) return; @@ -5160,21 +4197,6 @@ void updatesectorneighborz(int32_t const x, int32_t const y, int32_t const z, in int32_t cz, fz; getzsofslope(correctedsectnum, x, y, &cz, &fz); -#ifdef YAX_ENABLE - if (z < cz) - { - int const next = yax_getneighborsect(x, y, correctedsectnum, YAX_CEILING); - if (next >= 0 && z >= getceilzofslope(next, x, y)) - SET_AND_RETURN(*sectnum, next); - } - - if (z > fz) - { - int const next = yax_getneighborsect(x, y, correctedsectnum, YAX_FLOOR); - if (next >= 0 && z <= getflorzofslope(next, x, y)) - SET_AND_RETURN(*sectnum, next); - } -#endif if ((nofirstzcheck || (z >= cz && z <= fz)) && inside_p(x, y, *sectnum)) return; @@ -5293,10 +4315,10 @@ void videoInit() { lookups.postLoadLookups(); V_Init2(); - videoSetGameMode(vid_fullscreen, SCREENWIDTH, SCREENHEIGHT, 32, 1); + videoSetGameMode(vid_fullscreen, screen->GetWidth(), screen->GetHeight(), 32, 1); Polymost_Startup(); - GLInterface.Init(SCREENHEIGHT); + GLInterface.Init(screen->GetWidth()); GLInterface.InitGLState(4, 4/*glmultisample*/); screen->SetTextureFilterMode(); } @@ -5506,70 +4528,6 @@ void getzsofslopeptr(usectorptr_t sec, int32_t dax, int32_t day, int32_t *ceilz, *florz += scale(sec->floorheinum,j>>shift,i)<= 0) - { -ceiling: - *pCeilZ = getcorrectceilzofslope(testSector, playerX, playerY); - didCeiling = 1; - } - } - - if ((sector[sectNum].floorstat & 512) == 0) - { - testSector = yax_getneighborsect(playerX, playerY, sectNum, YAX_FLOOR); - - if (testSector >= 0) - { -floor: - *pFloorZ = getcorrectflorzofslope(testSector, playerX, playerY); - didFloor = 1; - } - } - - testSector = sectNum; - - if (!didCeiling) - goto ceiling; - else if (!didFloor) - goto floor; -} - -int32_t yax_getceilzofslope(int const sectnum, vec2_t const vect) -{ - if ((sector[sectnum].ceilingstat&512)==0) - { - int const nsect = yax_getneighborsect(vect.x, vect.y, sectnum, YAX_CEILING); - if (nsect >= 0) - return getcorrectceilzofslope(nsect, vect.x, vect.y); - } - - return getcorrectceilzofslope(sectnum, vect.x, vect.y); -} - -int32_t yax_getflorzofslope(int const sectnum, vec2_t const vect) -{ - if ((sector[sectnum].floorstat&512)==0) - { - int const nsect = yax_getneighborsect(vect.x, vect.y, sectnum, YAX_FLOOR); - if (nsect >= 0) - return getcorrectflorzofslope(nsect, vect.x, vect.y); - } - - return getcorrectflorzofslope(sectnum, vect.x, vect.y); -} -#endif - // // alignceilslope // @@ -5706,25 +4664,6 @@ void setfirstwall(int16_t sectnum, int16_t newfirstwall) if (wall[i].nextwall >= 0) wall[wall[i].nextwall].nextwall = i; -#ifdef YAX_ENABLE - int16_t cb, fb; - yax_getbunches(sectnum, &cb, &fb); - - if (cb>=0 || fb>=0) - { - for (i=startwall; i= 0) - yax_setnextwall(j, YAX_FLOOR, i); - - j = yax_getnextwall(i, YAX_FLOOR); - if (j >= 0) - yax_setnextwall(j, YAX_CEILING, i); - } - } -#endif - Xfree(tmpwall); } diff --git a/source/build/src/engine_priv.h b/source/build/src/engine_priv.h index f864aa83b..eb14a8d20 100644 --- a/source/build/src/engine_priv.h +++ b/source/build/src/engine_priv.h @@ -19,10 +19,6 @@ // FIXME: doesn't work with mirrors. //#define ENGINE_CLEAR_SCREEN -#ifdef YAX_ENABLE -# define YAX_MAXDRAWS 8 -#endif - extern intptr_t asm1, asm2; extern int32_t globalx1, globaly2; @@ -154,27 +150,6 @@ static FORCE_INLINE int32_t getpalookupsh(int32_t davis) { return getpalookup(da extern void polymost_scansector(int32_t sectnum); #endif int32_t renderAddTsprite(int16_t z, int16_t sectnum); -#ifdef YAX_ENABLE -extern int32_t g_nodraw, scansector_retfast, scansector_collectsprites; -extern int32_t yax_globallev, yax_globalbunch; -extern int32_t yax_globalcf, yax_nomaskpass, yax_nomaskdidit; -extern uint8_t haveymost[(YAX_MAXBUNCHES+7)>>3]; -extern uint8_t yax_gotsector[(MAXSECTORS+7)>>3]; -extern int32_t yax_polymostclearzbuffer; - -static FORCE_INLINE int32_t yax_isislandwall(int32_t line, int32_t cf) { return (yax_vnextsec(line, cf) >= 0); } -#endif - -#ifdef YAX_DEBUG -extern char m32_debugstr[64][128]; -extern int32_t m32_numdebuglines; -# define yaxdebug(fmt, ...) do { if (m32_numdebuglines<64) snprintf(m32_debugstr[m32_numdebuglines++], 128, fmt, ##__VA_ARGS__); } while (0) -# define yaxprintf(fmt, ...) do { Printf(fmt, ##__VA_ARGS__); } while (0) -#else -# define yaxdebug(fmt, ...) -# define yaxprintf(fmt, ...) -#endif - static FORCE_INLINE void setgotpic(int32_t tilenume) diff --git a/source/build/src/polymost.cpp b/source/build/src/polymost.cpp index a5671f342..14db4c004 100644 --- a/source/build/src/polymost.cpp +++ b/source/build/src/polymost.cpp @@ -48,14 +48,6 @@ static vsptyp vsp[VSPMAX]; static int32_t gtag, viewportNodeCount; static float xbl, xbr, xbt, xbb; static int32_t domost_rejectcount; -#ifdef YAX_ENABLE -typedef struct { float x, cy[2]; int32_t tag; int16_t n, p, ctag; } yax_vsptyp; -static yax_vsptyp yax_vsp[YAX_MAXBUNCHES*2][VSPMAX]; -typedef struct { float x0, x1, cy[2], fy[2]; } yax_hole_t; -static yax_hole_t yax_holecf[2][VSPMAX]; -static int32_t yax_holencf[2]; -static int32_t yax_drawcf = -1; -#endif static float dxb1[MAXWALLSB], dxb2[MAXWALLSB]; @@ -277,9 +269,6 @@ int skiptile = -1; static void polymost_drawpoly(vec2f_t const * const dpxy, int32_t const n, int32_t method, const vec2_16_t &tilesize) { if (method == DAMETH_BACKFACECULL || globalpicnum == skiptile || -#ifdef YAX_ENABLE - g_nodraw || -#endif (uint32_t)globalpicnum >= MAXTILES) return; @@ -504,23 +493,6 @@ static inline void vsp_finalize_init(int32_t const vcnt) vsp[VSPMAX-1].n = vcnt; vsp[vcnt].p = VSPMAX-1; } -#ifdef YAX_ENABLE -static inline void yax_vsp_finalize_init(int32_t const yaxbunch, int32_t const vcnt) -{ - for (bssize_t i=0; i xbr) - { - domost_rejectcount++; - return; - } - - vec2f_t dm0 = { x0, y0 }; - vec2f_t dm1 = { x1, y1 }; - - float const slop = (dm1.y - dm0.y) / (dm1.x - dm0.x); - - if (dm0.x < xbl) - { - dm0.y += slop*(xbl-dm0.x); - dm0.x = xbl; - } - - if (dm1.x > xbr) - { - dm1.y += slop*(xbr-dm1.x); - dm1.x = xbr; - } - - vec2f_t n0, n1; - float spx[4]; - int32_t spt[4]; - - for (bssize_t newi, i=yax_vsp[yaxbunch][0].n; i; i=newi) - { - newi = yax_vsp[yaxbunch][i].n; n0.x = yax_vsp[yaxbunch][i].x; n1.x = yax_vsp[yaxbunch][newi].x; - - if ((dm0.x >= n1.x) || (n0.x >= dm1.x) || (yax_vsp[yaxbunch][i].ctag <= 0)) continue; - - double const dx = double(n1.x)-double(n0.x); - double const cy = yax_vsp[yaxbunch][i].cy[0], - cv = yax_vsp[yaxbunch][i].cy[1]-cy; - - int scnt = 0; - - //Test if left edge requires split (dm0.x,dm0.y) (nx0,cy(0)), - if ((dm0.x > n0.x) && (dm0.x < n1.x)) - { - double const t = (dm0.x-n0.x)*cv - (dm0.y-cy)*dx; - if (((!dir) && (t <= 0.0)) || ((dir) && (t >= 0.0))) - { spx[scnt] = dm0.x; spt[scnt] = -1; scnt++; } - } - - //Test for intersection on umost (0) and dmost (1) - - double const d = ((double(dm0.y) - double(dm1.y)) * dx) - ((double(dm0.x) - double(dm1.x)) * cv); - - double const n = ((double(dm0.y) - cy) * dx) - ((double(dm0.x) - double(n0.x)) * cv); - - double const fnx = double(dm0.x) + ((n / d) * (double(dm1.x) - double(dm0.x))); - - if ((fabs(d) > fabs(n)) && (d * n >= 0.0) && (fnx > n0.x) && (fnx < n1.x)) - spx[scnt] = fnx, spt[scnt++] = 0; - - //Nice hack to avoid full sort later :) - if ((scnt >= 2) && (spx[scnt-1] < spx[scnt-2])) - { - swapfloat(&spx[scnt-1], &spx[scnt-2]); - swaplong(&spt[scnt-1], &spt[scnt-2]); - } - - //Test if right edge requires split - if ((dm1.x > n0.x) && (dm1.x < n1.x)) - { - double const t = (double(dm1.x)- double(n0.x))*cv - (double(dm1.y)- double(cy))*dx; - if (((!dir) && (t <= 0.0)) || ((dir) && (t >= 0.0))) - { spx[scnt] = dm1.x; spt[scnt] = -1; scnt++; } - } - - yax_vsp[yaxbunch][i].tag = yax_vsp[yaxbunch][newi].tag = -1; - - float const rdx = 1.f/dx; - - for (bssize_t z=0, vcnt=0; z<=scnt; z++,i=vcnt) - { - float t; - - if (z == scnt) - goto skip; - - t = (spx[z]-n0.x)*rdx; - vcnt = yax_vsinsaft(yaxbunch, i); - yax_vsp[yaxbunch][i].cy[1] = t*cv + cy; - yax_vsp[yaxbunch][vcnt].x = spx[z]; - yax_vsp[yaxbunch][vcnt].cy[0] = yax_vsp[yaxbunch][i].cy[1]; - yax_vsp[yaxbunch][vcnt].tag = spt[z]; - -skip: ; - int32_t const ni = yax_vsp[yaxbunch][i].n; if (!ni) continue; //this 'if' fixes many bugs! - float const dx0 = yax_vsp[yaxbunch][i].x; if (dm0.x > dx0) continue; - float const dx1 = yax_vsp[yaxbunch][ni].x; if (dm1.x < dx1) continue; - n0.y = (dx0-dm0.x)*slop + dm0.y; - n1.y = (dx1-dm0.x)*slop + dm0.y; - - // dx0 dx1 - // ~ ~ - //---------------------------- - // t0+=0 t1+=0 - // vsp[i].cy[0] vsp[i].cy[1] - //============================ - // t0+=1 t1+=3 - //============================ - // vsp[i].fy[0] vsp[i].fy[1] - // t0+=2 t1+=6 - // - // ny0 ? ny1 ? - - int k = 4; - - if (!dir) - { - if ((yax_vsp[yaxbunch][i].tag == 0) || (n0.y <= yax_vsp[yaxbunch][i].cy[0]+DOMOST_OFFSET)) k--; - if ((yax_vsp[yaxbunch][ni].tag == 0) || (n1.y <= yax_vsp[yaxbunch][i].cy[1]+DOMOST_OFFSET)) k -= 3; - switch (k) - { - case 4: - { - yax_vsp[yaxbunch][i].cy[0] = n0.y; - yax_vsp[yaxbunch][i].cy[1] = n1.y; - yax_vsp[yaxbunch][i].ctag = gtag; - } - break; - case 1: - case 2: - { - yax_vsp[yaxbunch][i].cy[0] = n0.y; - yax_vsp[yaxbunch][i].ctag = gtag; - } - break; - case 3: - { - yax_vsp[yaxbunch][i].cy[1] = n1.y; - yax_vsp[yaxbunch][i].ctag = gtag; - } - break; - default: break; - } - } - else - { - if ((yax_vsp[yaxbunch][i].tag == 0) || (n0.y >= yax_vsp[yaxbunch][i].cy[0]-DOMOST_OFFSET)) k++; - if ((yax_vsp[yaxbunch][ni].tag == 0) || (n1.y >= yax_vsp[yaxbunch][i].cy[1]-DOMOST_OFFSET)) k += 3; - switch (k) - { - case 4: - { - yax_vsp[yaxbunch][i].cy[0] = n0.y; - yax_vsp[yaxbunch][i].cy[1] = n1.y; - yax_vsp[yaxbunch][i].ctag = gtag; - } - break; - case 7: - case 6: - { - yax_vsp[yaxbunch][i].cy[0] = n0.y; - yax_vsp[yaxbunch][i].ctag = gtag; - } - break; - case 5: - { - yax_vsp[yaxbunch][i].cy[1] = n1.y; - yax_vsp[yaxbunch][i].ctag = gtag; - } - break; - default: - break; - } - } - } - } - - gtag++; - - //Combine neighboring vertical strips with matching collinear top&bottom edges - //This prevents x-splits from propagating through the entire scan -#ifdef COMBINE_STRIPS - int i = yax_vsp[yaxbunch][0].n; - - do - { - int const ni = yax_vsp[yaxbunch][i].n; - - if (yax_vsp[yaxbunch][i].ctag == yax_vsp[yaxbunch][ni].ctag) - { - yax_vsp[yaxbunch][i].cy[1] = yax_vsp[yaxbunch][ni].cy[1]; - yax_vsdel(yaxbunch, ni); - } - else i = ni; - } - while (i); -#endif -} - -static int32_t should_clip_cfwall(float x0, float y0, float x1, float y1) -{ - int const dir = (x0 < x1); - - if (dir && yax_globallev >= YAX_MAXDRAWS) - return 1; - - if (!dir && yax_globallev <= YAX_MAXDRAWS) - return 1; - - if (dir) //clip dmost (floor) - { - y0 -= DOMOST_OFFSET; - y1 -= DOMOST_OFFSET; - } - else //clip umost (ceiling) - { - if (x0 == x1) return 1; - swapfloat(&x0, &x1); - swapfloat(&y0, &y1); - y0 += DOMOST_OFFSET; - y1 += DOMOST_OFFSET; //necessary? - } - - x0 -= DOMOST_OFFSET; - x1 += DOMOST_OFFSET; - - // Test if span is outside screen bounds - if (x1 < xbl || x0 > xbr) - return 1; - - vec2f_t dm0 = { x0, y0 }; - vec2f_t dm1 = { x1, y1 }; - - float const slop = (dm1.y - dm0.y) / (dm1.x - dm0.x); - - if (dm0.x < xbl) - { - dm0.y += slop*(xbl-dm0.x); - dm0.x = xbl; - } - - if (dm1.x > xbr) - { - dm1.y += slop*(xbr-dm1.x); - dm1.x = xbr; - } - - vec2f_t n0, n1; - float spx[6], spcy[6], spfy[6]; - int32_t spt[6]; - - for (bssize_t newi, i=vsp[0].n; i; i=newi) - { - newi = vsp[i].n; n0.x = vsp[i].x; n1.x = vsp[newi].x; - - if ((dm0.x >= n1.x) || (n0.x >= dm1.x) || (vsp[i].ctag <= 0)) continue; - - float const dx = n1.x-n0.x; - float const cy[2] = { vsp[i].cy[0], vsp[i].fy[0] }, - cv[2] = { vsp[i].cy[1]-cy[0], vsp[i].fy[1]-cy[1] }; - - int scnt = 0; - - spx[scnt] = n0.x; spt[scnt] = -1; scnt++; - - //Test if left edge requires split (dm0.x,dm0.y) (nx0,cy(0)), - if ((dm0.x > n0.x) && (dm0.x < n1.x)) - { - float const t = (dm0.x-n0.x)*cv[dir] - (dm0.y-cy[dir])*dx; - if (((!dir) && (t < 0.f)) || ((dir) && (t > 0.f))) - { spx[scnt] = dm0.x; spt[scnt] = -1; scnt++; } - } - - //Test for intersection on umost (0) and dmost (1) - - float const d[2] = { ((dm0.y - dm1.y) * dx) - ((dm0.x - dm1.x) * cv[0]), - ((dm0.y - dm1.y) * dx) - ((dm0.x - dm1.x) * cv[1]) }; - - float const n[2] = { ((dm0.y - cy[0]) * dx) - ((dm0.x - n0.x) * cv[0]), - ((dm0.y - cy[1]) * dx) - ((dm0.x - n0.x) * cv[1]) }; - - float const fnx[2] = { dm0.x + ((n[0] / d[0]) * (dm1.x - dm0.x)), - dm0.x + ((n[1] / d[1]) * (dm1.x - dm0.x)) }; - - if ((Bfabsf(d[0]) > Bfabsf(n[0])) && (d[0] * n[0] >= 0.f) && (fnx[0] > n0.x) && (fnx[0] < n1.x)) - spx[scnt] = fnx[0], spt[scnt++] = 0; - - if ((Bfabsf(d[1]) > Bfabsf(n[1])) && (d[1] * n[1] >= 0.f) && (fnx[1] > n0.x) && (fnx[1] < n1.x)) - spx[scnt] = fnx[1], spt[scnt++] = 1; - - //Nice hack to avoid full sort later :) - if ((scnt >= 2) && (spx[scnt-1] < spx[scnt-2])) - { - swapfloat(&spx[scnt-1], &spx[scnt-2]); - swaplong(&spx[scnt-1], &spx[scnt-2]); - } - - //Test if right edge requires split - if ((dm1.x > n0.x) && (dm1.x < n1.x)) - { - float const t = (dm1.x-n0.x)*cv[dir] - (dm1.y-cy[dir])*dx; - if (((!dir) && (t < 0.f)) || ((dir) && (t > 0.f))) - { spx[scnt] = dm1.x; spt[scnt] = -1; scnt++; } - } - - spx[scnt] = n1.x; spt[scnt] = -1; scnt++; - - float const rdx = 1.f/dx; - for (bssize_t z=0; z= spfy[z]-DOMOST_OFFSET)) k++; - if ((spt[z+1] == 1) || (n1.y >= spfy[z+1]-DOMOST_OFFSET)) k += 3; - if (k != 8) - return 1; - } - } - } - return 0; -} - -#endif - // variables that are set to ceiling- or floor-members, depending // on which one is processed right now @@ -2057,11 +1556,6 @@ static void polymost_drawalls(int32_t const bunch) xtex2.u = ytex2.u = otex2.u = 0; xtex2.v = ytex2.v = otex2.v = 0; -#ifdef YAX_ENABLE - yax_holencf[YAX_FLOOR] = 0; - yax_drawcf = YAX_FLOOR; -#endif - // Floor globalpicnum = sec->floorpicnum; @@ -2306,11 +1800,6 @@ static void polymost_drawalls(int32_t const bunch) // Ceiling -#ifdef YAX_ENABLE - yax_holencf[YAX_CEILING] = 0; - yax_drawcf = YAX_CEILING; -#endif - globalpicnum = sec->ceilingpicnum; globalshade = sec->ceilingshade; globalpal = sec->ceilingpal; @@ -2550,53 +2039,8 @@ static void polymost_drawalls(int32_t const bunch) skyzbufferhack = 0; } -#ifdef YAX_ENABLE - if (g_nodraw) - { - int32_t baselevp, checkcf, i, j; - int16_t bn[2]; - baselevp = (yax_globallev == YAX_MAXDRAWS); - - yax_getbunches(sectnum, &bn[0], &bn[1]); - checkcf = (bn[0]>=0) + ((bn[1]>=0)<<1); - if (!baselevp) - checkcf &= (1<>3]&pow2char[bn[i]&7])==0) - { - // init yax *most arrays for that bunch - haveymost[bn[i]>>3] |= pow2char[bn[i]&7]; - yax_vsp[bn[i]*2][1].x = xbl; - yax_vsp[bn[i]*2][2].x = xbr; - yax_vsp[bn[i]*2][1].cy[0] = xbb; - yax_vsp[bn[i]*2][2].cy[0] = xbb; - yax_vsp_finalize_init(bn[i]*2, 3); - yax_vsp[bn[i]*2+1][1].x = xbl; - yax_vsp[bn[i]*2+1][2].x = xbr; - yax_vsp[bn[i]*2+1][1].cy[0] = xbt; - yax_vsp[bn[i]*2+1][2].cy[0] = xbt; - yax_vsp_finalize_init(bn[i]*2+1, 3); - } - - for (j = 0; j < yax_holencf[i]; j++) - { - yax_hole_t *hole = &yax_holecf[i][j]; - yax_polymost_domost(bn[i]*2, hole->x0, hole->cy[0], hole->x1, hole->cy[1]); - yax_polymost_domost(bn[i]*2+1, hole->x1, hole->fy[1], hole->x0, hole->fy[0]); - } - } - } -#endif - // Wall -#ifdef YAX_ENABLE - yax_drawcf = -1; -#endif - xtex.d = (ryp0-ryp1)*gxyaspect / (x0-x1); ytex.d = 0; otex.d = ryp0*gxyaspect - xtex.d*x0; @@ -2612,9 +2056,6 @@ static void polymost_drawalls(int32_t const bunch) Bassert(domostpolymethod == DAMETH_NOMASK); domostpolymethod = DAMETH_WALL; -#ifdef YAX_ENABLE - if (yax_nomaskpass==0 || !yax_isislandwall(wallnum, !yax_globalcf) || (yax_nomaskdidit=1, 0)) -#endif if (nextsectnum >= 0) { fgetzsofslope((usectorptr_t)§or[nextsectnum],n0.x,n0.y,&cz,&fz); @@ -2648,9 +2089,6 @@ static void polymost_drawalls(int32_t const bunch) if (wal->cstat&256) { xtex.v = -xtex.v; ytex.v = -ytex.v; otex.v = -otex.v; } //yflip pow2xsplit = 1; -#ifdef YAX_ENABLE - if (should_clip_cfwall(x1,cy1,x0,cy0)) -#endif polymost_domost(x1,ocy1,x0,ocy0,cy1,ocy1,cy0,ocy0); if (wal->cstat&8) { xtex.u = ogux; ytex.u = oguy; otex.u = oguo; } } @@ -2686,9 +2124,6 @@ static void polymost_drawalls(int32_t const bunch) if (nwal->cstat&256) { xtex.v = -xtex.v; ytex.v = -ytex.v; otex.v = -otex.v; } //yflip pow2xsplit = 1; -#ifdef YAX_ENABLE - if (should_clip_cfwall(x0,fy0,x1,fy1)) -#endif polymost_domost(x0,ofy0,x1,ofy1,ofy0,fy0,ofy1,fy1); if (wal->cstat&(2+8)) { otex.u = oguo; xtex.u = ogux; ytex.u = oguy; } } @@ -2735,13 +2170,6 @@ static void polymost_drawalls(int32_t const bunch) pow2xsplit = 1; -#ifdef YAX_ENABLE - // TODO: slopes? - - if (globalposz > sec->floorz && yax_isislandwall(wallnum, YAX_FLOOR)) - polymost_domost(x1, fy1, x0, fy0, cy1, fy1, cy0, fy0); - else -#endif polymost_domost(x0, cy0, x1, cy1, cy0, fy0, cy1, fy1); } while (0); } @@ -2792,9 +2220,6 @@ void polymost_scansector(int32_t sectnum) { sectnum = sectorborder[--sectorbordercnt]; -#ifdef YAX_ENABLE - if (scansector_collectsprites) -#endif for (bssize_t z=headspritesect[sectnum]; z>=0; z=nextspritesect[z]) { auto const spr = (uspriteptr_t)&sprite[z]; @@ -2840,9 +2265,6 @@ void polymost_scansector(int32_t sectnum) int const nextsectnum = wal->nextsector; //Scan close sectors if (nextsectnum >= 0 && !(wal->cstat&32) && sectorbordercnt < ARRAY_SSIZE(sectorborder)) -#ifdef YAX_ENABLE - if (yax_nomaskpass==0 || !yax_isislandwall(z, !yax_globalcf) || (yax_nomaskdidit=1, 0)) -#endif if ((gotsector[nextsectnum>>3]&pow2char[nextsectnum&7]) == 0) { double const d = fp1.x*fp2.y - fp2.x*fp1.y; @@ -2912,10 +2334,6 @@ void polymost_scansector(int32_t sectnum) { bunchfirst[numbunches++] = bunchp2[z]; bunchp2[z] = -1; -#ifdef YAX_ENABLE - if (scansector_retfast) - return; -#endif } } @@ -3029,12 +2447,7 @@ void polymost_drawrooms() polymost_outputGLDebugMessage(3, "polymost_drawrooms()"); -#ifdef YAX_ENABLE - //if (yax_polymostclearzbuffer) -#endif - { - GLInterface.ClearDepth(); - } + GLInterface.ClearDepth(); GLInterface.EnableBlend(false); GLInterface.EnableAlphaTest(false); GLInterface.EnableDepthTest(true); @@ -3158,59 +2571,6 @@ void polymost_drawrooms() polymost_initmosts(sx, sy, n); -#ifdef YAX_ENABLE - if (yax_globallev != YAX_MAXDRAWS) - { - int i, newi; - int32_t nodrawbak = g_nodraw; - g_nodraw = 1; - for (i = yax_vsp[yax_globalbunch*2][0].n; i; i=newi) - { - newi = yax_vsp[yax_globalbunch*2][i].n; - if (!newi) - break; - polymost_domost(yax_vsp[yax_globalbunch*2][newi].x, yax_vsp[yax_globalbunch*2][i].cy[1]-DOMOST_OFFSET, yax_vsp[yax_globalbunch*2][i].x, yax_vsp[yax_globalbunch*2][i].cy[0]-DOMOST_OFFSET); - } - for (i = yax_vsp[yax_globalbunch*2+1][0].n; i; i=newi) - { - newi = yax_vsp[yax_globalbunch*2+1][i].n; - if (!newi) - break; - polymost_domost(yax_vsp[yax_globalbunch*2+1][i].x, yax_vsp[yax_globalbunch*2+1][i].cy[0]+DOMOST_OFFSET, yax_vsp[yax_globalbunch*2+1][newi].x, yax_vsp[yax_globalbunch*2+1][i].cy[1]+DOMOST_OFFSET); - } - g_nodraw = nodrawbak; - -#ifdef COMBINE_STRIPS - i = vsp[0].n; - - do - { - int const ni = vsp[i].n; - - //POGO: specially treat the viewport nodes so that we will never end up in a situation where we accidentally access the sentinel node - if (ni >= viewportNodeCount) - { - if (Bfabsf(vsp[i].cy[1]-vsp[ni].cy[0]) < 0.1f && Bfabsf(vsp[i].fy[1]-vsp[ni].fy[0]) < 0.1f) - { - float const dx = 1.f/(vsp[ni].x-vsp[i].x); - float const dx2 = 1.f/(vsp[vsp[ni].n].x-vsp[i].x); - float const cslop[2] = { vsp[i].cy[1]-vsp[i].cy[0], vsp[ni].cy[1]-vsp[i].cy[0] }; - float const fslop[2] = { vsp[i].fy[1]-vsp[i].fy[0], vsp[ni].fy[1]-vsp[i].fy[0] }; - - if (Bfabsf(cslop[0]*dx-cslop[1]*dx2) < 0.001f && Bfabsf(fslop[0]*dx-fslop[1]*dx2) < 0.001f) - { - vsmerge(i, ni); - continue; - } - } - } - i = ni; - } - while (i); -#endif - } -#endif - numscans = numbunches = 0; // MASKWALL_BAD_ACCESS diff --git a/source/core/savegamehelp.cpp b/source/core/savegamehelp.cpp index 17a9114dd..0e2a36242 100644 --- a/source/core/savegamehelp.cpp +++ b/source/core/savegamehelp.cpp @@ -490,11 +490,6 @@ void SaveEngineState() fw->Write(&show2dsector, sizeof(show2dsector)); WriteMagic(fw); - fw->Write(&numyaxbunches, sizeof(numyaxbunches)); - fw->Write(yax_bunchnum, sizeof(yax_bunchnum)); - fw->Write(yax_nextwall, sizeof(yax_nextwall)); - WriteMagic(fw); - fw->Write(&Numsprites, sizeof(Numsprites)); sv_prespriteextsave(); fw->Write(spriteext, sizeof(spriteext_t) * MAXSPRITES); @@ -558,12 +553,6 @@ void LoadEngineState() fr.Read(&show2dsector, sizeof(show2dsector)); CheckMagic(fr); - fr.Read(&numyaxbunches, sizeof(numyaxbunches)); - fr.Read(yax_bunchnum, sizeof(yax_bunchnum)); - fr.Read(yax_nextwall, sizeof(yax_nextwall)); - yax_update(numyaxbunches > 0 ? 2 : 1); - CheckMagic(fr); - fr.Read(&Numsprites, sizeof(Numsprites)); fr.Read(spriteext, sizeof(spriteext_t) * MAXSPRITES); fr.Read(wallext, sizeof(wallext_t) * MAXWALLS); diff --git a/source/exhumed/src/init.cpp b/source/exhumed/src/init.cpp index 1f5cb55a9..786cb359b 100644 --- a/source/exhumed/src/init.cpp +++ b/source/exhumed/src/init.cpp @@ -153,10 +153,6 @@ uint8_t LoadLevel(int nMap) inity = startPos.y; initz = startPos.z; -#ifdef YAX_ENABLE - yax_update(1); -#endif - int i; for (i = 0; i < kMaxPlayers; i++)