2023-06-29 04:10:08 -04:00
|
|
|
#ifndef LEGOSTATE_H
|
|
|
|
#define LEGOSTATE_H
|
|
|
|
|
2023-10-16 14:17:23 -04:00
|
|
|
#include "decomp.h"
|
2024-01-24 12:12:57 -05:00
|
|
|
#include "lego/sources/misc/legostorage.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
#include "mxcore.h"
|
2023-10-16 16:18:35 -04:00
|
|
|
#include "mxstring.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100d46c0
|
2024-01-29 13:54:47 -05:00
|
|
|
// SIZE 0x08
|
2023-10-24 19:38:27 -04:00
|
|
|
class LegoState : public MxCore {
|
2023-06-29 04:10:08 -04:00
|
|
|
public:
|
2024-01-29 13:54:47 -05:00
|
|
|
// FUNCTION: LEGO1 0x10005f40
|
|
|
|
virtual ~LegoState() override {}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100060d0
|
2023-10-24 19:38:27 -04:00
|
|
|
inline virtual const char* ClassName() const override // vtable+0x0c
|
|
|
|
{
|
2023-12-27 15:59:42 -05:00
|
|
|
// STRING: LEGO1 0x100f01b8
|
2023-10-24 19:38:27 -04:00
|
|
|
return "LegoState";
|
|
|
|
}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100060e0
|
2023-12-13 05:48:14 -05:00
|
|
|
inline virtual MxBool IsA(const char* p_name) const override // vtable+0x10
|
2023-10-24 19:38:27 -04:00
|
|
|
{
|
2023-12-13 05:48:14 -05:00
|
|
|
return !strcmp(p_name, LegoState::ClassName()) || MxCore::IsA(p_name);
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2024-01-29 13:54:47 -05:00
|
|
|
// FUNCTION: LEGO1 0x10005f90
|
|
|
|
virtual MxBool VTable0x14() { return TRUE; } // vtable+0x14
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x10005fa0
|
|
|
|
virtual MxBool SetFlag() { return FALSE; } // vtable+0x18
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x10005fb0
|
|
|
|
virtual MxResult VTable0x1c(LegoFile* p_legoFile)
|
|
|
|
{
|
|
|
|
if (p_legoFile->IsWriteMode()) {
|
|
|
|
p_legoFile->FUN_10006030(this->ClassName());
|
|
|
|
}
|
|
|
|
return SUCCESS;
|
|
|
|
} // vtable+0x1c
|
2024-01-18 08:34:14 -05:00
|
|
|
|
|
|
|
// SYNTHETIC: LEGO1 0x10006160
|
|
|
|
// LegoState::`scalar deleting destructor'
|
2024-01-30 13:57:20 -05:00
|
|
|
|
|
|
|
// SIZE 0x0c
|
|
|
|
struct StateStruct {
|
|
|
|
void* m_unk0x00; // 0x00
|
|
|
|
undefined2 m_unk0x04; // 0x04
|
|
|
|
undefined2 m_unk0x06; // 0x06
|
|
|
|
MxU16 m_unk0x08; // 0x08
|
|
|
|
|
2024-01-31 09:47:15 -05:00
|
|
|
// FUNCTION: LEGO1 0x10017c00
|
|
|
|
StateStruct()
|
|
|
|
{
|
|
|
|
m_unk0x04 = 0;
|
|
|
|
m_unk0x00 = NULL;
|
|
|
|
m_unk0x06 = 0;
|
|
|
|
m_unk0x08 = 0;
|
|
|
|
}
|
2024-01-30 13:57:20 -05:00
|
|
|
|
|
|
|
MxU32 FUN_10014d00();
|
|
|
|
MxBool FUN_10014de0(MxU32 p_objectId);
|
|
|
|
};
|
2023-06-29 04:10:08 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LEGOSTATE_H
|