2023-06-29 04:10:08 -04:00
|
|
|
#include "police.h"
|
|
|
|
|
2024-01-20 15:49:56 -05:00
|
|
|
#include "jukebox.h"
|
2024-03-17 13:01:47 -04:00
|
|
|
#include "jukebox_actions.h"
|
2024-01-20 15:49:56 -05:00
|
|
|
#include "legocontrolmanager.h"
|
|
|
|
#include "legogamestate.h"
|
|
|
|
#include "legoinputmanager.h"
|
2024-05-04 08:06:32 -04:00
|
|
|
#include "legomain.h"
|
2024-03-09 15:07:52 -05:00
|
|
|
#include "misc.h"
|
2024-05-03 12:19:12 -04:00
|
|
|
#include "mxactionnotificationparam.h"
|
2024-02-16 09:53:17 -05:00
|
|
|
#include "mxbackgroundaudiomanager.h"
|
2024-03-09 15:07:52 -05:00
|
|
|
#include "mxmisc.h"
|
2024-01-20 15:49:56 -05:00
|
|
|
#include "mxnotificationmanager.h"
|
2024-02-16 09:53:17 -05:00
|
|
|
#include "mxtransitionmanager.h"
|
2024-03-17 13:01:47 -04:00
|
|
|
#include "police_actions.h"
|
2024-06-03 12:53:25 -04:00
|
|
|
#include "scripts.h"
|
2024-01-20 15:49:56 -05:00
|
|
|
|
|
|
|
DECOMP_SIZE_ASSERT(Police, 0x110)
|
2024-06-03 12:53:25 -04:00
|
|
|
DECOMP_SIZE_ASSERT(PoliceState, 0x10)
|
2024-01-20 15:49:56 -05:00
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1005e130
|
2023-06-29 04:10:08 -04:00
|
|
|
Police::Police()
|
|
|
|
{
|
2024-01-20 15:49:56 -05:00
|
|
|
m_policeState = NULL;
|
2024-03-13 13:17:20 -04:00
|
|
|
m_destLocation = LegoGameState::e_undefined;
|
2024-01-20 15:49:56 -05:00
|
|
|
NotificationManager()->Register(this);
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|
|
|
|
|
2024-02-03 16:30:00 -05:00
|
|
|
// FUNCTION: LEGO1 0x1005e1d0
|
2024-01-20 18:04:46 -05:00
|
|
|
MxBool Police::VTable0x5c()
|
|
|
|
{
|
2024-02-03 16:30:00 -05:00
|
|
|
return TRUE;
|
2024-01-20 18:04:46 -05:00
|
|
|
}
|
|
|
|
|
2024-01-20 15:49:56 -05:00
|
|
|
// FUNCTION: LEGO1 0x1005e320
|
2023-06-29 04:10:08 -04:00
|
|
|
Police::~Police()
|
|
|
|
{
|
2024-01-20 15:49:56 -05:00
|
|
|
if (InputManager()->GetWorld() == this) {
|
|
|
|
InputManager()->ClearWorld();
|
|
|
|
}
|
|
|
|
|
|
|
|
ControlManager()->Unregister(this);
|
|
|
|
InputManager()->UnRegister(this);
|
|
|
|
NotificationManager()->Unregister(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1005e3e0
|
|
|
|
MxResult Police::Create(MxDSAction& p_dsAction)
|
|
|
|
{
|
|
|
|
MxResult ret = LegoWorld::Create(p_dsAction);
|
|
|
|
if (ret == SUCCESS) {
|
|
|
|
InputManager()->SetWorld(this);
|
|
|
|
ControlManager()->Register(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
SetIsWorldActive(FALSE);
|
|
|
|
InputManager()->Register(this);
|
|
|
|
|
|
|
|
LegoGameState* gameState = GameState();
|
|
|
|
PoliceState* policeState = (PoliceState*) gameState->GetState("PoliceState");
|
|
|
|
if (!policeState) {
|
|
|
|
policeState = (PoliceState*) gameState->CreateState("PoliceState");
|
|
|
|
}
|
|
|
|
|
|
|
|
m_policeState = policeState;
|
2024-02-10 13:17:07 -05:00
|
|
|
GameState()->SetCurrentArea(LegoGameState::e_police);
|
|
|
|
GameState()->StopArea(LegoGameState::e_previousArea);
|
2024-01-20 15:49:56 -05:00
|
|
|
return ret;
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|
|
|
|
|
2024-02-03 16:30:00 -05:00
|
|
|
// FUNCTION: LEGO1 0x1005e480
|
2023-12-13 05:48:14 -05:00
|
|
|
MxLong Police::Notify(MxParam& p_param)
|
2023-06-29 04:10:08 -04:00
|
|
|
{
|
2024-02-03 16:30:00 -05:00
|
|
|
MxLong result = 0;
|
|
|
|
LegoWorld::Notify(p_param);
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2024-02-03 16:30:00 -05:00
|
|
|
if (m_worldStarted) {
|
|
|
|
switch (((MxNotificationParam&) p_param).GetNotification()) {
|
|
|
|
case c_notificationEndAction:
|
|
|
|
result = HandleEndAction((MxEndActionNotificationParam&) p_param);
|
|
|
|
break;
|
|
|
|
case c_notificationKeyPress:
|
|
|
|
result = HandleKeyPress(((LegoEventNotificationParam&) p_param));
|
|
|
|
break;
|
2024-05-30 09:54:24 -04:00
|
|
|
case c_notificationControl:
|
|
|
|
result = HandleControl((LegoControlManagerEvent&) p_param);
|
2024-02-03 16:30:00 -05:00
|
|
|
break;
|
|
|
|
case c_notificationTransitioned:
|
2024-03-13 13:17:20 -04:00
|
|
|
GameState()->SwitchArea(m_destLocation);
|
2024-02-03 16:30:00 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|
2024-01-20 15:49:56 -05:00
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1005e530
|
2024-01-27 15:18:35 -05:00
|
|
|
void Police::ReadyWorld()
|
2024-01-20 15:49:56 -05:00
|
|
|
{
|
2024-01-27 15:18:35 -05:00
|
|
|
LegoWorld::ReadyWorld();
|
2024-03-10 12:08:21 -04:00
|
|
|
PlayMusic(JukeboxScript::c_PoliceStation_Music);
|
2024-01-20 15:49:56 -05:00
|
|
|
FUN_10015820(FALSE, LegoOmni::c_disableInput | LegoOmni::c_disable3d | LegoOmni::c_clearScreen);
|
|
|
|
}
|
2024-01-20 18:04:46 -05:00
|
|
|
|
2024-02-16 09:53:17 -05:00
|
|
|
// FUNCTION: LEGO1 0x1005e550
|
2024-05-30 09:54:24 -04:00
|
|
|
MxLong Police::HandleControl(LegoControlManagerEvent& p_param)
|
2024-02-03 16:30:00 -05:00
|
|
|
{
|
2024-02-16 09:53:17 -05:00
|
|
|
if (p_param.GetUnknown0x28() == 1) {
|
|
|
|
switch (p_param.GetClickedObjectId()) {
|
2024-03-10 12:08:21 -04:00
|
|
|
case PoliceScript::c_LeftArrow_Ctl:
|
|
|
|
case PoliceScript::c_RightArrow_Ctl:
|
2024-02-16 09:53:17 -05:00
|
|
|
if (m_policeState->GetUnknown0x0c() == 1) {
|
2024-03-10 12:08:21 -04:00
|
|
|
DeleteObjects(&m_atom, PoliceScript::c_nps001ni_RunAnim, PoliceScript::c_nps002la_RunAnim);
|
2024-02-16 09:53:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
BackgroundAudioManager()->Stop();
|
2024-03-13 13:17:20 -04:00
|
|
|
m_destLocation = LegoGameState::Area::e_polidoor;
|
2024-03-11 04:57:58 -04:00
|
|
|
TransitionManager()->StartTransition(MxTransitionManager::e_mosaic, 50, FALSE, FALSE);
|
2024-02-16 09:53:17 -05:00
|
|
|
break;
|
2024-03-10 12:08:21 -04:00
|
|
|
case PoliceScript::c_Info_Ctl:
|
2024-02-16 09:53:17 -05:00
|
|
|
if (m_policeState->GetUnknown0x0c() == 1) {
|
2024-03-10 12:08:21 -04:00
|
|
|
DeleteObjects(&m_atom, PoliceScript::c_nps001ni_RunAnim, PoliceScript::c_nps002la_RunAnim);
|
2024-02-16 09:53:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
BackgroundAudioManager()->Stop();
|
2024-03-13 13:17:20 -04:00
|
|
|
m_destLocation = LegoGameState::Area::e_infomain;
|
2024-03-11 04:57:58 -04:00
|
|
|
TransitionManager()->StartTransition(MxTransitionManager::e_mosaic, 50, FALSE, FALSE);
|
2024-02-16 09:53:17 -05:00
|
|
|
break;
|
2024-03-10 12:08:21 -04:00
|
|
|
case PoliceScript::c_Door_Ctl:
|
2024-02-16 09:53:17 -05:00
|
|
|
if (m_policeState->GetUnknown0x0c() == 1) {
|
2024-03-10 12:08:21 -04:00
|
|
|
DeleteObjects(&m_atom, PoliceScript::c_nps001ni_RunAnim, PoliceScript::c_nps002la_RunAnim);
|
2024-02-16 09:53:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
BackgroundAudioManager()->Stop();
|
2024-03-17 13:01:47 -04:00
|
|
|
m_destLocation = LegoGameState::Area::e_copterbuild;
|
2024-03-11 04:57:58 -04:00
|
|
|
TransitionManager()->StartTransition(MxTransitionManager::e_mosaic, 50, FALSE, FALSE);
|
2024-02-16 09:53:17 -05:00
|
|
|
break;
|
2024-03-10 12:08:21 -04:00
|
|
|
case PoliceScript::c_Donut_Ctl:
|
2024-02-16 09:53:17 -05:00
|
|
|
m_policeState->FUN_1005ea40();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
2024-02-03 16:30:00 -05:00
|
|
|
}
|
|
|
|
|
2024-02-09 10:28:22 -05:00
|
|
|
// FUNCTION: LEGO1 0x1005e6a0
|
2024-02-03 16:30:00 -05:00
|
|
|
MxLong Police::HandleEndAction(MxEndActionNotificationParam& p_param)
|
|
|
|
{
|
2024-02-09 10:28:22 -05:00
|
|
|
MxDSAction* action = p_param.GetAction();
|
|
|
|
|
|
|
|
if (m_radio.Notify(p_param) == 0 && m_atom == action->GetAtomId()) {
|
|
|
|
if (m_policeState->GetUnknown0x0c() == 1) {
|
|
|
|
m_policeState->SetUnknown0x0c(0);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-02-03 16:30:00 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-02-04 17:40:51 -05:00
|
|
|
// FUNCTION: LEGO1 0x1005e6f0
|
2024-02-03 16:30:00 -05:00
|
|
|
MxLong Police::HandleKeyPress(LegoEventNotificationParam& p_param)
|
|
|
|
{
|
2024-02-04 17:40:51 -05:00
|
|
|
MxLong result = 0;
|
|
|
|
|
2024-05-31 22:46:05 -04:00
|
|
|
if (p_param.GetKey() == VK_SPACE && m_policeState->GetUnknown0x0c() == 1) {
|
2024-03-10 12:08:21 -04:00
|
|
|
DeleteObjects(&m_atom, PoliceScript::c_nps001ni_RunAnim, PoliceScript::c_nps002la_RunAnim);
|
2024-02-04 17:40:51 -05:00
|
|
|
m_policeState->SetUnknown0x0c(0);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2024-02-03 16:30:00 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-02-04 17:40:51 -05:00
|
|
|
// FUNCTION: LEGO1 0x1005e740
|
2024-02-02 12:18:46 -05:00
|
|
|
void Police::Enable(MxBool p_enable)
|
2024-01-20 18:04:46 -05:00
|
|
|
{
|
2024-02-04 17:40:51 -05:00
|
|
|
LegoWorld::Enable(p_enable);
|
|
|
|
|
|
|
|
if (p_enable) {
|
|
|
|
InputManager()->SetWorld(this);
|
|
|
|
SetIsWorldActive(FALSE);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (InputManager()->GetWorld() == this) {
|
|
|
|
InputManager()->ClearWorld();
|
|
|
|
}
|
|
|
|
}
|
2024-01-20 18:04:46 -05:00
|
|
|
}
|
|
|
|
|
2024-02-04 17:40:51 -05:00
|
|
|
// FUNCTION: LEGO1 0x1005e790
|
2024-05-24 20:41:57 -04:00
|
|
|
MxBool Police::Escape()
|
2024-01-20 18:04:46 -05:00
|
|
|
{
|
2024-03-10 12:08:21 -04:00
|
|
|
DeleteObjects(&m_atom, PoliceScript::c_nps001ni_RunAnim, 510);
|
2024-03-13 13:17:20 -04:00
|
|
|
m_destLocation = LegoGameState::e_infomain;
|
2024-02-04 17:40:51 -05:00
|
|
|
return TRUE;
|
2024-01-20 18:04:46 -05:00
|
|
|
}
|
2024-06-03 12:53:25 -04:00
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1005e7c0
|
|
|
|
PoliceState::PoliceState()
|
|
|
|
{
|
|
|
|
m_unk0x0c = 0;
|
|
|
|
m_policeScript = (rand() % 2 == 0) ? PoliceScript::c_nps002la_RunAnim : PoliceScript::c_nps001ni_RunAnim;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1005e990
|
|
|
|
MxResult PoliceState::Serialize(LegoFile* p_legoFile)
|
|
|
|
{
|
|
|
|
LegoState::Serialize(p_legoFile);
|
|
|
|
|
|
|
|
if (p_legoFile->IsReadMode()) {
|
|
|
|
p_legoFile->Read(&m_policeScript, sizeof(m_policeScript));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
PoliceScript::Script policeScript = m_policeScript;
|
|
|
|
p_legoFile->Write(&policeScript, sizeof(m_policeScript));
|
|
|
|
}
|
|
|
|
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1005ea40
|
|
|
|
void PoliceState::FUN_1005ea40()
|
|
|
|
{
|
|
|
|
PoliceScript::Script policeScript;
|
|
|
|
|
|
|
|
if (m_unk0x0c == 1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (CurrentActor()->GetActorId()) {
|
|
|
|
case 4:
|
|
|
|
policeScript = PoliceScript::c_nps002la_RunAnim;
|
|
|
|
m_policeScript = policeScript;
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
policeScript = PoliceScript::c_nps001ni_RunAnim;
|
|
|
|
m_policeScript = policeScript;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
policeScript = m_policeScript;
|
|
|
|
m_policeScript = policeScript == PoliceScript::c_nps002la_RunAnim ? PoliceScript::c_nps001ni_RunAnim
|
|
|
|
: PoliceScript::c_nps002la_RunAnim;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
MxDSAction action;
|
|
|
|
action.SetObjectId(policeScript);
|
|
|
|
action.SetAtomId(*g_policeScript);
|
|
|
|
Start(&action);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_unk0x0c = 1;
|
|
|
|
}
|