2023-08-16 18:02:26 -04:00
|
|
|
#ifndef MXDSSTREAMINGACTION_H
|
|
|
|
#define MXDSSTREAMINGACTION_H
|
|
|
|
|
|
|
|
#include "mxdsaction.h"
|
|
|
|
|
|
|
|
class MxDSBuffer;
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100dd088
|
2023-08-16 18:02:26 -04:00
|
|
|
// SIZE 0xb4
|
2023-10-24 19:38:27 -04:00
|
|
|
class MxDSStreamingAction : public MxDSAction {
|
2023-08-16 18:02:26 -04:00
|
|
|
public:
|
2023-10-24 19:38:27 -04:00
|
|
|
MxDSStreamingAction(MxDSAction& p_dsAction, MxU32 p_offset);
|
|
|
|
MxDSStreamingAction(MxDSStreamingAction& p_dsStreamingAction);
|
|
|
|
virtual ~MxDSStreamingAction();
|
|
|
|
|
|
|
|
MxDSStreamingAction* CopyFrom(MxDSStreamingAction& p_dsStreamingAction);
|
|
|
|
MxDSStreamingAction& operator=(MxDSAction& p_dsAction)
|
|
|
|
{
|
|
|
|
MxDSAction::operator=(p_dsAction);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
MxDSStreamingAction& operator=(MxDSStreamingAction& p_dsStreamingAction)
|
|
|
|
{
|
|
|
|
MxDSAction::operator=(p_dsStreamingAction);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual MxBool HasId(MxU32 p_objectId) override; // vtable+34;
|
|
|
|
|
|
|
|
MxResult Init();
|
|
|
|
void SetInternalAction(MxDSAction* p_dsAction);
|
2023-12-13 05:48:14 -05:00
|
|
|
void FUN_100cd2d0();
|
2023-08-16 18:02:26 -04:00
|
|
|
|
2023-12-13 16:44:14 -05:00
|
|
|
inline MxU32 GetUnknown94() { return m_unk0x94; }
|
2023-12-25 13:32:01 -05:00
|
|
|
inline MxS32 GetUnknown9c() { return m_unk0x9c; }
|
2023-12-13 16:44:14 -05:00
|
|
|
inline MxDSBuffer* GetUnknowna0() { return m_unk0xa0; }
|
|
|
|
inline MxDSBuffer* GetUnknowna4() { return m_unk0xa4; }
|
2023-12-26 16:27:54 -05:00
|
|
|
inline MxLong GetUnknowna8() { return m_unk0xa8; }
|
2023-12-17 12:24:39 -05:00
|
|
|
inline MxDSAction* GetInternalAction() { return m_internalAction; }
|
2023-12-22 14:03:55 -05:00
|
|
|
inline MxU32 GetBufferOffset() { return m_bufferOffset; }
|
|
|
|
inline void SetUnknown94(MxU32 p_unk0x94) { m_unk0x94 = p_unk0x94; }
|
2023-12-25 13:32:01 -05:00
|
|
|
inline void SetUnknown9c(MxS32 p_unk0x9c) { m_unk0x9c = p_unk0x9c; }
|
2023-12-13 16:44:14 -05:00
|
|
|
inline void SetUnknowna0(MxDSBuffer* p_unk0xa0) { m_unk0xa0 = p_unk0xa0; }
|
2024-01-10 06:55:25 -05:00
|
|
|
inline void SetUnknowna4(MxDSBuffer* p_unk0xa4) { m_unk0xa4 = p_unk0xa4; }
|
2023-12-22 14:03:55 -05:00
|
|
|
inline void SetBufferOffset(MxU32 p_bufferOffset) { m_bufferOffset = p_bufferOffset; }
|
2023-12-13 16:44:14 -05:00
|
|
|
|
2024-01-18 08:34:14 -05:00
|
|
|
// SYNTHETIC: LEGO1 0x100cd0b0
|
|
|
|
// MxDSStreamingAction::`scalar deleting destructor'
|
|
|
|
|
2023-08-16 18:02:26 -04:00
|
|
|
private:
|
2023-12-24 15:00:20 -05:00
|
|
|
MxU32 m_unk0x94; // 0x94
|
|
|
|
MxU32 m_bufferOffset; // 0x98
|
|
|
|
MxS32 m_unk0x9c; // 0x9c
|
|
|
|
MxDSBuffer* m_unk0xa0; // 0xa0
|
|
|
|
MxDSBuffer* m_unk0xa4; // 0xa4
|
|
|
|
MxLong m_unk0xa8; // 0xa8
|
|
|
|
undefined2 m_unk0xac; // 0xac
|
|
|
|
MxDSAction* m_internalAction; // 0xb0
|
2023-08-16 18:02:26 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MXDSSTREAMINGACTION_H
|