mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 07:58:21 -05:00
1ae3b07dc2
* First commit of order tool * More flexible match on module name. Bugfix on blank_or_comment * Report inexact offset comments in verbose mode. Bugfix for exact regex * Refactor checkorder into reusable isledecomp module * Find bad comments in one pass, add awareness of TEMPLATE * Refactor of state machine to prepare for reccmp integration * Use isledecomp lib in reccmp * Build isledecomp in GH actions, fix mypy complaint * Ensure unit test cpp files will be ignored by reccmp * Allow multiple offset markers, pep8 cleanup * Remove unused variable * Code style, remove unneeded module and TODO * Final renaming and type hints * Fix checkorder issues, add GH action and enforce (#2) * Fix checkorder issues * Add GH action * Test error case * Works * Fixes --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
66 lines
2.1 KiB
C++
66 lines
2.1 KiB
C++
#ifndef MXDSOBJECT_H
|
|
#define MXDSOBJECT_H
|
|
|
|
#include "decomp.h"
|
|
#include "mxatomid.h"
|
|
#include "mxcore.h"
|
|
#include "mxdstypes.h"
|
|
|
|
// TODO: Find proper compilation unit to put this
|
|
// OFFSET: LEGO1 0x10005530 TEMPLATE
|
|
// MxDSObject::SetAtomId
|
|
|
|
// VTABLE 0x100dc868
|
|
// SIZE 0x2c
|
|
class MxDSObject : public MxCore {
|
|
public:
|
|
MxDSObject();
|
|
virtual ~MxDSObject() override;
|
|
|
|
void CopyFrom(MxDSObject& p_dsObject);
|
|
MxDSObject& operator=(MxDSObject& p_dsObject);
|
|
|
|
__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 undefined4 unk14(); // vtable+14;
|
|
virtual MxU32 GetSizeOnDisk(); // vtable+18;
|
|
virtual void Deserialize(char** p_source, MxS16 p_unk24); // vtable+1c;
|
|
inline virtual void SetAtomId(MxAtomId p_atomId) { this->m_atomId = p_atomId; } // vtable+20;
|
|
|
|
inline const MxAtomId& GetAtomId() { return this->m_atomId; }
|
|
inline MxU32 GetObjectId() { return this->m_objectId; }
|
|
inline MxS16 GetUnknown24() { return this->m_unk24; }
|
|
|
|
inline void SetObjectId(MxU32 p_objectId) { this->m_objectId = p_objectId; }
|
|
inline void SetUnknown24(MxS16 p_unk24) { this->m_unk24 = p_unk24; }
|
|
|
|
inline const char* GetSourceName() const { return this->m_sourceName; }
|
|
|
|
inline void SetType(MxDSType p_type) { this->m_type = p_type; }
|
|
inline MxDSType GetType() const { return (MxDSType) this->m_type; }
|
|
|
|
private:
|
|
MxU32 m_sizeOnDisk; // 0x8
|
|
MxU16 m_type; // 0xc
|
|
char* m_sourceName; // 0x10
|
|
undefined4 m_unk14; // 0x14
|
|
char* m_objectName; // 0x18
|
|
MxU32 m_objectId; // 0x1c
|
|
MxAtomId m_atomId; // 0x20
|
|
MxS16 m_unk24; // 0x24
|
|
undefined4 m_unk28; // 0x28
|
|
};
|
|
|
|
MxDSObject* DeserializeDSObjectDispatch(char**, MxS16);
|
|
|
|
#endif // MXDSOBJECT_H
|