2021-03-28 22:49:05 +02:00
|
|
|
#ifndef D_D_DOOR_PARAM2_H
|
|
|
|
|
#define D_D_DOOR_PARAM2_H
|
|
|
|
|
|
2023-05-12 12:10:14 -07:00
|
|
|
#include "dolphin/types.h"
|
|
|
|
|
|
|
|
|
|
class fopAc_ac_c;
|
2023-01-27 15:12:42 -08:00
|
|
|
|
|
|
|
|
class door_param2_c {
|
|
|
|
|
public:
|
2025-11-30 14:23:42 -08:00
|
|
|
static int getKind(fopAc_ac_c* i_actor);
|
|
|
|
|
static u32 getDoorModel(fopAc_ac_c* i_actor);
|
|
|
|
|
static u8 getFrontOption(fopAc_ac_c* i_actor);
|
|
|
|
|
static u8 getBackOption(fopAc_ac_c* i_actor);
|
|
|
|
|
static u8 getFRoomNo(fopAc_ac_c* i_actor);
|
|
|
|
|
static u8 getBRoomNo(fopAc_ac_c* i_actor);
|
|
|
|
|
static u8 getSwbit(fopAc_ac_c* i_actor);
|
|
|
|
|
static u8 getSwbit2(fopAc_ac_c* i_actor);
|
|
|
|
|
static u8 getSwbit3(fopAc_ac_c* i_actor);
|
|
|
|
|
static int isMsgDoor(fopAc_ac_c* i_actor);
|
|
|
|
|
static u8 getEventNo(fopAc_ac_c* i_actor);
|
|
|
|
|
static u8 getEventNo2(fopAc_ac_c* i_actor);
|
|
|
|
|
static u16 getMsgNo(fopAc_ac_c* i_actor);
|
|
|
|
|
static u8 getExitNo(fopAc_ac_c* i_actor);
|
|
|
|
|
static u32 getFLightInf(fopAc_ac_c* i_actor);
|
|
|
|
|
static u32 getBLightInf(fopAc_ac_c* i_actor);
|
|
|
|
|
static u32 getMFLightInf(fopAc_ac_c* i_actor);
|
|
|
|
|
static u32 getMBLightInf(fopAc_ac_c* i_actor);
|
2023-01-27 15:12:42 -08:00
|
|
|
};
|
2021-03-28 22:49:05 +02:00
|
|
|
|
|
|
|
|
#endif /* D_D_DOOR_PARAM2_H */
|