1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-22 21:35:27 +00:00
oot/src/code/z_player_call.c

59 lines
2.0 KiB
C
Raw Normal View History

#include "global.h"
2020-03-17 04:31:30 +00:00
#define FLAGS 0x06000035
void (*sPlayerCallInitFunc)(Actor* thisx, GlobalContext* globalCtx);
void (*sPlayerCallDestroyFunc)(Actor* thisx, GlobalContext* globalCtx);
void (*sPlayerCallUpdateFunc)(Actor* thisx, GlobalContext* globalCtx);
void (*sPlayerCallDrawFunc)(Actor* thisx, GlobalContext* globalCtx);
2020-03-17 04:31:30 +00:00
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);
2020-03-17 04:31:30 +00:00
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);
2020-03-22 21:19:43 +00:00
const ActorInit Player_InitVars = {
2020-03-17 04:31:30 +00:00
ACTOR_PLAYER,
ACTORTYPE_PLAYER,
FLAGS,
2020-03-17 04:31:30 +00:00
OBJECT_GAMEPLAY_KEEP,
sizeof(Player),
(ActorFunc)PlayerCall_Init,
(ActorFunc)PlayerCall_Destroy,
(ActorFunc)PlayerCall_Update,
(ActorFunc)PlayerCall_Draw,
};
2020-03-22 21:19:43 +00:00
void PlayerCall_InitFuncPtrs() {
sPlayerCallInitFunc = KaleidoManager_GetRamAddr(Player_Init);
sPlayerCallDestroyFunc = KaleidoManager_GetRamAddr(Player_Destroy);
sPlayerCallUpdateFunc = KaleidoManager_GetRamAddr(Player_Update);
sPlayerCallDrawFunc = KaleidoManager_GetRamAddr(Player_Draw);
2020-03-17 04:31:30 +00:00
}
void PlayerCall_Init(Actor* thisx, GlobalContext* globalCtx) {
2020-03-17 04:31:30 +00:00
KaleidoScopeCall_LoadPlayer();
PlayerCall_InitFuncPtrs();
sPlayerCallInitFunc(thisx, globalCtx);
2020-03-17 04:31:30 +00:00
}
void PlayerCall_Destroy(Actor* thisx, GlobalContext* globalCtx) {
2020-03-17 04:31:30 +00:00
KaleidoScopeCall_LoadPlayer();
sPlayerCallDestroyFunc(thisx, globalCtx);
2020-03-17 04:31:30 +00:00
}
void PlayerCall_Update(Actor* thisx, GlobalContext* globalCtx) {
2020-03-17 04:31:30 +00:00
KaleidoScopeCall_LoadPlayer();
sPlayerCallUpdateFunc(thisx, globalCtx);
2020-03-17 04:31:30 +00:00
}
void PlayerCall_Draw(Actor* thisx, GlobalContext* globalCtx) {
2020-03-17 04:31:30 +00:00
KaleidoScopeCall_LoadPlayer();
sPlayerCallDrawFunc(thisx, globalCtx);
2020-03-17 04:31:30 +00:00
}