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:
|
2023-10-24 19:38:27 -04:00
|
|
|
inline MxStreamerSubClass1(undefined4 size);
|
2023-09-25 22:30:56 -04:00
|
|
|
|
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; }
|
|
|
|
inline undefined4 GetUnk08() const { return m_unk08; }
|
2023-09-25 22:30:56 -04:00
|
|
|
|
|
|
|
private:
|
2023-10-24 19:38:27 -04:00
|
|
|
undefined* m_buffer;
|
|
|
|
undefined4 m_size;
|
|
|
|
undefined4 m_unk08;
|
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
|
|
|
};
|
|
|
|
|
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 ~MxStreamerNotification() override {}
|
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-06-29 04:10:08 -04:00
|
|
|
// VTABLE 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 {
|
|
|
|
e_DiskStream,
|
|
|
|
e_RAMStream
|
|
|
|
};
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
MxStreamer();
|
|
|
|
virtual ~MxStreamer() override; // vtable+0x0
|
2023-09-25 22:30:56 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
__declspec(dllexport) MxStreamController* Open(const char* p_name, MxU16 p_openMode);
|
|
|
|
__declspec(dllexport) MxLong Close(const char* p_name);
|
2023-04-27 22:19:39 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
virtual MxLong Notify(MxParam& p) override; // vtable+0x4
|
2023-09-25 22:30:56 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
// OFFSET: LEGO1 0x100b9000
|
|
|
|
inline virtual const char* ClassName() const override // vtable+0x0c
|
|
|
|
{
|
|
|
|
// 0x1010210c
|
|
|
|
return "MxStreamer";
|
|
|
|
}
|
2023-09-25 22:30:56 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
// OFFSET: LEGO1 0x100b9010
|
|
|
|
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);
|
|
|
|
MxResult AddStreamControllerToOpenList(MxStreamController* p_stream);
|
|
|
|
MxResult FUN_100b99b0(MxDSAction* p_action);
|
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:
|
2023-10-24 19:38:27 -04:00
|
|
|
list<MxStreamController*> m_openStreams; // 0x8
|
|
|
|
MxStreamerSubClass2 m_subclass1; // 0x14
|
|
|
|
MxStreamerSubClass3 m_subclass2; // 0x20
|
2023-04-27 22:19:39 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MXSTREAMER_H
|