From bc35a5c8d2cb2c15b2496454bc56a2bd912735ba Mon Sep 17 00:00:00 2001 From: helixhorned Date: Sun, 4 Jan 2015 18:45:01 +0000 Subject: [PATCH] engine.c: in drawmasks(), remove sorting sprites by statnum. There were various issues with that code. - It does not seem to be very meaningful to do so. - It was carried out on the same range as the sprites sorted by z coordinate (those with equal x/y) just a few lines away, effectively overriding it. The former is very meaningful, though. - It led to inconsistencies between editor and game, see http://forums.duke4.net/topic/775-eduke32-20-and-polymer/page__view__findpost__p__214873 git-svn-id: https://svn.eduke32.com/eduke32@4876 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/build/src/engine.c | 28 +++++++--------------------- 1 file changed, 7 insertions(+), 21 deletions(-) diff --git a/polymer/eduke32/build/src/engine.c b/polymer/eduke32/build/src/engine.c index e221e9520..57dc10197 100644 --- a/polymer/eduke32/build/src/engine.c +++ b/polymer/eduke32/build/src/engine.c @@ -9673,12 +9673,12 @@ killsprite: } { - int32_t j, l, gap, ys; + int32_t gap, ys; gap = 1; while (gap < spritesortcnt) gap = (gap<<1)+1; for (gap>>=1; gap>0; gap>>=1) //Sort sprite list for (i=0; i=0; l-=gap) + for (int32_t l=i; l>=0; l-=gap) { if (spritesxyz[l].y <= spritesxyz[l+gap].y) break; swaplong(&tspriteptr[l],&tspriteptr[l+gap]); @@ -9690,7 +9690,7 @@ killsprite: spritesxyz[spritesortcnt].y = (spritesxyz[spritesortcnt-1].y^1); ys = spritesxyz[0].y; i = 0; - for (j=1; j<=spritesortcnt; j++) + for (int32_t j=1; j<=spritesortcnt; j++) { if (spritesxyz[j].y == ys) continue; @@ -9699,11 +9699,7 @@ killsprite: if (j > i+1) { - int32_t k; - vec3_t tv3; - vec2_t tv2; - - for (k=i; kstatnum < tspriteptr[l]->statnum) - { - swaplong(&tspriteptr[k],&tspriteptr[l]); - tv2 = *(vec2_t *)&spritesxyz[k]; - *(vec2_t *)&spritesxyz[k] = *(vec2_t *)&spritesxyz[l]; - *(vec2_t *)&spritesxyz[l] = tv2; - } } i = j; }