mirror of
https://github.com/zeldaret/oot
synced 2026-06-05 03:08:05 -04:00
a9284494f2
* Add ACTOR_FLAG_ defines * Add ACTOR_FLAGS_ALL macro and use ACTOR_FLAG_* constants everywhere * Remove unused ACTOR_FLAG_* constants * actor flags in bigokuta & ko * actor flags in obj_mure * actor flags in stalfos, twinrova & ganon2 * actor flags in morpha & barinade * name some previously missed actor flags * found some comments using hex for actor flags * Actor flags in ovl_En_Ganon_Mant * Actor flags in EnWf * Flags in en_zf * Actor flags in BossGanon (FeelsOKMan) * Remove `ACTOR_FLAG_NONE` * Wrap expansion of `FLAGS` in parentheses * `ACTOR_FLAGS_ALL` -> `CHECK_FLAG_ALL` * Move `CHECK_FLAG_ALL` to `macros.h` * Run formatter
59 lines
2.1 KiB
C
59 lines
2.1 KiB
C
#include "global.h"
|
|
|
|
#define FLAGS (ACTOR_FLAG_0 | ACTOR_FLAG_2 | ACTOR_FLAG_4 | ACTOR_FLAG_5 | ACTOR_FLAG_25 | ACTOR_FLAG_26)
|
|
|
|
void (*sPlayerCallInitFunc)(Actor* thisx, GlobalContext* globalCtx);
|
|
void (*sPlayerCallDestroyFunc)(Actor* thisx, GlobalContext* globalCtx);
|
|
void (*sPlayerCallUpdateFunc)(Actor* thisx, GlobalContext* globalCtx);
|
|
void (*sPlayerCallDrawFunc)(Actor* thisx, GlobalContext* globalCtx);
|
|
|
|
void PlayerCall_Init(Actor* thisx, GlobalContext* globalCtx);
|
|
void PlayerCall_Destroy(Actor* thisx, GlobalContext* globalCtx);
|
|
void PlayerCall_Update(Actor* thisx, GlobalContext* globalCtx);
|
|
void PlayerCall_Draw(Actor* thisx, GlobalContext* globalCtx);
|
|
|
|
void Player_Init(Actor* thisx, GlobalContext* globalCtx);
|
|
void Player_Destroy(Actor* thisx, GlobalContext* globalCtx);
|
|
void Player_Update(Actor* thisx, GlobalContext* globalCtx);
|
|
void Player_Draw(Actor* thisx, GlobalContext* globalCtx);
|
|
|
|
const ActorInit Player_InitVars = {
|
|
ACTOR_PLAYER,
|
|
ACTORCAT_PLAYER,
|
|
FLAGS,
|
|
OBJECT_GAMEPLAY_KEEP,
|
|
sizeof(Player),
|
|
(ActorFunc)PlayerCall_Init,
|
|
(ActorFunc)PlayerCall_Destroy,
|
|
(ActorFunc)PlayerCall_Update,
|
|
(ActorFunc)PlayerCall_Draw,
|
|
};
|
|
|
|
void PlayerCall_InitFuncPtrs(void) {
|
|
sPlayerCallInitFunc = KaleidoManager_GetRamAddr(Player_Init);
|
|
sPlayerCallDestroyFunc = KaleidoManager_GetRamAddr(Player_Destroy);
|
|
sPlayerCallUpdateFunc = KaleidoManager_GetRamAddr(Player_Update);
|
|
sPlayerCallDrawFunc = KaleidoManager_GetRamAddr(Player_Draw);
|
|
}
|
|
|
|
void PlayerCall_Init(Actor* thisx, GlobalContext* globalCtx) {
|
|
KaleidoScopeCall_LoadPlayer();
|
|
PlayerCall_InitFuncPtrs();
|
|
sPlayerCallInitFunc(thisx, globalCtx);
|
|
}
|
|
|
|
void PlayerCall_Destroy(Actor* thisx, GlobalContext* globalCtx) {
|
|
KaleidoScopeCall_LoadPlayer();
|
|
sPlayerCallDestroyFunc(thisx, globalCtx);
|
|
}
|
|
|
|
void PlayerCall_Update(Actor* thisx, GlobalContext* globalCtx) {
|
|
KaleidoScopeCall_LoadPlayer();
|
|
sPlayerCallUpdateFunc(thisx, globalCtx);
|
|
}
|
|
|
|
void PlayerCall_Draw(Actor* thisx, GlobalContext* globalCtx) {
|
|
KaleidoScopeCall_LoadPlayer();
|
|
sPlayerCallDrawFunc(thisx, globalCtx);
|
|
}
|