2023-06-11 21:03:54 -04:00
|
|
|
#ifndef MXPRESENTER_H
|
|
|
|
#define MXPRESENTER_H
|
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
#include "decomp.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
#include "mxcore.h"
|
|
|
|
#include "mxcriticalsection.h"
|
2023-10-24 19:38:27 -04:00
|
|
|
#include "mxpoint32.h"
|
2023-07-02 03:00:28 -04:00
|
|
|
|
2023-11-13 05:22:58 -05:00
|
|
|
class MxCompositePresenter;
|
2024-05-03 12:19:12 -04:00
|
|
|
class MxDSAction;
|
|
|
|
class MxOmni;
|
2023-06-29 04:10:08 -04:00
|
|
|
class MxStreamController;
|
2023-12-26 17:42:29 -05:00
|
|
|
class MxEntity;
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100d4d38
|
2023-11-02 06:54:08 -04:00
|
|
|
// SIZE 0x40
|
2023-10-24 19:38:27 -04:00
|
|
|
class MxPresenter : public MxCore {
|
2023-06-29 04:10:08 -04:00
|
|
|
public:
|
2023-10-24 19:38:27 -04:00
|
|
|
enum TickleState {
|
2024-01-17 11:53:53 -05:00
|
|
|
e_idle = 0,
|
|
|
|
e_ready,
|
|
|
|
e_starting,
|
|
|
|
e_streaming,
|
|
|
|
e_repeating,
|
2024-04-20 11:18:19 -04:00
|
|
|
e_freezing,
|
2024-01-17 11:53:53 -05:00
|
|
|
e_done,
|
2023-10-24 19:38:27 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
MxPresenter() { Init(); }
|
|
|
|
|
2024-01-11 10:02:55 -05:00
|
|
|
// FUNCTION: LEGO1 0x1000bf00
|
2024-03-03 20:34:55 -05:00
|
|
|
~MxPresenter() override {} // vtable+0x00
|
2024-01-11 10:02:55 -05:00
|
|
|
|
2024-02-01 15:42:10 -05:00
|
|
|
MxResult Tickle() override; // vtable+0x08
|
2023-10-24 19:38:27 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1000bfe0
|
2024-02-01 15:42:10 -05:00
|
|
|
inline const char* ClassName() const override // vtable+0x0c
|
2023-10-24 19:38:27 -04:00
|
|
|
{
|
2023-12-27 15:59:42 -05:00
|
|
|
// STRING: LEGO1 0x100f0740
|
2023-10-24 19:38:27 -04:00
|
|
|
return "MxPresenter";
|
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1000bff0
|
2024-02-01 15:42:10 -05:00
|
|
|
inline MxBool IsA(const char* p_name) const override // vtable+0x10
|
2023-10-24 19:38:27 -04:00
|
|
|
{
|
2023-12-13 05:48:14 -05:00
|
|
|
return !strcmp(p_name, MxPresenter::ClassName()) || MxCore::IsA(p_name);
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
|
|
|
|
2024-01-11 10:02:55 -05:00
|
|
|
// FUNCTION: LEGO1 0x1000be30
|
|
|
|
virtual void VTable0x14() {} // vtable+0x14
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1000be40
|
|
|
|
virtual void ReadyTickle()
|
|
|
|
{
|
|
|
|
ParseExtra();
|
2024-01-17 11:53:53 -05:00
|
|
|
ProgressTickleState(e_starting);
|
2024-01-11 10:02:55 -05:00
|
|
|
} // vtable+0x18
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1000be60
|
2024-01-17 11:53:53 -05:00
|
|
|
virtual void StartingTickle() { ProgressTickleState(e_streaming); } // vtable+0x1c
|
2024-01-11 10:02:55 -05:00
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1000be80
|
2024-01-29 17:30:20 -05:00
|
|
|
virtual void StreamingTickle() { ProgressTickleState(e_repeating); } // vtable+0x20
|
2024-01-11 10:02:55 -05:00
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1000bea0
|
2024-04-20 11:18:19 -04:00
|
|
|
virtual void RepeatingTickle() { ProgressTickleState(e_freezing); } // vtable+0x24
|
2024-01-11 10:02:55 -05:00
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1000bec0
|
2024-04-20 11:18:19 -04:00
|
|
|
virtual void FreezingTickle() { ProgressTickleState(e_done); } // vtable+0x28
|
2023-09-04 18:33:38 -04:00
|
|
|
|
2023-06-11 21:03:54 -04:00
|
|
|
protected:
|
2024-01-11 10:02:55 -05:00
|
|
|
// FUNCTION: LEGO1 0x1000bee0
|
2024-01-29 17:30:20 -05:00
|
|
|
virtual void DoneTickle() { ProgressTickleState(e_idle); } // vtable+0x2c
|
2024-01-11 10:02:55 -05:00
|
|
|
|
2024-01-24 21:16:29 -05:00
|
|
|
virtual void ParseExtra(); // vtable+0x30
|
2023-09-04 18:33:38 -04:00
|
|
|
|
2024-01-11 10:02:55 -05:00
|
|
|
inline void ProgressTickleState(TickleState p_tickleState)
|
|
|
|
{
|
|
|
|
m_previousTickleStates |= 1 << (MxU8) m_currentTickleState;
|
|
|
|
m_currentTickleState = p_tickleState;
|
|
|
|
}
|
|
|
|
|
2023-06-11 21:03:54 -04:00
|
|
|
public:
|
2024-01-11 10:02:55 -05:00
|
|
|
// FUNCTION: LEGO1 0x1000bf70
|
2024-01-29 17:30:20 -05:00
|
|
|
virtual MxResult AddToManager() { return SUCCESS; } // vtable+0x34
|
2024-01-11 10:02:55 -05:00
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1000bf80
|
2024-01-29 17:30:20 -05:00
|
|
|
virtual void Destroy() { Init(); } // vtable+0x38
|
2024-01-11 10:02:55 -05:00
|
|
|
|
2024-01-24 21:16:29 -05:00
|
|
|
virtual MxResult StartAction(MxStreamController*, MxDSAction*); // vtable+0x3c
|
|
|
|
virtual void EndAction(); // vtable+0x40
|
2024-01-11 10:02:55 -05:00
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1000bf90
|
|
|
|
virtual void SetTickleState(TickleState p_tickleState) { ProgressTickleState(p_tickleState); } // vtable+0x44
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1000bfb0
|
|
|
|
virtual MxBool HasTickleStatePassed(TickleState p_tickleState)
|
|
|
|
{
|
|
|
|
return m_previousTickleStates & (1 << (MxU8) p_tickleState);
|
2024-01-29 17:30:20 -05:00
|
|
|
} // vtable+0x48
|
2024-01-11 10:02:55 -05:00
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1000bfc0
|
2024-01-29 17:30:20 -05:00
|
|
|
virtual MxResult PutData() { return SUCCESS; } // vtable+0x4c
|
2024-01-11 10:02:55 -05:00
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1000bfd0
|
2024-01-29 17:30:20 -05:00
|
|
|
virtual MxBool IsHit(MxS32 p_x, MxS32 p_y) { return FALSE; } // vtable+0x50
|
2024-01-11 10:02:55 -05:00
|
|
|
|
2024-01-24 21:16:29 -05:00
|
|
|
virtual void Enable(MxBool p_enable); // vtable+0x54
|
2023-10-24 19:38:27 -04:00
|
|
|
|
2024-03-04 17:00:38 -05:00
|
|
|
MxEntity* CreateEntity(const char* p_defaultName);
|
2024-05-03 12:19:12 -04:00
|
|
|
void SendToCompositePresenter(MxOmni* p_omni);
|
2023-10-24 19:38:27 -04:00
|
|
|
MxBool IsEnabled();
|
|
|
|
|
|
|
|
inline MxS32 GetCurrentTickleState() const { return this->m_currentTickleState; }
|
|
|
|
inline MxPoint32 GetLocation() const { return this->m_location; }
|
2024-02-29 20:45:30 -05:00
|
|
|
inline MxS32 GetX() const { return this->m_location.GetX(); }
|
|
|
|
inline MxS32 GetY() const { return this->m_location.GetY(); }
|
2023-10-24 19:38:27 -04:00
|
|
|
inline MxS32 GetDisplayZ() const { return this->m_displayZ; }
|
|
|
|
inline MxDSAction* GetAction() const { return this->m_action; }
|
2024-03-03 20:34:55 -05:00
|
|
|
inline void SetAction(MxDSAction* p_action) { m_action = p_action; }
|
2023-09-19 23:00:34 -04:00
|
|
|
|
2023-12-11 16:35:50 -05:00
|
|
|
inline void SetCompositePresenter(MxCompositePresenter* p_compositePresenter)
|
|
|
|
{
|
|
|
|
m_compositePresenter = p_compositePresenter;
|
|
|
|
}
|
|
|
|
|
2024-01-31 09:47:15 -05:00
|
|
|
inline void SetDisplayZ(MxS32 p_displayZ) { m_displayZ = p_displayZ; }
|
|
|
|
|
2024-01-18 08:34:14 -05:00
|
|
|
// SYNTHETIC: LEGO1 0x1000c070
|
|
|
|
// MxPresenter::`scalar deleting destructor'
|
|
|
|
|
2023-07-02 03:00:28 -04:00
|
|
|
protected:
|
2024-01-24 21:16:29 -05:00
|
|
|
void Init();
|
2023-11-13 05:22:58 -05:00
|
|
|
|
2024-01-29 16:17:17 -05:00
|
|
|
TickleState m_currentTickleState; // 0x08
|
2023-11-13 05:22:58 -05:00
|
|
|
MxU32 m_previousTickleStates; // 0x0c
|
|
|
|
MxPoint32 m_location; // 0x10
|
|
|
|
MxS32 m_displayZ; // 0x18
|
|
|
|
MxDSAction* m_action; // 0x1c
|
|
|
|
MxCriticalSection m_criticalSection; // 0x20
|
|
|
|
MxCompositePresenter* m_compositePresenter; // 0x3c
|
2023-06-11 21:03:54 -04:00
|
|
|
};
|
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
const char* PresenterNameDispatch(const MxDSAction&);
|
2023-09-22 17:42:23 -04:00
|
|
|
|
2023-06-11 21:03:54 -04:00
|
|
|
#endif // MXPRESENTER_H
|