mirror of
https://github.com/isledecomp/isle.git
synced 2024-12-21 21:42:50 -05:00
fca8f74bd8
* 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>
53 lines
802 B
C++
53 lines
802 B
C++
#include "legophonemepresenter.h"
|
|
|
|
DECOMP_SIZE_ASSERT(LegoPhonemePresenter, 0x88)
|
|
|
|
// FUNCTION: LEGO1 0x1004e180
|
|
LegoPhonemePresenter::LegoPhonemePresenter()
|
|
{
|
|
Init();
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x1004e340
|
|
LegoPhonemePresenter::~LegoPhonemePresenter()
|
|
{
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x1004e3b0
|
|
void LegoPhonemePresenter::Init()
|
|
{
|
|
m_unk0x68 = 0;
|
|
m_unk0x6c = 0;
|
|
m_unk0x70 = 0;
|
|
m_unk0x84 = 0;
|
|
}
|
|
|
|
// STUB: LEGO1 0x1004e3d0
|
|
void LegoPhonemePresenter::StartingTickle()
|
|
{
|
|
// TODO
|
|
|
|
EndAction();
|
|
}
|
|
|
|
// STUB: LEGO1 0x1004e800
|
|
void LegoPhonemePresenter::LoadFrame(MxStreamChunk* p_chunk)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// STUB: LEGO1 0x1004e840
|
|
void LegoPhonemePresenter::PutFrame()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// STUB: LEGO1 0x1004e870
|
|
void LegoPhonemePresenter::EndAction()
|
|
{
|
|
// TODO
|
|
|
|
if (m_action != NULL) {
|
|
MxFlcPresenter::EndAction();
|
|
}
|
|
}
|