From a949665f269fde224dd07606870129f4c0194461 Mon Sep 17 00:00:00 2001 From: terminx Date: Thu, 1 Aug 2019 06:50:37 +0000 Subject: [PATCH] Work around an issue with far plane clipping with voxels without mipmaps in software mode Patch from Nuke.YKT. git-svn-id: https://svn.eduke32.com/eduke32@7869 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/build/src/engine.cpp | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/source/build/src/engine.cpp b/source/build/src/engine.cpp index 76a3b43d2..37c062519 100644 --- a/source/build/src/engine.cpp +++ b/source/build/src/engine.cpp @@ -4725,7 +4725,7 @@ static void classicDrawVoxel(int32_t dasprx, int32_t daspry, int32_t dasprz, int int8_t dashade, char dapal, const int32_t *daumost, const int32_t *dadmost, const int8_t cstat, const int32_t clipcf, int32_t floorz, int32_t ceilingz) { - int32_t i, j, k, x, y; + int32_t i, j, k, x, y, mip; int32_t cosang = cosglobalang; int32_t sinang = singlobalang; @@ -4737,7 +4737,7 @@ static void classicDrawVoxel(int32_t dasprx, int32_t daspry, int32_t dasprz, int setupdrawslab(ylookup[1], FP_OFF(palookup[dapal])+j); j = 1310720; - j *= min(daxscale,dayscale); j >>= 6; //New hacks (for sized-down voxels) + //j *= min(daxscale,dayscale); j >>= 6; //New hacks (for sized-down voxels) for (k=0; k= MAXVOXMIPS) i = MAXVOXMIPS-1; + mip = 0; + if (novoxmips) + { + mip = i; i = 0; + } char *davoxptr = (char *)voxoff[daindex][i]; - if (!davoxptr && i > 0) { davoxptr = (char *)voxoff[daindex][0]; i = 0; } + if (!davoxptr && i > 0) { davoxptr = (char *)voxoff[daindex][0]; mip = i; i = 0;} if (!davoxptr) return; @@ -4791,6 +4796,9 @@ static void classicDrawVoxel(int32_t dasprx, int32_t daspry, int32_t dasprz, int cosang <<= 2; sinang <<= 2; + cosang >>= mip; + sinang >>= mip; + const voxint_t gxstart = (voxint_t)y*cosang - (voxint_t)x*sinang; const voxint_t gystart = (voxint_t)x*cosang + (voxint_t)y*sinang; const int32_t gxinc = dmulscale10(sprsinang,cosang, sprcosang,-sinang); @@ -4966,10 +4974,10 @@ static void classicDrawVoxel(int32_t dasprx, int32_t daspry, int32_t dasprz, int rx -= lx; - const int32_t l1 = mulscale12(distrecip[clamp((ny-yoff)>>14, 1, DISTRECIPSIZ-1)], dayscale); + const int32_t l1 = mulscale(distrecip[clamp((ny-yoff)>>14, 1, DISTRECIPSIZ-1)], dayscale, 12+mip); // FIXME! AMCTC RC2/beta shotgun voxel // (e.g. training map right after M16 shooting): - const int32_t l2 = mulscale12(distrecip[clamp((ny+yoff)>>14, 1, DISTRECIPSIZ-1)], dayscale); + const int32_t l2 = mulscale(distrecip[clamp((ny+yoff)>>14, 1, DISTRECIPSIZ-1)], dayscale, 12+mip); int32_t cz1 = 0, cz2 = INT32_MAX; if (clipcf)