mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
9649319ec4
* Reorganize files into libs/{dolphin,JSystem,PowerPC_EABI_Support,revolution,TRK_MINNOW_DOLPHIN}
* Update configure.py and project.py for new libs structure
* Refactor `#include <dolphin/x.h>` -> `<x.h>`
* Remove `__REVOLUTION_SDK__` forwards from dolphin
* Fix dolphin/ references in revolution
* Wrap `#include <dolphin.h>` in `!__REVOLUTION_SDK__`
* Always build TRK against dolphin headers
* Resolve revolution SDK header resolution issues
31 lines
1020 B
C++
31 lines
1020 B
C++
#ifndef D_D_DOOR_PARAM2_H
|
|
#define D_D_DOOR_PARAM2_H
|
|
|
|
#include <types.h>
|
|
|
|
class fopAc_ac_c;
|
|
|
|
class door_param2_c {
|
|
public:
|
|
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);
|
|
};
|
|
|
|
#endif /* D_D_DOOR_PARAM2_H */
|