mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 23:05:36 -04:00
6c24ff1929
* d_a_e_oc initial work * 2nd set of d_a_e_oc work * More d_a_e_oc work * 3rd set of d_a_e_oc work * 4th set of work for d_a_e_oc including data/rodata/bss cleanup * Lots of execute work for d_a_e_oc * More d_a_e_oc work: cleanup, plus impl of executeAttack * 7th set of d_a_e_oc work * 90 percent of the way done for d_a_e_oc * d_a_e_oc done except for regalloc issues
46 lines
1.1 KiB
C++
46 lines
1.1 KiB
C++
#ifndef D_A_OBJ_ROTBRIDGE_H
|
|
#define D_A_OBJ_ROTBRIDGE_H
|
|
|
|
#include "f_op/f_op_actor_mng.h"
|
|
|
|
/**
|
|
* @ingroup actors-objects
|
|
* @class daRotBridge_c
|
|
* @brief Rotating Bridge
|
|
*
|
|
* @details
|
|
*
|
|
*/
|
|
class daRotBridge_c : public fopAc_ac_c {
|
|
public:
|
|
/* 80CBEA24 */ void setBaseMtx();
|
|
/* 80CBEB38 */ void CreateHeap();
|
|
/* 80CBECBC */ void create();
|
|
/* 80CBEF1C */ void rideCallBack(dBgW*, fopAc_ac_c*, fopAc_ac_c*);
|
|
/* 80CBEF34 */ void Execute(f32 (**)[3][4]);
|
|
/* 80CBF050 */ void playerAreaCheck();
|
|
/* 80CBF1EC */ void moveBridge();
|
|
/* 80CBF404 */ void Draw();
|
|
/* 80CBF4BC */ void Delete();
|
|
|
|
u8 getPlayerRide() const { return mPlayerRide; }
|
|
u8 getBridgeAngle() const { return mBridgeAngle; }
|
|
private:
|
|
/* 0x568 */ u8 field_0x568[0x5af - 0x568];
|
|
/* 0x5af */ u8 mPlayerRide;
|
|
/* 0x5b0 */ u8 field_0x5b0[0x5b8 - 0x5b0];
|
|
/* 0x5b8 */ u8 mBridgeAngle;
|
|
/* 0x5b9 */ u8 field_0x5b9[0x610 - 0x5b9];
|
|
};
|
|
|
|
STATIC_ASSERT(sizeof(daRotBridge_c) == 0x610);
|
|
|
|
class daRotBridge_HIO_c {
|
|
public:
|
|
/* 80CBE98C */ daRotBridge_HIO_c();
|
|
/* 80CBF5BC */ ~daRotBridge_HIO_c();
|
|
};
|
|
|
|
|
|
#endif /* D_A_OBJ_ROTBRIDGE_H */
|