2023-04-27 22:19:39 -04:00
|
|
|
#ifndef MXSTREAMER_H
|
|
|
|
#define MXSTREAMER_H
|
|
|
|
|
2023-09-25 22:30:56 -04:00
|
|
|
#include "decomp.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
#include "mxcore.h"
|
2023-10-24 19:38:27 -04:00
|
|
|
#include "mxdsobject.h"
|
2023-10-10 13:05:04 -04:00
|
|
|
#include "mxnotificationparam.h"
|
2023-04-27 22:19:39 -04:00
|
|
|
#include "mxstreamcontroller.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
#include "mxtypes.h"
|
2023-04-27 22:19:39 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
#include <list>
|
|
|
|
|
2023-09-25 22:30:56 -04:00
|
|
|
// NOTE: This feels like some kind of templated class, maybe something from the
|
|
|
|
// STL. But I haven't figured out what yet (it's definitely not a vector).
|
2023-10-24 19:38:27 -04:00
|
|
|
class MxStreamerSubClass1 {
|
2023-09-25 22:30:56 -04:00
|
|
|
public:
|
2024-01-07 12:30:45 -05:00
|
|
|
inline MxStreamerSubClass1(undefined4 p_size)
|
|
|
|
{
|
|
|
|
m_buffer = NULL;
|
|
|
|
m_size = p_size;
|
|
|
|
undefined4* ptr = &m_unk0x08;
|
|
|
|
for (int i = 0; i >= 0; i--) {
|
|
|
|
ptr[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
2023-09-25 22:30:56 -04:00
|
|
|
|
2024-01-14 16:28:46 -05:00
|
|
|
// FUNCTION: LEGO1 0x100b9110
|
2023-10-24 19:38:27 -04:00
|
|
|
~MxStreamerSubClass1() { delete[] m_buffer; }
|
2023-09-25 22:30:56 -04:00
|
|
|
|
2023-10-30 09:54:00 -04:00
|
|
|
undefined4 GetSize() const { return m_size; }
|
2023-09-25 22:30:56 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
void SetBuffer(undefined* p_buf) { m_buffer = p_buf; }
|
2023-10-30 09:54:00 -04:00
|
|
|
inline undefined* GetBuffer() const { return m_buffer; }
|
2023-12-24 18:09:01 -05:00
|
|
|
inline undefined* GetUnk08Ref() const { return (undefined*) &m_unk0x08; }
|
2023-09-25 22:30:56 -04:00
|
|
|
|
|
|
|
private:
|
2023-10-24 19:38:27 -04:00
|
|
|
undefined* m_buffer;
|
|
|
|
undefined4 m_size;
|
2023-12-13 05:48:14 -05:00
|
|
|
undefined4 m_unk0x08;
|
2023-09-25 22:30:56 -04:00
|
|
|
};
|
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
class MxStreamerSubClass2 : public MxStreamerSubClass1 {
|
2023-09-25 22:30:56 -04:00
|
|
|
public:
|
2023-10-24 19:38:27 -04:00
|
|
|
inline MxStreamerSubClass2() : MxStreamerSubClass1(0x40) {}
|
2023-09-25 22:30:56 -04:00
|
|
|
};
|
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
class MxStreamerSubClass3 : public MxStreamerSubClass1 {
|
2023-09-25 22:30:56 -04:00
|
|
|
public:
|
2023-10-24 19:38:27 -04:00
|
|
|
inline MxStreamerSubClass3() : MxStreamerSubClass1(0x80) {}
|
2023-09-25 22:30:56 -04:00
|
|
|
};
|
|
|
|
|
2024-01-14 16:28:46 -05:00
|
|
|
// VTABLE: LEGO1 0x100dc760
|
2023-10-24 19:38:27 -04:00
|
|
|
class MxStreamerNotification : public MxNotificationParam {
|
2023-09-25 22:30:56 -04:00
|
|
|
public:
|
2023-11-07 03:30:26 -05:00
|
|
|
inline MxStreamerNotification(NotificationId p_type, MxCore* p_sender, MxStreamController* p_ctrlr)
|
2023-10-24 19:38:27 -04:00
|
|
|
: MxNotificationParam(p_type, p_sender)
|
|
|
|
{
|
|
|
|
m_controller = p_ctrlr;
|
|
|
|
}
|
2023-09-25 22:30:56 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
virtual MxNotificationParam* Clone() override;
|
2023-09-25 22:30:56 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
MxStreamController* GetController() { return m_controller; }
|
2023-09-25 22:30:56 -04:00
|
|
|
|
|
|
|
private:
|
2023-10-24 19:38:27 -04:00
|
|
|
MxStreamController* m_controller;
|
2023-09-25 22:30:56 -04:00
|
|
|
};
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100dc710
|
2023-09-25 22:30:56 -04:00
|
|
|
// SIZE 0x2c
|
2023-10-24 19:38:27 -04:00
|
|
|
class MxStreamer : public MxCore {
|
2023-04-27 22:19:39 -04:00
|
|
|
public:
|
2023-10-24 19:38:27 -04:00
|
|
|
enum OpenMode {
|
2024-01-17 11:53:53 -05:00
|
|
|
e_diskStream = 0,
|
2023-10-24 19:38:27 -04:00
|
|
|
e_RAMStream
|
|
|
|
};
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
MxStreamer();
|
2024-01-29 16:17:17 -05:00
|
|
|
virtual ~MxStreamer() override; // vtable+0x00
|
2023-09-25 22:30:56 -04:00
|
|
|
|
2024-01-24 21:16:29 -05:00
|
|
|
MxStreamController* Open(const char* p_name, MxU16 p_openMode);
|
|
|
|
MxLong Close(const char* p_name);
|
2023-04-27 22:19:39 -04:00
|
|
|
|
2024-01-29 16:17:17 -05:00
|
|
|
virtual MxLong Notify(MxParam& p_param) override; // vtable+0x04
|
2023-09-25 22:30:56 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100b9000
|
2023-10-24 19:38:27 -04:00
|
|
|
inline virtual const char* ClassName() const override // vtable+0x0c
|
|
|
|
{
|
2023-12-27 15:59:42 -05:00
|
|
|
// STRING: LEGO1 0x1010210c
|
2023-10-24 19:38:27 -04:00
|
|
|
return "MxStreamer";
|
|
|
|
}
|
2023-09-25 22:30:56 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100b9010
|
2023-10-24 19:38:27 -04:00
|
|
|
inline virtual MxBool IsA(const char* p_name) const override // vtable+0x10
|
|
|
|
{
|
|
|
|
return !strcmp(p_name, MxStreamer::ClassName()) || MxCore::IsA(p_name);
|
|
|
|
}
|
2023-09-25 22:30:56 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
virtual MxResult Create(); // vtable+0x14
|
2023-09-25 22:30:56 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
MxBool FUN_100b9b30(MxDSObject& p_dsObject);
|
|
|
|
MxStreamController* GetOpenStream(const char* p_name);
|
2024-01-17 12:08:48 -05:00
|
|
|
void FUN_100b98f0(MxDSAction* p_action);
|
2023-10-24 19:38:27 -04:00
|
|
|
MxResult AddStreamControllerToOpenList(MxStreamController* p_stream);
|
|
|
|
MxResult FUN_100b99b0(MxDSAction* p_action);
|
2023-12-16 13:14:01 -05:00
|
|
|
MxResult DeleteObject(MxDSAction* p_dsAction);
|
2023-10-07 09:05:44 -04:00
|
|
|
|
2023-10-30 09:54:00 -04:00
|
|
|
inline const MxStreamerSubClass2& GetSubclass1() { return m_subclass1; }
|
|
|
|
inline const MxStreamerSubClass3& GetSubclass2() { return m_subclass2; }
|
|
|
|
|
2023-09-25 22:30:56 -04:00
|
|
|
private:
|
2024-01-29 16:17:17 -05:00
|
|
|
list<MxStreamController*> m_openStreams; // 0x08
|
2023-10-24 19:38:27 -04:00
|
|
|
MxStreamerSubClass2 m_subclass1; // 0x14
|
|
|
|
MxStreamerSubClass3 m_subclass2; // 0x20
|
2023-04-27 22:19:39 -04:00
|
|
|
};
|
|
|
|
|
2024-01-14 16:28:46 -05:00
|
|
|
// clang-format off
|
|
|
|
// TEMPLATE: LEGO1 0x100b9090
|
|
|
|
// list<MxStreamController *,allocator<MxStreamController *> >::~list<MxStreamController *,allocator<MxStreamController *> >
|
|
|
|
// clang-format on
|
|
|
|
|
2023-12-28 11:56:54 -05:00
|
|
|
// SYNTHETIC: LEGO1 0x100b9120
|
|
|
|
// MxStreamer::`scalar deleting destructor'
|
|
|
|
|
2024-01-14 16:28:46 -05:00
|
|
|
// TEMPLATE: LEGO1 0x100b9140
|
|
|
|
// List<MxStreamController *>::~List<MxStreamController *>
|
|
|
|
|
|
|
|
// SYNTHETIC: LEGO1 0x100b97b0
|
|
|
|
// MxStreamerNotification::`scalar deleting destructor'
|
|
|
|
|
|
|
|
// SYNTHETIC: LEGO1 0x100b9820
|
|
|
|
// MxStreamerNotification::~MxStreamerNotification
|
|
|
|
|
2023-04-27 22:19:39 -04:00
|
|
|
#endif // MXSTREAMER_H
|