mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 08:24:16 +00:00

* Fix size annotations for legoomni
Fix structure and add placeholder annotations for LegoAnimActor and subclasses
* Fix LegoCarRaceActor constructor
Fix function name in LegoRaceCar
* Add size assertions for legoomni and fix sizes
* Various style fixes
* Use other marker so vtable.py doesn't compare
* Revert "Use other marker so vtable.py doesn't compare"
This reverts commit 608985cd73
.
* Fix copy/paste error
* Remove stale comment.
---------
Co-authored-by: Christian Semmler <mail@csemmler.com>
98 lines
1.6 KiB
C++
98 lines
1.6 KiB
C++
#include "legopathpresenter.h"
|
|
|
|
#include "legovideomanager.h"
|
|
#include "misc.h"
|
|
#include "mxautolock.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);
|
|
}
|
|
|
|
{
|
|
AUTOLOCK(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
|
|
}
|