From 1849fe541e415d6e098bdef0cf72f20c3fbea261 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 31 Dec 2021 11:55:25 +0100 Subject: [PATCH] - fixed alignment of sloped sprites. The offset fields are not valid for them so thwy may not be used for offsetting. --- source/build/src/clip.cpp | 7 ++++++- source/core/gamefuncs.cpp | 11 +++++++---- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/source/build/src/clip.cpp b/source/build/src/clip.cpp index 168a95a4c..cfc78b11e 100644 --- a/source/build/src/clip.cpp +++ b/source/build/src/clip.cpp @@ -78,7 +78,12 @@ static inline void get_floorspr_points(DCoreActor *spr, int32_t px, int32_t py, vec2_t const span = { tileWidth(tilenum), tileHeight(tilenum)}; vec2_t const repeat = { spr->spr.xrepeat, spr->spr.yrepeat }; - vec2_t adjofs = { tileLeftOffset(tilenum) + spr->spr.xoffset, tileTopOffset(tilenum) + spr->spr.yoffset }; + vec2_t adjofs = { tileLeftOffset(tilenum), tileTopOffset(tilenum) }; + if (heinum == 0) + { + adjofs.X += spr->spr.xoffset; + adjofs.Y += spr->spr.yoffset; + } int32_t const ratio = ksqrt(heinum * heinum + 4096 * 4096); diff --git a/source/core/gamefuncs.cpp b/source/core/gamefuncs.cpp index ed3bf57eb..4fc793f10 100644 --- a/source/core/gamefuncs.cpp +++ b/source/core/gamefuncs.cpp @@ -282,19 +282,22 @@ void TGetFlatSpritePosition(const spritetypebase* spr, vec2_t pos, vec2_t* out, int width, height, leftofs, topofs; int ratio = ksqrt(heinum * heinum + 4096 * 4096); + int xo = heinum ? 0 : spr->xoffset; + int yo = heinum ? 0 : spr->yoffset; + if (render && hw_hightile && TileFiles.tiledata[spr->picnum].hiofs.xsize) { width = TileFiles.tiledata[spr->picnum].hiofs.xsize * spr->xrepeat; height = TileFiles.tiledata[spr->picnum].hiofs.ysize * spr->yrepeat; - leftofs = (TileFiles.tiledata[spr->picnum].hiofs.xoffs + spr->xoffset) * spr->xrepeat; - topofs = (TileFiles.tiledata[spr->picnum].hiofs.yoffs + spr->yoffset) * spr->yrepeat; + leftofs = (TileFiles.tiledata[spr->picnum].hiofs.xoffs + xo) * spr->xrepeat; + topofs = (TileFiles.tiledata[spr->picnum].hiofs.yoffs + yo) * spr->yrepeat; } else { width = (int)tex->GetDisplayWidth() * spr->xrepeat; height = (int)tex->GetDisplayHeight() * spr->yrepeat; - leftofs = ((int)tex->GetDisplayLeftOffset() + spr->xoffset) * spr->xrepeat; - topofs = ((int)tex->GetDisplayTopOffset() + spr->yoffset) * spr->yrepeat; + leftofs = ((int)tex->GetDisplayLeftOffset() + xo) * spr->xrepeat; + topofs = ((int)tex->GetDisplayTopOffset() + yo) * spr->yrepeat; } if (spr->cstat & CSTAT_SPRITE_XFLIP) leftofs = -leftofs;