mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00:00
lego: add MxDSType enum, add it to all ctors, refactor MxDSObject
(#73)
* lego: add MxDSType enum, add to all ctors * refactor header * re-type members * add size assert for MxDSObject * fix Parse param * fix types
This commit is contained in:

committed by
GitHub

parent
d64a04705c
commit
e0e338ee44
@@ -1,55 +1,59 @@
|
||||
#ifndef MXDSOBJECT_H
|
||||
#define MXDSOBJECT_H
|
||||
|
||||
#include "decomp.h"
|
||||
|
||||
#include "mxcore.h"
|
||||
#include "mxatomid.h"
|
||||
#include "mxdstypes.h"
|
||||
|
||||
// VTABLE 0x100dc868
|
||||
// SIZE 0x2c
|
||||
class MxDSObject : public MxCore
|
||||
{
|
||||
public:
|
||||
__declspec(dllexport) void SetObjectName(const char *p_objectName);
|
||||
|
||||
MxDSObject();
|
||||
virtual ~MxDSObject() override;
|
||||
|
||||
MxDSObject &operator=(MxDSObject &p_dsObject);
|
||||
void CopyFrom(MxDSObject &p_dsObject);
|
||||
MxDSObject &operator=(MxDSObject &p_dsObject);
|
||||
|
||||
// OFFSET: LEGO1 0x100bf730
|
||||
__declspec(dllexport) void SetObjectName(const char *p_objectName);
|
||||
void SetSourceName(const char *p_sourceName);
|
||||
|
||||
// OFFSET: LEGO1 0x100bf730
|
||||
inline virtual const char *ClassName() const override { return "MxDSObject"; }; // vtable+0c
|
||||
|
||||
// OFFSET: LEGO1 0x100bf740
|
||||
inline virtual MxBool IsA(const char *name) const override { return !strcmp(name, MxDSObject::ClassName()) || MxCore::IsA(name); }; // vtable+10;
|
||||
|
||||
virtual int unk14(); // vtable+14;
|
||||
virtual unsigned int CalculateUnk08(); // vtable+18;
|
||||
virtual void Parse(char **p_source, MxU16 p_unk24); // vtable+1c;
|
||||
|
||||
void SetSourceName(const char *p_sourceName);
|
||||
virtual undefined4 unk14(); // vtable+14;
|
||||
virtual MxU32 CalculateUnk08(); // vtable+18;
|
||||
virtual void Parse(char **p_source, MxS16 p_unk24); // vtable+1c;
|
||||
|
||||
inline const MxAtomId& GetAtomId() { return this->m_atomId; }
|
||||
inline int GetUnknown1c() { return this->m_unk1c; }
|
||||
inline undefined4 GetUnknown1c() { return this->m_unk1c; }
|
||||
|
||||
inline void SetUnknown1c(int p_unk1c) { this->m_unk1c = p_unk1c; }
|
||||
inline void SetUnknown1c(undefined4 p_unk1c) { this->m_unk1c = p_unk1c; }
|
||||
inline void SetUnknown24(MxS16 p_unk24) { this->m_unk24 = p_unk24; }
|
||||
|
||||
// OFFSET: ISLE 0x401c40
|
||||
// OFFSET: LEGO1 0x10005530
|
||||
inline void SetAtomId(MxAtomId p_atomId) { this->m_atomId = p_atomId; }
|
||||
|
||||
protected:
|
||||
inline void SetType(MxDSType p_type) { this->m_type = p_type; }
|
||||
|
||||
private:
|
||||
unsigned int m_unk08;
|
||||
MxS16 m_unk0c;
|
||||
MxU32 m_unk08;
|
||||
MxU16 m_type;
|
||||
char* m_sourceName;
|
||||
int m_unk14;
|
||||
undefined4 m_unk14;
|
||||
char *m_objectName;
|
||||
int m_unk1c;
|
||||
undefined4 m_unk1c;
|
||||
MxAtomId m_atomId;
|
||||
MxS16 m_unk24;
|
||||
MxU16 m_unk26;
|
||||
int m_unk28;
|
||||
undefined4 m_unk28;
|
||||
};
|
||||
|
||||
#endif // MXDSOBJECT_H
|
||||
|
Reference in New Issue
Block a user