mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 08:08:03 -05:00
574a9dc6f1
* Implement some MxStreamer stuff * Implement/match MxVideoManager::Tickle (#128) * Implement/match MxPresenter::StartAction * Update mxpoint32.h * Implement/match MxVideoManager::Tickle * Update mxlist.h * Update mxpresenter.cpp * MxFlcPresenter ctor/dtor (#132) * MxFlcPresenter ctor/dtor * Match constructor --------- Co-authored-by: Christian Semmler <mail@csemmler.com> * LegoOmni::CreateStreamObject and related (#129) * LegoOmni::CreateStreamObject and related * Revert change to MxDSSource/MxDSFile Read export * Bootstrap MxDSMultiAction (#133) * Bootstrap MxDSMultiAction * Move destroy function to list class * Fix unk14 call * Quick patch for EqualsDataProduct (#134) * MxLong Tickle() -> MxResult Tickle() (#135) * MxLong Tickle() -> MxResult Tickle() * Remove garbage * Fix implementations * PresenterNameDispatch (#137) * PresenterNameDispatch * Use reference for PresenterNameDispatch param - fix or add const markers so we can use a const reference * Implement/match remaining MxDSMultiAction functions (#136) * Implement/match MxDSMultiAction::Deserialize * Implement remaining functions of MxDSMultiAction * Remove space * Implement/match MxDSParallelAction (#138) * Implement/match MxDSParallelAction * Fix type * Remove space * Add neccessary MxDSMultiAction functions * Implement/match MxDSSerialAction (#139) * Implement/match MxDSSerialAction * Add neccessary MxDSMultiAction functions * Fix LegoOmni vtable (#140) * matched GetOpenStream * matched MakeSourceName * add MxDSBuffer stub * add MxRAMStreamController stub * add stubbed functions for MxStreamController used by MxStreamer * implement AddStreamControllerToOpenList * implement most of MxStreamer::Open * add note for MxStreamerSubclass1 * fix compiler issue * implement MxStreamer::Notify --------- Co-authored-by: Christian Semmler <mail@csemmler.com> Co-authored-by: Joshua Peisach <itzswirlz2020@outlook.com> Co-authored-by: MS <disinvite@users.noreply.github.com>
106 lines
2.4 KiB
C++
106 lines
2.4 KiB
C++
#ifndef MXSTREAMER_H
|
|
#define MXSTREAMER_H
|
|
|
|
#include <list>
|
|
|
|
#include "decomp.h"
|
|
#include "mxcore.h"
|
|
#include "mxparam.h"
|
|
#include "mxstreamcontroller.h"
|
|
#include "mxtypes.h"
|
|
|
|
// 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).
|
|
class MxStreamerSubClass1
|
|
{
|
|
public:
|
|
inline MxStreamerSubClass1(undefined4 size);
|
|
|
|
~MxStreamerSubClass1() { delete [] m_buffer; }
|
|
|
|
undefined4 GetSize() { return m_size; }
|
|
|
|
void SetBuffer(undefined *p_buf) { m_buffer = p_buf; }
|
|
|
|
private:
|
|
undefined *m_buffer;
|
|
undefined4 m_size;
|
|
undefined4 m_unk08;
|
|
};
|
|
|
|
class MxStreamerSubClass2 : public MxStreamerSubClass1
|
|
{
|
|
public:
|
|
inline MxStreamerSubClass2() : MxStreamerSubClass1(0x40) {}
|
|
};
|
|
|
|
class MxStreamerSubClass3 : public MxStreamerSubClass1
|
|
{
|
|
public:
|
|
inline MxStreamerSubClass3() : MxStreamerSubClass1(0x80) {}
|
|
};
|
|
|
|
class MxStreamerNotification : public MxParam
|
|
{
|
|
public:
|
|
inline MxStreamerNotification(MxS32 p_type, MxCore *p_sender, MxStreamController *p_ctrlr) : MxParam(p_type, p_sender)
|
|
{
|
|
m_controller = p_ctrlr;
|
|
}
|
|
|
|
virtual ~MxStreamerNotification() override {}
|
|
|
|
virtual MxParam *Clone() override;
|
|
|
|
MxStreamController *GetController() { return m_controller; }
|
|
|
|
private:
|
|
MxStreamController *m_controller;
|
|
};
|
|
|
|
// VTABLE 0x100dc710
|
|
// SIZE 0x2c
|
|
class MxStreamer : public MxCore
|
|
{
|
|
public:
|
|
enum OpenMode
|
|
{
|
|
e_DiskStream,
|
|
e_RAMStream
|
|
};
|
|
|
|
MxStreamer();
|
|
virtual ~MxStreamer() override; // vtable+0x0
|
|
|
|
__declspec(dllexport) MxStreamController *Open(const char *p_name, MxU16 p_openMode);
|
|
__declspec(dllexport) MxLong Close(const char *p_name);
|
|
|
|
virtual MxLong Notify(MxParam &p) override; // vtable+0x4
|
|
|
|
// OFFSET: LEGO1 0x100b9000
|
|
inline virtual const char *ClassName() const override // vtable+0x0c
|
|
{
|
|
// 0x1010210c
|
|
return "MxStreamer";
|
|
}
|
|
|
|
// 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);
|
|
}
|
|
|
|
virtual MxResult Init(); // vtable+0x14
|
|
|
|
MxStreamController *GetOpenStream(const char *p_name);
|
|
|
|
MxResult AddStreamControllerToOpenList(MxStreamController *p_stream);
|
|
|
|
private:
|
|
list<MxStreamController *> m_openStreams; // 0x8
|
|
MxStreamerSubClass2 m_subclass1; // 0x14
|
|
MxStreamerSubClass3 m_subclass2; // 0x20
|
|
|
|
};
|
|
|
|
#endif // MXSTREAMER_H
|