mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
3b155bfe38
* Open discussion * Move annotations of header-implemented functions back to `.h` files * Adjust `README.md` * Relocate annotation * linter * Comment markers in headers only, rename script, update github actions * type hint compat * Rename github action, better argparse for linter * Type hints, working test for byname ignore * Move annotation * CI rename and enable warnfail, enforce mode always on * Two step linting * or one step * continue on error * two jobs instead * Fixes --------- Co-authored-by: disinvite <disinvite@users.noreply.github.com>
148 lines
3.4 KiB
C++
148 lines
3.4 KiB
C++
#include "mxstreamcontroller.h"
|
|
|
|
#include "legoomni.h"
|
|
#include "mxautolocker.h"
|
|
#include "mxnextactiondatastart.h"
|
|
#include "mxstreamchunk.h"
|
|
|
|
DECOMP_SIZE_ASSERT(MxStreamController, 0x64)
|
|
DECOMP_SIZE_ASSERT(MxNextActionDataStart, 0x14)
|
|
|
|
// FUNCTION: LEGO1 0x100b9400
|
|
MxResult MxStreamController::vtable0x18(undefined4 p_unknown, undefined4 p_unknown2)
|
|
{
|
|
return FAILURE;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100b9410
|
|
MxResult MxStreamController::vtable0x1C(undefined4 p_unknown, undefined4 p_unknown2)
|
|
{
|
|
return FAILURE;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100b9420
|
|
MxResult MxStreamController::vtable0x28()
|
|
{
|
|
return SUCCESS;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c0b90
|
|
MxStreamController::MxStreamController()
|
|
{
|
|
m_provider = NULL;
|
|
m_unk2c = 0; // TODO: probably also NULL
|
|
m_action0x60 = NULL;
|
|
}
|
|
|
|
// STUB: LEGO1 0x100c1290
|
|
MxStreamController::~MxStreamController()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c1520
|
|
MxResult MxStreamController::Open(const char* p_filename)
|
|
{
|
|
char sourceName[256];
|
|
MxAutoLocker locker(&m_criticalSection);
|
|
|
|
MakeSourceName(sourceName, p_filename);
|
|
this->atom = MxAtomId(sourceName, LookupMode_LowerCase2);
|
|
return SUCCESS;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c1690
|
|
MxResult MxStreamController::vtable0x20(MxDSAction* p_action)
|
|
{
|
|
MxAutoLocker locker(&m_criticalSection);
|
|
|
|
MxResult result;
|
|
MxU32 offset = 0;
|
|
|
|
MxS32 objectId = p_action->GetObjectId();
|
|
MxStreamProvider* provider = m_provider;
|
|
|
|
if ((MxS32) provider->GetLengthInDWords() > objectId)
|
|
offset = provider->GetBufferForDWords()[objectId];
|
|
|
|
if (offset)
|
|
result = vtable0x2c(p_action, offset);
|
|
else
|
|
result = FAILURE;
|
|
|
|
return result;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c1740
|
|
MxResult MxStreamController::vtable0x24(MxDSAction* p_action)
|
|
{
|
|
MxAutoLocker locker(&m_criticalSection);
|
|
vtable0x30(p_action);
|
|
m_action0x60 = m_unkList0x54.Find(p_action, TRUE);
|
|
if (m_action0x60 == NULL) {
|
|
return FAILURE;
|
|
}
|
|
else {
|
|
p_action->SetUnknown24(m_action0x60->GetUnknown24());
|
|
p_action->SetObjectId(m_action0x60->GetObjectId());
|
|
return FUN_100c1f00(m_action0x60);
|
|
}
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c1800
|
|
MxResult MxStreamController::FUN_100c1800(MxDSAction* p_action, MxU32 p_val)
|
|
{
|
|
MxNextActionDataStart* dataActionStart =
|
|
new MxNextActionDataStart(p_action->GetObjectId(), p_action->GetUnknown24(), p_val);
|
|
if (dataActionStart == NULL) {
|
|
return FAILURE;
|
|
}
|
|
|
|
m_nextActionList.push_back(dataActionStart);
|
|
return SUCCESS;
|
|
}
|
|
|
|
// STUB: LEGO1 0x100c1a00
|
|
MxResult MxStreamController::FUN_100c1a00(MxDSAction* p_action, MxU32 p_bufferval)
|
|
{
|
|
return FAILURE;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c1c10
|
|
MxResult MxStreamController::vtable0x2c(MxDSAction* p_action, MxU32 p_bufferval)
|
|
{
|
|
MxAutoLocker locker(&m_criticalSection);
|
|
if (FUN_100c1a00(p_action, p_bufferval) != SUCCESS) {
|
|
return FAILURE;
|
|
}
|
|
return FUN_100c1800(p_action, (p_bufferval / m_provider->GetFileSize()) * m_provider->GetFileSize());
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c1ce0
|
|
MxResult MxStreamController::vtable0x30(MxDSAction* p_unknown)
|
|
{
|
|
MxAutoLocker locker(&m_criticalSection);
|
|
MxResult result = FAILURE;
|
|
MxDSAction* action = m_unkList0x3c.Find(p_unknown, TRUE);
|
|
if (action != NULL) {
|
|
MxNextActionDataStart* data = m_nextActionList.Find(action->GetObjectId(), action->GetUnknown24());
|
|
delete action;
|
|
delete data;
|
|
result = SUCCESS;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
// STUB: LEGO1 0x100c1f00
|
|
MxResult MxStreamController::FUN_100c1f00(MxDSAction* p_action)
|
|
{
|
|
// TODO
|
|
return FAILURE;
|
|
}
|
|
|
|
// STUB: LEGO1 0x100c20d0
|
|
MxBool MxStreamController::FUN_100c20d0(MxDSObject& p_obj)
|
|
{
|
|
// TODO
|
|
return TRUE;
|
|
}
|