mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 07:58:21 -05:00
fca8f74bd8
* Fix size annotations for legoomni Fix structure and add placeholder annotations for LegoAnimActor and subclasses * Fix LegoCarRaceActor constructor Fix function name in LegoRaceCar * Add size assertions for legoomni and fix sizes * Various style fixes * Use other marker so vtable.py doesn't compare * Revert "Use other marker so vtable.py doesn't compare" This reverts commit 608985cd73856598b95c15aed9f8f022645e9e7a. * Fix copy/paste error * Remove stale comment. --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
49 lines
1.2 KiB
C++
49 lines
1.2 KiB
C++
#ifndef LEGOPARTPRESENTER_H
|
|
#define LEGOPARTPRESENTER_H
|
|
|
|
#include "legonamedpartlist.h"
|
|
#include "mxmediapresenter.h"
|
|
|
|
// VTABLE: LEGO1 0x100d4df0
|
|
// SIZE 0x54
|
|
class LegoPartPresenter : public MxMediaPresenter {
|
|
public:
|
|
LegoPartPresenter() { Reset(); }
|
|
|
|
// FUNCTION: LEGO1 0x10067300
|
|
~LegoPartPresenter() override { Destroy(TRUE); }
|
|
|
|
// FUNCTION: LEGO1 0x1000cf70
|
|
inline const char* ClassName() const override // vtable+0x0c
|
|
{
|
|
// STRING: LEGO1 0x100f05d8
|
|
return "LegoPartPresenter";
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x1000cf80
|
|
inline MxBool IsA(const char* p_name) const override // vtable+0x10
|
|
{
|
|
return !strcmp(p_name, LegoPartPresenter::ClassName()) || MxMediaPresenter::IsA(p_name);
|
|
}
|
|
|
|
void ReadyTickle() override; // vtable+0x18
|
|
MxResult AddToManager() override; // vtable+0x34
|
|
void Destroy() override; // vtable+0x38
|
|
|
|
static void configureLegoPartPresenter(MxS32, MxS32);
|
|
|
|
// SYNTHETIC: LEGO1 0x1000d060
|
|
// LegoPartPresenter::`scalar deleting destructor'
|
|
|
|
inline void Reset() { m_parts = NULL; }
|
|
|
|
MxResult Read(MxDSChunk& p_chunk);
|
|
void Store();
|
|
|
|
private:
|
|
void Destroy(MxBool p_fromDestructor);
|
|
|
|
LegoNamedPartList* m_parts; // 0x50
|
|
};
|
|
|
|
#endif // LEGOPARTPRESENTER_H
|