2023-06-29 04:10:08 -04:00
|
|
|
#include "elevatorbottom.h"
|
|
|
|
|
2024-01-31 09:47:15 -05:00
|
|
|
#include "act1state.h"
|
2024-01-20 12:41:22 -05:00
|
|
|
#include "jukebox.h"
|
2024-01-14 16:58:00 -05:00
|
|
|
#include "legocontrolmanager.h"
|
2024-01-18 20:24:15 -05:00
|
|
|
#include "legogamestate.h"
|
2024-01-14 16:58:00 -05:00
|
|
|
#include "legoinputmanager.h"
|
|
|
|
#include "legoomni.h"
|
|
|
|
#include "mxnotificationmanager.h"
|
|
|
|
#include "mxomni.h"
|
2024-01-31 09:47:15 -05:00
|
|
|
#include "mxtransitionmanager.h"
|
2024-01-14 16:58:00 -05:00
|
|
|
|
2024-01-20 09:24:54 -05:00
|
|
|
DECOMP_SIZE_ASSERT(ElevatorBottom, 0xfc)
|
|
|
|
|
2024-01-31 09:47:15 -05:00
|
|
|
// STRING: LEGO1 0x100f0d34
|
|
|
|
// GLOBAL: LEGO1 0x100f3a44
|
2024-02-02 20:03:52 -05:00
|
|
|
const char* g_cameraLoc = "CAMERA_LOCATION";
|
2024-01-31 09:47:15 -05:00
|
|
|
|
2024-01-14 16:58:00 -05:00
|
|
|
// FUNCTION: LEGO1 0x10017e90
|
2023-06-29 04:10:08 -04:00
|
|
|
ElevatorBottom::ElevatorBottom()
|
|
|
|
{
|
2024-01-14 16:58:00 -05:00
|
|
|
NotificationManager()->Register(this);
|
|
|
|
this->m_unk0xf8 = 0;
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|
|
|
|
|
2024-01-14 16:58:00 -05:00
|
|
|
// FUNCTION: LEGO1 0x10018060
|
2023-06-29 04:10:08 -04:00
|
|
|
ElevatorBottom::~ElevatorBottom()
|
|
|
|
{
|
2024-01-14 16:58:00 -05:00
|
|
|
if (InputManager()->GetWorld() == this) {
|
|
|
|
InputManager()->ClearWorld();
|
|
|
|
}
|
|
|
|
ControlManager()->Unregister(this);
|
|
|
|
NotificationManager()->Unregister(this);
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|
|
|
|
|
2024-01-18 20:24:15 -05:00
|
|
|
// FUNCTION: LEGO1 0x100180f0
|
|
|
|
MxResult ElevatorBottom::Create(MxDSAction& p_dsAction)
|
|
|
|
{
|
|
|
|
MxResult result = LegoWorld::Create(p_dsAction);
|
|
|
|
if (result == SUCCESS) {
|
|
|
|
InputManager()->SetWorld(this);
|
|
|
|
ControlManager()->Register(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
SetIsWorldActive(FALSE);
|
|
|
|
|
2024-01-31 07:34:36 -05:00
|
|
|
GameState()->SetCurrentArea(5);
|
|
|
|
GameState()->StopArea();
|
2024-01-18 20:24:15 -05:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2024-01-20 09:24:54 -05:00
|
|
|
// FUNCTION: LEGO1 0x10018150
|
2023-12-13 05:48:14 -05:00
|
|
|
MxLong ElevatorBottom::Notify(MxParam& p_param)
|
2023-06-29 04:10:08 -04:00
|
|
|
{
|
2024-01-20 09:24:54 -05:00
|
|
|
MxLong ret = 0;
|
|
|
|
LegoWorld::Notify(p_param);
|
|
|
|
|
|
|
|
if (m_worldStarted) {
|
|
|
|
switch (((MxNotificationParam&) p_param).GetType()) {
|
2024-01-31 09:47:15 -05:00
|
|
|
case c_notificationClick:
|
|
|
|
ret = HandleClick((LegoControlManagerEvent&) p_param);
|
2024-01-20 09:24:54 -05:00
|
|
|
break;
|
|
|
|
case c_notificationTransitioned:
|
2024-01-31 07:34:36 -05:00
|
|
|
GameState()->SwitchArea(m_unk0xf8);
|
2024-01-20 09:24:54 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2024-01-18 20:24:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x100181b0
|
2024-01-27 15:18:35 -05:00
|
|
|
void ElevatorBottom::ReadyWorld()
|
2024-01-18 20:24:15 -05:00
|
|
|
{
|
2024-01-27 15:18:35 -05:00
|
|
|
LegoWorld::ReadyWorld();
|
2024-01-20 12:41:22 -05:00
|
|
|
PlayMusic(JukeBox::e_informationCenter);
|
2024-01-18 20:24:15 -05:00
|
|
|
FUN_10015820(FALSE, LegoOmni::c_disableInput | LegoOmni::c_disable3d | LegoOmni::c_clearScreen);
|
|
|
|
}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2024-01-31 09:47:15 -05:00
|
|
|
// FUNCTION: LEGO1 0x100181d0
|
|
|
|
MxLong ElevatorBottom::HandleClick(LegoControlManagerEvent& p_param)
|
2024-01-20 09:24:54 -05:00
|
|
|
{
|
2024-01-31 09:47:15 -05:00
|
|
|
MxLong result = 0;
|
|
|
|
|
|
|
|
if (p_param.GetUnknown0x28() == 1) {
|
|
|
|
switch (p_param.GetClickedObjectId()) {
|
|
|
|
case 1:
|
|
|
|
m_unk0xf8 = 3;
|
|
|
|
TransitionManager()->StartTransition(MxTransitionManager::e_pixelation, 50, FALSE, FALSE);
|
|
|
|
result = 1;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
m_unk0xf8 = 2;
|
|
|
|
TransitionManager()->StartTransition(MxTransitionManager::e_pixelation, 50, FALSE, FALSE);
|
|
|
|
result = 1;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
LegoGameState* gs = GameState();
|
|
|
|
Act1State* state = (Act1State*) gs->GetState("Act1State");
|
|
|
|
|
|
|
|
if (state == NULL) {
|
|
|
|
state = (Act1State*) gs->CreateState("Act1State");
|
|
|
|
}
|
|
|
|
|
|
|
|
state->SetUnknown1c(1);
|
|
|
|
m_unk0xf8 = 6;
|
|
|
|
TransitionManager()->StartTransition(MxTransitionManager::e_pixelation, 50, FALSE, FALSE);
|
|
|
|
VariableTable()->SetVariable(g_cameraLoc, "LCAMZI1,90");
|
|
|
|
result = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2024-01-20 09:24:54 -05:00
|
|
|
}
|
|
|
|
|
2024-01-18 20:24:15 -05:00
|
|
|
// FUNCTION: LEGO1 0x100182c0
|
2024-02-02 12:18:46 -05:00
|
|
|
void ElevatorBottom::Enable(MxBool p_enable)
|
2024-01-18 20:24:15 -05:00
|
|
|
{
|
2024-02-02 12:18:46 -05:00
|
|
|
LegoWorld::Enable(p_enable);
|
2024-01-18 20:24:15 -05:00
|
|
|
|
2024-02-02 12:18:46 -05:00
|
|
|
if (p_enable) {
|
2024-01-18 20:24:15 -05:00
|
|
|
InputManager()->SetWorld(this);
|
|
|
|
SetIsWorldActive(FALSE);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (InputManager()->GetWorld() == this) {
|
|
|
|
InputManager()->ClearWorld();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x10018310
|
|
|
|
MxBool ElevatorBottom::VTable0x64()
|
|
|
|
{
|
|
|
|
DeleteObjects(&m_atom, 500, 999);
|
|
|
|
m_unk0xf8 = 2;
|
|
|
|
return TRUE;
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|