mirror of https://github.com/zeldaret/tp.git
57 lines
1.3 KiB
C++
57 lines
1.3 KiB
C++
#ifndef D_A_SCENE_EXIT2_H
|
|
#define D_A_SCENE_EXIT2_H
|
|
|
|
#include "f_op/f_op_actor_mng.h"
|
|
|
|
/**
|
|
* @ingroup actors-unsorted
|
|
* @class daScExit_c
|
|
* @brief Scene Exit 2
|
|
*
|
|
* @details
|
|
*
|
|
*/
|
|
class daScExit_c : public fopAc_ac_c {
|
|
public:
|
|
enum act_e {
|
|
WAIT_e,
|
|
START_e,
|
|
SCENE_CHG_e,
|
|
};
|
|
|
|
enum action_e {
|
|
ACTION_WAIT_e,
|
|
ACTION_ORDER_EVENT_e,
|
|
ACTION_EVENT_e,
|
|
ACTION_DEAD_e,
|
|
};
|
|
|
|
/* 8059E158 */ void initBaseMtx();
|
|
/* 8059E178 */ void setBaseMtx();
|
|
/* 8059E1B0 */ int Create();
|
|
/* 8059E230 */ int create();
|
|
/* 8059E2C0 */ int execute();
|
|
/* 8059E2E4 */ void event_proc_call();
|
|
/* 8059E3A0 */ void actionWait();
|
|
/* 8059E408 */ void actionOrderEvent();
|
|
/* 8059E488 */ void actionEvent();
|
|
/* 8059E504 */ void actionDead();
|
|
/* 8059E508 */ int demoProc();
|
|
/* 8059E6CC */ BOOL checkArea();
|
|
/* 8059E714 */ int draw();
|
|
/* 8059E71C */ int _delete();
|
|
|
|
int getSceneID() { return fopAcM_GetParamBit(this, 0, 8); }
|
|
void setAction(u8 i_action) { mAction = i_action; }
|
|
|
|
/* 0x568 */ request_of_phase_process_class mPhase;
|
|
/* 0x570 */ int mStaffID;
|
|
/* 0x574 */ f32 mRadius;
|
|
/* 0x578 */ s16 mEventID;
|
|
/* 0x57A */ u8 mToolID;
|
|
/* 0x57B */ u8 mAction;
|
|
/* 0x57C */ u8 mTimer;
|
|
};
|
|
|
|
#endif /* D_A_SCENE_EXIT2_H */
|