2021-03-28 22:49:05 +02:00
|
|
|
#ifndef D_A_OBJ_TMOON_H
|
|
|
|
|
#define D_A_OBJ_TMOON_H
|
|
|
|
|
|
2024-10-10 07:29:58 -07:00
|
|
|
#include "d/d_com_inf_game.h"
|
2023-04-08 08:32:50 +02:00
|
|
|
|
2024-05-29 01:49:10 -06:00
|
|
|
/**
|
|
|
|
|
* @ingroup actors-objects
|
|
|
|
|
* @class daObjTMoon_c
|
|
|
|
|
* @brief Howling Moon
|
|
|
|
|
*
|
|
|
|
|
* @details
|
|
|
|
|
*
|
|
|
|
|
*/
|
2023-04-08 08:32:50 +02:00
|
|
|
class daObjTMoon_c : public fopAc_ac_c {
|
|
|
|
|
public:
|
|
|
|
|
/* 80D12BB8 */ void initBaseMtx();
|
|
|
|
|
/* 80D12BF4 */ void setBaseMtx();
|
|
|
|
|
/* 80D12C48 */ int Create();
|
2023-12-07 01:01:42 +01:00
|
|
|
/* 80D12C9C */ int CreateHeap();
|
2023-04-08 08:32:50 +02:00
|
|
|
/* 80D12D0C */ int create();
|
|
|
|
|
/* 80D12DC0 */ int execute();
|
|
|
|
|
/* 80D12EB4 */ int draw();
|
|
|
|
|
/* 80D12EDC */ int _delete();
|
|
|
|
|
|
|
|
|
|
u32 getEventBit1() { return fopAcM_GetParamBit(this, 0, 10); }
|
|
|
|
|
u32 getEventBit2() { return fopAcM_GetParamBit(this, 10, 10); }
|
|
|
|
|
|
2024-05-29 01:49:10 -06:00
|
|
|
private:
|
2023-12-07 01:01:42 +01:00
|
|
|
/* 0x568 */ request_of_phase_process_class mPhaseReq;
|
|
|
|
|
/* 0x570 */ J3DModel* mpModel;
|
2023-04-08 08:32:50 +02:00
|
|
|
/* 0x574 */ u16 field_0x574;
|
|
|
|
|
/* 0x576 */ u16 field_0x576;
|
2024-05-29 01:49:10 -06:00
|
|
|
};
|
2024-06-10 01:34:52 -06:00
|
|
|
|
2024-05-29 01:49:10 -06:00
|
|
|
STATIC_ASSERT(sizeof(daObjTMoon_c) == 0x578);
|
2021-03-28 22:49:05 +02:00
|
|
|
|
|
|
|
|
#endif /* D_A_OBJ_TMOON_H */
|