This commit is contained in:
Jasper St. Pierre
2024-02-25 09:45:37 -08:00
parent fdba7c3a7b
commit 43afdf878e
4 changed files with 139 additions and 22 deletions
+12 -4
View File
@@ -2,14 +2,16 @@
#define D_A_TAMA_H
#include "f_op/f_op_actor.h"
#include "d/d_bg_s_acch.h"
#include "d/d_cc_d.h"
class daTama_c : public fopAc_ac_c {
public:
void setDis(float) {}
void setPartnerID(unsigned int) {}
void setSpd(float) {}
void setDis(f32 dis) { mDis = dis; }
void setPartnerID(unsigned int id) { mPartnerID = id; }
void setSpd(f32 spd) { speedF = spd; }
void createInit();
BOOL createInit();
BOOL _draw();
BOOL _execute();
BOOL _delete();
@@ -17,6 +19,12 @@ public:
public:
/* Place member variables here */
/* 0x290 */ u32 mPartnerID;
/* 0x294 */ dBgS_ObjAcch mAcch;
/* 0x458 */ dBgS_AcchCir mAcchCir;
/* 0x498 */ dCcD_Stts mStts;
/* 0x4D4 */ dCcD_Sph mSph;
/* 0x600 */ f32 mDis;
};
#endif /* D_A_TAMA_H */
+3 -1
View File
@@ -254,7 +254,9 @@ public:
/* 0x6A8 */ u32 mEndMsgNo;
/* 0x6AC */ u32 mCurrMsgBsPcId;
/* 0x6B0 */ msg_class* mpCurrMsg;
/* 0x6B4 */ u8 pad_0x6B4[0x6C0 - 0x6B4];
/* 0x6B4 */ u8 field_0x6b4[6];
/* 0x6BA */ u16 field_0x6ba;
/* 0x6BC */ u8 field_0x6bc[4];
/* 0x6C0 */ /* vtable */
virtual u16 next_msgStatus(u32* msgId) { return fopMsgStts_MSG_ENDS_e; }