2023-06-29 04:10:08 -04:00
|
|
|
#include "ambulance.h"
|
|
|
|
|
2023-09-10 08:01:39 -04:00
|
|
|
#include "decomp.h"
|
2024-06-08 17:40:36 -04:00
|
|
|
#include "isle_actions.h"
|
2024-06-11 13:12:02 -04:00
|
|
|
#include "legoanimationmanager.h"
|
2024-03-24 17:28:44 -04:00
|
|
|
#include "legocontrolmanager.h"
|
|
|
|
#include "legogamestate.h"
|
2024-06-08 17:40:36 -04:00
|
|
|
#include "legoutils.h"
|
2024-03-24 17:28:44 -04:00
|
|
|
#include "legovariables.h"
|
2024-05-03 12:19:12 -04:00
|
|
|
#include "legoworld.h"
|
2024-03-24 17:28:44 -04:00
|
|
|
#include "misc.h"
|
2024-06-11 13:12:02 -04:00
|
|
|
#include "mxactionnotificationparam.h"
|
|
|
|
#include "mxbackgroundaudiomanager.h"
|
2024-03-24 17:28:44 -04:00
|
|
|
#include "mxmisc.h"
|
|
|
|
#include "mxticklemanager.h"
|
|
|
|
#include "mxtimer.h"
|
2024-05-03 12:19:12 -04:00
|
|
|
#include "mxvariabletable.h"
|
2024-05-04 08:06:32 -04:00
|
|
|
#include "scripts.h"
|
2023-09-10 08:01:39 -04:00
|
|
|
|
2024-03-22 21:30:58 -04:00
|
|
|
DECOMP_SIZE_ASSERT(Ambulance, 0x184)
|
2024-06-03 12:53:25 -04:00
|
|
|
DECOMP_SIZE_ASSERT(AmbulanceMissionState, 0x24)
|
2023-09-10 08:01:39 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x10035ee0
|
2024-06-06 12:19:43 -04:00
|
|
|
// FUNCTION: BETA10 0x10022820
|
2023-06-29 04:10:08 -04:00
|
|
|
Ambulance::Ambulance()
|
|
|
|
{
|
2024-06-06 12:19:43 -04:00
|
|
|
m_maxLinearVel = 40.0;
|
|
|
|
m_state = NULL;
|
2024-05-24 14:07:36 -04:00
|
|
|
m_unk0x168 = 0;
|
|
|
|
m_unk0x16a = -1;
|
|
|
|
m_unk0x16c = 0;
|
|
|
|
m_unk0x16e = 0;
|
|
|
|
m_unk0x170 = 0;
|
2024-06-11 13:12:02 -04:00
|
|
|
m_lastAction = IsleScript::c_noneIsle;
|
2024-05-24 14:07:36 -04:00
|
|
|
m_unk0x172 = 0;
|
2024-06-11 13:12:02 -04:00
|
|
|
m_lastAnimation = IsleScript::c_noneIsle;
|
2024-05-24 14:07:36 -04:00
|
|
|
m_unk0x17c = 1.0;
|
2023-10-25 14:51:59 -04:00
|
|
|
}
|
2024-01-20 18:04:46 -05:00
|
|
|
|
2024-03-24 17:28:44 -04:00
|
|
|
// FUNCTION: LEGO1 0x10035f90
|
2024-01-20 18:04:46 -05:00
|
|
|
void Ambulance::Destroy(MxBool p_fromDestructor)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2024-03-24 17:28:44 -04:00
|
|
|
// FUNCTION: LEGO1 0x10036150
|
2024-06-06 12:19:43 -04:00
|
|
|
// FUNCTION: BETA10 0x100228fe
|
2024-03-24 17:28:44 -04:00
|
|
|
Ambulance::~Ambulance()
|
|
|
|
{
|
|
|
|
ControlManager()->Unregister(this);
|
|
|
|
TickleManager()->UnregisterClient(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x100361d0
|
2024-06-06 12:19:43 -04:00
|
|
|
// FUNCTION: BETA10 0x10022993
|
2024-01-20 18:04:46 -05:00
|
|
|
MxResult Ambulance::Create(MxDSAction& p_dsAction)
|
|
|
|
{
|
2024-03-24 17:28:44 -04:00
|
|
|
MxResult result = IslePathActor::Create(p_dsAction);
|
|
|
|
|
|
|
|
if (result == SUCCESS) {
|
|
|
|
m_world = CurrentWorld();
|
|
|
|
|
|
|
|
if (m_world) {
|
|
|
|
m_world->Add(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_state = (AmbulanceMissionState*) GameState()->GetState("AmbulanceMissionState");
|
|
|
|
if (!m_state) {
|
|
|
|
m_state = new AmbulanceMissionState();
|
2024-05-24 14:44:09 -04:00
|
|
|
m_state->m_unk0x08 = 0;
|
2024-03-24 17:28:44 -04:00
|
|
|
GameState()->RegisterState(m_state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
VariableTable()->SetVariable(g_varAMBULFUEL, "1.0");
|
|
|
|
m_unk0x17c = 1.0;
|
|
|
|
m_time = Timer()->GetTime();
|
|
|
|
return result;
|
2024-01-20 18:04:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// STUB: LEGO1 0x10036300
|
|
|
|
void Ambulance::VTable0x70(float p_float)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
2024-05-24 14:07:36 -04:00
|
|
|
// FUNCTION: LEGO1 0x100363f0
|
2024-06-06 12:19:43 -04:00
|
|
|
// FUNCTION: BETA10 0x10022b2a
|
2024-05-24 14:07:36 -04:00
|
|
|
void Ambulance::CreateState()
|
|
|
|
{
|
|
|
|
LegoGameState* gameState = GameState();
|
|
|
|
AmbulanceMissionState* state = (AmbulanceMissionState*) gameState->GetState("AmbulanceMissionState");
|
|
|
|
|
|
|
|
if (state == NULL) {
|
|
|
|
state = (AmbulanceMissionState*) gameState->CreateState("AmbulanceMissionState");
|
|
|
|
}
|
|
|
|
|
|
|
|
m_state = state;
|
|
|
|
}
|
|
|
|
|
2024-06-06 12:19:43 -04:00
|
|
|
// FUNCTION: LEGO1 0x10036420
|
|
|
|
// FUNCTION: BETA10 0x10022b84
|
2024-01-20 18:04:46 -05:00
|
|
|
MxLong Ambulance::Notify(MxParam& p_param)
|
2024-06-06 12:19:43 -04:00
|
|
|
{
|
|
|
|
MxLong result = 0;
|
|
|
|
|
|
|
|
switch (((MxNotificationParam&) p_param).GetType()) {
|
|
|
|
case c_notificationType0:
|
|
|
|
result = HandleNotification0();
|
|
|
|
break;
|
|
|
|
case c_notificationEndAction:
|
|
|
|
result = HandleEndAction((MxEndActionNotificationParam&) p_param);
|
|
|
|
break;
|
|
|
|
case c_notificationButtonDown:
|
|
|
|
result = HandleButtonDown((LegoControlManagerEvent&) p_param);
|
|
|
|
break;
|
|
|
|
case c_notificationClick:
|
|
|
|
result = HandleClick();
|
|
|
|
break;
|
|
|
|
case c_notificationControl:
|
|
|
|
result = HandleControl((LegoControlManagerEvent&) p_param);
|
|
|
|
break;
|
|
|
|
case c_notificationType19:
|
|
|
|
result = HandleNotification19((MxType19NotificationParam&) p_param);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2024-06-11 13:12:02 -04:00
|
|
|
// FUNCTION: LEGO1 0x100364d0
|
2024-06-08 17:40:36 -04:00
|
|
|
// FUNCTION: BETA10 0x10022cc2
|
2024-06-06 12:19:43 -04:00
|
|
|
MxLong Ambulance::HandleEndAction(MxEndActionNotificationParam& p_param)
|
|
|
|
{
|
2024-06-11 13:12:02 -04:00
|
|
|
if (p_param.GetAction() != NULL) {
|
|
|
|
IsleScript::Script objectId = (IsleScript::Script) p_param.GetAction()->GetObjectId();
|
|
|
|
|
|
|
|
if (m_lastAnimation == objectId) {
|
|
|
|
m_lastAnimation = IsleScript::c_noneIsle;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_lastAction == objectId) {
|
|
|
|
if (m_lastAnimation == IsleScript::c_noneIsle) {
|
|
|
|
BackgroundAudioManager()->RaiseVolume();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_lastAction = IsleScript::c_noneIsle;
|
|
|
|
}
|
|
|
|
else if (objectId == IsleScript::c_hho027en_RunAnim) {
|
|
|
|
m_state->m_unk0x08 = 1;
|
|
|
|
CurrentWorld()->PlaceActor(CurrentActor());
|
|
|
|
HandleClick();
|
|
|
|
m_unk0x172 = 0;
|
|
|
|
TickleManager()->RegisterClient(this, 40000);
|
|
|
|
}
|
|
|
|
else if (objectId == IsleScript::c_hpz047pe_RunAnim || objectId == IsleScript::c_hpz048pe_RunAnim || objectId == IsleScript::c_hpz049bd_RunAnim || objectId == IsleScript::c_hpz053pa_RunAnim) {
|
|
|
|
if (m_unk0x170 == 3) {
|
|
|
|
PlayAnimation(IsleScript::c_hpz055pa_RunAnim);
|
|
|
|
m_unk0x170 = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
PlayAnimation(IsleScript::c_hpz053pa_RunAnim);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (objectId == IsleScript::c_hpz050bd_RunAnim || objectId == IsleScript::c_hpz052ma_RunAnim) {
|
|
|
|
if (m_unk0x170 == 3) {
|
|
|
|
PlayAnimation(IsleScript::c_hpz057ma_RunAnim);
|
|
|
|
m_unk0x170 = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
PlayAnimation(IsleScript::c_hpz052ma_RunAnim);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (objectId == IsleScript::c_hpz055pa_RunAnim || objectId == IsleScript::c_hpz057ma_RunAnim) {
|
|
|
|
CurrentWorld()->PlaceActor(CurrentActor());
|
|
|
|
HandleClick();
|
|
|
|
SpawnPlayer(LegoGameState::e_pizzeriaExterior, TRUE, 0);
|
|
|
|
m_unk0x172 = 0;
|
|
|
|
TickleManager()->RegisterClient(this, 40000);
|
|
|
|
|
|
|
|
if (m_unk0x16c != 0) {
|
|
|
|
StopActions();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (objectId == IsleScript::c_hps116bd_RunAnim || objectId == IsleScript::c_hps118re_RunAnim) {
|
|
|
|
if (objectId == IsleScript::c_hps116bd_RunAnim && m_unk0x170 != 3) {
|
|
|
|
PlayAction(IsleScript::c_Avo923In_PlayWav);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_unk0x170 == 3) {
|
|
|
|
PlayAnimation(IsleScript::c_hps117bd_RunAnim);
|
|
|
|
m_unk0x170 = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
PlayAnimation(IsleScript::c_hps118re_RunAnim);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (objectId == IsleScript::c_hps117bd_RunAnim) {
|
|
|
|
CurrentWorld()->PlaceActor(CurrentActor());
|
|
|
|
HandleClick();
|
|
|
|
SpawnPlayer(LegoGameState::e_unk33, TRUE, 0);
|
|
|
|
m_unk0x172 = 0;
|
|
|
|
TickleManager()->RegisterClient(this, 40000);
|
|
|
|
|
|
|
|
if (m_unk0x16e != 0) {
|
|
|
|
StopActions();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (objectId == IsleScript::c_hho142cl_RunAnim || objectId == IsleScript::c_hho143cl_RunAnim || objectId == IsleScript::c_hho144cl_RunAnim) {
|
|
|
|
FUN_10037250();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
2024-06-06 12:19:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// STUB: LEGO1 0x100367c0
|
|
|
|
MxLong Ambulance::HandleButtonDown(LegoControlManagerEvent& p_param)
|
2024-01-20 18:04:46 -05:00
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// STUB: LEGO1 0x10036860
|
2024-06-06 12:19:43 -04:00
|
|
|
MxLong Ambulance::HandleNotification19(MxType19NotificationParam& p_param)
|
2024-01-20 18:04:46 -05:00
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// STUB: LEGO1 0x10036ce0
|
2024-06-06 12:19:43 -04:00
|
|
|
MxLong Ambulance::HandleClick()
|
2024-01-20 18:04:46 -05:00
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-03-16 14:20:44 -04:00
|
|
|
// STUB: LEGO1 0x10036e60
|
|
|
|
void Ambulance::FUN_10036e60()
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
2024-01-20 18:04:46 -05:00
|
|
|
// STUB: LEGO1 0x10036e90
|
2024-06-06 11:45:37 -04:00
|
|
|
void Ambulance::Exit()
|
2024-01-20 18:04:46 -05:00
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
// STUB: LEGO1 0x10036f90
|
2024-06-06 12:19:43 -04:00
|
|
|
MxLong Ambulance::HandleControl(LegoControlManagerEvent& p_param)
|
2024-01-20 18:04:46 -05:00
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-03-17 13:01:47 -04:00
|
|
|
// STUB: LEGO1 0x10037060
|
|
|
|
void Ambulance::FUN_10037060()
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
2024-01-20 18:04:46 -05:00
|
|
|
// STUB: LEGO1 0x10037160
|
|
|
|
MxResult Ambulance::Tickle()
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
2024-05-24 20:41:57 -04:00
|
|
|
|
2024-06-08 17:40:36 -04:00
|
|
|
// FUNCTION: LEGO1 0x10037240
|
|
|
|
void Ambulance::StopActions()
|
2024-05-24 20:41:57 -04:00
|
|
|
{
|
2024-06-08 17:40:36 -04:00
|
|
|
StopAction(IsleScript::c_pns018rd_RunAnim);
|
2024-05-24 20:41:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// STUB: LEGO1 0x10037250
|
|
|
|
void Ambulance::FUN_10037250()
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
2024-06-03 12:53:25 -04:00
|
|
|
|
2024-06-11 13:12:02 -04:00
|
|
|
// FUNCTION: LEGO1 0x100372e0
|
|
|
|
// FUNCTION: BETA10 0x100241a0
|
|
|
|
void Ambulance::PlayAnimation(IsleScript::Script p_objectId)
|
|
|
|
{
|
|
|
|
AnimationManager()->FUN_10060dc0(p_objectId, NULL, TRUE, FALSE, NULL, FALSE, FALSE, FALSE, TRUE);
|
|
|
|
m_lastAnimation = p_objectId;
|
|
|
|
}
|
|
|
|
|
2024-06-08 17:40:36 -04:00
|
|
|
// FUNCTION: LEGO1 0x10037340
|
2024-06-11 13:12:02 -04:00
|
|
|
void Ambulance::StopAction(IsleScript::Script p_objectId)
|
|
|
|
{
|
|
|
|
if (p_objectId != -1) {
|
|
|
|
InvokeAction(Extra::e_stop, *g_isleScript, p_objectId, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x10037360
|
|
|
|
void Ambulance::PlayAction(IsleScript::Script p_objectId)
|
2024-06-08 17:40:36 -04:00
|
|
|
{
|
2024-06-11 13:12:02 -04:00
|
|
|
if (p_objectId != -1) {
|
|
|
|
InvokeAction(Extra::e_start, *g_isleScript, p_objectId, NULL);
|
2024-06-08 17:40:36 -04:00
|
|
|
}
|
2024-06-11 13:12:02 -04:00
|
|
|
|
|
|
|
m_lastAction = p_objectId;
|
|
|
|
BackgroundAudioManager()->LowerVolume();
|
2024-06-08 17:40:36 -04:00
|
|
|
}
|
|
|
|
|
2024-06-03 12:53:25 -04:00
|
|
|
// FUNCTION: LEGO1 0x100373a0
|
|
|
|
AmbulanceMissionState::AmbulanceMissionState()
|
|
|
|
{
|
|
|
|
m_unk0x10 = 0;
|
|
|
|
m_unk0x12 = 0;
|
|
|
|
m_unk0x14 = 0;
|
|
|
|
m_unk0x08 = 0;
|
|
|
|
m_unk0x16 = 0;
|
|
|
|
m_unk0x0c = 0;
|
|
|
|
m_unk0x18 = 0;
|
|
|
|
m_score1 = 0;
|
|
|
|
m_score2 = 0;
|
|
|
|
m_score3 = 0;
|
|
|
|
m_score4 = 0;
|
|
|
|
m_score5 = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// STUB: LEGO1 0x10037440
|
|
|
|
MxResult AmbulanceMissionState::Serialize(LegoFile* p_legoFile)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
return LegoState::Serialize(p_legoFile);
|
|
|
|
}
|