2023-06-29 04:10:08 -04:00
|
|
|
#include "radio.h"
|
|
|
|
|
2023-12-14 18:24:21 -05:00
|
|
|
#include "legocontrolmanager.h"
|
|
|
|
#include "legogamestate.h"
|
|
|
|
#include "legoomni.h"
|
2024-01-30 13:57:20 -05:00
|
|
|
#include "mxbackgroundaudiomanager.h"
|
|
|
|
#include "mxcontrolpresenter.h"
|
2023-12-14 18:24:21 -05:00
|
|
|
#include "mxnotificationmanager.h"
|
|
|
|
|
|
|
|
DECOMP_SIZE_ASSERT(Radio, 0x10);
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1002c850
|
|
|
|
Radio::Radio()
|
|
|
|
{
|
|
|
|
NotificationManager()->Register(this);
|
|
|
|
ControlManager()->Register(this);
|
|
|
|
|
2024-01-29 16:17:17 -05:00
|
|
|
m_unk0x0c = TRUE;
|
2023-12-14 18:24:21 -05:00
|
|
|
CreateRadioState();
|
|
|
|
}
|
|
|
|
|
2024-01-30 13:57:20 -05:00
|
|
|
// FUNCTION: LEGO1 0x1002c990
|
2023-06-29 04:10:08 -04:00
|
|
|
Radio::~Radio()
|
|
|
|
{
|
2024-01-30 13:57:20 -05:00
|
|
|
if (m_state->IsActive()) {
|
|
|
|
BackgroundAudioManager()->Stop();
|
|
|
|
m_state->SetActive(FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
ControlManager()->Unregister(this);
|
|
|
|
NotificationManager()->Unregister(this);
|
2023-10-25 14:51:59 -04:00
|
|
|
}
|
2023-12-14 18:24:21 -05:00
|
|
|
|
2024-01-30 13:57:20 -05:00
|
|
|
// FUNCTION: LEGO1 0x1002ca30
|
2024-01-20 18:04:46 -05:00
|
|
|
MxLong Radio::Notify(MxParam& p_param)
|
|
|
|
{
|
2024-01-30 13:57:20 -05:00
|
|
|
MxLong result = 0;
|
|
|
|
|
|
|
|
if (m_unk0x0c) {
|
|
|
|
switch (((MxNotificationParam&) p_param).GetType()) {
|
|
|
|
case c_notificationEndAction:
|
|
|
|
result = HandleEndAction((MxEndActionNotificationParam&) p_param);
|
|
|
|
break;
|
2024-01-31 09:47:15 -05:00
|
|
|
case c_notificationClick:
|
|
|
|
result = HandleClick((LegoControlManagerEvent&) p_param);
|
2024-01-30 13:57:20 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1002ca70
|
|
|
|
void Radio::Play()
|
|
|
|
{
|
|
|
|
if (!m_state->IsActive()) {
|
|
|
|
GetCurrentWorld();
|
|
|
|
|
|
|
|
MxDSAction action;
|
|
|
|
action.SetObjectId(m_state->FUN_1002d090());
|
|
|
|
action.SetAtomId(*g_jukeboxScript);
|
|
|
|
action.SetLoopCount(1);
|
|
|
|
|
|
|
|
m_bgAudioPreviouslyEnabled = BackgroundAudioManager()->GetMusicEnabled();
|
|
|
|
if (!m_bgAudioPreviouslyEnabled) {
|
|
|
|
BackgroundAudioManager()->Enable(TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
BackgroundAudioManager()->PlayMusic(action, 3, 4);
|
|
|
|
m_state->SetActive(TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1002cb70
|
|
|
|
void Radio::Stop()
|
|
|
|
{
|
|
|
|
if (m_state->IsActive()) {
|
|
|
|
LegoWorld* world = GetCurrentWorld();
|
|
|
|
|
|
|
|
MxControlPresenter* presenter = (MxControlPresenter*) world->Find(world->GetAtom(), 18);
|
|
|
|
|
|
|
|
if (presenter)
|
|
|
|
presenter->VTable0x6c(0);
|
|
|
|
|
|
|
|
BackgroundAudioManager()->Stop();
|
|
|
|
BackgroundAudioManager()->Enable(m_bgAudioPreviouslyEnabled);
|
|
|
|
m_state->SetActive(FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1002cbc0
|
2024-01-31 09:47:15 -05:00
|
|
|
MxLong Radio::HandleClick(LegoControlManagerEvent& p_param)
|
2024-01-30 13:57:20 -05:00
|
|
|
{
|
|
|
|
MxDSAction action; // Unused
|
|
|
|
MxS32 objectId = p_param.GetClickedObjectId();
|
|
|
|
|
|
|
|
if (objectId == 18) {
|
|
|
|
if (m_state->IsActive()) {
|
|
|
|
Stop();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Play();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GetCurrentWorld()) {
|
|
|
|
#ifdef COMPAT_MODE
|
|
|
|
MxNotificationParam param(c_notificationEndAction, this);
|
|
|
|
GetCurrentWorld()->Notify(param);
|
|
|
|
#else
|
|
|
|
GetCurrentWorld()->Notify(MxNotificationParam(c_notificationType0, this));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1002ccc0
|
|
|
|
MxLong Radio::HandleEndAction(MxEndActionNotificationParam& p_param)
|
|
|
|
{
|
|
|
|
if (m_state->IsActive() &&
|
|
|
|
m_state->FUN_1002d0c0(p_param.GetAction()->GetAtomId(), p_param.GetAction()->GetObjectId())) {
|
|
|
|
|
|
|
|
MxDSAction action;
|
|
|
|
action.SetAtomId(*g_jukeboxScript);
|
|
|
|
action.SetObjectId(m_state->FUN_1002d090());
|
|
|
|
action.SetLoopCount(1);
|
|
|
|
|
|
|
|
BackgroundAudioManager()->PlayMusic(action, 3, 4);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2024-01-20 18:04:46 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-01-21 12:38:22 -05:00
|
|
|
// FUNCTION: LEGO1 0x1002cdc0
|
|
|
|
void Radio::Initialize(MxBool p_und)
|
|
|
|
{
|
2024-01-29 16:17:17 -05:00
|
|
|
if (m_unk0x0c != p_und) {
|
|
|
|
m_unk0x0c = p_und;
|
2024-01-21 12:38:22 -05:00
|
|
|
CreateRadioState();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-14 18:24:21 -05:00
|
|
|
// FUNCTION: LEGO1 0x1002cde0
|
|
|
|
void Radio::CreateRadioState()
|
|
|
|
{
|
|
|
|
LegoGameState* gameState = GameState();
|
|
|
|
RadioState* state = (RadioState*) gameState->GetState("RadioState");
|
|
|
|
if (state == NULL) {
|
|
|
|
state = (RadioState*) gameState->CreateState("RadioState");
|
|
|
|
}
|
|
|
|
|
|
|
|
m_state = state;
|
|
|
|
}
|