mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 08:08:03 -05:00
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 (from inlined construction at 0x10009fac)
|
|
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
|