mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
4dc0cd9d09
* Fix missing arg to JUT_ASSERT * Fix some MWCC version diff errors * Compile m_Do_ext, d_demo, actor_mng * Add VSCode task to quickly switch between versions * Unlink magLift for debug * Update the hash of the debug dol The old cbea5fa... hash here was for the dol generated by the alf2dol.py script, which produces incorrect alignment. The dol with the new hash can be obtained by using `dtk elf2dol` to convert the debug .alf file to a dol. The DOL now builds OK. * Fix all debug REL dtor splits All RELs now also build OK, meaning `ninja build/ShieldD/ok` now succeeds. * Add genMessage declarations to all HIO subclasses * Fixing more compilation errors * m_Do_mtx 100% on debug Cannot be linked due to weak function name mangling? * Improve various matches * Fix all remaining compilation errors * Fix new compilation errors from main * Fix retail regression * Link f_pc_profile_lst
43 lines
995 B
C++
43 lines
995 B
C++
#ifndef D_A_OBJ_HSTARGET_H
|
|
#define D_A_OBJ_HSTARGET_H
|
|
|
|
#include "d/d_bg_s_movebg_actor.h"
|
|
#include "f_op/f_op_actor_mng.h"
|
|
#include "m_Do/m_Do_hostIO.h"
|
|
/**
|
|
* @ingroup actors-objects
|
|
* @class daHsTarget_c
|
|
* @brief Clawshot Target
|
|
*
|
|
* @details
|
|
*
|
|
*/
|
|
class daHsTarget_c : public dBgS_MoveBgActor {
|
|
public:
|
|
/* 80C1F490 */ void setBaseMtx();
|
|
/* 80C1F518 */ int CreateHeap();
|
|
/* 80C1F598 */ int create();
|
|
/* 80C1F6B0 */ int Execute(f32 (**)[3][4]);
|
|
/* 80C1F6C4 */ int Draw();
|
|
/* 80C1F728 */ int Delete();
|
|
|
|
u8 getModelType() { return fopAcM_GetParamBit(this, 0, 4); }
|
|
|
|
private:
|
|
/* 0x5A0 */ request_of_phase_process_class mPhaseReq;
|
|
/* 0x5A8 */ J3DModel* mpModel;
|
|
/* 0x5AC */ u8 mIndex;
|
|
};
|
|
|
|
STATIC_ASSERT(sizeof(daHsTarget_c) == 0x5B0);
|
|
|
|
class daHsTarget_HIO_c : public mDoHIO_entry_c {
|
|
public:
|
|
/* 80C1F42C */ daHsTarget_HIO_c();
|
|
/* 80C1F7F4 */ virtual ~daHsTarget_HIO_c() {}
|
|
|
|
void genMessage(JORMContext*);
|
|
};
|
|
|
|
#endif /* D_A_OBJ_HSTARGET_H */
|