From 0aec79ef8f329095d551e63330ec98d9364bbb8e Mon Sep 17 00:00:00 2001 From: helixhorned Date: Mon, 13 Aug 2012 18:26:11 +0000 Subject: [PATCH] game.c: factor out 2 inst. of dup. code into G_DoEventAnimSprites(). git-svn-id: https://svn.eduke32.com/eduke32@2892 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/source/game.c | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/polymer/eduke32/source/game.c b/polymer/eduke32/source/game.c index 28faae697..72aaef997 100644 --- a/polymer/eduke32/source/game.c +++ b/polymer/eduke32/source/game.c @@ -6061,6 +6061,16 @@ static int32_t adult_tile_p(int32_t pic) return 0; } +static void G_DoEventAnimSprites(int32_t j) +{ + if (display_mirror) tsprite[j].statnum = TSPR_MIRROR; + if ((unsigned)tsprite[j].owner < MAXSPRITES && spriteext[tsprite[j].owner].flags & SPREXT_TSPRACCESS) + { + spriteext[tsprite[j].owner].tspr = &tsprite[j]; + VM_OnEvent(EVENT_ANIMATESPRITES, tsprite[j].owner, myconnectindex, -1, 0); + } +} + #if 0 // def _MSC_VER // Visual C thought this was a bit too hard to optimise so we'd better // tell it not to try... such a pussy it is. @@ -6887,25 +6897,14 @@ skip: if (apScriptGameEvent[EVENT_ANIMATESPRITES]) { j = spritesortcnt-1; + do - { - if (display_mirror) tsprite[j].statnum = TSPR_MIRROR; - if (tsprite[j].owner < MAXSPRITES && tsprite[j].owner >= 0 && spriteext[tsprite[j].owner].flags & SPREXT_TSPRACCESS) - { - spriteext[tsprite[j].owner].tspr = (spritetype *)&tsprite[j]; - VM_OnEvent(EVENT_ANIMATESPRITES,tsprite[j].owner, myconnectindex, -1, 0); - } - } + G_DoEventAnimSprites(j); while (j--); if (j < 0) return; - if (display_mirror) tsprite[j].statnum = TSPR_MIRROR; - if (tsprite[j].owner >= 0 && tsprite[j].owner < MAXSPRITES && spriteext[tsprite[j].owner].flags & SPREXT_TSPRACCESS) - { - spriteext[tsprite[j].owner].tspr = (spritetype *)&tsprite[j]; - VM_OnEvent(EVENT_ANIMATESPRITES,tsprite[j].owner, myconnectindex, -1, 0); - } + G_DoEventAnimSprites(j); } } #if 0 // def _MSC_VER