2023-06-30 14:34:39 -04:00
|
|
|
#include "legomodelpresenter.h"
|
|
|
|
|
2024-02-11 09:03:56 -05:00
|
|
|
#include "define.h"
|
2024-02-09 18:41:35 -05:00
|
|
|
#include "legoentity.h"
|
|
|
|
#include "legoentitypresenter.h"
|
|
|
|
#include "legoomni.h"
|
2024-02-11 09:03:56 -05:00
|
|
|
#include "legounksavedatawriter.h"
|
2024-02-09 18:41:35 -05:00
|
|
|
#include "legovideomanager.h"
|
2024-02-11 09:03:56 -05:00
|
|
|
#include "legoworld.h"
|
2024-02-09 18:41:35 -05:00
|
|
|
#include "mxcompositepresenter.h"
|
2024-02-11 09:03:56 -05:00
|
|
|
#include "mxutil.h"
|
|
|
|
#include "roi/legoroi.h"
|
2024-02-09 18:41:35 -05:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// GLOBAL: LEGO1 0x100f7ae0
|
2023-06-30 14:34:39 -04:00
|
|
|
int g_modelPresenterConfig = 1;
|
|
|
|
|
2024-02-11 09:03:56 -05:00
|
|
|
// GLOBAL: LEGO1 0x10102054
|
|
|
|
// STRING: LEGO1 0x10102018
|
|
|
|
char* g_autoCreate = "AUTO_CREATE";
|
|
|
|
|
|
|
|
// GLOBAL: LEGO1 0x10102078
|
|
|
|
// STRING: LEGO1 0x10101fc4
|
|
|
|
char* g_dbCreate = "DB_CREATE";
|
|
|
|
|
2024-01-04 20:01:04 -05:00
|
|
|
// FUNCTION: LEGO1 0x1000cca0
|
|
|
|
void LegoModelPresenter::Destroy()
|
|
|
|
{
|
|
|
|
Destroy(FALSE);
|
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1007f660
|
2023-12-13 05:48:14 -05:00
|
|
|
void LegoModelPresenter::configureLegoModelPresenter(MxS32 p_modelPresenterConfig)
|
2023-06-30 14:34:39 -04:00
|
|
|
{
|
2023-12-13 05:48:14 -05:00
|
|
|
g_modelPresenterConfig = p_modelPresenterConfig;
|
2023-06-30 14:34:39 -04:00
|
|
|
}
|
2024-01-04 20:01:04 -05:00
|
|
|
|
2024-01-12 17:30:50 -05:00
|
|
|
// FUNCTION: LEGO1 0x1007f670
|
2024-01-04 20:01:04 -05:00
|
|
|
void LegoModelPresenter::Destroy(MxBool p_fromDestructor)
|
|
|
|
{
|
2024-01-12 17:30:50 -05:00
|
|
|
m_criticalSection.Enter();
|
2024-02-11 09:03:56 -05:00
|
|
|
m_roi = NULL;
|
2024-01-12 17:30:50 -05:00
|
|
|
m_addedToView = FALSE;
|
|
|
|
m_criticalSection.Leave();
|
2024-02-09 18:41:35 -05:00
|
|
|
|
2024-01-12 17:30:50 -05:00
|
|
|
if (!p_fromDestructor) {
|
|
|
|
MxVideoPresenter::Destroy(FALSE);
|
|
|
|
}
|
2024-01-04 20:01:04 -05:00
|
|
|
}
|
|
|
|
|
2024-02-09 18:41:35 -05:00
|
|
|
// STUB: LEGO1 0x1007f6b0
|
2024-02-11 09:03:56 -05:00
|
|
|
MxResult LegoModelPresenter::CreateROI(MxStreamChunk* p_chunk)
|
2024-01-04 20:01:04 -05:00
|
|
|
{
|
|
|
|
// TODO
|
2024-02-11 09:03:56 -05:00
|
|
|
return FAILURE;
|
2024-02-09 18:41:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x10080050
|
|
|
|
void LegoModelPresenter::ReadyTickle()
|
|
|
|
{
|
|
|
|
if (m_compositePresenter != NULL && m_compositePresenter->IsA("LegoEntityPresenter") &&
|
|
|
|
m_compositePresenter->GetCurrentTickleState() <= e_ready) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ParseExtra();
|
|
|
|
|
2024-02-11 09:03:56 -05:00
|
|
|
if (m_roi != NULL) {
|
2024-02-09 18:41:35 -05:00
|
|
|
if (m_compositePresenter && m_compositePresenter->IsA("LegoEntityPresenter")) {
|
2024-02-11 09:03:56 -05:00
|
|
|
((LegoEntityPresenter*) m_compositePresenter)->GetEntity()->SetROI((LegoROI*) m_roi, m_addedToView, TRUE);
|
2024-02-09 18:41:35 -05:00
|
|
|
((LegoEntityPresenter*) m_compositePresenter)
|
|
|
|
->GetEntity()
|
|
|
|
->SetFlags(
|
|
|
|
((LegoEntityPresenter*) m_compositePresenter)->GetEntity()->GetFlags() & ~LegoEntity::c_bit2
|
|
|
|
);
|
|
|
|
((LegoEntityPresenter*) m_compositePresenter)->GetEntity()->FUN_100114e0(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
ParseExtra();
|
|
|
|
ProgressTickleState(e_starting);
|
|
|
|
EndAction();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
MxStreamChunk* chunk = m_subscriber->CurrentChunk();
|
|
|
|
|
|
|
|
if (chunk != NULL && chunk->GetTime() <= m_action->GetElapsedTime()) {
|
|
|
|
chunk = m_subscriber->NextChunk();
|
2024-02-11 09:03:56 -05:00
|
|
|
MxResult result = CreateROI(chunk);
|
2024-02-09 18:41:35 -05:00
|
|
|
m_subscriber->DestroyChunk(chunk);
|
|
|
|
|
2024-02-11 09:03:56 -05:00
|
|
|
if (result == SUCCESS) {
|
|
|
|
VideoManager()->Get3DManager()->GetLego3DView()->Add(*m_roi);
|
|
|
|
VideoManager()->Get3DManager()->GetLego3DView()->Moved(*m_roi);
|
2024-02-09 18:41:35 -05:00
|
|
|
|
|
|
|
if (m_compositePresenter != NULL && m_compositePresenter->IsA("LegoEntityPresenter")) {
|
2024-02-11 09:03:56 -05:00
|
|
|
((LegoEntityPresenter*) m_compositePresenter)->GetEntity()->SetROI((LegoROI*) m_roi, TRUE, TRUE);
|
2024-02-09 18:41:35 -05:00
|
|
|
((LegoEntityPresenter*) m_compositePresenter)
|
|
|
|
->GetEntity()
|
|
|
|
->SetFlags(
|
|
|
|
((LegoEntityPresenter*) m_compositePresenter)->GetEntity()->GetFlags() & ~LegoEntity::c_bit2
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
ParseExtra();
|
|
|
|
ProgressTickleState(e_starting);
|
|
|
|
}
|
|
|
|
|
|
|
|
EndAction();
|
|
|
|
}
|
|
|
|
}
|
2024-01-04 20:01:04 -05:00
|
|
|
}
|
|
|
|
|
2024-02-11 09:03:56 -05:00
|
|
|
// FUNCTION: LEGO1 0x100801b0
|
2024-01-04 20:01:04 -05:00
|
|
|
void LegoModelPresenter::ParseExtra()
|
|
|
|
{
|
2024-02-11 09:03:56 -05:00
|
|
|
char output[1024];
|
|
|
|
|
|
|
|
MxU16 len = m_action->GetExtraLength();
|
|
|
|
char* extraData = m_action->GetExtraData();
|
|
|
|
|
|
|
|
if (len != 0) {
|
|
|
|
char buffer[1024];
|
|
|
|
output[0] = 0;
|
|
|
|
memcpy(buffer, extraData, len);
|
|
|
|
buffer[len] = 0;
|
|
|
|
|
|
|
|
if (KeyValueStringParse(output, g_autoCreate, buffer) != 0) {
|
|
|
|
char* token = strtok(output, g_parseExtraTokens);
|
|
|
|
if (m_roi == NULL) {
|
|
|
|
m_roi = UnkSaveDataWriter()->FUN_10083500(token, 0);
|
|
|
|
m_addedToView = FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (KeyValueStringParse(output, g_dbCreate, buffer) != 0 && m_roi == NULL) {
|
|
|
|
LegoWorld* currentWorld = CurrentWorld();
|
|
|
|
list<AutoROI*>& roiList = currentWorld->GetUnknownList0xe0();
|
|
|
|
|
|
|
|
for (list<AutoROI*>::iterator it = roiList.begin(); it != roiList.end(); it++) {
|
|
|
|
if (!strcmpi(((LegoROI*) (*it))->GetUnknown0xe4(), output)) {
|
|
|
|
m_roi = *it;
|
|
|
|
roiList.erase(it);
|
|
|
|
|
|
|
|
m_addedToView = TRUE;
|
|
|
|
VideoManager()->Get3DManager()->GetLego3DView()->Add(*m_roi);
|
|
|
|
VideoManager()->Get3DManager()->GetLego3DView()->Moved(*m_roi);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-01-04 20:01:04 -05:00
|
|
|
}
|