This commit is contained in:
Christian Semmler 2024-07-02 12:19:13 -07:00
commit b17762ebe3
No known key found for this signature in database
GPG Key ID: 086DAA1360BEEE5C
16 changed files with 323 additions and 62 deletions

View File

@ -259,6 +259,7 @@ add_library(omni STATIC
LEGO1/omni/src/common/mxatom.cpp LEGO1/omni/src/common/mxatom.cpp
LEGO1/omni/src/common/mxcompositepresenter.cpp LEGO1/omni/src/common/mxcompositepresenter.cpp
LEGO1/omni/src/common/mxcore.cpp LEGO1/omni/src/common/mxcore.cpp
LEGO1/omni/src/common/mxdebug.cpp
LEGO1/omni/src/common/mxmediamanager.cpp LEGO1/omni/src/common/mxmediamanager.cpp
LEGO1/omni/src/common/mxmediapresenter.cpp LEGO1/omni/src/common/mxmediapresenter.cpp
LEGO1/omni/src/common/mxmisc.cpp LEGO1/omni/src/common/mxmisc.cpp

View File

@ -24,22 +24,23 @@ public:
} }
MxResult Create(MxDSAction& p_dsAction) override; // vtable+0x18 MxResult Create(MxDSAction& p_dsAction) override; // vtable+0x18
void VTable0x70(float p_float) override; // vtable+0x70 void VTable0x70(float p_time) override; // vtable+0x70
MxLong HandleClick() override; // vtable+0xcc MxLong HandleClick() override; // vtable+0xcc
MxLong HandleControl(LegoControlManagerNotificationParam& p_param) override; // vtable+0xd4 MxLong HandleControl(LegoControlManagerNotificationParam& p_param) override; // vtable+0xd4
MxLong HandlePathStruct(LegoPathStructNotificationParam& p_param) override; // vtable+0xdc MxLong HandlePathStruct(LegoPathStructNotificationParam& p_param) override; // vtable+0xdc
void Exit() override; // vtable+0xe4 void Exit() override; // vtable+0xe4
void FUN_10068350(); void ActivateSceneActions();
// SYNTHETIC: LEGO1 0x10067dc0 // SYNTHETIC: LEGO1 0x10067dc0
// DuneBuggy::`scalar deleting destructor' // DuneBuggy::`scalar deleting destructor'
private: private:
// TODO: Double check DuneBuggy field types static MxS32 GetDashboardOffset(const char* p_variable);
undefined4 m_unk0x160;
MxFloat m_unk0x164; MxS16 m_dashboard; // 0x160
undefined4 m_unk0x168; MxFloat m_fuel; // 0x164
MxFloat m_time; // 0x168
}; };
#endif // DUNEBUGGY_H #endif // DUNEBUGGY_H

View File

@ -3,6 +3,8 @@
#include "mxvariable.h" #include "mxvariable.h"
extern const char* g_varDUNESPEED;
extern const char* g_varDUNEFUEL;
extern const char* g_varMOTOSPEED; extern const char* g_varMOTOSPEED;
extern const char* g_varMOTOFUEL; extern const char* g_varMOTOFUEL;
extern const char* g_varAMBULSPEED; extern const char* g_varAMBULSPEED;

View File

@ -1,58 +1,201 @@
#include "dunebuggy.h" #include "dunebuggy.h"
#include "decomp.h" #include "decomp.h"
#include "isle.h"
#include "isle_actions.h"
#include "jukebox_actions.h"
#include "legoanimationmanager.h"
#include "legocontrolmanager.h"
#include "legonavcontroller.h"
#include "legopathstruct.h"
#include "legoutils.h"
#include "legovariables.h"
#include "legoworld.h"
#include "misc.h"
#include "mxmisc.h"
#include "mxsoundpresenter.h"
#include "mxtimer.h"
#include "mxtransitionmanager.h"
#include "mxvariabletable.h"
DECOMP_SIZE_ASSERT(DuneBuggy, 0x16c) DECOMP_SIZE_ASSERT(DuneBuggy, 0x16c)
// GLOBAL: LEGO1 0x100f7660
// STRING: LEGO1 0x100f7634
const char* g_varDBFRFNY4 = "C_DBFRFNY4";
// FUNCTION: LEGO1 0x10067bb0 // FUNCTION: LEGO1 0x10067bb0
DuneBuggy::DuneBuggy() DuneBuggy::DuneBuggy()
{ {
this->m_maxLinearVel = 25.0; m_maxLinearVel = 25.0;
this->m_unk0x164 = 1.0; m_fuel = 1.0;
} }
// STUB: LEGO1 0x10067e30 // FUNCTION: LEGO1 0x10067e30
MxResult DuneBuggy::Create(MxDSAction& p_dsAction) MxResult DuneBuggy::Create(MxDSAction& p_dsAction)
{ {
// TODO MxResult result = IslePathActor::Create(p_dsAction);
return SUCCESS; m_world = CurrentWorld();
if (m_world) {
m_world->Add(this);
}
VariableTable()->SetVariable(g_varDUNEFUEL, "1.0");
m_fuel = 1.0;
m_time = Timer()->GetTime();
return result;
} }
// STUB: LEGO1 0x10067ec0 // FUNCTION: LEGO1 0x10067ec0
void DuneBuggy::VTable0x70(float p_float) void DuneBuggy::VTable0x70(float p_time)
{ {
// TODO IslePathActor::VTable0x70(p_time);
char buf[200];
float speed = abs(m_worldSpeed);
float maxLinearVel = NavController()->GetMaxLinearVel();
sprintf(buf, "%g", speed / maxLinearVel);
VariableTable()->SetVariable(g_varDUNESPEED, buf);
m_fuel += (p_time - m_time) * -3.333333333e-06f;
if (m_fuel < 0) {
m_fuel = 0;
}
m_time = p_time;
sprintf(buf, "%g", m_fuel);
VariableTable()->SetVariable(g_varDUNEFUEL, buf);
} }
// STUB: LEGO1 0x10067fa0 // FUNCTION: LEGO1 0x10067fa0
void DuneBuggy::Exit() void DuneBuggy::Exit()
{ {
// TODO IslePathActor::Exit();
GameState()->m_currentArea = LegoGameState::e_dunecar;
RemoveFromCurrentWorld(*g_isleScript, m_dashboard);
RemoveFromCurrentWorld(*g_isleScript, IsleScript::c_DuneCarArms_Ctl);
RemoveFromCurrentWorld(*g_isleScript, IsleScript::c_DuneCarHorn_Ctl);
RemoveFromCurrentWorld(*g_isleScript, IsleScript::c_DuneCarHorn_Sound);
RemoveFromCurrentWorld(*g_isleScript, IsleScript::c_DuneCarInfo_Ctl);
RemoveFromCurrentWorld(*g_isleScript, IsleScript::c_DuneCarSpeedMeter);
RemoveFromCurrentWorld(*g_isleScript, IsleScript::c_DuneCarFuelMeter);
ControlManager()->Unregister(this);
} }
// STUB: LEGO1 0x10068060 // FUNCTION: LEGO1 0x10068060
MxLong DuneBuggy::HandleClick() MxLong DuneBuggy::HandleClick()
{ {
// TODO if (!FUN_1003ef60()) {
return 0; return 1;
}
FUN_10015820(TRUE, 0);
((Isle*) CurrentWorld())->SetDestLocation(LegoGameState::Area::e_dunecar);
TransitionManager()->StartTransition(MxTransitionManager::TransitionType::e_mosaic, 50, FALSE, TRUE);
if (GameState()->GetActorId() != UserActor()->GetActorId()) {
((IslePathActor*) UserActor())->Exit();
}
m_time = Timer()->GetTime();
m_dashboard = IsleScript::c_DuneCarSpeedMeter + GetDashboardOffset(g_varDBFRFNY4);
InvokeAction(Extra::ActionType::e_start, *g_isleScript, m_dashboard, NULL);
InvokeAction(Extra::ActionType::e_start, *g_isleScript, IsleScript::c_DuneCarDashboard, NULL);
GetCurrentAction().SetObjectId(-1);
Vector3 position = m_roi->GetWorldPosition();
AnimationManager()->FUN_10064670(&position);
AnimationManager()->FUN_10064740(&position);
Enter();
ControlManager()->Register(this);
return 1;
} }
// STUB: LEGO1 0x100681b0 // FUNCTION: LEGO1 0x100681b0
MxLong DuneBuggy::HandleControl(LegoControlManagerNotificationParam& p_param) MxLong DuneBuggy::HandleControl(LegoControlManagerNotificationParam& p_param)
{ {
// TODO MxLong result = 0;
return 0;
if (p_param.GetUnknown0x28() == 1) {
switch (p_param.GetClickedObjectId()) {
case IsleScript::c_DuneCarArms_Ctl:
Exit();
GameState()->m_currentArea = LegoGameState::e_unk66;
result = 1;
break;
case IsleScript::c_DuneCarInfo_Ctl:
((Isle*) CurrentWorld())->SetDestLocation(LegoGameState::e_infomain);
TransitionManager()->StartTransition(MxTransitionManager::e_mosaic, 50, FALSE, FALSE);
Exit();
result = 1;
break;
case IsleScript::c_DuneCarHorn_Ctl:
MxSoundPresenter* presenter =
(MxSoundPresenter*) CurrentWorld()->Find("MxSoundPresenter", "DuneCarHorn_Sound");
presenter->Enable(p_param.GetUnknown0x28());
break;
}
}
return result;
} }
// STUB: LEGO1 0x10068270 // FUNCTION: LEGO1 0x10068270
MxLong DuneBuggy::HandlePathStruct(LegoPathStructNotificationParam& p_param) MxLong DuneBuggy::HandlePathStruct(LegoPathStructNotificationParam& p_param)
{ {
// TODO // 0x168 corresponds to the path at the gas station
if (p_param.GetData() == 0x168) {
m_fuel = 1.0f;
}
return 0; return 0;
} }
// STUB: LEGO1 0x10068350 // FUNCTION: LEGO1 0x10068290
void DuneBuggy::FUN_10068350() MxS32 DuneBuggy::GetDashboardOffset(const char* p_variable)
{ {
// TODO MxS32 color = 1;
const char* colorName = VariableTable()->GetVariable(p_variable);
if (strcmpi(colorName, "lego green")) {
if (!strcmpi(colorName, "lego red")) {
color = 2;
}
else if (!strcmpi(colorName, "lego yellow")) {
color = 3;
}
else if (!strcmpi(colorName, "lego black")) {
color = 4;
}
else if (!strcmpi(colorName, "lego blue")) {
color = 5;
}
else if (!strcmpi(colorName, "lego white")) {
color = 6;
}
}
return color;
}
// FUNCTION: LEGO1 0x10068350
void DuneBuggy::ActivateSceneActions()
{
PlayMusic(JukeboxScript::c_GarageArea_Music);
Act1State* act1state = (Act1State*) GameState()->GetState("Act1State");
if (!act1state->m_unk0x022) {
act1state->m_unk0x022 = TRUE;
MxMatrix mat(UserActor()->GetROI()->GetLocal2World());
mat.TranslateBy(mat[2][0] * 2.5, mat[2][1] + 0.7, mat[2][2] * 2.5);
AnimationManager()
->FUN_10060dc0(IsleScript::c_sns005in_RunAnim, &mat, TRUE, FALSE, NULL, FALSE, TRUE, TRUE, TRUE);
}
} }

View File

@ -16,6 +16,14 @@ DECOMP_SIZE_ASSERT(CursorVariable, 0x24)
DECOMP_SIZE_ASSERT(WhoAmIVariable, 0x24) DECOMP_SIZE_ASSERT(WhoAmIVariable, 0x24)
DECOMP_SIZE_ASSERT(CustomizeAnimFileVariable, 0x24) DECOMP_SIZE_ASSERT(CustomizeAnimFileVariable, 0x24)
// GLOBAL: LEGO1 0x100f7658
// STRING: LEGO1 0x100f764c
const char* g_varDUNESPEED = "duneSPEED";
// GLOBAL: LEGO1 0x100f765c
// STRING: LEGO1 0x100f7640
const char* g_varDUNEFUEL = "duneFUEL";
// GLOBAL: LEGO1 0x100f3994 // GLOBAL: LEGO1 0x100f3994
// STRING: LEGO1 0x100f3988 // STRING: LEGO1 0x100f3988
const char* g_varMOTOSPEED = "motoSPEED"; const char* g_varMOTOSPEED = "motoSPEED";

View File

@ -8,6 +8,7 @@
#include "legoworld.h" #include "legoworld.h"
#include "misc.h" #include "misc.h"
#include "mxautolock.h" #include "mxautolock.h"
#include "mxdebug.h"
#include "roi/legoroi.h" #include "roi/legoroi.h"
DECOMP_SIZE_ASSERT(LegoInputManager, 0x338) DECOMP_SIZE_ASSERT(LegoInputManager, 0x338)

View File

@ -998,7 +998,7 @@ MxLong Isle::HandleTransitionEnd()
FUN_10032d30(IsleScript::c_DuneCarFuelMeter, JukeboxScript::c_MusicTheme1, NULL, TRUE); FUN_10032d30(IsleScript::c_DuneCarFuelMeter, JukeboxScript::c_MusicTheme1, NULL, TRUE);
if (!m_act1state->m_unk0x01f) { if (!m_act1state->m_unk0x01f) {
m_dunebuggy->FUN_10068350(); m_dunebuggy->ActivateSceneActions();
} }
break; break;
case LegoGameState::e_motocycle: case LegoGameState::e_motocycle:

View File

@ -0,0 +1,32 @@
#ifndef MXDEBUG_H
#define MXDEBUG_H
#include "compat.h"
#ifdef _DEBUG
// In debug mode, replace the macro with the function call.
#define MxTrace _MxTrace
void _MxTrace(const char* format, ...);
int DebugHeapState();
#else
// If not debug, MxTrace is a no-op.
#ifdef COMPAT_MODE
// Use variadic args for macro (C99)
#define MxTrace(...)
#else
// MSVC 4.20 does not have variadic args for macros
#define MxTrace(args)
#endif // COMPAT_MODE
#endif // _DEBUG
#endif // MXDEBUG_H

View File

@ -34,7 +34,10 @@ public:
MxStreamChunk* PeekData(); MxStreamChunk* PeekData();
void FreeDataChunk(MxStreamChunk* p_chunk); void FreeDataChunk(MxStreamChunk* p_chunk);
// FUNCTION: BETA10 0x101354f0
inline MxU32 GetObjectId() { return m_objectId; } inline MxU32 GetObjectId() { return m_objectId; }
// FUNCTION: BETA10 0x10135510
inline MxS16 GetUnknown48() { return m_unk0x48; } inline MxS16 GetUnknown48() { return m_unk0x48; }
private: private:

View File

@ -3,6 +3,7 @@
#include "decomp.h" #include "decomp.h"
#include "mxbitset.h" #include "mxbitset.h"
#include "mxdebug.h"
#include "mxtypes.h" #include "mxtypes.h"
#include <assert.h> #include <assert.h>
@ -49,11 +50,7 @@ MxU8* MxMemoryPool<BS, NB>::Get()
if (!m_blockRef[i]) { if (!m_blockRef[i]) {
m_blockRef[i].Flip(); m_blockRef[i].Flip();
#ifdef _DEBUG MxTrace("Get> %d pool: busy %d blocks\n", m_blockSize, m_blockRef.Count());
// TODO: This is actually some debug print function, but
// we just need any func with variatic args to eliminate diff noise.
printf("Get> %d pool: busy %d blocks\n", m_blockSize, m_blockRef.Count());
#endif
return &m_pool[i * m_blockSize * 1024]; return &m_pool[i * m_blockSize * 1024];
} }
@ -78,9 +75,7 @@ void MxMemoryPool<BS, NB>::Release(MxU8* p_buf)
m_blockRef[i].Flip(); m_blockRef[i].Flip();
} }
#ifdef _DEBUG MxTrace("Release> %d pool: busy %d blocks\n", m_blockSize, m_blockRef.Count());
printf("Release> %d pool: busy %d blocks\n", m_blockSize, m_blockRef.Count());
#endif
} }
#endif // MXMEMORYPOOL_H #endif // MXMEMORYPOOL_H

View File

@ -47,7 +47,7 @@ public:
MxResult FUN_100c1a00(MxDSAction* p_action, MxU32 p_offset); MxResult FUN_100c1a00(MxDSAction* p_action, MxU32 p_offset);
MxPresenter* FUN_100c1e70(MxDSAction& p_action); MxPresenter* FUN_100c1e70(MxDSAction& p_action);
MxResult FUN_100c1f00(MxDSAction* p_action); MxResult FUN_100c1f00(MxDSAction* p_action);
MxBool FUN_100c20d0(MxDSObject& p_obj); MxBool IsStoped(MxDSObject* p_obj);
MxResult InsertActionToList54(MxDSAction* p_action); MxResult InsertActionToList54(MxDSAction* p_action);
MxNextActionDataStart* FindNextActionDataStartFromStreamingAction(MxDSStreamingAction* p_action); MxNextActionDataStart* FindNextActionDataStartFromStreamingAction(MxDSStreamingAction* p_action);

View File

@ -35,6 +35,7 @@ private:
}; };
// VTABLE: LEGO1 0x100dc710 // VTABLE: LEGO1 0x100dc710
// VTABLE: BETA10 0x101c2378
// SIZE 0x2c // SIZE 0x2c
class MxStreamer : public MxCore { class MxStreamer : public MxCore {
public: public:
@ -115,6 +116,7 @@ private:
// clang-format off // clang-format off
// TEMPLATE: LEGO1 0x100b9090 // TEMPLATE: LEGO1 0x100b9090
// TEMPLATE: BETA10 0x10146720
// list<MxStreamController *,allocator<MxStreamController *> >::~list<MxStreamController *,allocator<MxStreamController *> > // list<MxStreamController *,allocator<MxStreamController *> >::~list<MxStreamController *,allocator<MxStreamController *> >
// clang-format on // clang-format on

View File

@ -1,5 +1,6 @@
#include "mxdsmediaaction.h" #include "mxdsmediaaction.h"
#include "mxdebug.h"
#include "mxutilities.h" #include "mxutilities.h"
DECOMP_SIZE_ASSERT(MxDSMediaAction, 0xb8) DECOMP_SIZE_ASSERT(MxDSMediaAction, 0xb8)
@ -86,6 +87,8 @@ void MxDSMediaAction::CopyMediaSrcPath(const char* p_mediaSrcPath)
if (m_mediaSrcPath) { if (m_mediaSrcPath) {
strcpy(m_mediaSrcPath, p_mediaSrcPath); strcpy(m_mediaSrcPath, p_mediaSrcPath);
} }
MxTrace("MxDSMediaAction: name allocation failed: %s.\n", p_mediaSrcPath);
} }
else { else {
m_mediaSrcPath = NULL; m_mediaSrcPath = NULL;

View File

@ -0,0 +1,30 @@
#include "mxdebug.h"
#ifdef _DEBUG
// Debug-only wrapper for OutputDebugString to support variadic arguments.
// Identical functions at BETA10 0x100ec9fe and 0x101741b5 are more limited in scope.
// This is the most widely used version.
#include <stdio.h>
#include <windows.h>
// FUNCTION: BETA10 0x10124cb9
int DebugHeapState()
{
return 0;
}
// FUNCTION: BETA10 0x10124cdd
void _MxTrace(const char* format, ...)
{
va_list args;
char buffer[256];
va_start(args, format);
_vsnprintf(buffer, 256, format, args);
OutputDebugString(buffer);
va_end(args);
}
#endif

View File

@ -1,6 +1,7 @@
#include "mxstreamcontroller.h" #include "mxstreamcontroller.h"
#include "mxautolock.h" #include "mxautolock.h"
#include "mxdebug.h"
#include "mxdsmultiaction.h" #include "mxdsmultiaction.h"
#include "mxdsstreamingaction.h" #include "mxdsstreamingaction.h"
#include "mxmisc.h" #include "mxmisc.h"
@ -41,8 +42,10 @@ MxStreamController::MxStreamController()
} }
// FUNCTION: LEGO1 0x100c1290 // FUNCTION: LEGO1 0x100c1290
// FUNCTION: BETA10 0x1014e354
MxStreamController::~MxStreamController() MxStreamController::~MxStreamController()
{ {
MxTrace("Destroy %s controller.\n", m_atom.GetInternal());
AUTOLOCK(m_criticalSection); AUTOLOCK(m_criticalSection);
MxDSSubscriber* subscriber; MxDSSubscriber* subscriber;
@ -313,19 +316,27 @@ MxNextActionDataStart* MxStreamController::FindNextActionDataStartFromStreamingA
} }
// FUNCTION: LEGO1 0x100c20d0 // FUNCTION: LEGO1 0x100c20d0
MxBool MxStreamController::FUN_100c20d0(MxDSObject& p_obj) // FUNCTION: BETA10 0x1014f3b5
MxBool MxStreamController::IsStoped(MxDSObject* p_obj)
{ {
if (m_subscriberList.Find(&p_obj)) { MxDSSubscriber* subscriber = m_subscriberList.Find(p_obj);
if (subscriber) {
MxTrace(
"Subscriber for action (stream %d, instance %d) from %s is still here.\n",
subscriber->GetObjectId(),
subscriber->GetUnknown48(),
GetAtom().GetInternal()
);
return FALSE; return FALSE;
} }
if (p_obj.IsA("MxDSMultiAction")) { if (p_obj->IsA("MxDSMultiAction")) {
MxDSActionList* actions = ((MxDSMultiAction&) p_obj).GetActionList(); MxDSActionListCursor cursor(((MxDSMultiAction*) p_obj)->GetActionList());
MxDSActionListCursor cursor(actions);
MxDSAction* action; MxDSAction* action;
while (cursor.Next(action)) { while (cursor.Next(action)) {
if (!FUN_100c20d0(*action)) { if (!IsStoped(action)) {
return FALSE; return FALSE;
} }
} }

View File

@ -1,11 +1,13 @@
#include "mxstreamer.h" #include "mxstreamer.h"
#include "mxdebug.h"
#include "mxdiskstreamcontroller.h" #include "mxdiskstreamcontroller.h"
#include "mxmisc.h" #include "mxmisc.h"
#include "mxnotificationmanager.h" #include "mxnotificationmanager.h"
#include "mxramstreamcontroller.h" #include "mxramstreamcontroller.h"
#include <algorithm> #include <algorithm>
#include <assert.h>
DECOMP_SIZE_ASSERT(MxStreamer, 0x2c); DECOMP_SIZE_ASSERT(MxStreamer, 0x2c);
DECOMP_SIZE_ASSERT(MxMemoryPool64, 0x0c); DECOMP_SIZE_ASSERT(MxMemoryPool64, 0x0c);
@ -14,12 +16,14 @@ DECOMP_SIZE_ASSERT(MxBitset<22>, 0x04);
DECOMP_SIZE_ASSERT(MxBitset<2>, 0x04); DECOMP_SIZE_ASSERT(MxBitset<2>, 0x04);
// FUNCTION: LEGO1 0x100b8f00 // FUNCTION: LEGO1 0x100b8f00
// FUNCTION: BETA10 0x10145150
MxStreamer::MxStreamer() MxStreamer::MxStreamer()
{ {
NotificationManager()->Register(this); NotificationManager()->Register(this);
} }
// FUNCTION: LEGO1 0x100b9190 // FUNCTION: LEGO1 0x100b9190
// FUNCTION: BETA10 0x10145220
MxResult MxStreamer::Create() MxResult MxStreamer::Create()
{ {
if (m_pool64.Allocate() || m_pool128.Allocate()) { if (m_pool64.Allocate() || m_pool128.Allocate()) {
@ -30,42 +34,66 @@ MxResult MxStreamer::Create()
} }
// FUNCTION: LEGO1 0x100b91d0 // FUNCTION: LEGO1 0x100b91d0
// FUNCTION: BETA10 0x10145268
MxStreamer::~MxStreamer() MxStreamer::~MxStreamer()
{ {
while (!m_openStreams.empty()) { while (!m_openStreams.empty()) {
MxStreamController* c = m_openStreams.front(); MxStreamController* controller = m_openStreams.front();
#ifdef COMPAT_MODE
{
MxDSAction action;
assert(controller->IsStoped(&action));
}
#else
assert(controller->IsStoped(&MxDSAction()));
#endif
m_openStreams.pop_front(); m_openStreams.pop_front();
delete c; delete controller;
} }
NotificationManager()->Unregister(this); NotificationManager()->Unregister(this);
} }
// FUNCTION: LEGO1 0x100b92c0 // FUNCTION: LEGO1 0x100b92c0
// FUNCTION: BETA10 0x1014542d
MxStreamController* MxStreamer::Open(const char* p_name, MxU16 p_lookupType) MxStreamController* MxStreamer::Open(const char* p_name, MxU16 p_lookupType)
{ {
MxTrace("Open %s as %s controller\n", p_name, !p_lookupType ? "disk" : "RAM");
MxTrace("Heap before: %d\n", DebugHeapState());
MxStreamController* stream = NULL; MxStreamController* stream = NULL;
if (!GetOpenStream(p_name)) { if (GetOpenStream(p_name)) {
switch (p_lookupType) { goto done;
case e_diskStream:
stream = new MxDiskStreamController();
break;
case e_RAMStream:
stream = new MxRAMStreamController();
break;
}
if (stream && (stream->Open(p_name) != SUCCESS || AddStreamControllerToOpenList(stream) != SUCCESS)) {
delete stream;
stream = NULL;
}
} }
switch (p_lookupType) {
case e_diskStream:
stream = new MxDiskStreamController();
break;
case e_RAMStream:
stream = new MxRAMStreamController();
break;
}
if (stream == NULL) {
goto done;
}
if (stream->Open(p_name) != SUCCESS || AddStreamControllerToOpenList(stream) != SUCCESS) {
delete stream;
stream = NULL;
}
done:
MxTrace("Heap after: %d\n", DebugHeapState());
return stream; return stream;
} }
// FUNCTION: LEGO1 0x100b9570 // FUNCTION: LEGO1 0x100b9570
// FUNCTION: BETA10 0x10145638
MxLong MxStreamer::Close(const char* p_name) MxLong MxStreamer::Close(const char* p_name)
{ {
MxDSAction ds; MxDSAction ds;
@ -77,7 +105,7 @@ MxLong MxStreamer::Close(const char* p_name)
if (!p_name || !strcmp(p_name, c->GetAtom().GetInternal())) { if (!p_name || !strcmp(p_name, c->GetAtom().GetInternal())) {
m_openStreams.erase(it); m_openStreams.erase(it);
if (c->FUN_100c20d0(ds)) { if (c->IsStoped(&ds)) {
delete c; delete c;
} }
else { else {
@ -98,6 +126,7 @@ MxNotificationParam* MxStreamerNotification::Clone() const
} }
// FUNCTION: LEGO1 0x100b9870 // FUNCTION: LEGO1 0x100b9870
// FUNCTION: BETA10 0x1014584b
MxStreamController* MxStreamer::GetOpenStream(const char* p_name) MxStreamController* MxStreamer::GetOpenStream(const char* p_name)
{ {
for (list<MxStreamController*>::iterator it = m_openStreams.begin(); it != m_openStreams.end(); it++) { for (list<MxStreamController*>::iterator it = m_openStreams.begin(); it != m_openStreams.end(); it++) {
@ -178,7 +207,7 @@ MxBool MxStreamer::FUN_100b9b30(MxDSObject& p_dsObject)
{ {
MxStreamController* controller = GetOpenStream(p_dsObject.GetAtomId().GetInternal()); MxStreamController* controller = GetOpenStream(p_dsObject.GetAtomId().GetInternal());
if (controller) { if (controller) {
return controller->FUN_100c20d0(p_dsObject); return controller->IsStoped(&p_dsObject);
} }
return TRUE; return TRUE;
} }
@ -193,7 +222,7 @@ MxLong MxStreamer::Notify(MxParam& p_param)
MxStreamController* c = static_cast<MxStreamerNotification&>(p_param).GetController(); MxStreamController* c = static_cast<MxStreamerNotification&>(p_param).GetController();
if (c->FUN_100c20d0(ds)) { if (c->IsStoped(&ds)) {
delete c; delete c;
} }
else { else {