Finish MxMediaManager and MxEventManager (#185)

* Finish MxMediaManager and MxEventManager

* Update mxomni.cpp

* fixes
This commit is contained in:
Misha
2023-10-07 17:30:05 -04:00
committed by GitHub
parent 472a82f220
commit 5f8bde9e48
5 changed files with 72 additions and 9 deletions

View File

@@ -1,4 +1,8 @@
#include "mxeventmanager.h"
#include "mxcriticalsection.h"
#include "mxthread.h"
#include "mxticklemanager.h"
#include "mxomni.h"
// OFFSET: LEGO1 0x100c0360
MxEventManager::MxEventManager()
@@ -9,17 +13,54 @@ MxEventManager::MxEventManager()
// OFFSET: LEGO1 0x100c03f0
MxEventManager::~MxEventManager()
{
// TODO: MxMediaManager::TerminateThread call
TerminateThread(TRUE);
}
// OFFSET: LEGO1 0x100c0450
void MxEventManager::Init()
{
// This is intentionally left blank
}
// OFFSET: LEGO1 0x100c04a0 STUB
MxResult MxEventManager::vtable0x28(undefined4 p_unknown1, undefined p_unknown2)
// OFFSET: LEGO1 0x100c04a0
MxResult MxEventManager::CreateEventThread(MxU32 p_frequencyMS, MxBool p_noRegister)
{
//TODO
return FAILURE;
MxResult status = FAILURE;
MxBool locked = FALSE;
MxResult result = MxMediaManager::InitPresenters();
if (result == SUCCESS)
{
if (p_noRegister)
{
this->m_criticalSection.Enter();
locked = TRUE;
this->m_thread = new MxTickleThread(this, p_frequencyMS);
if (this->m_thread)
{
if (this->m_thread->Start(0, 0) == SUCCESS)
{
status = SUCCESS;
}
}
}
else
{
TickleManager()->RegisterClient(this, p_frequencyMS);
status = SUCCESS;
}
}
if (status != SUCCESS)
{
Destroy();
}
if (locked)
{
this->m_criticalSection.Leave();
}
return status;
}