2023-09-25 22:30:56 -04:00
|
|
|
#include "mxdsbuffer.h"
|
|
|
|
|
2023-12-25 17:39:31 -05:00
|
|
|
#include "mxdiskstreamcontroller.h"
|
2023-12-17 12:24:39 -05:00
|
|
|
#include "mxdschunk.h"
|
|
|
|
#include "mxdsstreamingaction.h"
|
2023-10-30 09:54:00 -04:00
|
|
|
#include "mxomni.h"
|
2023-12-17 12:24:39 -05:00
|
|
|
#include "mxstreamchunk.h"
|
2023-12-13 18:11:07 -05:00
|
|
|
#include "mxstreamcontroller.h"
|
2023-10-30 09:54:00 -04:00
|
|
|
#include "mxstreamer.h"
|
|
|
|
|
2023-10-22 15:58:05 -04:00
|
|
|
DECOMP_SIZE_ASSERT(MxDSBuffer, 0x34);
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100c6470
|
2023-09-25 22:30:56 -04:00
|
|
|
MxDSBuffer::MxDSBuffer()
|
|
|
|
{
|
2023-12-17 12:24:39 -05:00
|
|
|
m_refcount = 0;
|
2023-10-24 19:38:27 -04:00
|
|
|
m_pBuffer = NULL;
|
|
|
|
m_pIntoBuffer = NULL;
|
|
|
|
m_pIntoBuffer2 = NULL;
|
2023-12-13 05:48:14 -05:00
|
|
|
m_unk0x14 = 0;
|
|
|
|
m_unk0x18 = 0;
|
|
|
|
m_unk0x1c = 0;
|
2023-10-24 19:38:27 -04:00
|
|
|
m_writeOffset = 0;
|
|
|
|
m_bytesRemaining = 0;
|
2023-10-30 09:54:00 -04:00
|
|
|
m_mode = MxDSBufferType_Preallocated;
|
2023-12-13 05:48:14 -05:00
|
|
|
m_unk0x30 = 0;
|
2023-09-25 22:30:56 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100c6530
|
2023-09-25 22:30:56 -04:00
|
|
|
MxDSBuffer::~MxDSBuffer()
|
|
|
|
{
|
2023-10-30 09:54:00 -04:00
|
|
|
if (m_pBuffer != NULL) {
|
|
|
|
if (m_mode == MxDSBufferType_Chunk) {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
else if (m_mode == MxDSBufferType_Allocate || m_mode == MxDSBufferType_Unknown) {
|
|
|
|
delete[] m_pBuffer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-13 05:48:14 -05:00
|
|
|
m_unk0x14 = 0;
|
|
|
|
m_unk0x1c = 0;
|
2023-10-30 09:54:00 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100c6640
|
2023-10-30 09:54:00 -04:00
|
|
|
MxResult MxDSBuffer::AllocateBuffer(MxU32 p_bufferSize, MxDSBufferType p_mode)
|
|
|
|
{
|
|
|
|
MxResult result = FAILURE;
|
2023-12-24 18:09:01 -05:00
|
|
|
|
|
|
|
switch (p_mode) {
|
|
|
|
case MxDSBufferType_Allocate:
|
2023-10-30 09:54:00 -04:00
|
|
|
m_pBuffer = new MxU8[p_bufferSize];
|
2023-12-24 18:09:01 -05:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MxDSBufferType_Chunk: {
|
2023-10-30 09:54:00 -04:00
|
|
|
MxStreamer* streamer = Streamer();
|
2023-12-24 18:09:01 -05:00
|
|
|
|
|
|
|
switch (p_bufferSize / 1024) {
|
|
|
|
case 0x40: {
|
|
|
|
for (MxU32 i = 0; i < 22; i++) {
|
|
|
|
if (((1 << (i & 0x1f)) & (*(MxU32*) &streamer->GetSubclass1().GetUnk08Ref()[(i & ~0x18u) >> 3])) == 0) {
|
|
|
|
MxU32* ptr = (MxU32*) &streamer->GetSubclass1().GetUnk08Ref()[(i & 0xffffffe7) >> 3];
|
|
|
|
|
2023-10-30 09:54:00 -04:00
|
|
|
*ptr = *ptr ^ 1 << (i & 0x1f);
|
|
|
|
|
|
|
|
m_pBuffer =
|
|
|
|
(MxU8*) (streamer->GetSubclass1().GetSize() * i * 0x400 + streamer->GetSubclass1().GetBuffer());
|
2023-12-24 18:09:01 -05:00
|
|
|
goto done;
|
2023-10-30 09:54:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m_pBuffer = NULL;
|
2023-12-24 18:09:01 -05:00
|
|
|
break;
|
2023-10-30 09:54:00 -04:00
|
|
|
}
|
2023-12-24 18:09:01 -05:00
|
|
|
case 0x80: {
|
|
|
|
for (MxU32 i = 0; i < 2; i++) {
|
|
|
|
if (((1 << (i & 0x1f)) & (*(MxU32*) &streamer->GetSubclass2().GetUnk08Ref()[(i & ~0x18u) >> 3])) == 0) {
|
|
|
|
MxU32* ptr = (MxU32*) &streamer->GetSubclass2().GetUnk08Ref()[(i & 0xffffffe7) >> 3];
|
|
|
|
|
2023-10-30 09:54:00 -04:00
|
|
|
*ptr = *ptr ^ 1 << (i & 0x1f);
|
|
|
|
|
|
|
|
m_pBuffer =
|
|
|
|
(MxU8*) (streamer->GetSubclass2().GetSize() * i * 0x400 + streamer->GetSubclass2().GetBuffer());
|
2023-12-24 18:09:01 -05:00
|
|
|
goto done;
|
2023-10-30 09:54:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m_pBuffer = NULL;
|
2023-12-24 18:09:01 -05:00
|
|
|
break;
|
2023-10-30 09:54:00 -04:00
|
|
|
}
|
2023-12-24 18:09:01 -05:00
|
|
|
default:
|
|
|
|
m_pBuffer = NULL;
|
2023-10-30 09:54:00 -04:00
|
|
|
}
|
|
|
|
}
|
2023-12-24 18:09:01 -05:00
|
|
|
}
|
2023-10-30 09:54:00 -04:00
|
|
|
|
2023-12-24 18:09:01 -05:00
|
|
|
done:
|
2023-10-30 09:54:00 -04:00
|
|
|
m_pIntoBuffer = m_pBuffer;
|
|
|
|
m_pIntoBuffer2 = m_pBuffer;
|
2023-12-24 18:09:01 -05:00
|
|
|
|
2023-10-30 09:54:00 -04:00
|
|
|
if (m_pBuffer != NULL) {
|
|
|
|
m_mode = p_mode;
|
|
|
|
m_bytesRemaining = p_bufferSize;
|
|
|
|
m_writeOffset = p_bufferSize;
|
|
|
|
result = SUCCESS;
|
|
|
|
}
|
2023-12-24 18:09:01 -05:00
|
|
|
|
2023-10-30 09:54:00 -04:00
|
|
|
return result;
|
2023-09-25 22:30:56 -04:00
|
|
|
}
|
2023-10-22 15:58:05 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100c6780
|
2023-10-30 09:54:00 -04:00
|
|
|
MxResult MxDSBuffer::SetBufferPointer(MxU32* p_buffer, MxU32 p_size)
|
2023-10-22 15:58:05 -04:00
|
|
|
{
|
2023-10-30 09:54:00 -04:00
|
|
|
m_pBuffer = (MxU8*) p_buffer;
|
|
|
|
m_pIntoBuffer = (MxU8*) p_buffer;
|
|
|
|
m_pIntoBuffer2 = (MxU8*) p_buffer;
|
2023-10-24 19:38:27 -04:00
|
|
|
m_bytesRemaining = p_size;
|
|
|
|
m_writeOffset = p_size;
|
2023-10-30 09:54:00 -04:00
|
|
|
m_mode = MxDSBufferType_Preallocated;
|
2023-10-24 19:38:27 -04:00
|
|
|
return SUCCESS;
|
2023-10-22 15:58:05 -04:00
|
|
|
}
|
2023-10-30 09:54:00 -04:00
|
|
|
|
2023-12-25 17:39:31 -05:00
|
|
|
// FUNCTION: LEGO1 0x100c67b0
|
2023-12-22 14:03:55 -05:00
|
|
|
MxResult MxDSBuffer::FUN_100c67b0(
|
|
|
|
MxStreamController* p_controller,
|
|
|
|
MxDSAction* p_action,
|
|
|
|
MxDSStreamingAction** p_streamingAction
|
|
|
|
)
|
2023-12-13 18:11:07 -05:00
|
|
|
{
|
2023-12-25 17:39:31 -05:00
|
|
|
MxResult result = FAILURE;
|
|
|
|
|
|
|
|
m_unk0x30 = (MxDSStreamingAction*) p_controller->GetUnk0x3c().Find(p_action, FALSE);
|
|
|
|
if (m_unk0x30 == NULL)
|
|
|
|
return FAILURE;
|
|
|
|
|
|
|
|
MxU8* data;
|
|
|
|
while (data = (MxU8*) SkipToData()) {
|
|
|
|
if (*p_streamingAction == NULL) {
|
|
|
|
result = CreateObject(p_controller, (MxU32*) data, p_action, p_streamingAction);
|
|
|
|
|
|
|
|
if (result == FAILURE)
|
|
|
|
return result;
|
|
|
|
// TODO: Not a MxResult value?
|
|
|
|
if (result == 1)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
MxDSBuffer* buffer = (*p_streamingAction)->GetUnknowna0();
|
|
|
|
|
|
|
|
if (buffer->CalcBytesRemaining(data) != SUCCESS) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (buffer->GetBytesRemaining() == 0) {
|
|
|
|
buffer->SetUnk30(m_unk0x30);
|
|
|
|
|
|
|
|
result = buffer->CreateObject(p_controller, (MxU32*) buffer->GetBuffer(), p_action, p_streamingAction);
|
|
|
|
if (result != SUCCESS) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (buffer->GetRefCount() != 0) {
|
|
|
|
// Note: *p_streamingAction is always null in MxRamStreamProvider
|
|
|
|
((MxDiskStreamController*) p_controller)->InsertToList74(buffer);
|
|
|
|
(*p_streamingAction)->SetUnknowna0(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
((MxDiskStreamController*) p_controller)->FUN_100c7cb0(*p_streamingAction);
|
|
|
|
*p_streamingAction = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return SUCCESS;
|
2023-12-13 18:11:07 -05:00
|
|
|
}
|
|
|
|
|
2023-12-17 12:24:39 -05:00
|
|
|
// FUNCTION: LEGO1 0x100c68a0
|
|
|
|
MxResult MxDSBuffer::CreateObject(
|
|
|
|
MxStreamController* p_controller,
|
|
|
|
MxU32* p_data,
|
|
|
|
MxDSAction* p_action,
|
2023-12-25 13:32:01 -05:00
|
|
|
MxDSStreamingAction** p_streamingAction
|
2023-12-17 12:24:39 -05:00
|
|
|
)
|
|
|
|
{
|
|
|
|
if (p_data == NULL) {
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
MxCore* header = ReadChunk(this, p_data, p_action->GetUnknown24());
|
|
|
|
|
|
|
|
if (header == NULL) {
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*p_data == FOURCC('M', 'x', 'O', 'b'))
|
|
|
|
return StartPresenterFromAction(p_controller, p_action, (MxDSAction*) header);
|
|
|
|
else if (*p_data == FOURCC('M', 'x', 'C', 'h')) {
|
|
|
|
MxStreamChunk* chunk = (MxStreamChunk*) header;
|
|
|
|
if (!m_unk0x30->HasId((chunk)->GetObjectId())) {
|
|
|
|
delete header;
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
2023-12-25 13:32:01 -05:00
|
|
|
return ParseChunk(p_controller, p_data, p_action, p_streamingAction, chunk);
|
2023-12-17 12:24:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
delete header;
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x100c6960
|
|
|
|
MxResult MxDSBuffer::StartPresenterFromAction(
|
|
|
|
MxStreamController* p_controller,
|
|
|
|
MxDSAction* p_action1,
|
|
|
|
MxDSAction* p_objectheader
|
|
|
|
)
|
|
|
|
{
|
|
|
|
if (!m_unk0x30->GetInternalAction()) {
|
|
|
|
p_objectheader->SetAtomId(p_action1->GetAtomId());
|
|
|
|
p_objectheader->SetUnknown28(p_action1->GetUnknown28());
|
|
|
|
p_objectheader->SetUnknown84(p_action1->GetUnknown84());
|
|
|
|
p_objectheader->SetOrigin(p_action1->GetOrigin());
|
|
|
|
p_objectheader->SetUnknown90(p_action1->GetUnknown90());
|
|
|
|
p_objectheader->MergeFrom(*p_action1);
|
|
|
|
|
|
|
|
m_unk0x30->SetInternalAction(p_objectheader->Clone());
|
|
|
|
|
|
|
|
p_controller->InsertActionToList54(p_objectheader);
|
|
|
|
|
|
|
|
if (MxOmni::GetInstance()->CreatePresenter(p_controller, *p_objectheader) != SUCCESS) {
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_unk0x30->SetLoopCount(p_objectheader->GetLoopCount());
|
|
|
|
m_unk0x30->SetFlags(p_objectheader->GetFlags());
|
|
|
|
m_unk0x30->SetDuration(p_objectheader->GetDuration());
|
|
|
|
|
|
|
|
if (m_unk0x30->GetInternalAction() == NULL) {
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (p_objectheader) {
|
|
|
|
delete p_objectheader;
|
|
|
|
}
|
|
|
|
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
// STUB: LEGO1 0x100c6a50
|
|
|
|
MxResult MxDSBuffer::ParseChunk(
|
|
|
|
MxStreamController* p_controller,
|
|
|
|
MxU32* p_data,
|
|
|
|
MxDSAction* p_action,
|
2023-12-25 13:32:01 -05:00
|
|
|
MxDSStreamingAction** p_streamingAction,
|
2023-12-17 12:24:39 -05:00
|
|
|
MxStreamChunk* p_header
|
|
|
|
)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x100c6d00
|
|
|
|
MxCore* MxDSBuffer::ReadChunk(MxDSBuffer* p_buffer, MxU32* p_chunkData, MxU16 p_flags)
|
|
|
|
{
|
2023-12-24 18:09:01 -05:00
|
|
|
// This function reads a chunk. If it is an object, this function returns an MxDSObject. If it is a chunk,
|
|
|
|
// returns a MxDSChunk.
|
2023-12-17 12:24:39 -05:00
|
|
|
MxCore* result = NULL;
|
|
|
|
MxU8* dataStart = (MxU8*) p_chunkData + 8;
|
|
|
|
|
|
|
|
switch (*p_chunkData) {
|
|
|
|
case FOURCC('M', 'x', 'O', 'b'):
|
|
|
|
result = DeserializeDSObjectDispatch(&dataStart, p_flags);
|
|
|
|
break;
|
|
|
|
case FOURCC('M', 'x', 'C', 'h'):
|
|
|
|
result = new MxStreamChunk();
|
|
|
|
if (result != NULL && ((MxStreamChunk*) result)->ReadChunk(p_buffer, (MxU8*) p_chunkData) != SUCCESS) {
|
|
|
|
delete result;
|
|
|
|
result = NULL;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-12-25 17:39:31 -05:00
|
|
|
// FUNCTION: LEGO1 0x100c6df0
|
|
|
|
MxU8* MxDSBuffer::SkipToData()
|
|
|
|
{
|
|
|
|
MxU8* result = NULL;
|
|
|
|
|
|
|
|
if (m_pIntoBuffer != NULL) {
|
|
|
|
do {
|
|
|
|
MxU32* ptr = (MxU32*) m_pIntoBuffer;
|
|
|
|
switch (*ptr) {
|
|
|
|
case FOURCC('L', 'I', 'S', 'T'):
|
|
|
|
case FOURCC('R', 'I', 'F', 'F'):
|
|
|
|
m_pIntoBuffer = (MxU8*) (ptr + 3);
|
|
|
|
break;
|
|
|
|
case FOURCC('M', 'x', 'O', 'b'):
|
|
|
|
case FOURCC('M', 'x', 'C', 'h'):
|
|
|
|
result = m_pIntoBuffer;
|
|
|
|
m_pIntoBuffer = (MxU8*) ((ptr[1] & 1) + ptr[1] + (MxU32) ptr);
|
|
|
|
m_pIntoBuffer = (MxU8*) ((MxU32*) m_pIntoBuffer + 2);
|
|
|
|
if (m_pBuffer + (m_writeOffset - 8) < m_pIntoBuffer) {
|
|
|
|
m_pIntoBuffer2 = result;
|
|
|
|
m_pIntoBuffer = NULL;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
goto done;
|
|
|
|
case FOURCC('M', 'x', 'D', 'a'):
|
|
|
|
case FOURCC('M', 'x', 'S', 't'):
|
|
|
|
m_pIntoBuffer = (MxU8*) (ptr + 2);
|
|
|
|
break;
|
|
|
|
case FOURCC('M', 'x', 'H', 'd'):
|
|
|
|
m_pIntoBuffer = (MxU8*) ((MxU32) ptr + ptr[1] + 8);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
m_pIntoBuffer = NULL;
|
|
|
|
m_pIntoBuffer2 = NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
} while (m_pIntoBuffer <= m_pBuffer + (m_writeOffset - 8));
|
|
|
|
}
|
|
|
|
done:
|
|
|
|
m_pIntoBuffer2 = result;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-12-17 12:24:39 -05:00
|
|
|
// FUNCTION: LEGO1 0x100c6ec0
|
|
|
|
MxU8 MxDSBuffer::ReleaseRef(MxDSChunk*)
|
|
|
|
{
|
|
|
|
if (m_refcount != 0) {
|
|
|
|
m_refcount--;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x100c6ee0
|
|
|
|
void MxDSBuffer::AddRef(MxDSChunk* p_chunk)
|
|
|
|
{
|
|
|
|
if (p_chunk) {
|
|
|
|
m_refcount++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-25 17:39:31 -05:00
|
|
|
// STUB: LEGO1 0x100c6ef0
|
|
|
|
MxResult MxDSBuffer::CalcBytesRemaining(MxU8* p_data)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100c6f80
|
2023-12-13 05:48:14 -05:00
|
|
|
void MxDSBuffer::FUN_100c6f80(MxU32 p_writeOffset)
|
2023-10-30 09:54:00 -04:00
|
|
|
{
|
2023-12-13 05:48:14 -05:00
|
|
|
if (p_writeOffset < m_writeOffset) {
|
|
|
|
m_pIntoBuffer2 = m_pBuffer + p_writeOffset;
|
|
|
|
m_pIntoBuffer = m_pBuffer + p_writeOffset;
|
2023-10-30 09:54:00 -04:00
|
|
|
}
|
|
|
|
}
|