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"
|
2024-03-09 15:07:52 -05:00
|
|
|
#include "mxmisc.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()
|
|
|
|
{
|
2024-03-13 21:44:07 -04:00
|
|
|
m_referenceCount = 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;
|
2024-01-17 11:53:53 -05:00
|
|
|
m_mode = e_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()
|
|
|
|
{
|
2024-03-13 21:44:07 -04:00
|
|
|
assert(m_referenceCount == 0);
|
|
|
|
|
2023-10-30 09:54:00 -04:00
|
|
|
if (m_pBuffer != NULL) {
|
2023-12-26 16:27:54 -05:00
|
|
|
switch (m_mode) {
|
2024-01-17 11:53:53 -05:00
|
|
|
case e_allocate:
|
|
|
|
case e_unknown:
|
2023-10-30 09:54:00 -04:00
|
|
|
delete[] m_pBuffer;
|
2023-12-26 16:27:54 -05:00
|
|
|
break;
|
|
|
|
|
2024-03-13 21:44:07 -04:00
|
|
|
case e_chunk:
|
|
|
|
Streamer()->ReleaseMemoryBlock(m_pBuffer, m_writeOffset / 1024);
|
|
|
|
break;
|
2023-12-26 16:27:54 -05:00
|
|
|
|
2024-03-13 21:44:07 -04:00
|
|
|
case e_preallocated:
|
|
|
|
break;
|
2023-10-30 09:54:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
2024-01-17 11:53:53 -05:00
|
|
|
MxResult MxDSBuffer::AllocateBuffer(MxU32 p_bufferSize, Type p_mode)
|
2023-10-30 09:54:00 -04:00
|
|
|
{
|
|
|
|
MxResult result = FAILURE;
|
2023-12-24 18:09:01 -05:00
|
|
|
|
|
|
|
switch (p_mode) {
|
2024-01-17 11:53:53 -05:00
|
|
|
case e_allocate:
|
2023-10-30 09:54:00 -04:00
|
|
|
m_pBuffer = new MxU8[p_bufferSize];
|
2024-03-13 21:44:07 -04:00
|
|
|
assert(m_pBuffer); // m_firstRiffChunk?
|
2023-12-24 18:09:01 -05:00
|
|
|
break;
|
|
|
|
|
2024-03-13 21:44:07 -04:00
|
|
|
case e_chunk:
|
|
|
|
m_pBuffer = Streamer()->GetMemoryBlock(p_bufferSize / 1024);
|
|
|
|
break;
|
2023-12-24 18:09:01 -05:00
|
|
|
}
|
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_bytesRemaining = p_bufferSize;
|
2024-03-13 21:44:07 -04:00
|
|
|
m_writeOffset = m_bytesRemaining;
|
|
|
|
m_mode = p_mode;
|
2023-10-30 09:54:00 -04:00
|
|
|
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
|
2024-01-10 06:55:25 -05:00
|
|
|
MxResult MxDSBuffer::SetBufferPointer(MxU8* p_buffer, MxU32 p_size)
|
2023-10-22 15:58:05 -04:00
|
|
|
{
|
2024-01-10 06:55:25 -05:00
|
|
|
m_pBuffer = p_buffer;
|
|
|
|
m_pIntoBuffer = p_buffer;
|
|
|
|
m_pIntoBuffer2 = p_buffer;
|
2023-10-24 19:38:27 -04:00
|
|
|
m_bytesRemaining = p_size;
|
|
|
|
m_writeOffset = p_size;
|
2024-01-17 11:53:53 -05:00
|
|
|
m_mode = e_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);
|
2024-02-01 15:42:10 -05:00
|
|
|
if (m_unk0x30 == NULL) {
|
2023-12-25 17:39:31 -05:00
|
|
|
return FAILURE;
|
2024-02-01 15:42:10 -05:00
|
|
|
}
|
2023-12-25 17:39:31 -05:00
|
|
|
|
|
|
|
MxU8* data;
|
2024-02-01 15:42:10 -05:00
|
|
|
while ((data = (MxU8*) SkipToData())) {
|
2023-12-25 17:39:31 -05:00
|
|
|
if (*p_streamingAction == NULL) {
|
|
|
|
result = CreateObject(p_controller, (MxU32*) data, p_action, p_streamingAction);
|
|
|
|
|
2024-02-01 15:42:10 -05:00
|
|
|
if (result == FAILURE) {
|
2023-12-25 17:39:31 -05:00
|
|
|
return result;
|
2024-02-01 15:42:10 -05:00
|
|
|
}
|
2023-12-25 17:39:31 -05:00
|
|
|
// TODO: Not a MxResult value?
|
2024-02-01 15:42:10 -05:00
|
|
|
if (result == 1) {
|
2023-12-25 17:39:31 -05:00
|
|
|
break;
|
2024-02-01 15:42:10 -05:00
|
|
|
}
|
2023-12-25 17:39:31 -05:00
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2024-02-01 15:42:10 -05:00
|
|
|
if (*p_data == FOURCC('M', 'x', 'O', 'b')) {
|
2023-12-17 12:24:39 -05:00
|
|
|
return StartPresenterFromAction(p_controller, p_action, (MxDSAction*) header);
|
2024-02-01 15:42:10 -05:00
|
|
|
}
|
2023-12-17 12:24:39 -05:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2023-12-26 16:27:54 -05:00
|
|
|
// FUNCTION: LEGO1 0x100c6a50
|
2023-12-17 12:24:39 -05:00
|
|
|
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
|
|
|
|
)
|
|
|
|
{
|
2023-12-26 16:27:54 -05:00
|
|
|
MxResult result = SUCCESS;
|
|
|
|
|
2024-01-17 11:53:53 -05:00
|
|
|
if (m_unk0x30->GetFlags() & MxDSAction::c_bit3 && m_unk0x30->GetUnknowna8() && p_header->GetTime() < 0) {
|
2023-12-26 16:27:54 -05:00
|
|
|
delete p_header;
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
p_header->SetTime(p_header->GetTime() + m_unk0x30->GetUnknowna8());
|
|
|
|
|
2024-01-17 11:53:53 -05:00
|
|
|
if (p_header->GetFlags() & MxDSChunk::c_split) {
|
2024-01-10 06:55:25 -05:00
|
|
|
MxU32 length = p_header->GetLength() + MxDSChunk::GetHeaderSize() + 8;
|
2023-12-26 16:27:54 -05:00
|
|
|
MxDSBuffer* buffer = new MxDSBuffer();
|
|
|
|
|
2024-01-17 11:53:53 -05:00
|
|
|
if (buffer && buffer->AllocateBuffer(length, e_allocate) == SUCCESS &&
|
2023-12-26 16:27:54 -05:00
|
|
|
buffer->CalcBytesRemaining((MxU8*) p_data) == SUCCESS) {
|
|
|
|
*p_streamingAction = new MxDSStreamingAction((MxDSStreamingAction&) *p_action);
|
|
|
|
|
|
|
|
if (*p_streamingAction) {
|
|
|
|
MxU16* flags = MxStreamChunk::IntoFlags(buffer->GetBuffer());
|
2024-01-17 11:53:53 -05:00
|
|
|
*flags = p_header->GetFlags() & ~MxDSChunk::c_split;
|
2023-12-26 16:27:54 -05:00
|
|
|
|
|
|
|
delete p_header;
|
|
|
|
(*p_streamingAction)->SetUnknowna0(buffer);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-01 15:42:10 -05:00
|
|
|
if (buffer) {
|
2023-12-26 16:27:54 -05:00
|
|
|
delete buffer;
|
2024-02-01 15:42:10 -05:00
|
|
|
}
|
2023-12-26 16:27:54 -05:00
|
|
|
|
|
|
|
delete p_header;
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
else {
|
2024-01-17 11:53:53 -05:00
|
|
|
if (p_header->GetFlags() & MxDSChunk::c_end) {
|
2023-12-26 16:27:54 -05:00
|
|
|
if (m_unk0x30->HasId(p_header->GetObjectId())) {
|
2024-01-17 11:53:53 -05:00
|
|
|
if (m_unk0x30->GetFlags() & MxDSAction::c_bit3 &&
|
2023-12-26 16:27:54 -05:00
|
|
|
(m_unk0x30->GetLoopCount() > 1 || m_unk0x30->GetDuration() == -1)) {
|
|
|
|
|
|
|
|
if (p_action->GetObjectId() == p_header->GetObjectId()) {
|
|
|
|
MxU32 val = p_controller->GetProvider()->GetBufferForDWords()[m_unk0x30->GetObjectId()];
|
|
|
|
|
|
|
|
m_unk0x30->SetUnknown94(val);
|
|
|
|
m_unk0x30->SetBufferOffset(m_writeOffset * (val / m_writeOffset));
|
|
|
|
|
|
|
|
MxNextActionDataStart* data =
|
|
|
|
p_controller->FindNextActionDataStartFromStreamingAction(m_unk0x30);
|
|
|
|
|
2024-02-01 15:42:10 -05:00
|
|
|
if (data) {
|
2023-12-26 16:27:54 -05:00
|
|
|
data->SetData(m_unk0x30->GetBufferOffset());
|
2024-02-01 15:42:10 -05:00
|
|
|
}
|
2023-12-26 16:27:54 -05:00
|
|
|
|
|
|
|
m_unk0x30->FUN_100cd2d0();
|
|
|
|
}
|
|
|
|
|
|
|
|
delete p_header;
|
|
|
|
p_header = NULL;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (p_action->GetObjectId() == p_header->GetObjectId() &&
|
|
|
|
p_controller->VTable0x30(p_action) == SUCCESS) {
|
|
|
|
p_controller->GetProvider()->VTable0x20(p_action);
|
|
|
|
result = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p_header) {
|
|
|
|
if (p_header->SendChunk(p_controller->GetSubscriberList(), TRUE, p_action->GetUnknown24()) != SUCCESS) {
|
|
|
|
delete p_header;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
|
|
|
return result;
|
2023-12-17 12:24:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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*)
|
|
|
|
{
|
2024-03-13 21:44:07 -04:00
|
|
|
if (m_referenceCount != 0) {
|
|
|
|
m_referenceCount--;
|
2023-12-17 12:24:39 -05:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x100c6ee0
|
|
|
|
void MxDSBuffer::AddRef(MxDSChunk* p_chunk)
|
|
|
|
{
|
|
|
|
if (p_chunk) {
|
2024-03-13 21:44:07 -04:00
|
|
|
m_referenceCount++;
|
2023-12-17 12:24:39 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-26 16:27:54 -05:00
|
|
|
// FUNCTION: LEGO1 0x100c6ef0
|
2023-12-25 17:39:31 -05:00
|
|
|
MxResult MxDSBuffer::CalcBytesRemaining(MxU8* p_data)
|
|
|
|
{
|
2023-12-26 16:27:54 -05:00
|
|
|
MxResult result = FAILURE;
|
|
|
|
|
2024-01-17 11:53:53 -05:00
|
|
|
if (m_mode == e_allocate && m_bytesRemaining != 0) {
|
2023-12-26 16:27:54 -05:00
|
|
|
MxU32 bytesRead;
|
|
|
|
MxU8* ptr;
|
|
|
|
|
|
|
|
if (m_writeOffset == m_bytesRemaining) {
|
|
|
|
bytesRead = *(MxU32*) (p_data + 4) + 8;
|
|
|
|
ptr = p_data;
|
|
|
|
}
|
|
|
|
else {
|
2024-01-10 06:55:25 -05:00
|
|
|
ptr = &p_data[MxStreamChunk::GetHeaderSize() + 8];
|
|
|
|
bytesRead = (*(MxU32*) (p_data + 4)) - MxStreamChunk::GetHeaderSize();
|
2023-12-26 16:27:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (bytesRead <= m_bytesRemaining) {
|
|
|
|
memcpy(m_pBuffer + m_writeOffset - m_bytesRemaining, ptr, bytesRead);
|
|
|
|
|
2024-02-01 15:42:10 -05:00
|
|
|
if (m_writeOffset == m_bytesRemaining) {
|
2024-01-10 06:55:25 -05:00
|
|
|
*(MxU32*) (m_pBuffer + 4) = *MxStreamChunk::IntoLength(m_pBuffer) + MxStreamChunk::GetHeaderSize();
|
2024-02-01 15:42:10 -05:00
|
|
|
}
|
2023-12-26 16:27:54 -05:00
|
|
|
|
|
|
|
m_bytesRemaining -= bytesRead;
|
|
|
|
result = SUCCESS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2023-12-25 17:39:31 -05:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
2024-01-10 06:55:25 -05:00
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x100c6fa0
|
|
|
|
MxU8* MxDSBuffer::FUN_100c6fa0(MxU8* p_data)
|
|
|
|
{
|
|
|
|
MxU8* current = p_data ? p_data : m_pBuffer;
|
|
|
|
MxU8* end = m_writeOffset + m_pBuffer - 8;
|
|
|
|
|
|
|
|
while (current <= end) {
|
|
|
|
switch (*((MxU32*) current)) {
|
|
|
|
case FOURCC('L', 'I', 'S', 'T'):
|
|
|
|
case FOURCC('R', 'I', 'F', 'F'):
|
|
|
|
current += 12;
|
|
|
|
break;
|
|
|
|
case FOURCC('M', 'x', 'D', 'a'):
|
|
|
|
case FOURCC('M', 'x', 'S', 't'):
|
|
|
|
current += 8;
|
|
|
|
break;
|
|
|
|
case FOURCC('M', 'x', 'O', 'b'):
|
|
|
|
case FOURCC('M', 'x', 'C', 'h'):
|
2024-02-01 15:42:10 -05:00
|
|
|
if (current != p_data) {
|
2024-01-10 06:55:25 -05:00
|
|
|
return current;
|
2024-02-01 15:42:10 -05:00
|
|
|
}
|
2024-01-10 06:55:25 -05:00
|
|
|
current = ((MxU32) current & 1) + current;
|
|
|
|
current += 8;
|
|
|
|
break;
|
|
|
|
case FOURCC('M', 'x', 'H', 'd'):
|
|
|
|
current += (((MxU32*) current)[1] + 8);
|
|
|
|
break;
|
2024-02-02 22:01:57 -05:00
|
|
|
default:
|
|
|
|
return NULL;
|
2024-01-10 06:55:25 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x100c7090
|
|
|
|
MxResult MxDSBuffer::FUN_100c7090(MxDSBuffer* p_buf)
|
|
|
|
{
|
|
|
|
MxResult result = FAILURE;
|
|
|
|
|
|
|
|
if (m_writeOffset >= p_buf->m_writeOffset) {
|
|
|
|
memcpy(m_pBuffer, p_buf->m_pBuffer, p_buf->m_writeOffset);
|
|
|
|
result = SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_unk0x1c = p_buf->m_unk0x1c;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x100c70d0
|
|
|
|
MxResult MxDSBuffer::Append(MxU8* p_buffer1, MxU8* p_buffer2)
|
|
|
|
{
|
|
|
|
if (p_buffer1 && p_buffer2) {
|
|
|
|
MxU32 size = ((MxU32*) p_buffer2)[1] - MxDSChunk::GetHeaderSize();
|
|
|
|
memcpy(p_buffer1 + ((MxU32*) p_buffer1)[1] + 8, p_buffer2 + MxDSChunk::GetHeaderSize() + 8, size);
|
|
|
|
((MxU32*) p_buffer1)[1] += size;
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
return FAILURE;
|
|
|
|
}
|