2023-06-29 04:10:08 -04:00
|
|
|
#include "police.h"
|
|
|
|
|
2024-01-20 15:49:56 -05:00
|
|
|
#include "jukebox.h"
|
|
|
|
#include "legocontrolmanager.h"
|
|
|
|
#include "legogamestate.h"
|
|
|
|
#include "legoinputmanager.h"
|
|
|
|
#include "legoomni.h"
|
|
|
|
#include "mxnotificationmanager.h"
|
|
|
|
|
|
|
|
DECOMP_SIZE_ASSERT(Police, 0x110)
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1005e130
|
2023-06-29 04:10:08 -04:00
|
|
|
Police::Police()
|
|
|
|
{
|
2024-01-20 15:49:56 -05:00
|
|
|
m_policeState = NULL;
|
|
|
|
m_unk0x10c = 0;
|
|
|
|
NotificationManager()->Register(this);
|
2023-06-29 04:10:08 -04: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;
|
|
|
|
GameState()->SetUnknown424(0x22);
|
|
|
|
GameState()->FUN_1003a720(0);
|
|
|
|
return ret;
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// STUB: LEGO1 0x1005e480
|
2023-12-13 05:48:14 -05:00
|
|
|
MxLong Police::Notify(MxParam& p_param)
|
2023-06-29 04:10:08 -04:00
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
// TODO
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
return 0;
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|
2024-01-20 15:49:56 -05:00
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1005e530
|
|
|
|
void Police::VTable0x50()
|
|
|
|
{
|
|
|
|
LegoWorld::VTable0x50();
|
|
|
|
PlayMusic(JukeBox::e_policeStation);
|
|
|
|
FUN_10015820(FALSE, LegoOmni::c_disableInput | LegoOmni::c_disable3d | LegoOmni::c_clearScreen);
|
|
|
|
}
|