This repository has been archived on 2022-09-26. You can view files and clone it, but cannot push or open issues or pull requests.
fd2/src/explosions.h

29 lines
828 B
C

// explosions
#define EXPLOSION_OFFSET FIX16(16)
#define EXPLOSION_TIME 20
void spawnExplosion(fix16 x, fix16 y, u8 type){
s16 i = -1;
for(s16 j = 0; j < EXPLOSION_COUNT; j++) if(!explosions[j].active && i == -1) i = j;
explosions[i].active = TRUE;
explosions[i].clock = 0;
explosions[i].image = SPR_addSprite(&explosion,
fix16ToInt(fix16Sub(x, EXPLOSION_OFFSET)),
fix16ToInt(fix16Sub(y, EXPLOSION_OFFSET)),
TILE_ATTR(PAL1, 1, 0, 0));
SPR_setAnim(explosions[i].image, type);
SPR_setDepth(explosions[i].image, 3);
}
static void updateExplosion(s16 i){
if(explosions[i].clock >= EXPLOSION_TIME){
explosions[i].active = FALSE;
SPR_releaseSprite(explosions[i].image);
}
explosions[i].clock++;
}
void updateExplosions(){
for(s16 i = 0; i < EXPLOSION_COUNT; i++) if(explosions[i].active) updateExplosion(i);
}