2021-03-28 22:49:05 +02:00
|
|
|
#ifndef D_A_OBJ_GRAVE_STONE_H
|
|
|
|
|
#define D_A_OBJ_GRAVE_STONE_H
|
|
|
|
|
|
2024-10-10 07:29:58 -07:00
|
|
|
#include "d/d_bg_s_movebg_actor.h"
|
|
|
|
|
#include "d/d_cc_d.h"
|
|
|
|
|
#include "d/d_particle_copoly.h"
|
2023-12-03 07:01:37 -05:00
|
|
|
|
2024-05-29 01:49:10 -06:00
|
|
|
/**
|
|
|
|
|
* @ingroup actors-objects
|
|
|
|
|
* @class daGraveStone_c
|
|
|
|
|
* @brief Zora Gravestone
|
|
|
|
|
*
|
|
|
|
|
* @details
|
|
|
|
|
*
|
|
|
|
|
*/
|
2023-12-03 07:01:37 -05:00
|
|
|
class daGraveStone_c : public dBgS_MoveBgActor {
|
|
|
|
|
public:
|
|
|
|
|
class daObj_GrvStn_prtclMngr_c {
|
|
|
|
|
public:
|
|
|
|
|
/* 0x00 */ bool field_0x00;
|
|
|
|
|
/* 0x04 */ cXyz mPos;
|
|
|
|
|
/* 0x10 */ csXyz mAngle;
|
2024-03-04 17:33:13 -08:00
|
|
|
/* 0x18 */ cXyz scale;
|
2023-12-03 07:01:37 -05:00
|
|
|
/* 0x24 */ dPaPo_c field_0x24;
|
|
|
|
|
}; // Size: 0x5C
|
|
|
|
|
|
2025-11-30 14:23:42 -08:00
|
|
|
void setBaseMtx();
|
|
|
|
|
void moveCalc();
|
|
|
|
|
int setPrtcl();
|
|
|
|
|
void setEnvTevColor();
|
|
|
|
|
void setRoomNo();
|
|
|
|
|
int Create();
|
|
|
|
|
int CreateHeap();
|
|
|
|
|
cPhs__Step create();
|
|
|
|
|
int Execute(Mtx**);
|
|
|
|
|
int Draw();
|
|
|
|
|
int Delete();
|
2023-12-03 07:01:37 -05:00
|
|
|
|
2024-05-29 01:49:10 -06:00
|
|
|
private:
|
2024-06-30 08:28:55 -04:00
|
|
|
friend class daNpc_zrZ_c;
|
|
|
|
|
|
2023-12-03 07:01:37 -05:00
|
|
|
/* 0x5A0 */ request_of_phase_process_class mPhase;
|
|
|
|
|
/* 0x5A8 */ J3DModel* mpModel;
|
|
|
|
|
/* 0x5AC */ dBgS_ObjAcch mAcch;
|
|
|
|
|
/* 0x784 */ dCcD_Stts mColStatus;
|
|
|
|
|
/* 0x7C0 */ dBgS_AcchCir mAcchCir;
|
|
|
|
|
/* 0x800 */ dCcD_Cyl mColCyl;
|
|
|
|
|
/* 0x93C */ cBgS_GndChk mGndChk;
|
|
|
|
|
/* 0x978 */ daObj_GrvStn_prtclMngr_c mPrtclMngr[4];
|
|
|
|
|
/* 0xAE8 */ s16 mTimer;
|
|
|
|
|
|
|
|
|
|
static dCcD_SrcGObjInf const mCcDObjInfo;
|
|
|
|
|
static dCcD_SrcCyl const mCcDCyl;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
STATIC_ASSERT(sizeof(daGraveStone_c) == 0xAEC);
|
2021-03-28 22:49:05 +02:00
|
|
|
|
|
|
|
|
#endif /* D_A_OBJ_GRAVE_STONE_H */
|