2023-04-27 22:19:39 -04:00
|
|
|
#ifndef MXDSACTION_H
|
|
|
|
#define MXDSACTION_H
|
|
|
|
|
2023-06-19 20:18:53 -04:00
|
|
|
#include "mxdsobject.h"
|
2023-09-25 16:28:25 -04:00
|
|
|
#include "mxtypes.h"
|
2023-11-19 09:38:07 -05:00
|
|
|
#include "realtime/vector.h"
|
2023-09-25 16:28:25 -04:00
|
|
|
|
|
|
|
class MxOmni;
|
2023-04-27 22:19:39 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100dc098
|
2023-06-29 04:10:08 -04:00
|
|
|
// SIZE 0x94
|
2023-10-24 19:38:27 -04:00
|
|
|
class MxDSAction : public MxDSObject {
|
2023-04-27 22:19:39 -04:00
|
|
|
public:
|
2023-10-24 19:38:27 -04:00
|
|
|
enum {
|
|
|
|
Flag_Looping = 0x01,
|
|
|
|
Flag_Bit3 = 0x04,
|
2023-10-25 06:02:36 -04:00
|
|
|
Flag_Bit4 = 0x08,
|
2023-10-24 19:38:27 -04:00
|
|
|
Flag_Bit5 = 0x10,
|
|
|
|
Flag_Enabled = 0x20,
|
2023-11-13 06:25:27 -05:00
|
|
|
Flag_Bit7 = 0x40,
|
2023-11-13 05:22:58 -05:00
|
|
|
Flag_World = 0x80,
|
2023-10-24 19:38:27 -04:00
|
|
|
Flag_Bit9 = 0x200,
|
2023-10-25 06:02:36 -04:00
|
|
|
Flag_Bit10 = 0x400,
|
2023-10-24 19:38:27 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
__declspec(dllexport) MxDSAction();
|
|
|
|
__declspec(dllexport) virtual ~MxDSAction();
|
|
|
|
|
|
|
|
void CopyFrom(MxDSAction& p_dsAction);
|
|
|
|
MxDSAction& operator=(MxDSAction& p_dsAction);
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100ad980
|
2023-10-24 19:38:27 -04:00
|
|
|
inline virtual const char* ClassName() const override // vtable+0x0c
|
|
|
|
{
|
2023-12-06 07:10:45 -05:00
|
|
|
// GLOBAL: LEGO1 0x101013f4
|
2023-10-24 19:38:27 -04:00
|
|
|
return "MxDSAction";
|
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100ad990
|
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, MxDSAction::ClassName()) || MxDSObject::IsA(p_name);
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
|
|
|
|
2023-12-13 05:48:14 -05:00
|
|
|
virtual MxU32 GetSizeOnDisk() override; // vtable+18;
|
|
|
|
virtual void Deserialize(char** p_source, MxS16 p_unk0x24) override; // vtable+1c;
|
|
|
|
virtual MxLong GetDuration(); // vtable+24;
|
|
|
|
virtual void SetDuration(MxLong p_duration); // vtable+28;
|
|
|
|
virtual MxDSAction* Clone(); // vtable+2c;
|
|
|
|
virtual void MergeFrom(MxDSAction& p_dsAction); // vtable+30;
|
|
|
|
virtual MxBool HasId(MxU32 p_objectId); // vtable+34;
|
|
|
|
virtual void SetUnknown90(MxLong p_unk0x90); // vtable+38;
|
|
|
|
virtual MxLong GetUnknown90(); // vtable+3c;
|
|
|
|
virtual MxLong GetElapsedTime(); // vtable+40;
|
2023-10-24 19:38:27 -04:00
|
|
|
|
|
|
|
void AppendData(MxU16 p_extraLength, const char* p_extraData);
|
|
|
|
|
|
|
|
inline MxU32 GetFlags() { return m_flags; }
|
|
|
|
inline void SetFlags(MxU32 p_flags) { m_flags = p_flags; }
|
|
|
|
inline char* GetExtraData() { return m_extraData; }
|
|
|
|
inline MxU16 GetExtraLength() const { return m_extraLength; }
|
|
|
|
inline MxLong GetStartTime() const { return m_startTime; }
|
|
|
|
inline MxS32 GetLoopCount() { return m_loopCount; }
|
|
|
|
inline void SetLoopCount(MxS32 p_loopCount) { m_loopCount = p_loopCount; }
|
2023-11-19 09:38:07 -05:00
|
|
|
inline const Vector3Data& GetLocation() const { return m_location; }
|
2023-12-13 16:44:14 -05:00
|
|
|
inline MxCore* GetUnknown84() { return m_unk0x84; }
|
2023-12-13 05:48:14 -05:00
|
|
|
inline void SetUnknown84(MxCore* p_unk0x84) { m_unk0x84 = p_unk0x84; }
|
2023-12-11 16:35:50 -05:00
|
|
|
inline MxCore* GetOrigin() { return m_origin; }
|
|
|
|
inline void SetOrigin(MxCore* p_origin) { m_origin = p_origin; }
|
2023-10-24 19:38:27 -04:00
|
|
|
|
|
|
|
inline MxBool IsLooping() const { return m_flags & Flag_Looping; }
|
|
|
|
inline MxBool IsBit3() const { return m_flags & Flag_Bit3; }
|
2023-09-22 17:42:23 -04:00
|
|
|
|
2023-12-11 16:35:50 -05:00
|
|
|
inline void CopyFlags(MxU32 p_flags)
|
|
|
|
{
|
|
|
|
if (p_flags & MxDSAction::Flag_Looping)
|
|
|
|
SetFlags(GetFlags() | MxDSAction::Flag_Looping);
|
|
|
|
else if (p_flags & MxDSAction::Flag_Bit3)
|
|
|
|
SetFlags(GetFlags() | MxDSAction::Flag_Bit3);
|
|
|
|
}
|
|
|
|
|
2023-09-25 13:08:19 -04:00
|
|
|
protected:
|
2023-11-19 09:38:07 -05:00
|
|
|
MxU32 m_sizeOnDisk; // 0x2c
|
|
|
|
MxU32 m_flags; // 0x30
|
|
|
|
MxLong m_startTime; // 0x34
|
|
|
|
MxLong m_duration; // 0x38
|
|
|
|
MxS32 m_loopCount; // 0x3c
|
|
|
|
Vector3Data m_location; // 0x40
|
|
|
|
Vector3Data m_direction; // 0x54
|
|
|
|
Vector3Data m_up; // 0x68
|
|
|
|
char* m_extraData; // 0x7c
|
|
|
|
MxU16 m_extraLength; // 0x80
|
2023-12-13 05:48:14 -05:00
|
|
|
MxCore* m_unk0x84; // 0x84
|
|
|
|
undefined4 m_unk0x88; // 0x88
|
2023-12-11 16:35:50 -05:00
|
|
|
MxCore* m_origin; // 0x8c
|
2023-12-13 05:48:14 -05:00
|
|
|
MxLong m_unk0x90; // 0x90
|
2023-04-27 22:19:39 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MXDSACTION_H
|