mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-22 16:04:17 +00:00
143 lines
3.1 KiB
C++
143 lines
3.1 KiB
C++
#include "mxdsfile.h"
|
|
|
|
#include "decomp.h"
|
|
#include "mxdebug.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#define SI_MAJOR_VERSION 2
|
|
#define SI_MINOR_VERSION 2
|
|
|
|
DECOMP_SIZE_ASSERT(MxDSSource, 0x14)
|
|
DECOMP_SIZE_ASSERT(MxDSFile::ChunkHeader, 0x0c)
|
|
DECOMP_SIZE_ASSERT(MxDSFile, 0x7c)
|
|
|
|
// FUNCTION: LEGO1 0x100cc4b0
|
|
// FUNCTION: BETA10 0x1015db90
|
|
MxDSFile::MxDSFile(const char* p_filename, MxULong p_skipReadingChunks)
|
|
{
|
|
SetFileName(p_filename);
|
|
m_skipReadingChunks = p_skipReadingChunks;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100cc590
|
|
// FUNCTION: BETA10 0x1015dc57
|
|
MxResult MxDSFile::Open(MxULong p_uStyle)
|
|
{
|
|
MxResult result = -FAILURE; // Non-standard value of 1 here
|
|
memset(&m_io, 0, sizeof(MXIOINFO));
|
|
|
|
if (m_io.Open(m_filename.GetData(), p_uStyle) != 0) {
|
|
return -1;
|
|
}
|
|
|
|
m_io.SetBuffer(NULL, 0, 0);
|
|
m_position = 0;
|
|
|
|
if (m_skipReadingChunks == 0) {
|
|
result = ReadChunks();
|
|
}
|
|
|
|
if (result != SUCCESS) {
|
|
Close();
|
|
}
|
|
else {
|
|
Seek(0, SEEK_SET);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100cc620
|
|
// FUNCTION: BETA10 0x1015dd18
|
|
MxResult MxDSFile::ReadChunks()
|
|
{
|
|
_MMCKINFO topChunk;
|
|
_MMCKINFO childChunk;
|
|
char tempBuffer[80];
|
|
|
|
topChunk.fccType = FOURCC('O', 'M', 'N', 'I');
|
|
if (m_io.Descend(&topChunk, NULL, MMIO_FINDRIFF) != 0) {
|
|
MxTrace("Unable to find Streamer RIFF chunk in file: %s\n", m_filename);
|
|
return FAILURE;
|
|
}
|
|
|
|
childChunk.ckid = FOURCC('M', 'x', 'H', 'd');
|
|
if (m_io.Descend(&childChunk, &topChunk, 0) != 0) {
|
|
MxTrace("Unable to find Header chunk in file: %s\n", m_filename);
|
|
return FAILURE;
|
|
}
|
|
|
|
m_io.Read(&m_header, 0x0c);
|
|
if ((m_header.m_majorVersion != SI_MAJOR_VERSION) || (m_header.m_minorVersion != SI_MINOR_VERSION)) {
|
|
sprintf(tempBuffer, "Wrong SI file version. %d.%d expected.", SI_MAJOR_VERSION, SI_MINOR_VERSION);
|
|
MessageBoxA(NULL, tempBuffer, NULL, MB_ICONERROR);
|
|
return FAILURE;
|
|
}
|
|
|
|
childChunk.ckid = FOURCC('M', 'x', 'O', 'f');
|
|
if (m_io.Descend(&childChunk, &topChunk, 0) != 0) {
|
|
MxTrace("Unable to find Header chunk in file: %s\n", m_filename);
|
|
return FAILURE;
|
|
}
|
|
|
|
m_io.Read(&m_lengthInDWords, 4);
|
|
m_pBuffer = new MxU32[m_lengthInDWords];
|
|
m_io.Read(m_pBuffer, m_lengthInDWords * 4);
|
|
return SUCCESS;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100cc740
|
|
// FUNCTION: BETA10 0x1015ded2
|
|
MxLong MxDSFile::Close()
|
|
{
|
|
m_io.Close(0);
|
|
m_position = -1;
|
|
memset(&m_header, 0, sizeof(m_header));
|
|
if (m_lengthInDWords != 0) {
|
|
m_lengthInDWords = 0;
|
|
delete[] m_pBuffer;
|
|
m_pBuffer = NULL;
|
|
}
|
|
|
|
return SUCCESS;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100cc780
|
|
// FUNCTION: BETA10 0x1015df50
|
|
MxResult MxDSFile::Read(unsigned char* p_buf, MxULong p_nbytes)
|
|
{
|
|
if (m_io.Read(p_buf, p_nbytes) != p_nbytes) {
|
|
return FAILURE;
|
|
}
|
|
|
|
m_position += p_nbytes;
|
|
return SUCCESS;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100cc7b0
|
|
// FUNCTION: BETA10 0x1015dfee
|
|
MxResult MxDSFile::Seek(MxLong p_lOffset, MxS32 p_iOrigin)
|
|
{
|
|
m_position = m_io.Seek(p_lOffset, p_iOrigin);
|
|
if (m_position == -1) {
|
|
return FAILURE;
|
|
}
|
|
|
|
return SUCCESS;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100cc7e0
|
|
// FUNCTION: BETA10 0x10148d80
|
|
MxULong MxDSFile::GetBufferSize()
|
|
{
|
|
return m_header.m_bufferSize;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100cc7f0
|
|
// FUNCTION: BETA10 0x10148da0
|
|
MxULong MxDSFile::GetStreamBuffersNum()
|
|
{
|
|
return m_header.m_streamBuffersNum;
|
|
}
|