mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-04 02:46:11 -04:00
d16ee29425
* create functions * actionend matched * matched a func i think. progress on setstartpos * progress on setstartpos, 2 small functions done * rodata + actionselect * 100% match * cleanup * configure.py matching * removed unecessary cast * removes the linker warning from arcname * added the setaction inline. moved logic * setAction now takes unsigned char
35 lines
752 B
C++
35 lines
752 B
C++
#ifndef D_A_WBIRD_H
|
|
#define D_A_WBIRD_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class daWbird_c : public fopAc_ac_c {
|
|
public:
|
|
inline BOOL draw();
|
|
inline BOOL execute();
|
|
void setAction(unsigned char action) {
|
|
mAction = action;
|
|
}
|
|
|
|
void calcMtx();
|
|
void setStartPos();
|
|
BOOL CreateInit();
|
|
cPhs_State create();
|
|
void actionWait();
|
|
void actionEnd();
|
|
void actionMove();
|
|
void actionSelect();
|
|
|
|
static const char M_arcname[];
|
|
|
|
public:
|
|
/* 0x290 */ u8 field_0x290[0x29C - 0x290];
|
|
/* 0x29C */ u8 mAction;
|
|
/* 0x29D */ bool field_0x29D;
|
|
/* 0x29E */ s16 field_0x29E;
|
|
/* 0x2A0 */ f32 field_0x2A0;
|
|
/* 0x2A4 */ s16 mAngle;
|
|
/* 0x2A6 */ s16 mEventIdx;
|
|
}; // Size: 0x2A8
|
|
#endif /* D_A_WBIRD_H */
|