mirror of
https://github.com/zeldaret/tmc
synced 2026-06-06 03:38:48 -04:00
3b87c04162
To define ENT_DEPRECATED in files that still need the old entity structs.
50 lines
1.0 KiB
C
50 lines
1.0 KiB
C
/**
|
|
* @file macroShoe.c
|
|
* @ingroup Objects
|
|
*
|
|
* @brief Macro Shoe object
|
|
*/
|
|
#include "asm.h"
|
|
#include "entity.h"
|
|
|
|
void MacroShoe_Init(Entity*);
|
|
void MacroShoe_Idle(Entity*);
|
|
|
|
static const Hitbox MacroShoe_Type0Hitbox;
|
|
static const Hitbox MacroShoe_Type1Hitbox;
|
|
|
|
static const Hitbox* const MacroShoe_TypeHitboxes[] = {
|
|
&MacroShoe_Type0Hitbox,
|
|
&MacroShoe_Type1Hitbox,
|
|
};
|
|
|
|
static const Hitbox MacroShoe_Type0Hitbox = {
|
|
0, 0, { 4, 0, 0, 0 }, 0x34, 0x20,
|
|
};
|
|
|
|
static const Hitbox MacroShoe_Type1Hitbox = {
|
|
0, 0, { 4, 0, 0, 0 }, 0x30, 0x10,
|
|
};
|
|
|
|
void MacroShoe(Entity* this) {
|
|
static void (*const MacroShoe_Actions[])(Entity*) = {
|
|
MacroShoe_Init,
|
|
MacroShoe_Idle,
|
|
};
|
|
MacroShoe_Actions[this->action](this);
|
|
sub_0800445C(this);
|
|
}
|
|
|
|
void MacroShoe_Init(Entity* this) {
|
|
this->action = 1;
|
|
this->hitbox = (Hitbox*)MacroShoe_TypeHitboxes[this->type];
|
|
if (this->type2 == 1) {
|
|
SetTile(0x4024, 0x410, 1);
|
|
SetTile(0x4026, 0x411, 1);
|
|
SetTile(0x4025, 0x412, 1);
|
|
}
|
|
}
|
|
|
|
void MacroShoe_Idle(Entity* this) {
|
|
}
|