mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00:00
Bootstrap MxMediaPresenter (#274)
* Bootstrap MxMediaPresenter * Add override
This commit is contained in:

committed by
GitHub

parent
e2f2ef6152
commit
04b503c79f
@@ -2,15 +2,18 @@
|
||||
#define MXMEDIAPRESENTER_H
|
||||
|
||||
#include "decomp.h"
|
||||
#include "mxdssubscriber.h"
|
||||
#include "mxpresenter.h"
|
||||
#include "mxstreamchunklist.h"
|
||||
|
||||
// VTABLE 0x100d4cd8
|
||||
// SIZE 0x50
|
||||
class MxMediaPresenter : public MxPresenter {
|
||||
public:
|
||||
inline MxMediaPresenter() { Init(); }
|
||||
virtual ~MxMediaPresenter() override;
|
||||
|
||||
virtual MxResult Tickle() override;
|
||||
virtual MxResult Tickle() override; // vtable+0x8
|
||||
|
||||
// OFFSET: LEGO1 0x1000c5c0
|
||||
inline virtual const char* ClassName() const override // vtable+0xc
|
||||
@@ -29,17 +32,17 @@ public:
|
||||
virtual void RepeatingTickle() override;
|
||||
virtual void DoneTickle() override;
|
||||
virtual void Destroy() override;
|
||||
virtual MxLong StartAction(MxStreamController*, MxDSAction*) override;
|
||||
virtual MxResult StartAction(MxStreamController*, MxDSAction*) override;
|
||||
virtual void EndAction() override;
|
||||
virtual void Enable(MxBool p_enable) override;
|
||||
virtual void VTable0x58();
|
||||
|
||||
undefined4 m_unk40;
|
||||
undefined4 m_unk44;
|
||||
undefined4 m_unk48;
|
||||
undefined4 m_unk4c;
|
||||
|
||||
protected:
|
||||
MxDSSubscriber* m_subscriber; // 0x40
|
||||
MxStreamChunkList* m_chunks; // 0x44
|
||||
MxStreamChunkListCursor* m_cursor; // 0x48
|
||||
MxStreamChunk* m_currentChunk; // 0x4c
|
||||
|
||||
void Init();
|
||||
void Destroy(MxBool p_fromDestructor);
|
||||
};
|
||||
|
Reference in New Issue
Block a user