From bd023b0b1c6ea06d80009b3b4eabb00661b4a9dd Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 30 May 2022 00:19:32 +0200 Subject: [PATCH] - fixed wall sprite clipping --- source/core/rendering/scene/hw_walls.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/source/core/rendering/scene/hw_walls.cpp b/source/core/rendering/scene/hw_walls.cpp index 39bfb743a..8038636ab 100644 --- a/source/core/rendering/scene/hw_walls.cpp +++ b/source/core/rendering/scene/hw_walls.cpp @@ -1213,13 +1213,13 @@ void HWWall::ProcessWallSprite(HWDrawInfo* di, tspritetype* spr, sectortype* sec tcs[UPLFT].v = tcs[UPRGT].v = 1.f - tcs[UPLFT].v; tcs[LOLFT].v = tcs[LORGT].v = 1.f - tcs[LOLFT].v; } - + // Clip sprites to ceilings/floors if (!(sector->ceilingstat & CSTAT_SECTOR_SKY)) { float polyh = (ztop[0] - zbottom[0]); float ceilingz = sector->ceilingz * (1 / -256.f); - if (ceilingz < ztop[0] && ceilingz > zbottom[0]) + if (ceilingz < ztop[0] && ceilingz >= zbottom[0]) { float newv = (ceilingz - zbottom[0]) / polyh; tcs[UPLFT].v = tcs[UPRGT].v = tcs[LOLFT].v + newv * (tcs[UPLFT].v - tcs[LOLFT].v); @@ -1230,13 +1230,15 @@ void HWWall::ProcessWallSprite(HWDrawInfo* di, tspritetype* spr, sectortype* sec { float polyh = (ztop[0] - zbottom[0]); float floorz = sector->floorz * (1 / -256.f); - if (floorz < ztop[0] && floorz > zbottom[0]) + if (floorz <= ztop[0] && floorz > zbottom[0]) { float newv = (floorz - zbottom[0]) / polyh; tcs[LOLFT].v = tcs[LORGT].v = tcs[LOLFT].v + newv * (tcs[UPLFT].v - tcs[LOLFT].v); zbottom[0] = zbottom[1] = floorz; } } + if (zbottom[0] >= ztop[0]) + return; // nothing left to render. // If the sprite is backward, flip it around so that we have guaranteed orientation when this is about to be sorted. if (PointOnLineSide(di->Viewpoint.Pos.XY(), DVector2(glseg.x1, glseg.y1), DVector2(glseg.x2, glseg.y2)) < 0)