mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-29 19:05:34 -05:00
MxMediaPresenter vtable (#189)
* Add vtables for MxMediaPresenter * remove comments and fix override
This commit is contained in:
parent
5f8bde9e48
commit
3afbf808d1
3 changed files with 68 additions and 5 deletions
|
@ -2,6 +2,12 @@
|
||||||
|
|
||||||
DECOMP_SIZE_ASSERT(MxMediaPresenter, 0x50);
|
DECOMP_SIZE_ASSERT(MxMediaPresenter, 0x50);
|
||||||
|
|
||||||
|
// OFFSET: LEGO1 0x1000c550
|
||||||
|
MxMediaPresenter::~MxMediaPresenter()
|
||||||
|
{
|
||||||
|
Destroy(TRUE);
|
||||||
|
}
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x100b5d10 STUB
|
// OFFSET: LEGO1 0x100b5d10 STUB
|
||||||
MxResult MxMediaPresenter::Tickle()
|
MxResult MxMediaPresenter::Tickle()
|
||||||
{
|
{
|
||||||
|
@ -18,6 +24,56 @@ void MxMediaPresenter::Init()
|
||||||
this->m_unk4c = NULL;
|
this->m_unk4c = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// OFFSET: LEGO1 0x100b54f0 STUB
|
||||||
|
void MxMediaPresenter::Destroy(MxBool p_destroy)
|
||||||
|
{
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
|
||||||
|
// OFFSET: LEGO1 0x100b5d90 STUB
|
||||||
|
void MxMediaPresenter::StreamingTickle()
|
||||||
|
{
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
|
||||||
|
// OFFSET: LEGO1 0x100b5e10 STUB
|
||||||
|
void MxMediaPresenter::RepeatingTickle()
|
||||||
|
{
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
|
||||||
|
// OFFSET: LEGO1 0x100b5ef0
|
||||||
|
void MxMediaPresenter::DoneTickle()
|
||||||
|
{
|
||||||
|
m_previousTickleStates |= 1 << m_currentTickleState;
|
||||||
|
m_currentTickleState = TickleState_Idle;
|
||||||
|
EndAction();
|
||||||
|
}
|
||||||
|
|
||||||
|
// OFFSET: LEGO1 0x100b6030 STUB
|
||||||
|
void MxMediaPresenter::Enable(MxBool p_enable)
|
||||||
|
{
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
|
||||||
|
// OFFSET: LEGO1 0x1000c5b0
|
||||||
|
void MxMediaPresenter::InitVirtual()
|
||||||
|
{
|
||||||
|
Destroy(FALSE);
|
||||||
|
}
|
||||||
|
|
||||||
|
// OFFSET: LEGO1 0x100b5700 STUB
|
||||||
|
MxLong MxMediaPresenter::StartAction(MxStreamController * p_controller, MxDSAction * p_action)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// OFFSET: LEGO1 0x100b5bc0 STUB
|
||||||
|
void MxMediaPresenter::EndAction()
|
||||||
|
{
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x100b5f10 STUB
|
// OFFSET: LEGO1 0x100b5f10 STUB
|
||||||
void MxMediaPresenter::VTable0x58()
|
void MxMediaPresenter::VTable0x58()
|
||||||
{
|
{
|
||||||
|
|
|
@ -13,8 +13,9 @@ class MxMediaPresenter : public MxPresenter
|
||||||
{
|
{
|
||||||
Init();
|
Init();
|
||||||
}
|
}
|
||||||
|
virtual ~MxMediaPresenter() override;
|
||||||
|
|
||||||
virtual MxResult Tickle() override; // vtable+0x8, override MxCore
|
virtual MxResult Tickle() override;
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x1000c5c0
|
// OFFSET: LEGO1 0x1000c5c0
|
||||||
inline virtual const char *ClassName() const override // vtable+0xc
|
inline virtual const char *ClassName() const override // vtable+0xc
|
||||||
|
@ -29,7 +30,14 @@ class MxMediaPresenter : public MxPresenter
|
||||||
return !strcmp(name, MxMediaPresenter::ClassName()) || MxPresenter::IsA(name);
|
return !strcmp(name, MxMediaPresenter::ClassName()) || MxPresenter::IsA(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void VTable0x58(); // vtable+0x58
|
virtual void StreamingTickle() override;
|
||||||
|
virtual void RepeatingTickle() override;
|
||||||
|
virtual void DoneTickle() override;
|
||||||
|
virtual void InitVirtual() override;
|
||||||
|
virtual MxLong StartAction(MxStreamController *, MxDSAction *) override;
|
||||||
|
virtual void EndAction() override;
|
||||||
|
virtual void Enable(MxBool p_enable) override;
|
||||||
|
virtual void VTable0x58();
|
||||||
|
|
||||||
undefined4 m_unk40;
|
undefined4 m_unk40;
|
||||||
undefined4 m_unk44;
|
undefined4 m_unk44;
|
||||||
|
@ -37,6 +45,7 @@ class MxMediaPresenter : public MxPresenter
|
||||||
undefined4 m_unk4c;
|
undefined4 m_unk4c;
|
||||||
private:
|
private:
|
||||||
void Init();
|
void Init();
|
||||||
|
void Destroy(MxBool);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -78,8 +78,6 @@ class MxPresenter : public MxCore
|
||||||
protected:
|
protected:
|
||||||
__declspec(dllexport) void Init();
|
__declspec(dllexport) void Init();
|
||||||
void SendTo_unkPresenter(MxOmni *);
|
void SendTo_unkPresenter(MxOmni *);
|
||||||
|
|
||||||
private:
|
|
||||||
TickleState m_currentTickleState; // 0x8
|
TickleState m_currentTickleState; // 0x8
|
||||||
MxU32 m_previousTickleStates;
|
MxU32 m_previousTickleStates;
|
||||||
MxPoint32 m_location;
|
MxPoint32 m_location;
|
||||||
|
|
Loading…
Reference in a new issue