2023-06-29 04:10:08 -04:00
|
|
|
#include "legoanimpresenter.h"
|
|
|
|
|
2024-02-27 11:49:31 -05:00
|
|
|
#include "legoanimmmpresenter.h"
|
2024-01-15 14:37:50 -05:00
|
|
|
#include "legoomni.h"
|
2024-02-25 12:04:30 -05:00
|
|
|
#include "legounksavedatawriter.h"
|
2024-02-25 12:55:57 -05:00
|
|
|
#include "legovideomanager.h"
|
2024-01-15 14:37:50 -05:00
|
|
|
#include "legoworld.h"
|
|
|
|
#include "mxcompositepresenter.h"
|
|
|
|
#include "mxdsanim.h"
|
|
|
|
#include "mxstreamchunk.h"
|
2024-02-27 11:49:31 -05:00
|
|
|
#include "mxtimer.h"
|
2024-01-21 09:58:15 -05:00
|
|
|
#include "mxvideomanager.h"
|
2024-01-15 14:37:50 -05:00
|
|
|
|
|
|
|
DECOMP_SIZE_ASSERT(LegoAnimPresenter, 0xc0)
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x10068420
|
2023-06-29 04:10:08 -04:00
|
|
|
LegoAnimPresenter::LegoAnimPresenter()
|
|
|
|
{
|
2024-01-15 14:37:50 -05:00
|
|
|
Init();
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|
|
|
|
|
2024-01-15 14:37:50 -05:00
|
|
|
// FUNCTION: LEGO1 0x10068670
|
2024-01-14 16:28:46 -05:00
|
|
|
LegoAnimPresenter::~LegoAnimPresenter()
|
|
|
|
{
|
2024-01-15 14:37:50 -05:00
|
|
|
Destroy(TRUE);
|
2024-01-14 16:28:46 -05:00
|
|
|
}
|
|
|
|
|
2024-01-15 14:37:50 -05:00
|
|
|
// FUNCTION: LEGO1 0x100686f0
|
2023-06-29 04:10:08 -04:00
|
|
|
void LegoAnimPresenter::Init()
|
2024-01-15 14:37:50 -05:00
|
|
|
{
|
2024-02-18 12:43:42 -05:00
|
|
|
m_anim = NULL;
|
2024-02-27 11:49:31 -05:00
|
|
|
m_unk0x68 = NULL;
|
2024-01-15 14:37:50 -05:00
|
|
|
m_unk0x6c = 0;
|
2024-02-25 12:04:30 -05:00
|
|
|
m_unk0x74 = NULL;
|
2024-02-25 12:55:57 -05:00
|
|
|
m_unk0x70 = NULL;
|
2024-02-27 11:49:31 -05:00
|
|
|
m_unk0x78 = NULL;
|
2024-01-15 14:37:50 -05:00
|
|
|
m_unk0x7c = 0;
|
|
|
|
m_unk0xa8.Clear();
|
|
|
|
m_unk0xa4 = 0;
|
|
|
|
m_currentWorld = NULL;
|
|
|
|
m_unk0x95 = 0;
|
|
|
|
m_unk0x88 = -1;
|
|
|
|
m_unk0x98 = 0;
|
|
|
|
m_animAtom.Clear();
|
|
|
|
m_unk0x9c = 0;
|
|
|
|
m_unk0x8c = 0;
|
|
|
|
m_unk0x90 = 0;
|
|
|
|
m_unk0x94 = 0;
|
2024-02-27 11:49:31 -05:00
|
|
|
m_unk0x96 = TRUE;
|
2024-01-15 14:37:50 -05:00
|
|
|
m_unk0xa0 = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// STUB: LEGO1 0x10068770
|
|
|
|
void LegoAnimPresenter::Destroy(MxBool p_fromDestructor)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
MxVideoPresenter::Destroy(p_fromDestructor);
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x10068fb0
|
2024-02-25 09:14:39 -05:00
|
|
|
MxResult LegoAnimPresenter::CreateAnim(MxStreamChunk* p_chunk)
|
2024-01-15 14:37:50 -05:00
|
|
|
{
|
|
|
|
MxResult result = FAILURE;
|
2024-02-22 16:59:44 -05:00
|
|
|
LegoMemory storage(p_chunk->GetData());
|
2024-01-15 14:37:50 -05:00
|
|
|
MxS32 magicSig;
|
2024-02-22 16:59:44 -05:00
|
|
|
LegoS32 parseScene = 0;
|
2024-01-15 14:37:50 -05:00
|
|
|
MxS32 val3;
|
|
|
|
|
2024-02-22 16:59:44 -05:00
|
|
|
if (storage.Read(&magicSig, sizeof(magicSig)) != SUCCESS || magicSig != 0x11) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (storage.Read(&m_unk0xa4, sizeof(m_unk0xa4)) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (storage.Read(&m_unk0xa8[0], sizeof(m_unk0xa8[0])) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (storage.Read(&m_unk0xa8[1], sizeof(m_unk0xa8[1])) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (storage.Read(&m_unk0xa8[2], sizeof(m_unk0xa8[2])) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (storage.Read(&parseScene, sizeof(parseScene)) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (storage.Read(&val3, sizeof(val3)) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_anim = new LegoAnim();
|
|
|
|
if (!m_anim) {
|
|
|
|
goto done;
|
2024-01-15 14:37:50 -05:00
|
|
|
}
|
|
|
|
|
2024-02-22 16:59:44 -05:00
|
|
|
if (m_anim->Read(&storage, parseScene) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = SUCCESS;
|
|
|
|
|
|
|
|
done:
|
2024-01-15 14:37:50 -05:00
|
|
|
if (result != SUCCESS) {
|
2024-02-18 12:43:42 -05:00
|
|
|
delete m_anim;
|
2024-01-15 14:37:50 -05:00
|
|
|
Init();
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2024-02-27 10:13:00 -05:00
|
|
|
// FUNCTION: LEGO1 0x10069150
|
|
|
|
LegoChar* LegoAnimPresenter::FUN_10069150(const LegoChar* p_und1)
|
2024-02-25 12:04:30 -05:00
|
|
|
{
|
2024-02-27 10:13:00 -05:00
|
|
|
LegoChar* str;
|
|
|
|
|
|
|
|
if (LegoUnkSaveDataWriter::FUN_10084c00(p_und1 + 1)) {
|
|
|
|
str = new LegoChar[strlen(p_und1)];
|
|
|
|
|
|
|
|
if (str != NULL) {
|
|
|
|
strcpy(str, p_und1 + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
LegoChar buffer[32];
|
|
|
|
sprintf(buffer, "%d", m_action->GetUnknown24());
|
|
|
|
str = new LegoChar[strlen(p_und1) + strlen(buffer) + strlen(GetActionObjectName()) + 1];
|
|
|
|
|
|
|
|
if (str != NULL) {
|
|
|
|
strcpy(str, p_und1);
|
|
|
|
strcat(str, buffer);
|
|
|
|
strcat(str, GetActionObjectName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return str;
|
2024-02-25 12:04:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x100692b0
|
|
|
|
void LegoAnimPresenter::FUN_100692b0()
|
|
|
|
{
|
|
|
|
m_unk0x74 = new LegoROIList();
|
|
|
|
|
|
|
|
if (m_unk0x74) {
|
|
|
|
LegoU32 numActors = m_anim->GetNumActors();
|
|
|
|
|
|
|
|
for (LegoU32 i = 0; i < numActors; i++) {
|
|
|
|
LegoChar* str = FUN_100697c0(m_anim->GetActorName(i), NULL);
|
|
|
|
undefined4 unk0x04 = m_anim->GetActorUnknown0x04(i);
|
|
|
|
LegoROI* roi = NULL;
|
|
|
|
|
|
|
|
if (unk0x04 == 2) {
|
|
|
|
LegoChar* src;
|
|
|
|
if (str[0] == '*') {
|
|
|
|
src = str + 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
src = str;
|
|
|
|
}
|
|
|
|
|
|
|
|
roi = UnkSaveDataWriter()->FUN_10083500(src, TRUE);
|
|
|
|
|
|
|
|
if (roi != NULL && str[0] == '*') {
|
|
|
|
roi->SetUnknown0x0c(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (unk0x04 == 4) {
|
|
|
|
LegoChar* src = new LegoChar[strlen(str)];
|
|
|
|
strcpy(src, str + 1);
|
|
|
|
strlwr(src);
|
|
|
|
|
|
|
|
LegoChar* und = FUN_10069150(str);
|
|
|
|
roi = UnkSaveDataWriter()->FUN_10085a80(und, src, 1);
|
|
|
|
|
|
|
|
if (roi != NULL) {
|
|
|
|
roi->SetUnknown0x0c(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
delete[] src;
|
|
|
|
delete[] und;
|
|
|
|
}
|
|
|
|
else if (unk0x04 == 3) {
|
|
|
|
LegoChar* src = new LegoChar[strlen(str)];
|
|
|
|
strcpy(src, str + 1);
|
|
|
|
|
|
|
|
for (LegoChar* i = &src[strlen(src) - 1]; i > src; i--) {
|
|
|
|
if ((*i < '0' || *i > '9') && *i != '_') {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
*i = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
strlwr(src);
|
|
|
|
|
|
|
|
LegoChar* und = FUN_10069150(str);
|
|
|
|
roi = UnkSaveDataWriter()->FUN_10085210(und, src, 1);
|
|
|
|
|
|
|
|
if (roi != NULL) {
|
|
|
|
roi->SetUnknown0x0c(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
delete[] src;
|
|
|
|
delete[] und;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (roi != NULL) {
|
|
|
|
m_unk0x74->Append(roi);
|
|
|
|
}
|
|
|
|
|
|
|
|
delete[] str;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-25 12:55:57 -05:00
|
|
|
// FUNCTION: LEGO1 0x100695c0
|
|
|
|
void LegoAnimPresenter::FUN_100695c0()
|
|
|
|
{
|
|
|
|
m_unk0x70 = new LegoROIList();
|
|
|
|
|
|
|
|
if (m_unk0x70) {
|
2024-03-02 14:26:19 -05:00
|
|
|
const CompoundObject& rois = VideoManager()->Get3DManager()->GetLego3DView()->GetViewManager()->GetROIs();
|
2024-02-25 12:55:57 -05:00
|
|
|
LegoU32 numActors = m_anim->GetNumActors();
|
|
|
|
|
|
|
|
for (LegoU32 i = 0; i < numActors; i++) {
|
2024-03-02 14:26:19 -05:00
|
|
|
if (FUN_100698b0(rois, m_anim->GetActorName(i)) == FALSE) {
|
2024-02-25 12:55:57 -05:00
|
|
|
undefined4 unk0x04 = m_anim->GetActorUnknown0x04(i);
|
|
|
|
|
|
|
|
if (unk0x04 == 5 || unk0x04 == 6) {
|
|
|
|
LegoChar dest[256];
|
|
|
|
const LegoChar* str = m_anim->GetActorName(i);
|
|
|
|
|
|
|
|
LegoU32 len = strlen(str);
|
|
|
|
strcpy(dest, str);
|
|
|
|
|
|
|
|
for (LegoChar* i = &dest[len - 1]; isdigit(*i) || *i == '_'; i--) {
|
|
|
|
*i = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
strlwr(dest);
|
|
|
|
|
|
|
|
UnkSaveDataWriter()->FUN_10085210(str, dest, 0);
|
2024-03-02 14:26:19 -05:00
|
|
|
FUN_100698b0(rois, str);
|
2024-02-25 12:55:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-26 12:41:18 -05:00
|
|
|
// FUNCTION: LEGO1 0x100697c0
|
|
|
|
LegoChar* LegoAnimPresenter::FUN_100697c0(const LegoChar* p_und1, const LegoChar* p_und2)
|
2024-02-25 12:04:30 -05:00
|
|
|
{
|
2024-02-26 12:41:18 -05:00
|
|
|
const LegoChar* str = p_und1;
|
|
|
|
const char* var = VariableTable()->GetVariable(p_und1);
|
|
|
|
|
|
|
|
if (*var) {
|
|
|
|
str = var;
|
|
|
|
}
|
|
|
|
|
|
|
|
LegoU32 len = strlen(str) + (p_und2 ? strlen(p_und2) : 0) + 2;
|
|
|
|
LegoChar* result = new LegoChar[len];
|
|
|
|
|
|
|
|
if (result != NULL) {
|
|
|
|
*result = '\0';
|
|
|
|
|
|
|
|
if (p_und2) {
|
|
|
|
strcpy(result, p_und2);
|
|
|
|
strcat(result, ":");
|
|
|
|
}
|
|
|
|
|
|
|
|
strcat(result, str);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2024-02-25 12:04:30 -05:00
|
|
|
}
|
|
|
|
|
2024-02-26 13:39:03 -05:00
|
|
|
// FUNCTION: LEGO1 0x100698b0
|
2024-03-02 14:26:19 -05:00
|
|
|
LegoBool LegoAnimPresenter::FUN_100698b0(const CompoundObject& p_rois, const LegoChar* p_und2)
|
2024-02-25 12:55:57 -05:00
|
|
|
{
|
2024-02-26 13:39:03 -05:00
|
|
|
LegoBool result = FALSE;
|
|
|
|
|
|
|
|
LegoChar* str;
|
|
|
|
if (*(str = FUN_100697c0(p_und2, NULL)) == '*') {
|
|
|
|
LegoChar* tmp = FUN_10069150(str);
|
|
|
|
delete[] str;
|
|
|
|
str = tmp;
|
|
|
|
}
|
|
|
|
|
2024-03-02 14:26:19 -05:00
|
|
|
if (str != NULL && *str != '\0' && p_rois.size() > 0) {
|
|
|
|
for (CompoundObject::const_iterator it = p_rois.begin(); it != p_rois.end(); it++) {
|
2024-02-26 13:39:03 -05:00
|
|
|
LegoROI* roi = (LegoROI*) *it;
|
|
|
|
const char* name = roi->GetName();
|
|
|
|
|
|
|
|
if (name != NULL) {
|
|
|
|
if (!strcmpi(name, str)) {
|
|
|
|
m_unk0x70->Append(roi);
|
|
|
|
result = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
delete[] str;
|
|
|
|
return result;
|
2024-02-25 12:55:57 -05:00
|
|
|
}
|
|
|
|
|
2024-02-27 11:49:31 -05:00
|
|
|
// STUB: LEGO1 0x10069b10
|
|
|
|
void LegoAnimPresenter::FUN_10069b10()
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1006aba0
|
|
|
|
LegoBool LegoAnimPresenter::FUN_1006aba0()
|
|
|
|
{
|
|
|
|
return FUN_1006abb0(m_anim->GetRoot(), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// STUB: LEGO1 0x1006abb0
|
|
|
|
LegoBool LegoAnimPresenter::FUN_1006abb0(LegoTreeNode*, undefined4)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// STUB: LEGO1 0x1006ac90
|
|
|
|
void LegoAnimPresenter::FUN_1006ac90()
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
2024-01-15 14:37:50 -05:00
|
|
|
// STUB: LEGO1 0x1006ad30
|
|
|
|
void LegoAnimPresenter::PutFrame()
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1006b550
|
|
|
|
void LegoAnimPresenter::ReadyTickle()
|
|
|
|
{
|
2024-02-02 12:18:46 -05:00
|
|
|
m_currentWorld = CurrentWorld();
|
2024-01-15 14:37:50 -05:00
|
|
|
|
|
|
|
if (m_currentWorld) {
|
2024-02-17 10:35:10 -05:00
|
|
|
MxStreamChunk* chunk = m_subscriber->PeekData();
|
2024-01-15 14:37:50 -05:00
|
|
|
|
|
|
|
if (chunk && chunk->GetTime() + m_action->GetStartTime() <= m_action->GetElapsedTime()) {
|
2024-02-17 10:35:10 -05:00
|
|
|
chunk = m_subscriber->PopData();
|
2024-02-25 09:14:39 -05:00
|
|
|
MxResult result = CreateAnim(chunk);
|
2024-02-17 10:35:10 -05:00
|
|
|
m_subscriber->FreeDataChunk(chunk);
|
2024-01-15 14:37:50 -05:00
|
|
|
|
|
|
|
if (result == SUCCESS) {
|
2024-01-17 11:53:53 -05:00
|
|
|
ProgressTickleState(e_starting);
|
2024-01-15 14:37:50 -05:00
|
|
|
ParseExtra();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
EndAction();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-27 11:49:31 -05:00
|
|
|
// FUNCTION: LEGO1 0x1006b5e0
|
2024-01-15 14:37:50 -05:00
|
|
|
void LegoAnimPresenter::StartingTickle()
|
|
|
|
{
|
2024-02-27 11:49:31 -05:00
|
|
|
FUN_1006ac90();
|
|
|
|
FUN_100692b0();
|
|
|
|
FUN_100695c0();
|
|
|
|
|
|
|
|
if ((m_unk0x7c & c_bit2) == 0 || FUN_1006aba0()) {
|
|
|
|
FUN_10069b10();
|
|
|
|
FUN_1006c8a0(TRUE);
|
|
|
|
|
|
|
|
if (m_unk0x78 == NULL) {
|
|
|
|
if (fabs(m_action->GetDirection().GetX()) >= 0.00000047683716F ||
|
|
|
|
fabs(m_action->GetDirection().GetY()) >= 0.00000047683716F ||
|
|
|
|
fabs(m_action->GetDirection().GetZ()) >= 0.00000047683716F) {
|
|
|
|
m_unk0x78 = new MxMatrix();
|
|
|
|
CalcLocalTransform(m_action->GetLocation(), m_action->GetDirection(), m_action->GetUp(), *m_unk0x78);
|
|
|
|
}
|
|
|
|
else if (m_unk0x68) {
|
|
|
|
MxU8* und = (MxU8*) m_unk0x68[1];
|
|
|
|
|
|
|
|
if (und) {
|
|
|
|
MxMatrix mat;
|
|
|
|
mat = *(Matrix4*) (und + 0x10);
|
|
|
|
m_unk0x78 = new MxMatrix(mat);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((m_action->GetDuration() == -1 || ((MxDSMediaAction*) m_action)->GetSustainTime() == -1) &&
|
|
|
|
m_compositePresenter) {
|
|
|
|
m_compositePresenter->VTable0x60(this);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_action->SetUnknown90(Timer()->GetTime());
|
|
|
|
}
|
|
|
|
|
|
|
|
ProgressTickleState(e_streaming);
|
|
|
|
|
|
|
|
if (m_compositePresenter && m_compositePresenter->IsA("LegoAnimMMPresenter")) {
|
|
|
|
m_unk0x96 = ((LegoAnimMMPresenter*) m_compositePresenter)->FUN_1004b8b0();
|
|
|
|
m_compositePresenter->VTable0x60(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
VTable0x8c();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_unk0x70 != NULL) {
|
|
|
|
delete m_unk0x70;
|
|
|
|
m_unk0x70 = NULL;
|
|
|
|
}
|
2024-01-15 14:37:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1006b840
|
|
|
|
void LegoAnimPresenter::StreamingTickle()
|
|
|
|
{
|
2024-02-17 10:35:10 -05:00
|
|
|
if (m_subscriber->PeekData()) {
|
|
|
|
MxStreamChunk* chunk = m_subscriber->PopData();
|
|
|
|
m_subscriber->FreeDataChunk(chunk);
|
2024-01-15 14:37:50 -05:00
|
|
|
}
|
|
|
|
|
2024-01-28 11:45:49 -05:00
|
|
|
if (m_unk0x95) {
|
2024-01-17 11:53:53 -05:00
|
|
|
ProgressTickleState(e_done);
|
2024-01-15 14:37:50 -05:00
|
|
|
if (m_compositePresenter) {
|
|
|
|
if (m_compositePresenter->IsA("LegoAnimMMPresenter")) {
|
|
|
|
m_compositePresenter->VTable0x60(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-01-28 11:45:49 -05:00
|
|
|
else {
|
2024-02-18 12:43:42 -05:00
|
|
|
if (m_action->GetElapsedTime() > m_anim->GetDuration() + m_action->GetStartTime()) {
|
2024-01-28 11:45:49 -05:00
|
|
|
m_unk0x95 = 1;
|
|
|
|
}
|
|
|
|
}
|
2024-01-15 14:37:50 -05:00
|
|
|
}
|
|
|
|
|
2024-02-25 12:04:30 -05:00
|
|
|
// FUNCTION: LEGO1 0x1006b8c0
|
2024-01-20 18:04:46 -05:00
|
|
|
void LegoAnimPresenter::DoneTickle()
|
|
|
|
{
|
2024-02-25 12:04:30 -05:00
|
|
|
MxVideoPresenter::DoneTickle();
|
2024-01-20 18:04:46 -05:00
|
|
|
}
|
|
|
|
|
2024-01-21 09:58:15 -05:00
|
|
|
// FUNCTION: LEGO1 0x1006b8d0
|
2024-01-20 18:04:46 -05:00
|
|
|
MxResult LegoAnimPresenter::AddToManager()
|
|
|
|
{
|
2024-01-21 09:58:15 -05:00
|
|
|
return MxVideoPresenter::AddToManager();
|
2024-01-20 18:04:46 -05:00
|
|
|
}
|
|
|
|
|
2024-01-15 14:37:50 -05:00
|
|
|
// FUNCTION: LEGO1 0x1006b8e0
|
|
|
|
void LegoAnimPresenter::Destroy()
|
|
|
|
{
|
|
|
|
Destroy(FALSE);
|
|
|
|
}
|
|
|
|
|
2024-01-26 16:00:02 -05:00
|
|
|
// FUNCTION: LEGO1 0x1006b8f0
|
|
|
|
const char* LegoAnimPresenter::GetActionObjectName()
|
|
|
|
{
|
|
|
|
return m_action->GetObjectName();
|
|
|
|
}
|
|
|
|
|
2024-01-15 14:37:50 -05:00
|
|
|
// STUB: LEGO1 0x1006bac0
|
|
|
|
void LegoAnimPresenter::ParseExtra()
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
2024-02-27 11:49:31 -05:00
|
|
|
// STUB: LEGO1 0x1006c570
|
|
|
|
void LegoAnimPresenter::VTable0xa0()
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
2024-01-15 14:37:50 -05:00
|
|
|
// FUNCTION: LEGO1 0x1006c620
|
|
|
|
MxResult LegoAnimPresenter::StartAction(MxStreamController* p_controller, MxDSAction* p_action)
|
|
|
|
{
|
|
|
|
MxResult result = MxVideoPresenter::StartAction(p_controller, p_action);
|
|
|
|
m_displayZ = 0;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
// STUB: LEGO1 0x1006c640
|
|
|
|
void LegoAnimPresenter::EndAction()
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
MxVideoPresenter::EndAction();
|
|
|
|
}
|
2024-02-27 11:49:31 -05:00
|
|
|
|
|
|
|
// STUB: LEGO1 0x1006c7d0
|
|
|
|
void LegoAnimPresenter::VTable0x8c()
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
// STUB: LEGO1 0x1006c860
|
|
|
|
void LegoAnimPresenter::VTable0x90()
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
// STUB: LEGO1 0x1006c8a0
|
|
|
|
void LegoAnimPresenter::FUN_1006c8a0(LegoBool)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
// STUB: LEGO1 0x1006c8f0
|
|
|
|
void LegoAnimPresenter::VTable0x94()
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
// STUB: LEGO1 0x1006ca50
|
|
|
|
void LegoAnimPresenter::VTable0x98()
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|