2023-06-19 01:36:07 -04:00
|
|
|
#ifndef MXNOTIFICATIONMANAGER_H
|
|
|
|
#define MXNOTIFICATIONMANAGER_H
|
|
|
|
|
2023-06-29 04:10:08 -04:00
|
|
|
#include "mxcore.h"
|
2023-07-16 02:43:08 -04:00
|
|
|
#include "mxcriticalsection.h"
|
2023-12-11 16:33:46 -05:00
|
|
|
#include "mxstl/stlcompat.h"
|
2023-07-16 02:43:08 -04:00
|
|
|
#include "mxtypes.h"
|
|
|
|
|
2024-05-03 12:19:12 -04:00
|
|
|
class MxNotificationParam;
|
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
class MxNotification {
|
2023-07-16 02:43:08 -04:00
|
|
|
public:
|
2024-04-22 08:11:38 -04:00
|
|
|
MxNotification(MxCore* p_target, const MxNotificationParam& p_param);
|
2023-10-24 19:38:27 -04:00
|
|
|
~MxNotification();
|
2023-07-16 02:43:08 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
inline MxCore* GetTarget() { return m_target; }
|
|
|
|
inline MxNotificationParam* GetParam() { return m_param; }
|
2023-07-16 02:43:08 -04:00
|
|
|
|
|
|
|
private:
|
2024-01-29 16:17:17 -05:00
|
|
|
MxCore* m_target; // 0x00
|
|
|
|
MxNotificationParam* m_param; // 0x04
|
2023-07-16 02:43:08 -04:00
|
|
|
};
|
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
class MxIdList : public list<MxU32> {};
|
2023-07-16 02:43:08 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
class MxNotificationPtrList : public list<MxNotification*> {};
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100dc078
|
2023-10-24 19:38:27 -04:00
|
|
|
class MxNotificationManager : public MxCore {
|
2023-07-16 02:43:08 -04:00
|
|
|
private:
|
2024-01-29 16:17:17 -05:00
|
|
|
MxNotificationPtrList* m_queue; // 0x08
|
|
|
|
MxNotificationPtrList* m_sendList; // 0x0c
|
2023-10-24 19:38:27 -04:00
|
|
|
MxCriticalSection m_lock; // 0x10
|
2023-12-13 05:48:14 -05:00
|
|
|
MxS32 m_unk0x2c; // 0x2c
|
2023-10-24 19:38:27 -04:00
|
|
|
MxIdList m_listenerIds; // 0x30
|
|
|
|
MxBool m_active; // 0x3c
|
2023-07-16 02:43:08 -04:00
|
|
|
|
2023-06-29 04:10:08 -04:00
|
|
|
public:
|
2023-10-24 19:38:27 -04:00
|
|
|
MxNotificationManager();
|
2024-02-01 15:42:10 -05:00
|
|
|
~MxNotificationManager() override; // vtable+0x00 (scalar deleting destructor)
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2024-02-01 15:42:10 -05:00
|
|
|
MxResult Tickle() override; // vtable+0x08
|
2023-10-24 19:38:27 -04:00
|
|
|
// TODO: Where does this method come from?
|
|
|
|
virtual MxResult Create(MxU32 p_frequencyMS, MxBool p_createThread); // vtable+0x14
|
|
|
|
void Register(MxCore* p_listener);
|
|
|
|
void Unregister(MxCore* p_listener);
|
2024-04-22 08:11:38 -04:00
|
|
|
MxResult Send(MxCore* p_listener, const MxNotificationParam& p_param);
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
inline MxNotificationPtrList* GetQueue() { return m_queue; }
|
2023-10-25 16:51:59 -04:00
|
|
|
inline void SetActive(MxBool p_active) { m_active = p_active; }
|
2023-10-21 17:23:55 -04:00
|
|
|
|
2024-01-18 08:34:14 -05:00
|
|
|
// SYNTHETIC: LEGO1 0x100ac390
|
|
|
|
// MxNotificationManager::`scalar deleting destructor'
|
|
|
|
|
2023-07-16 02:43:08 -04:00
|
|
|
private:
|
2023-10-24 19:38:27 -04:00
|
|
|
void FlushPending(MxCore* p_listener);
|
2023-06-19 01:36:07 -04:00
|
|
|
};
|
|
|
|
|
2024-01-14 16:28:46 -05:00
|
|
|
// TEMPLATE: LEGO1 0x100ac320
|
|
|
|
// list<unsigned int,allocator<unsigned int> >::~list<unsigned int,allocator<unsigned int> >
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x100ac3b0
|
|
|
|
// MxIdList::~MxIdList
|
|
|
|
|
|
|
|
// TEMPLATE: LEGO1 0x100ac400
|
|
|
|
// List<unsigned int>::~List<unsigned int>
|
|
|
|
|
|
|
|
// TEMPLATE: LEGO1 0x100ac540
|
|
|
|
// List<MxNotification *>::~List<MxNotification *>
|
|
|
|
|
|
|
|
// TEMPLATE: LEGO1 0x100ac590
|
|
|
|
// list<MxNotification *,allocator<MxNotification *> >::~list<MxNotification *,allocator<MxNotification *> >
|
|
|
|
|
|
|
|
// TEMPLATE: LEGO1 0x100acbf0
|
|
|
|
// list<MxNotification *,allocator<MxNotification *> >::begin
|
|
|
|
|
|
|
|
// TEMPLATE: LEGO1 0x100acc00
|
|
|
|
// list<MxNotification *,allocator<MxNotification *> >::insert
|
|
|
|
|
|
|
|
// TEMPLATE: LEGO1 0x100acc50
|
|
|
|
// list<MxNotification *,allocator<MxNotification *> >::erase
|
|
|
|
|
|
|
|
// TEMPLATE: LEGO1 0x100acca0
|
|
|
|
// list<MxNotification *,allocator<MxNotification *> >::_Buynode
|
|
|
|
|
|
|
|
// SYNTHETIC: LEGO1 0x100accd0
|
|
|
|
// MxNotificationPtrList::~MxNotificationPtrList
|
|
|
|
|
2023-06-19 01:36:07 -04:00
|
|
|
#endif // MXNOTIFICATIONMANAGER_H
|