mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
6e947c3789
* Implement/match MxStreamController::FUN_100c1f00 * Implement/match MxStreamController::FUN_100c20d0
72 lines
1.8 KiB
C++
72 lines
1.8 KiB
C++
#include "mxstreamlist.h"
|
|
|
|
// Wrappers around STL list that are used by the MxStream* classes.
|
|
DECOMP_SIZE_ASSERT(MxStreamListMxDSAction, 0xc);
|
|
DECOMP_SIZE_ASSERT(MxStreamListMxNextActionDataStart, 0xc);
|
|
DECOMP_SIZE_ASSERT(MxStreamListMxDSSubscriber, 0xc);
|
|
|
|
// FUNCTION: LEGO1 0x100b8450
|
|
MxDSSubscriber* MxStreamListMxDSSubscriber::Find(MxDSObject* p_object)
|
|
{
|
|
for (iterator it = begin(); it != end(); it++) {
|
|
if (p_object->GetObjectId() == -1 || p_object->GetObjectId() == (*it)->GetObjectId()) {
|
|
if (p_object->GetUnknown24() == -2 || p_object->GetUnknown24() == (*it)->GetUnknown48()) {
|
|
return *it;
|
|
}
|
|
}
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100bfa80
|
|
MxDSAction* MxStreamListMxDSAction::Find(MxDSAction* p_action, MxBool p_delete)
|
|
{
|
|
// DECOMP ALPHA 0x1008b99d ?
|
|
|
|
MxDSAction* found = NULL;
|
|
|
|
for (iterator it = begin(); it != end(); it++) {
|
|
if (p_action->GetObjectId() == -1 || p_action->GetObjectId() == (*it)->GetObjectId()) {
|
|
if (p_action->GetUnknown24() == -2 || p_action->GetUnknown24() == -3 ||
|
|
p_action->GetUnknown24() == (*it)->GetUnknown24()) {
|
|
found = *it;
|
|
if (p_action->GetUnknown24() != -3)
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (p_delete && found != NULL) {
|
|
erase(it);
|
|
}
|
|
|
|
return found;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c21e0
|
|
MxNextActionDataStart* MxStreamListMxNextActionDataStart::Find(MxU32 p_id, MxS16 p_value)
|
|
{
|
|
for (iterator it = begin(); it != end(); it++) {
|
|
if (p_id == (*it)->GetObjectId() && p_value == (*it)->GetUnknown24())
|
|
return *it;
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c2240
|
|
MxNextActionDataStart* MxStreamListMxNextActionDataStart::FindAndErase(MxU32 p_id, MxS16 p_value)
|
|
{
|
|
MxNextActionDataStart* match = NULL;
|
|
|
|
for (iterator it = begin(); it != end(); it++) {
|
|
if (p_id == (*it)->GetObjectId() && (p_value == -2 || p_value == (*it)->GetUnknown24())) {
|
|
match = *it;
|
|
erase(it);
|
|
break;
|
|
}
|
|
}
|
|
|
|
return match;
|
|
}
|