2023-06-29 04:10:08 -04:00
|
|
|
#include "isle.h"
|
|
|
|
|
2023-12-15 18:11:34 -05:00
|
|
|
#include "act1state.h"
|
2023-12-16 11:01:22 -05:00
|
|
|
#include "ambulance.h"
|
2023-12-15 17:29:32 -05:00
|
|
|
#include "islepathactor.h"
|
2023-12-15 18:11:34 -05:00
|
|
|
#include "legocontrolmanager.h"
|
|
|
|
#include "legogamestate.h"
|
|
|
|
#include "legoinputmanager.h"
|
2023-12-14 18:24:21 -05:00
|
|
|
#include "legoomni.h"
|
2023-12-15 18:11:34 -05:00
|
|
|
#include "legoutil.h"
|
2023-12-14 18:24:21 -05:00
|
|
|
#include "mxnotificationmanager.h"
|
2023-12-15 18:11:34 -05:00
|
|
|
#include "mxtransitionmanager.h"
|
2023-12-16 11:01:22 -05:00
|
|
|
#include "pizza.h"
|
|
|
|
#include "towtrack.h"
|
2023-12-14 18:24:21 -05:00
|
|
|
|
|
|
|
DECOMP_SIZE_ASSERT(Isle, 0x140);
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x10030820
|
2023-06-29 04:10:08 -04:00
|
|
|
Isle::Isle()
|
|
|
|
{
|
2023-12-15 18:11:34 -05:00
|
|
|
m_pizza = NULL;
|
|
|
|
m_pizzeria = NULL;
|
|
|
|
m_towtrack = NULL;
|
|
|
|
m_ambulance = NULL;
|
|
|
|
m_jukebox = NULL;
|
|
|
|
m_helicopter = NULL;
|
|
|
|
m_bike = NULL;
|
|
|
|
m_dunebuggy = NULL;
|
2024-01-14 17:00:03 -05:00
|
|
|
m_motocycle = NULL;
|
2023-12-15 18:11:34 -05:00
|
|
|
m_skateboard = NULL;
|
|
|
|
m_racecar = NULL;
|
|
|
|
m_jetski = NULL;
|
|
|
|
m_act1state = 0;
|
2023-12-14 18:24:21 -05:00
|
|
|
m_unk0x13c = 0;
|
|
|
|
|
|
|
|
NotificationManager()->Register(this);
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|
2023-12-15 18:11:34 -05:00
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x10030a50
|
|
|
|
Isle::~Isle()
|
|
|
|
{
|
|
|
|
TransitionManager()->SetWaitIndicator(NULL);
|
|
|
|
ControlManager()->Unregister(this);
|
|
|
|
|
|
|
|
if (InputManager()->GetWorld() == this) {
|
|
|
|
InputManager()->ClearWorld();
|
|
|
|
}
|
|
|
|
|
2024-02-02 12:18:46 -05:00
|
|
|
if (CurrentVehicle() != NULL) {
|
|
|
|
VTable0x6c(CurrentVehicle());
|
2023-12-15 18:11:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
NotificationManager()->Unregister(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x10030b20
|
2024-01-13 15:00:11 -05:00
|
|
|
MxResult Isle::Create(MxDSAction& p_dsAction)
|
2023-12-15 18:11:34 -05:00
|
|
|
{
|
2024-02-10 11:37:22 -05:00
|
|
|
GameState()->FindLoadedAct();
|
2023-12-15 18:11:34 -05:00
|
|
|
|
2024-01-13 15:00:11 -05:00
|
|
|
MxResult result = LegoWorld::Create(p_dsAction);
|
2023-12-15 18:11:34 -05:00
|
|
|
if (result == SUCCESS) {
|
|
|
|
ControlManager()->Register(this);
|
|
|
|
InputManager()->SetWorld(this);
|
2024-02-10 13:17:07 -05:00
|
|
|
GameState()->StopArea(LegoGameState::e_previousArea);
|
2023-12-15 18:11:34 -05:00
|
|
|
|
2024-02-10 11:37:22 -05:00
|
|
|
switch (GameState()->GetLoadedAct()) {
|
|
|
|
case LegoGameState::e_act2:
|
2024-02-10 13:17:07 -05:00
|
|
|
GameState()->StopArea(LegoGameState::e_act2main);
|
2023-12-15 18:11:34 -05:00
|
|
|
break;
|
2024-02-10 11:37:22 -05:00
|
|
|
case LegoGameState::e_act3:
|
2024-02-10 13:17:07 -05:00
|
|
|
GameState()->StopArea(LegoGameState::e_act2main); // Looks like a bug
|
2023-12-15 18:11:34 -05:00
|
|
|
break;
|
2024-02-10 11:37:22 -05:00
|
|
|
case LegoGameState::e_actNotFound:
|
2023-12-15 18:11:34 -05:00
|
|
|
m_unk0x13c = 2;
|
|
|
|
}
|
|
|
|
|
2024-02-10 13:17:07 -05:00
|
|
|
if (GameState()->GetCurrentArea() == LegoGameState::e_isle) {
|
|
|
|
GameState()->SetCurrentArea(LegoGameState::e_noArea);
|
2023-12-15 18:11:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
LegoGameState* gameState = GameState();
|
|
|
|
Act1State* state = (Act1State*) gameState->GetState("Act1State");
|
|
|
|
if (state == NULL) {
|
|
|
|
state = (Act1State*) gameState->CreateState("Act1State");
|
|
|
|
}
|
|
|
|
m_act1state = state;
|
|
|
|
|
|
|
|
FUN_1003ef00(TRUE);
|
|
|
|
GameState()->SetDirty(TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-12-16 11:01:22 -05:00
|
|
|
// FUNCTION: LEGO1 0x10030c10
|
2023-12-15 18:11:34 -05:00
|
|
|
MxLong Isle::Notify(MxParam& p_param)
|
|
|
|
{
|
2023-12-16 11:01:22 -05:00
|
|
|
MxLong result = 0;
|
|
|
|
LegoWorld::Notify(p_param);
|
|
|
|
|
2024-01-12 17:27:07 -05:00
|
|
|
if (m_worldStarted) {
|
2023-12-16 11:01:22 -05:00
|
|
|
switch (((MxNotificationParam&) p_param).GetNotification()) {
|
|
|
|
case c_notificationEndAction:
|
|
|
|
result = StopAction(p_param);
|
|
|
|
break;
|
|
|
|
case c_notificationButtonUp:
|
|
|
|
case c_notificationButtonDown:
|
|
|
|
switch (m_act1state->GetUnknown18()) {
|
|
|
|
case 3:
|
|
|
|
result = m_pizza->Notify(p_param);
|
|
|
|
break;
|
|
|
|
case 10:
|
|
|
|
result = m_ambulance->Notify(p_param);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2024-01-31 09:47:15 -05:00
|
|
|
case c_notificationClick:
|
2023-12-16 11:01:22 -05:00
|
|
|
result = HandleType17Notification(p_param);
|
|
|
|
break;
|
2024-01-17 11:53:53 -05:00
|
|
|
case c_notificationType18:
|
2023-12-16 11:01:22 -05:00
|
|
|
switch (m_act1state->GetUnknown18()) {
|
|
|
|
case 4:
|
2024-02-02 12:18:46 -05:00
|
|
|
result = CurrentVehicle()->Notify(p_param);
|
2023-12-16 11:01:22 -05:00
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
result = m_towtrack->Notify(p_param);
|
|
|
|
break;
|
|
|
|
case 10:
|
|
|
|
result = m_ambulance->Notify(p_param);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2024-01-17 11:53:53 -05:00
|
|
|
case c_notificationType19:
|
2023-12-16 11:01:22 -05:00
|
|
|
result = HandleType19Notification(p_param);
|
|
|
|
break;
|
2024-01-17 11:53:53 -05:00
|
|
|
case c_notificationType20:
|
2024-02-02 12:18:46 -05:00
|
|
|
Enable(TRUE);
|
2023-12-16 11:01:22 -05:00
|
|
|
break;
|
2024-01-17 11:53:53 -05:00
|
|
|
case c_notificationTransitioned:
|
2023-12-16 11:01:22 -05:00
|
|
|
result = HandleTransitionEnd();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
// STUB: LEGO1 0x10030d90
|
|
|
|
MxLong Isle::StopAction(MxParam& p_param)
|
|
|
|
{
|
2023-12-15 18:11:34 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-01-13 15:42:09 -05:00
|
|
|
// FUNCTION: LEGO1 0x10030fc0
|
2024-01-27 15:18:35 -05:00
|
|
|
void Isle::ReadyWorld()
|
2023-12-15 18:11:34 -05:00
|
|
|
{
|
2024-01-27 15:18:35 -05:00
|
|
|
LegoWorld::ReadyWorld();
|
2024-01-13 15:42:09 -05:00
|
|
|
|
|
|
|
if (m_act1state->GetUnknown21()) {
|
2024-02-10 13:17:07 -05:00
|
|
|
GameState()->SwitchArea(LegoGameState::e_infomain);
|
2024-01-13 15:42:09 -05:00
|
|
|
m_act1state->SetUnknown18(0);
|
|
|
|
m_act1state->SetUnknown21(0);
|
|
|
|
}
|
2024-02-10 11:37:22 -05:00
|
|
|
else if (GameState()->GetLoadedAct()) {
|
2024-01-13 15:42:09 -05:00
|
|
|
FUN_1003ef00(TRUE);
|
|
|
|
FUN_10032620();
|
|
|
|
m_act1state->FUN_10034d00();
|
2024-01-17 15:48:48 -05:00
|
|
|
FUN_10015820(FALSE, LegoOmni::c_disableInput | LegoOmni::c_disable3d | LegoOmni::c_clearScreen);
|
2024-01-13 15:42:09 -05:00
|
|
|
}
|
2023-12-15 18:11:34 -05:00
|
|
|
}
|
|
|
|
|
2023-12-16 11:01:22 -05:00
|
|
|
// STUB: LGEO1 0x10031030
|
|
|
|
MxLong Isle::HandleType17Notification(MxParam& p_param)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// STUB: LEGO1 0x100315f0
|
|
|
|
MxLong Isle::HandleType19Notification(MxParam& p_param)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-12-15 18:11:34 -05:00
|
|
|
// STUB: LEGO1 0x10031820
|
2024-02-02 12:18:46 -05:00
|
|
|
void Isle::Enable(MxBool p_enable)
|
2023-12-15 18:11:34 -05:00
|
|
|
{
|
2024-02-02 12:18:46 -05:00
|
|
|
if (m_set0xd0.empty() == p_enable) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
LegoWorld::Enable(p_enable);
|
|
|
|
m_radio.Initialize(p_enable);
|
|
|
|
|
|
|
|
if (p_enable) {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (InputManager()->GetWorld() == this) {
|
|
|
|
InputManager()->ClearWorld();
|
|
|
|
}
|
|
|
|
}
|
2023-12-15 18:11:34 -05:00
|
|
|
}
|
|
|
|
|
2024-01-13 15:42:09 -05:00
|
|
|
// STUB: LEGO1 0x10032620
|
|
|
|
void Isle::FUN_10032620()
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
2023-12-17 17:45:33 -05:00
|
|
|
// STUB: LEGO1 0x100327a0
|
2023-12-16 11:01:22 -05:00
|
|
|
MxLong Isle::HandleTransitionEnd()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-12-15 18:11:34 -05:00
|
|
|
// FUNCTION: LEGO1 0x10032f10
|
2024-01-26 16:00:02 -05:00
|
|
|
void Isle::Add(MxCore* p_object)
|
2023-12-15 18:11:34 -05:00
|
|
|
{
|
2024-01-26 16:00:02 -05:00
|
|
|
LegoWorld::Add(p_object);
|
2023-12-15 18:11:34 -05:00
|
|
|
|
|
|
|
if (p_object->IsA("Pizza")) {
|
|
|
|
m_pizza = (Pizza*) p_object;
|
|
|
|
}
|
|
|
|
else if (p_object->IsA("Pizzeria")) {
|
|
|
|
m_pizzeria = (Pizzeria*) p_object;
|
|
|
|
}
|
|
|
|
else if (p_object->IsA("TowTrack")) {
|
|
|
|
m_towtrack = (TowTrack*) p_object;
|
|
|
|
}
|
|
|
|
else if (p_object->IsA("Ambulance")) {
|
|
|
|
m_ambulance = (Ambulance*) p_object;
|
|
|
|
}
|
|
|
|
else if (p_object->IsA("JukeBoxEntity")) {
|
|
|
|
m_jukebox = (JukeBoxEntity*) p_object;
|
|
|
|
}
|
|
|
|
else if (p_object->IsA("Helicopter")) {
|
|
|
|
m_helicopter = (Helicopter*) p_object;
|
|
|
|
}
|
|
|
|
else if (p_object->IsA("Bike")) {
|
|
|
|
m_bike = (Bike*) p_object;
|
|
|
|
}
|
|
|
|
else if (p_object->IsA("DuneBuggy")) {
|
|
|
|
m_dunebuggy = (DuneBuggy*) p_object;
|
|
|
|
}
|
|
|
|
else if (p_object->IsA("Motorcycle")) {
|
2024-01-14 17:00:03 -05:00
|
|
|
m_motocycle = (Motocycle*) p_object;
|
2023-12-15 18:11:34 -05:00
|
|
|
}
|
|
|
|
else if (p_object->IsA("SkateBoard")) {
|
|
|
|
m_skateboard = (SkateBoard*) p_object;
|
|
|
|
}
|
|
|
|
else if (p_object->IsA("Jetski")) {
|
|
|
|
m_jetski = (Jetski*) p_object;
|
|
|
|
}
|
|
|
|
else if (p_object->IsA("RaceCar")) {
|
|
|
|
m_racecar = (RaceCar*) p_object;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x10033050
|
2023-12-15 17:29:32 -05:00
|
|
|
void Isle::VTable0x6c(IslePathActor* p_actor)
|
2023-12-15 18:11:34 -05:00
|
|
|
{
|
2024-01-26 16:00:02 -05:00
|
|
|
LegoWorld::Remove(p_actor);
|
2023-12-15 18:11:34 -05:00
|
|
|
|
2023-12-15 17:29:32 -05:00
|
|
|
if (p_actor->IsA("Helicopter")) {
|
2023-12-15 18:11:34 -05:00
|
|
|
m_helicopter = NULL;
|
|
|
|
}
|
2023-12-15 17:29:32 -05:00
|
|
|
else if (p_actor->IsA("DuneBuggy")) {
|
2023-12-15 18:11:34 -05:00
|
|
|
m_dunebuggy = NULL;
|
|
|
|
}
|
2023-12-15 17:29:32 -05:00
|
|
|
else if (p_actor->IsA("Jetski")) {
|
|
|
|
m_jetski = NULL;
|
2023-12-15 18:11:34 -05:00
|
|
|
}
|
2023-12-15 17:29:32 -05:00
|
|
|
else if (p_actor->IsA("RaceCar")) {
|
|
|
|
m_racecar = NULL;
|
2023-12-15 18:11:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// STUB: LEGO1 0x10033180
|
|
|
|
MxBool Isle::VTable0x64()
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
return FALSE;
|
|
|
|
}
|