isle/LEGO1/lego/legoomni/src/paths/legopathpresenter.cpp
Christian Semmler 8069923651
Refactor files based on beta debug build (#645)
* Rename LegoUnkSaveDataWriter -> LegoCharacterManager

* Refactor mxomni into mxomni/mxmisc

* Refactor legoomni into legoomni/misc

* Resolve deps

* Refactor atom

* Refactor mxutil

* Refactor mxio

* Rename/relocate files

* Fix format
2024-03-09 21:07:52 +01:00

98 lines
1.6 KiB
C++

#include "legopathpresenter.h"
#include "legovideomanager.h"
#include "misc.h"
#include "mxautolocker.h"
DECOMP_SIZE_ASSERT(LegoPathPresenter, 0x54);
// FUNCTION: LEGO1 0x100448d0
LegoPathPresenter::LegoPathPresenter()
{
Init();
}
// FUNCTION: LEGO1 0x10044ab0
void LegoPathPresenter::Init()
{
}
// FUNCTION: LEGO1 0x10044ac0
LegoPathPresenter::~LegoPathPresenter()
{
Destroy(TRUE);
}
// FUNCTION: LEGO1 0x10044b40
MxResult LegoPathPresenter::AddToManager()
{
MxResult status = FAILURE;
if (VideoManager()) {
VideoManager()->RegisterPresenter(*this);
status = SUCCESS;
}
return status;
}
// FUNCTION: LEGO1 0x10044b70
void LegoPathPresenter::Destroy(MxBool p_fromDestructor)
{
if (VideoManager()) {
VideoManager()->UnregisterPresenter(*this);
}
{
MxAutoLocker lock(&this->m_criticalSection);
Init();
}
if (!p_fromDestructor) {
MxMediaPresenter::Destroy(FALSE);
}
}
// FUNCTION: LEGO1 0x10044c10
void LegoPathPresenter::Destroy()
{
Destroy(FALSE);
}
// STUB: LEGO1 0x10044c20
void LegoPathPresenter::ReadyTickle()
{
// TODO
ProgressTickleState(e_starting); // Allow initialization process to continue
}
// FUNCTION: LEGO1 0x10044d00
void LegoPathPresenter::StreamingTickle()
{
MxStreamChunk* chunk = m_subscriber->PopData();
if (chunk) {
if (chunk->GetFlags() & MxStreamChunk::c_end) {
ProgressTickleState(e_repeating);
}
m_subscriber->FreeDataChunk(chunk);
}
}
// FUNCTION: LEGO1 0x10044d40
void LegoPathPresenter::RepeatingTickle()
{
if (this->m_action->GetDuration() == -1) {
return;
}
EndAction();
}
// STUB: LEGO1 0x10044d60
void LegoPathPresenter::ParseExtra()
{
// TODO
}