mirror of https://github.com/zeldaret/tp.git
74 lines
1.6 KiB
C++
74 lines
1.6 KiB
C++
#ifndef D_A_OBJ_BUBBLEPILAR_H
|
|
#define D_A_OBJ_BUBBLEPILAR_H
|
|
|
|
#include "d/d_bg_s_movebg_actor.h"
|
|
#include "d/d_cc_d.h"
|
|
#include "f_op/f_op_actor_mng.h"
|
|
|
|
/**
|
|
* @ingroup actors-objects
|
|
* @class daBubbPilar_c
|
|
* @brief Bubble Pillar
|
|
*
|
|
* @details
|
|
*
|
|
*/
|
|
class daBubbPilar_c : public dBgS_MoveBgActor {
|
|
public:
|
|
typedef void (daBubbPilar_c::*modeProc)();
|
|
|
|
enum Mode {
|
|
MODE_WAIT,
|
|
MODE_EFF_ON,
|
|
};
|
|
|
|
void setBaseMtx();
|
|
int CreateHeap();
|
|
int create();
|
|
int Execute(Mtx**);
|
|
void initModeWait();
|
|
void modeWait();
|
|
void initModeEffOn();
|
|
void modeEffOn();
|
|
int Draw();
|
|
int Delete();
|
|
|
|
u8 getArg0() { return fopAcM_GetParamBit(this, 8, 4); }
|
|
u8 getSw() { return fopAcM_GetParamBit(this, 0, 8); }
|
|
|
|
static dCcD_SrcGObjInf const mCcDObjInfo;
|
|
static dCcD_SrcCyl mCcDCyl;
|
|
|
|
private:
|
|
/* 0x5A0 */ request_of_phase_process_class mPhase;
|
|
/* 0x5A8 */ J3DModel* mModels[2];
|
|
/* 0x5B0 */ dCcD_Stts mStts;
|
|
/* 0x5EC */ dCcD_Cyl mCyl;
|
|
/* 0x728 */ u8 field_0x728;
|
|
/* 0x729 */ u8 mMode;
|
|
/* 0x72A */ u8 mSw;
|
|
/* 0x72B */ u8 mArg0;
|
|
/* 0x72C */ u8 mIsSw;
|
|
/* 0x72D */ u8 mModelMode;
|
|
/* 0x72E */ s16 field_0x72e;
|
|
/* 0x730 */ int mEmitterIds[3];
|
|
/* 0x73C */ int mEmitterId;
|
|
/* 0x740 */ JPABaseEmitter* mEmitters[4];
|
|
};
|
|
|
|
STATIC_ASSERT(sizeof(daBubbPilar_c) == 0x750);
|
|
|
|
class daBubbPilar_HIO_c : public mDoHIO_entry_c {
|
|
public:
|
|
daBubbPilar_HIO_c();
|
|
virtual ~daBubbPilar_HIO_c() {};
|
|
|
|
void genMessage(JORMContext*);
|
|
|
|
u8 field_0x4;
|
|
u8 field_0x5;
|
|
};
|
|
|
|
|
|
#endif /* D_A_OBJ_BUBBLEPILAR_H */
|