2023-06-30 14:34:39 -04:00
|
|
|
#include "legomodelpresenter.h"
|
|
|
|
|
2024-02-24 11:48:16 -05:00
|
|
|
#include "anim/legoanim.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-24 11:48:16 -05:00
|
|
|
#include "misc/legocontainer.h"
|
|
|
|
#include "misc/legotexture.h"
|
|
|
|
#include "misc/version.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-24 11:48:16 -05:00
|
|
|
// FUNCTION: LEGO1 0x1007f6b0
|
2024-02-11 09:03:56 -05:00
|
|
|
MxResult LegoModelPresenter::CreateROI(MxStreamChunk* p_chunk)
|
2024-01-04 20:01:04 -05:00
|
|
|
{
|
2024-02-24 11:48:16 -05:00
|
|
|
MxResult result = FAILURE;
|
|
|
|
LegoU32 numROIs;
|
|
|
|
Mx3DPointFloat vect;
|
|
|
|
LegoMemory storage(p_chunk->GetData());
|
|
|
|
LegoAnim anim;
|
|
|
|
LegoU32 version, textureInfoOffset, i, numTextures, skipTextures;
|
|
|
|
MxMatrix mat;
|
|
|
|
LegoChar* textureName = NULL;
|
|
|
|
LegoTexture* texture = NULL;
|
|
|
|
LegoS32 hardwareMode = VideoManager()->GetDirect3D()->AssignedDevice()->GetHardwareMode();
|
|
|
|
|
|
|
|
if (m_roi) {
|
|
|
|
delete m_roi;
|
|
|
|
}
|
|
|
|
if (!(m_roi = new LegoROI(VideoManager()->GetRenderer()))) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (storage.Read(&version, sizeof(version)) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (version != MODEL_VERSION) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (storage.Read(&textureInfoOffset, sizeof(textureInfoOffset)) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
storage.SetPosition(textureInfoOffset);
|
|
|
|
|
|
|
|
if (storage.Read(&numTextures, sizeof(numTextures)) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (storage.Read(&skipTextures, sizeof(skipTextures)) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < numTextures; i++) {
|
|
|
|
LegoU32 textureNameLength;
|
|
|
|
|
|
|
|
storage.Read(&textureNameLength, sizeof(textureNameLength));
|
|
|
|
textureName = new LegoChar[textureNameLength + 1];
|
|
|
|
storage.Read(textureName, textureNameLength);
|
|
|
|
textureName[textureNameLength] = '\0';
|
|
|
|
|
|
|
|
strlwr(textureName);
|
|
|
|
|
|
|
|
if (textureName[0] == '^') {
|
|
|
|
strcpy(textureName, textureName + 1);
|
|
|
|
|
|
|
|
if (g_modelPresenterConfig) {
|
|
|
|
texture = new LegoTexture();
|
|
|
|
if (texture->Read(&storage, hardwareMode) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
LegoTexture* discardTexture = new LegoTexture();
|
|
|
|
if (discardTexture->Read(&storage, FALSE) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
delete discardTexture;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
LegoTexture* discardTexture = new LegoTexture();
|
|
|
|
if (discardTexture->Read(&storage, FALSE) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
delete discardTexture;
|
|
|
|
|
|
|
|
texture = new LegoTexture();
|
|
|
|
if (texture->Read(&storage, hardwareMode) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
texture = new LegoTexture();
|
|
|
|
if (texture->Read(&storage, hardwareMode) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!skipTextures) {
|
|
|
|
if (TextureContainer()->Get(textureName) == NULL) {
|
|
|
|
LegoTextureInfo* textureInfo = LegoTextureInfo::Create(textureName, texture);
|
|
|
|
|
|
|
|
if (textureInfo == NULL) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
TextureContainer()->Add(textureName, textureInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
delete[] textureName;
|
|
|
|
textureName = NULL;
|
|
|
|
delete texture;
|
|
|
|
texture = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
storage.SetPosition(8);
|
|
|
|
|
|
|
|
if (storage.Read(&numROIs, sizeof(numROIs)) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (anim.Read(&storage, FALSE) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (m_roi->Read(NULL, VideoManager()->GetRenderer(), GetViewLODListManager(), TextureContainer(), &storage) !=
|
|
|
|
SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (m_roi->SetFrame(&anim, 0) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get scripted location, direction and up vectors
|
|
|
|
|
|
|
|
CalcLocalTransform(
|
|
|
|
Mx3DPointFloat(m_action->GetLocation().GetX(), m_action->GetLocation().GetY(), m_action->GetLocation().GetZ()),
|
|
|
|
Mx3DPointFloat(
|
|
|
|
m_action->GetDirection().GetX(),
|
|
|
|
m_action->GetDirection().GetY(),
|
|
|
|
m_action->GetDirection().GetZ()
|
|
|
|
),
|
|
|
|
Mx3DPointFloat(m_action->GetUp().GetX(), m_action->GetUp().GetY(), m_action->GetUp().GetZ()),
|
|
|
|
mat
|
|
|
|
);
|
|
|
|
m_roi->FUN_100a46b0(mat);
|
|
|
|
|
|
|
|
result = SUCCESS;
|
|
|
|
|
|
|
|
done:
|
|
|
|
if (textureName != NULL) {
|
|
|
|
delete[] textureName;
|
|
|
|
}
|
|
|
|
if (texture != NULL) {
|
|
|
|
delete texture;
|
|
|
|
}
|
|
|
|
if (result != SUCCESS) {
|
|
|
|
if (m_roi) {
|
|
|
|
delete m_roi;
|
|
|
|
m_roi = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
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-25 09:14:39 -05:00
|
|
|
((LegoEntityPresenter*) m_compositePresenter)->GetEntity()->SetROI(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 {
|
2024-02-17 10:35:10 -05:00
|
|
|
MxStreamChunk* chunk = m_subscriber->PeekData();
|
2024-02-09 18:41:35 -05:00
|
|
|
|
|
|
|
if (chunk != NULL && chunk->GetTime() <= m_action->GetElapsedTime()) {
|
2024-02-17 10:35:10 -05:00
|
|
|
chunk = m_subscriber->PopData();
|
2024-02-11 09:03:56 -05:00
|
|
|
MxResult result = CreateROI(chunk);
|
2024-02-17 10:35:10 -05:00
|
|
|
m_subscriber->FreeDataChunk(chunk);
|
2024-02-09 18:41:35 -05:00
|
|
|
|
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-25 09:14:39 -05:00
|
|
|
((LegoEntityPresenter*) m_compositePresenter)->GetEntity()->SetROI(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) {
|
2024-02-21 15:30:02 -05:00
|
|
|
m_roi = UnkSaveDataWriter()->FUN_10083500(token, FALSE);
|
2024-02-11 09:03:56 -05:00
|
|
|
m_addedToView = FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (KeyValueStringParse(output, g_dbCreate, buffer) != 0 && m_roi == NULL) {
|
|
|
|
LegoWorld* currentWorld = CurrentWorld();
|
2024-02-17 10:07:34 -05:00
|
|
|
list<LegoROI*>& roiList = currentWorld->GetUnknownList0xe0();
|
2024-02-11 09:03:56 -05:00
|
|
|
|
2024-02-17 10:07:34 -05:00
|
|
|
for (list<LegoROI*>::iterator it = roiList.begin(); it != roiList.end(); it++) {
|
2024-02-17 10:35:10 -05:00
|
|
|
if (!strcmpi((*it)->GetName(), output)) {
|
2024-02-11 09:03:56 -05:00
|
|
|
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
|
|
|
}
|