mirror of
https://github.com/isledecomp/isle.git
synced 2025-12-09 23:53:02 +00:00
Add MxList, MxPresenterList, add to MxMediaManager (#122)
* Add MxList, MxPresenterList, add to MxMediaManager * Match ~MxList<T>
This commit is contained in:
committed by
GitHub
parent
b1a2aeaed6
commit
253538feed
@@ -1,4 +1,5 @@
|
||||
#include "mxmediamanager.h"
|
||||
#include "mxautolocker.h"
|
||||
#include "decomp.h"
|
||||
|
||||
DECOMP_SIZE_ASSERT(MxMediaManager, 0x2c);
|
||||
@@ -12,22 +13,45 @@ MxMediaManager::MxMediaManager()
|
||||
// OFFSET: LEGO1 0x100b8560
|
||||
MxMediaManager::~MxMediaManager()
|
||||
{
|
||||
Teardown();
|
||||
Destroy();
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100b85d0
|
||||
MxResult MxMediaManager::Init()
|
||||
{
|
||||
this->m_unk08 = NULL;
|
||||
this->m_presenters = NULL;
|
||||
this->m_thread = NULL;
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100b8710
|
||||
void MxMediaManager::Teardown()
|
||||
void MxMediaManager::Destroy()
|
||||
{
|
||||
if(this->m_unk08) {
|
||||
delete this->m_unk08;
|
||||
}
|
||||
MxAutoLocker lock(&this->m_criticalSection);
|
||||
|
||||
if (this->m_presenters)
|
||||
delete this->m_presenters;
|
||||
|
||||
Init();
|
||||
}
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100b8790 STUB
|
||||
MxResult MxMediaManager::Tickle()
|
||||
{
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100b85e0
|
||||
MxResult MxMediaManager::InitPresenters()
|
||||
{
|
||||
MxAutoLocker lock(&this->m_criticalSection);
|
||||
|
||||
this->m_presenters = new MxPresenterList;
|
||||
|
||||
if (!this->m_presenters) {
|
||||
this->Destroy();
|
||||
return FAILURE;
|
||||
}
|
||||
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user