mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 08:08:03 -05:00
9e686e2a87
* cmake+ci: run clang-tidy
* Remove DESCRIPTION from LEGO1/LegoOmni.mingw.def
* Add initial .clang-tidy and fixes
* fix file perms
* Comment out DESCRIPTION
* Remove LegoEntity::~LegoEntity and MxPresenter::~MxPresenter from mingw's LEGO1.def
* Looks like clang is allergic to the libs in the directx5 SDK
* Update .clang-tidy
* Fix typo in .clang-tidy
* Attempt to generate an action error
* Revert "Attempt to generate an action error"
This reverts commit 96c4c65fed
.
* cmake: test with -Wparentheses + optionally with -Werror
* ci: -k0 is a Ninja argument
* Use -Werror only for msys2 builds
* cmake: only emit warnings for specific warnings
* cmake: and don't do -Werror/-WX anymore
* Fix warnings
* Fix mingw warnings
---------
Co-authored-by: Christian Semmler <mail@csemmler.com>
72 lines
1.9 KiB
C++
72 lines
1.9 KiB
C++
#ifndef MXDSCHUNK_H
|
|
#define MXDSCHUNK_H
|
|
|
|
#include "decomp.h"
|
|
#include "mxcore.h"
|
|
#include "mxtypes.h"
|
|
|
|
// VTABLE: LEGO1 0x100dc7f8
|
|
// SIZE 0x1c
|
|
class MxDSChunk : public MxCore {
|
|
public:
|
|
enum {
|
|
c_bit1 = 0x01,
|
|
c_end = 0x02,
|
|
c_bit3 = 0x04,
|
|
c_split = 0x10,
|
|
c_bit16 = 0x8000
|
|
};
|
|
|
|
MxDSChunk();
|
|
~MxDSChunk() override;
|
|
|
|
// FUNCTION: LEGO1 0x100be0c0
|
|
inline const char* ClassName() const override // vtable+0x0c
|
|
{
|
|
// STRING: LEGO1 0x10101e6c
|
|
return "MxDSChunk";
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100be0d0
|
|
inline MxBool IsA(const char* p_name) const override // vtable+0x10
|
|
{
|
|
return !strcmp(p_name, MxDSChunk::ClassName()) || MxCore::IsA(p_name);
|
|
}
|
|
|
|
static MxU32 GetHeaderSize();
|
|
inline static MxU32* IntoType(MxU8* p_buffer) { return (MxU32*) p_buffer; }
|
|
inline static MxU32* IntoLength(MxU8* p_buffer) { return (MxU32*) (p_buffer + 4); }
|
|
inline static MxU32 Size(MxU32 p_dataSize) { return (p_dataSize & 1) + p_dataSize + 8; }
|
|
inline static MxU8* End(MxU8* p_buffer) { return p_buffer + Size(*IntoLength(p_buffer)); }
|
|
|
|
inline void SetFlags(MxU16 p_flags) { m_flags = p_flags; }
|
|
inline void SetObjectId(undefined4 p_objectid) { m_objectId = p_objectid; }
|
|
inline void SetTime(MxLong p_time) { m_time = p_time; }
|
|
inline void SetLength(MxU32 p_length) { m_length = p_length; }
|
|
inline void SetData(MxU8* p_data) { m_data = p_data; }
|
|
|
|
inline MxU16 GetFlags() { return m_flags; }
|
|
inline undefined4 GetObjectId() { return m_objectId; }
|
|
inline MxLong GetTime() { return m_time; }
|
|
inline MxU32 GetLength() { return m_length; }
|
|
inline MxU8* GetData() { return m_data; }
|
|
|
|
inline void Release()
|
|
{
|
|
if (m_data) {
|
|
delete[] m_data;
|
|
}
|
|
}
|
|
|
|
// SYNTHETIC: LEGO1 0x100be150
|
|
// MxDSChunk::`scalar deleting destructor'
|
|
|
|
protected:
|
|
MxU16 m_flags; // 0x08
|
|
MxU32 m_objectId; // 0x0c
|
|
MxLong m_time; // 0x10
|
|
MxU32 m_length; // 0x14
|
|
MxU8* m_data; // 0x18
|
|
};
|
|
|
|
#endif // MXDSCHUNK_H
|