2023-06-29 04:10:08 -04:00
|
|
|
#include "mxdiskstreamprovider.h"
|
|
|
|
|
2023-10-29 10:01:14 -04:00
|
|
|
#include "mxomni.h"
|
|
|
|
#include "mxstreamcontroller.h"
|
|
|
|
#include "mxstring.h"
|
2023-07-07 14:00:48 -04:00
|
|
|
#include "mxthread.h"
|
|
|
|
|
2023-09-29 17:53:02 -04:00
|
|
|
DECOMP_SIZE_ASSERT(MxDiskStreamProvider, 0x60);
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100d0f30
|
2023-07-07 14:00:48 -04:00
|
|
|
MxResult MxDiskStreamProviderThread::Run()
|
|
|
|
{
|
2023-10-29 10:01:14 -04:00
|
|
|
if (m_target)
|
|
|
|
((MxDiskStreamProvider*) m_target)->WaitForWorkToComplete();
|
2023-10-24 19:38:27 -04:00
|
|
|
MxThread::Run();
|
|
|
|
// They should probably have writen "return MxThread::Run()" but they didn't.
|
|
|
|
return SUCCESS;
|
2023-07-07 14:00:48 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100d0f50
|
2023-10-29 10:01:14 -04:00
|
|
|
MxResult MxDiskStreamProviderThread::StartWithTarget(MxDiskStreamProvider* p_target)
|
|
|
|
{
|
|
|
|
m_target = p_target;
|
|
|
|
return Start(0x1000, 0);
|
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100d0f70
|
2023-06-29 04:10:08 -04:00
|
|
|
MxDiskStreamProvider::MxDiskStreamProvider()
|
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
this->m_pFile = NULL;
|
|
|
|
this->m_remainingWork = 0;
|
|
|
|
this->m_unk35 = 0;
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// STUB: LEGO1 0x100d1240
|
2023-06-29 04:10:08 -04:00
|
|
|
MxDiskStreamProvider::~MxDiskStreamProvider()
|
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
// TODO
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|
2023-07-07 14:00:48 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100d13d0
|
2023-10-29 10:01:14 -04:00
|
|
|
MxResult MxDiskStreamProvider::SetResourceToGet(MxStreamController* p_resource)
|
|
|
|
{
|
|
|
|
MxResult result = FAILURE;
|
|
|
|
MxString path;
|
|
|
|
m_pLookup = p_resource;
|
|
|
|
|
|
|
|
path = (MxString(MxOmni::GetHD()) + p_resource->GetAtom().GetInternal() + ".si");
|
|
|
|
|
|
|
|
m_pFile = new MxDSFile(path.GetData(), 0);
|
|
|
|
if (m_pFile != NULL) {
|
|
|
|
if (m_pFile->Open(0) != 0) {
|
|
|
|
path = MxString(MxOmni::GetCD()) + p_resource->GetAtom().GetInternal() + ".si";
|
|
|
|
m_pFile->SetFileName(path.GetData());
|
|
|
|
|
|
|
|
if (m_pFile->Open(0) != 0)
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_remainingWork = 1;
|
|
|
|
MxResult success = m_busySemaphore.Init(0, 100);
|
|
|
|
m_thread.StartWithTarget(this);
|
|
|
|
|
|
|
|
if (success == SUCCESS && p_resource != NULL) {
|
|
|
|
result = SUCCESS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// STUB: LEGO1 0x100d15e0
|
2023-11-21 03:44:45 -05:00
|
|
|
void MxDiskStreamProvider::vtable0x20(undefined4 p_unknown1)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100d1750
|
2023-07-07 14:00:48 -04:00
|
|
|
MxResult MxDiskStreamProvider::WaitForWorkToComplete()
|
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
while (m_remainingWork != 0) {
|
|
|
|
m_busySemaphore.Wait(INFINITE);
|
|
|
|
if (m_unk35 != 0)
|
|
|
|
PerformWork();
|
|
|
|
}
|
|
|
|
return SUCCESS;
|
2023-07-07 14:00:48 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// STUB: LEGO1 0x100d18f0
|
2023-07-07 14:00:48 -04:00
|
|
|
void MxDiskStreamProvider::PerformWork()
|
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
// TODO
|
2023-10-10 04:27:00 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100d1e90
|
2023-10-10 04:27:00 -04:00
|
|
|
MxU32 MxDiskStreamProvider::GetFileSize()
|
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
return m_pFile->GetBufferSize();
|
2023-10-10 04:27:00 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100d1ea0
|
2023-10-10 04:27:00 -04:00
|
|
|
MxU32 MxDiskStreamProvider::GetStreamBuffersNum()
|
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
return m_pFile->GetStreamBuffersNum();
|
2023-10-10 04:27:00 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100d1eb0
|
2023-10-10 04:27:00 -04:00
|
|
|
MxU32 MxDiskStreamProvider::GetLengthInDWords()
|
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
return m_pFile->GetLengthInDWords();
|
2023-10-10 04:27:00 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100d1ec0
|
2023-10-10 04:27:00 -04:00
|
|
|
MxU32* MxDiskStreamProvider::GetBufferForDWords()
|
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
return m_pFile->GetBuffer();
|
2023-10-10 04:27:00 -04:00
|
|
|
}
|