From 6cec61683d754c7b7dbba76ac87e09a934320f7a Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 28 Nov 2021 19:19:21 +0100 Subject: [PATCH] - fixed incorrectly placed tileUpdatePicnum call in new renderer for sprites. This was only in the regular sprite call and did not affect models or voxels. --- source/core/rendering/scene/hw_drawinfo.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/source/core/rendering/scene/hw_drawinfo.cpp b/source/core/rendering/scene/hw_drawinfo.cpp index e2b4e9d3c..b02f01a15 100644 --- a/source/core/rendering/scene/hw_drawinfo.cpp +++ b/source/core/rendering/scene/hw_drawinfo.cpp @@ -284,11 +284,13 @@ void HWDrawInfo::DispatchSprites() if ((unsigned)spritenum < MAXSPRITES) sprite[spritenum].cstat2 |= CSTAT2_SPRITE_MAPPED; + tileUpdatePicnum(&tilenum, sprite->owner + 32768, 0); + tspr->picnum = tilenum; setgotpic(tilenum); if (!(spriteext[spritenum].flags & SPREXT_NOTMD)) { - int pt = Ptile2tile(tspr->picnum, tspr->pal); + int pt = Ptile2tile(tilenum, tspr->pal); if (hw_models && tile2model[pt].modelid >= 0 && tile2model[pt].framenum >= 0) { //HWSprite hwsprite; @@ -296,17 +298,18 @@ void HWDrawInfo::DispatchSprites() } if (r_voxels) { - if ((tspr->cstat & CSTAT_SPRITE_ALIGNMENT) != CSTAT_SPRITE_ALIGNMENT_SLAB && tiletovox[tspr->picnum] >= 0 && voxmodels[tiletovox[tspr->picnum]]) + if ((tspr->cstat & CSTAT_SPRITE_ALIGNMENT) != CSTAT_SPRITE_ALIGNMENT_SLAB && tiletovox[tilenum] >= 0 && voxmodels[tiletovox[tilenum]]) { HWSprite hwsprite; - int num = tiletovox[tspr->picnum]; - if (hwsprite.ProcessVoxel(this, voxmodels[tiletovox[tspr->picnum]], tspr, §or[tspr->sectnum], voxrotate[num])) + int num = tiletovox[tilenum]; + if (num != 435) Printf("%d - %d\n", tilenum, num); + if (hwsprite.ProcessVoxel(this, voxmodels[num], tspr, §or[tspr->sectnum], voxrotate[num])) continue; } - else if ((tspr->cstat & CSTAT_SPRITE_ALIGNMENT) == CSTAT_SPRITE_ALIGNMENT_SLAB && tspr->picnum < MAXVOXELS && voxmodels[tspr->picnum]) + else if ((tspr->cstat & CSTAT_SPRITE_ALIGNMENT) == CSTAT_SPRITE_ALIGNMENT_SLAB && tspr->picnum < MAXVOXELS && voxmodels[tilenum]) { HWSprite hwsprite; - int num = tspr->picnum; + int num = tilenum; hwsprite.ProcessVoxel(this, voxmodels[tspr->picnum], tspr, §or[tspr->sectnum], voxrotate[num]); continue; } @@ -324,9 +327,6 @@ void HWDrawInfo::DispatchSprites() tspr->pos.y -= bsin(tspr->ang, -13); } - tileUpdatePicnum(&tilenum, sprite->owner + 32768, 0); - tspr->picnum = tilenum; - switch (tspr->cstat & CSTAT_SPRITE_ALIGNMENT) { case CSTAT_SPRITE_ALIGNMENT_FACING: