mirror of
https://github.com/zeldaret/tmc
synced 2026-05-26 07:39:08 -04:00
3b87c04162
To define ENT_DEPRECATED in files that still need the old entity structs.
110 lines
2.7 KiB
C
110 lines
2.7 KiB
C
/**
|
|
* @file flame.c
|
|
* @ingroup Objects
|
|
*
|
|
* @brief Flame object
|
|
*/
|
|
#include "entity.h"
|
|
#include "flags.h"
|
|
#include "functions.h"
|
|
#include "sound.h"
|
|
|
|
typedef struct {
|
|
/*0x00*/ Entity base;
|
|
/*0x68*/ u8 unused1[30];
|
|
/*0x86*/ u16 unk_86;
|
|
} FlameEntity;
|
|
|
|
extern void sub_0807AB44(Entity*, s32, s32);
|
|
|
|
void (*const Flame_Actions[])(FlameEntity*);
|
|
|
|
void Flame(FlameEntity* this) {
|
|
Flame_Actions[super->action](this);
|
|
}
|
|
|
|
void Flame_Init(FlameEntity* this) {
|
|
super->action = 1;
|
|
super->spriteSettings.draw = TRUE;
|
|
if (super->type2 != 0) {
|
|
super->timer = super->type2;
|
|
}
|
|
InitializeAnimation(super, 0);
|
|
switch (super->type) {
|
|
case 1:
|
|
super->y.HALF.HI -= 8;
|
|
super->timer = 40;
|
|
break;
|
|
case 2:
|
|
super->timer = 15;
|
|
sub_08004168(super);
|
|
break;
|
|
case 3:
|
|
CopyPosition(super->parent, super);
|
|
break;
|
|
case 4:
|
|
if (!CheckFlags(this->unk_86)) {
|
|
super->spriteSettings.draw = FALSE;
|
|
super->subAction = 1;
|
|
return;
|
|
}
|
|
}
|
|
EnqueueSFX(SFX_124);
|
|
}
|
|
|
|
void Flame_Action1(FlameEntity* this) {
|
|
u32 val;
|
|
GetNextFrame(super);
|
|
|
|
switch (super->type) {
|
|
case 0:
|
|
default:
|
|
if (super->type2 == 0)
|
|
return;
|
|
case 1:
|
|
case 2:
|
|
if (super->timer-- != 0)
|
|
return;
|
|
if (super->type == 2) {
|
|
sub_0807B7D8(((u16*)super->child)[3], COORD_TO_TILE(super), super->collisionLayer);
|
|
sub_0807AB44(super, 0, 0x10);
|
|
sub_0807AB44(super, 0, -0x10);
|
|
sub_0807AB44(super, 0x10, 0);
|
|
sub_0807AB44(super, -0x10, 0);
|
|
}
|
|
DeleteThisEntity();
|
|
break;
|
|
case 3:
|
|
if (super->parent->next == NULL) {
|
|
DeleteThisEntity();
|
|
}
|
|
if (--super->timer == 0) {
|
|
DeleteThisEntity();
|
|
}
|
|
|
|
CopyPosition(super->parent, super);
|
|
break;
|
|
case 4:
|
|
val = CheckFlags(this->unk_86);
|
|
if (super->subAction == 0) {
|
|
if (val)
|
|
return;
|
|
super->subAction = 1;
|
|
super->spriteSettings.draw = 0;
|
|
} else {
|
|
if (!val)
|
|
return;
|
|
super->subAction = 0;
|
|
super->spriteSettings.draw = 1;
|
|
InitializeAnimation(super, 0);
|
|
EnqueueSFX(SFX_124);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
void (*const Flame_Actions[])(FlameEntity*) = {
|
|
Flame_Init,
|
|
Flame_Action1,
|
|
};
|