2023-06-29 04:10:08 -04:00
|
|
|
#include "legoanimpresenter.h"
|
|
|
|
|
2024-01-15 14:37:50 -05:00
|
|
|
#include "legoomni.h"
|
|
|
|
#include "legoworld.h"
|
|
|
|
#include "mxcompositepresenter.h"
|
|
|
|
#include "mxdsanim.h"
|
|
|
|
#include "mxstreamchunk.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-01-15 14:37:50 -05:00
|
|
|
m_unk0x68 = 0;
|
|
|
|
m_unk0x6c = 0;
|
|
|
|
m_unk0x74 = 0;
|
|
|
|
m_unk0x70 = 0;
|
|
|
|
m_unk0x78 = 0;
|
|
|
|
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;
|
|
|
|
m_unk0x96 = 1;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// STUB: LEGO1 0x1006b5e0
|
|
|
|
void LegoAnimPresenter::StartingTickle()
|
|
|
|
{
|
|
|
|
// TODO
|
2024-01-17 11:53:53 -05:00
|
|
|
ProgressTickleState(e_streaming);
|
2024-01-15 14:37:50 -05:00
|
|
|
EndAction(); // Allow game to start
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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-01-20 18:04:46 -05:00
|
|
|
// STUB: LEGO1 0x1006b8c0
|
|
|
|
void LegoAnimPresenter::DoneTickle()
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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();
|
|
|
|
}
|