2023-06-11 21:03:54 -04:00
|
|
|
#ifndef MXPRESENTER_H
|
|
|
|
#define MXPRESENTER_H
|
|
|
|
|
2023-06-29 04:10:08 -04:00
|
|
|
#include "mxcore.h"
|
2023-09-19 17:45:16 -04:00
|
|
|
#include "mxpoint32.h"
|
2023-09-04 18:33:38 -04:00
|
|
|
#include "mxdsaction.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
#include "mxcriticalsection.h"
|
2023-09-13 03:44:03 -04:00
|
|
|
#include "mxomni.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-07-02 03:00:28 -04:00
|
|
|
#include "decomp.h"
|
|
|
|
|
2023-06-29 04:10:08 -04:00
|
|
|
class MxStreamController;
|
|
|
|
|
2023-09-04 18:33:38 -04:00
|
|
|
// VTABLE 0x100d4d38
|
2023-06-29 04:10:08 -04:00
|
|
|
class MxPresenter : public MxCore
|
2023-06-11 21:03:54 -04:00
|
|
|
{
|
2023-06-29 04:10:08 -04:00
|
|
|
public:
|
2023-10-08 09:46:09 -04:00
|
|
|
enum TickleState
|
2023-09-04 18:33:38 -04:00
|
|
|
{
|
|
|
|
TickleState_Idle = 0,
|
|
|
|
TickleState_Ready,
|
|
|
|
TickleState_Starting,
|
|
|
|
TickleState_Streaming,
|
|
|
|
TickleState_Repeating,
|
|
|
|
TickleState_unk5,
|
|
|
|
TickleState_Done,
|
|
|
|
};
|
|
|
|
|
|
|
|
MxPresenter() { Init(); }
|
|
|
|
|
2023-06-29 04:10:08 -04:00
|
|
|
__declspec(dllexport) virtual ~MxPresenter(); // vtable+0x0
|
2023-09-21 14:51:24 -04:00
|
|
|
__declspec(dllexport) virtual MxResult Tickle() override; // vtable+0x8
|
2023-06-29 04:10:08 -04:00
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x1000bfe0
|
2023-07-02 03:00:28 -04:00
|
|
|
inline virtual const char *ClassName() const override// vtable+0xc
|
2023-06-29 04:10:08 -04:00
|
|
|
{
|
|
|
|
// 0x100f0740
|
|
|
|
return "MxPresenter";
|
|
|
|
}
|
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x1000bff0
|
2023-07-02 03:00:28 -04:00
|
|
|
inline virtual MxBool IsA(const char *name) const override// vtable+0x10
|
2023-06-29 04:10:08 -04:00
|
|
|
{
|
|
|
|
return !strcmp(name, MxPresenter::ClassName()) || MxCore::IsA(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void VTable0x14(); // vtable+0x14
|
2023-09-04 18:33:38 -04:00
|
|
|
virtual void ReadyTickle(); // vtable+0x18
|
|
|
|
virtual void StartingTickle(); // vtable+0x1c
|
|
|
|
virtual void StreamingTickle(); // vtable+0x20
|
|
|
|
virtual void RepeatingTickle(); // vtable+0x24
|
|
|
|
virtual void Unk5Tickle(); // vtable+0x28
|
|
|
|
|
2023-06-11 21:03:54 -04:00
|
|
|
protected:
|
2023-06-29 04:10:08 -04:00
|
|
|
__declspec(dllexport) virtual void DoneTickle(); // vtable+0x2c
|
|
|
|
__declspec(dllexport) virtual void ParseExtra(); // vtable+0x30
|
2023-09-04 18:33:38 -04:00
|
|
|
|
2023-06-11 21:03:54 -04:00
|
|
|
public:
|
2023-10-13 12:43:45 -04:00
|
|
|
virtual MxResult AddToManager(); // vtable+0x34
|
|
|
|
virtual void Destroy(); // vtable+0x38
|
2023-07-02 04:05:49 -04:00
|
|
|
__declspec(dllexport) virtual MxLong StartAction(MxStreamController *, MxDSAction *); // vtable+0x3c
|
2023-06-29 04:10:08 -04:00
|
|
|
__declspec(dllexport) virtual void EndAction(); // vtable+0x40
|
2023-09-04 18:33:38 -04:00
|
|
|
virtual void SetTickleState(TickleState p_tickleState); // vtable+0x44
|
|
|
|
virtual MxBool HasTickleStatePassed(TickleState p_tickleState); // vtable+0x48
|
2023-09-19 23:00:34 -04:00
|
|
|
virtual undefined4 PutData(); // vtable+0x4c
|
|
|
|
virtual MxBool IsHit(MxS32 p_x, MxS32 p_y); // vtable+0x50
|
2023-09-04 18:33:38 -04:00
|
|
|
__declspec(dllexport) virtual void Enable(MxBool p_enable); // vtable+0x54
|
|
|
|
|
|
|
|
MxBool IsEnabled();
|
|
|
|
|
2023-10-07 12:48:36 -04:00
|
|
|
inline MxS32 GetCurrentTickleState() const { return this->m_currentTickleState; }
|
|
|
|
inline MxPoint32 GetLocation() const { return this->m_location; }
|
|
|
|
inline MxS32 GetLocationX() const { return this->m_location.m_x; }
|
|
|
|
inline MxS32 GetLocationY() const { return this->m_location.m_y; }
|
|
|
|
inline MxS32 GetDisplayZ() const { return this->m_displayZ; }
|
|
|
|
inline MxDSAction *GetAction() const { return this->m_action; }
|
2023-09-19 23:00:34 -04:00
|
|
|
|
2023-07-02 03:00:28 -04:00
|
|
|
protected:
|
|
|
|
__declspec(dllexport) void Init();
|
2023-09-13 03:44:03 -04:00
|
|
|
void SendTo_unkPresenter(MxOmni *);
|
2023-10-07 12:48:36 -04:00
|
|
|
TickleState m_currentTickleState; // 0x8
|
2023-10-10 13:05:04 -04:00
|
|
|
MxU32 m_previousTickleStates; // 0x0c
|
|
|
|
MxPoint32 m_location; // 0x10
|
|
|
|
MxS32 m_displayZ; // 0x18
|
|
|
|
MxDSAction *m_action; // 0x1c
|
|
|
|
MxCriticalSection m_criticalSection; // 0x20
|
2023-09-13 03:44:03 -04:00
|
|
|
MxPresenter *m_unkPresenter; // 0x3c
|
2023-06-11 21:03:54 -04:00
|
|
|
};
|
|
|
|
|
2023-09-22 17:42:23 -04:00
|
|
|
char *PresenterNameDispatch(const MxDSAction &);
|
|
|
|
|
2023-06-11 21:03:54 -04:00
|
|
|
#endif // MXPRESENTER_H
|