mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-28 18:51:16 +00:00
134 lines
3.1 KiB
C++
134 lines
3.1 KiB
C++
#include "mxramstreamcontroller.h"
|
|
|
|
#include "mxautolocker.h"
|
|
#include "mxdsstreamingaction.h"
|
|
#include "mxramstreamprovider.h"
|
|
|
|
DECOMP_SIZE_ASSERT(MxRAMStreamController, 0x98);
|
|
|
|
undefined* __cdecl ReadData(MxU32* p_fileSizeBuffer, MxU32 p_fileSize);
|
|
|
|
// FUNCTION: LEGO1 0x100c6110
|
|
MxResult MxRAMStreamController::Open(const char* p_filename)
|
|
{
|
|
MxAutoLocker locker(&m_criticalSection);
|
|
if (MxStreamController::Open(p_filename) != SUCCESS) {
|
|
return FAILURE;
|
|
}
|
|
|
|
m_provider = new MxRAMStreamProvider();
|
|
if (((MxRAMStreamProvider*) m_provider) != NULL) {
|
|
if (m_provider->SetResourceToGet(this) != SUCCESS) {
|
|
return FAILURE;
|
|
}
|
|
|
|
ReadData(
|
|
((MxRAMStreamProvider*) m_provider)->GetBufferOfFileSize(),
|
|
((MxRAMStreamProvider*) m_provider)->GetFileSize()
|
|
);
|
|
m_buffer.SetBufferPointer(
|
|
((MxRAMStreamProvider*) m_provider)->GetBufferOfFileSize(),
|
|
((MxRAMStreamProvider*) m_provider)->GetFileSize()
|
|
);
|
|
return SUCCESS;
|
|
}
|
|
|
|
return FAILURE;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c6210
|
|
MxResult MxRAMStreamController::VTable0x20(MxDSAction* p_action)
|
|
{
|
|
MxAutoLocker locker(&m_criticalSection);
|
|
MxS16 unk0x24 = 0;
|
|
MxResult result = FAILURE;
|
|
if (p_action->GetUnknown24() == -1) {
|
|
p_action->SetUnknown24(-3);
|
|
MxDSAction* action = m_unk0x54.Find(p_action, FALSE);
|
|
if (action != NULL) {
|
|
unk0x24 = action->GetUnknown24() + 1;
|
|
}
|
|
p_action->SetUnknown24(unk0x24);
|
|
}
|
|
else {
|
|
if (m_unk0x54.Find(p_action, FALSE)) {
|
|
return FAILURE;
|
|
}
|
|
}
|
|
|
|
if (MxStreamController::VTable0x20(p_action) == SUCCESS) {
|
|
MxDSStreamingAction* action = (MxDSStreamingAction*) m_unk0x3c.Find(p_action, FALSE);
|
|
MxDSStreamingAction streamingaction(*action);
|
|
result = DeserializeObject(streamingaction);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c6320
|
|
MxResult MxRAMStreamController::VTable0x24(MxDSAction* p_action)
|
|
{
|
|
MxDSAction action;
|
|
do {
|
|
if (m_action0x60 != NULL) {
|
|
delete m_action0x60;
|
|
m_action0x60 = NULL;
|
|
}
|
|
action = *p_action;
|
|
MxStreamController::VTable0x24(&action);
|
|
} while (m_action0x60 != NULL);
|
|
return SUCCESS;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c63c0
|
|
MxResult MxRAMStreamController::DeserializeObject(MxDSStreamingAction& p_action)
|
|
{
|
|
MxAutoLocker locker(&m_criticalSection);
|
|
MxResult result;
|
|
undefined4 value = 0;
|
|
do {
|
|
m_buffer.FUN_100c6f80(p_action.GetUnknown94());
|
|
result = m_buffer.FUN_100c67b0(this, &p_action, &value);
|
|
} while (m_unk0x3c.Find(&p_action, FALSE) != NULL);
|
|
return result;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100d0d80
|
|
undefined* __cdecl ReadData(MxU32* p_fileSizeBuffer, MxU32 p_fileSize)
|
|
{
|
|
MxU32* ptr = p_fileSizeBuffer;
|
|
MxU32* end = p_fileSizeBuffer + p_fileSize;
|
|
MxU32 objectId;
|
|
|
|
if (p_fileSizeBuffer < end) {
|
|
do {
|
|
MxU32* oldPtr = ptr;
|
|
if (*ptr = FOURCC('M', 'x', 'O', 'b')) {
|
|
ptr += 8;
|
|
|
|
MxDSObject* object = DeserializeDSObjectDispatch((MxU8**) &ptr, -1);
|
|
objectId = object->GetObjectId();
|
|
delete object;
|
|
|
|
ptr = (MxU32*) (oldPtr + oldPtr[1] + (oldPtr[1] & 1) + 8);
|
|
|
|
if (ptr < end) {
|
|
do {
|
|
oldPtr = ptr;
|
|
if (*ptr == FOURCC('M', 'x', 'C', 'h')) {
|
|
// todo
|
|
}
|
|
else {
|
|
ptr++;
|
|
}
|
|
} while (ptr < end);
|
|
}
|
|
}
|
|
else {
|
|
ptr++;
|
|
}
|
|
} while (ptr < end);
|
|
}
|
|
|
|
return NULL;
|
|
}
|