Files
dusklight/include/d/actor/d_a_obj_kiPot.h
T
LagoLunatic 0ff06d2974 Debug version now builds OK and all_source compiles (#2343)
* 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
2025-03-22 18:00:51 -07:00

47 lines
1014 B
C++

#ifndef D_A_OBJ_KIPOT_H
#define D_A_OBJ_KIPOT_H
#include "f_op/f_op_actor_mng.h"
/**
* @ingroup actors-objects
* @class daKiPot_c
* @brief Coro Pot
*
* @details
*
*/
class daKiPot_c : public fopAc_ac_c {
public:
/* 80C44D78 */ void setBaseMtx();
/* 80C44DD0 */ int create();
/* 80C44E7C */ int Execute();
/* 80C44EF8 */ void procMain();
/* 80C44F74 */ void init_modeWait();
/* 80C44F80 */ void modeWait();
/* 80C45008 */ s32 chkEvent();
/* 80C45058 */ int Draw();
/* 80C45060 */ int Delete();
private:
/* 0x568 */ u8 field_0x568[0x574 - 0x568];
/* 0x574 */ u8 mMode;
/* 0x575 */ u8 field_0x575;
/* 0x576 */ u8 field_0x576[0x578 - 0x576];
};
STATIC_ASSERT(sizeof(daKiPot_c) == 0x578);
class daKiPot_HIO_c : public mDoHIO_entry_c {
public:
/* 80C44D0C */ daKiPot_HIO_c();
/* 80C450E8 */ virtual ~daKiPot_HIO_c() {};
void genMessage(JORMContext*);
/* 0x00 */ /* vtable */
/* 0x06 */ u8 field_0x06;
};
#endif /* D_A_OBJ_KIPOT_H */