mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-23 23:05:11 -04:00
20a252e254
* 98% matching d_a_windmill * Match CreateInit * Match hane_move * Fully match and link TU
55 lines
1.2 KiB
C++
55 lines
1.2 KiB
C++
#ifndef D_A_WINDMILL_H
|
|
#define D_A_WINDMILL_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
#include "d/d_cc_d.h"
|
|
#include "SSystem/SComponent/c_phase.h"
|
|
|
|
class dBgW;
|
|
|
|
class daWindMill_c : public fopAc_ac_c {
|
|
public:
|
|
void getMaxRotSpeed() const {}
|
|
void getRotSpeed() const {}
|
|
u8 getType() const {
|
|
return mType;
|
|
}
|
|
|
|
bool _delete();
|
|
BOOL CreateHeap();
|
|
void CreateInit();
|
|
void search_wind();
|
|
cPhs_State _create();
|
|
void set_mtx();
|
|
bool _execute();
|
|
void hane_move();
|
|
void set_at();
|
|
void set_co();
|
|
bool _draw();
|
|
|
|
static const s16 m_max_rot_speed[];
|
|
static const char* m_arcname[];
|
|
static const s16 m_bmdidx[];
|
|
static const s16 m_dzbidx[];
|
|
static const s16 m_heapsize[];
|
|
static const Vec m_cull_size[][2];
|
|
|
|
public:
|
|
/* 0x0290 */ request_of_phase_process_class mPhs;
|
|
/* 0x0298 */ J3DModel* mpModel;
|
|
/* 0x029C */ dCcD_Stts mStts;
|
|
/* 0x02D8 */ dCcD_Sph mSph[9];
|
|
/* 0x06D4 */ dCcD_Cps mCps[4];
|
|
/* 0x1244 */ cM3dGCpsS m1244[4];
|
|
/* 0x12B4 */ dBgW* mpBgW;
|
|
/* 0x12B8 */ Mtx mMtx;
|
|
/* 0x12E8 */ dCcD_Cyl mCyl;
|
|
/* 0x1418 */ u8 mType;
|
|
/* 0x141A */ s16 mAngle[3];
|
|
/* 0x1420 */ u32 mWindTagId;
|
|
};
|
|
|
|
STATIC_ASSERT(sizeof(daWindMill_c) == 0x1424);
|
|
|
|
#endif /* D_A_WINDMILL_H */
|