Files
scummvm-cursorfix/engines/bladerunner/script/scene/hf06.cpp
2026-02-02 04:50:13 +01:00

330 lines
12 KiB
C++

/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "bladerunner/script/scene_script.h"
namespace BladeRunner {
void SceneScriptHF06::InitializeScene() {
Setup_Scene_Information(150.0f, 349.93f, 502.0f, 229);
Game_Flag_Reset(kFlagHF05toHF06);
Scene_Exit_Add_2D_Exit(0, 195, 197, 271, 237, 2);
Ambient_Sounds_Add_Looping_Sound(kSfxCTRAIN1, 50, 0, 1);
Ambient_Sounds_Add_Looping_Sound(kSfxROOFAIR1, 40, -100, 1);
Ambient_Sounds_Add_Looping_Sound(kSfxROOFRMB1, 40, 100, 1);
Ambient_Sounds_Add_Sound(kSfxSPIN2B, 10, 100, 25, 50, 0, 0, -101, -101, 0, 0);
Ambient_Sounds_Add_Sound(kSfxSPIN3A, 10, 100, 25, 50, 0, 0, -101, -101, 0, 0);
Ambient_Sounds_Add_Sound(kSfxTHNDER2, 10, 70, 50, 100, 0, 0, -101, -101, 0, 0);
Ambient_Sounds_Add_Sound(kSfxTHNDER3, 10, 70, 50, 100, 0, 0, -101, -101, 0, 0);
Ambient_Sounds_Add_Sound(kSfxTHNDER4, 10, 70, 50, 100, 0, 0, -101, -101, 0, 0);
if (Game_Flag_Query(kFlagHF06SteelInterruption)) {
Scene_Loop_Set_Default(3);
addAmbientSounds();
} else {
Scene_Loop_Set_Default(0);
}
}
void SceneScriptHF06::SceneLoaded() {
Unobstacle_Object("BOX22", true);
Unobstacle_Object("BOX34", true);
#if BLADERUNNER_ORIGINAL_BUGS
#else
Obstacle_Object("FRONTBLOCK1", true);
Obstacle_Object("FRONTBLOCK2", true);
#endif // BLADERUNNER_ORIGINAL_BUGS
Clickable_Object("BOX19");
Clickable_Object("BOX21");
Clickable_Object("BOX23");
Clickable_Object("HOOD BOX");
Clickable_Object("BOX28");
Clickable_Object("BOX29");
Clickable_Object("BOX30");
}
bool SceneScriptHF06::MouseClick(int x, int y) {
return false;
}
bool SceneScriptHF06::ClickedOn3DObject(const char *objectName, bool a2) {
if (Object_Query_Click("BOX28", objectName)
|| Object_Query_Click("BOX29", objectName)
|| Object_Query_Click("BOX30", objectName)
|| Object_Query_Click("HOOD BOX", objectName)
) {
if (!Loop_Actor_Walk_To_XYZ(kActorMcCoy, 14.33f, 367.93f, 399.0f, 0, true, false, false)) {
Actor_Face_Heading(kActorMcCoy, 486, true);
if (Actor_Query_In_Set(kActorDektora, kSetHF06)
&& Actor_Query_Goal_Number(kActorDektora) != kGoalDektoraGone
) {
Actor_Face_Actor(kActorDektora, kActorMcCoy, true);
Actor_Says(kActorDektora, 210, 12);
Actor_Says(kActorMcCoy, 2125, 12);
} else if (Actor_Query_In_Set(kActorLucy, kSetHF06)
&& Actor_Query_Goal_Number(kActorLucy) != kGoalLucyGone
) {
Actor_Face_Actor(kActorLucy, kActorMcCoy, true);
Actor_Says(kActorLucy, 490, 18);
Actor_Says(kActorMcCoy, 2125, 12);
} else {
Actor_Says(kActorMcCoy, 8635, 12);
}
}
return false;
}
if (Object_Query_Click("BOX19", objectName)
|| Object_Query_Click("BOX21", objectName)
) {
if (!Loop_Actor_Walk_To_XYZ(kActorMcCoy, 290.0f, 367.93f, 318.0f, 0, true, false, false)) {
Actor_Face_Heading(kActorMcCoy, 85, true);
Actor_Says(kActorMcCoy, 8522, 0);
}
return false;
}
if (Object_Query_Click("BOX23", objectName)) {
if (!Loop_Actor_Walk_To_XYZ(kActorMcCoy, 63.0f, 367.93f, 120.0f, 0, true, false, false)) {
Actor_Face_Heading(kActorMcCoy, 568, true);
Actor_Says(kActorMcCoy, 8522, 0);
}
return false;
}
return false;
}
bool SceneScriptHF06::ClickedOnActor(int actorId) {
if (actorId == kActorLucy
&& Actor_Query_Goal_Number(kActorLucy) != kGoalLucyGone
) {
Actor_Face_Actor(kActorLucy, kActorMcCoy, true);
Actor_Face_Actor(kActorMcCoy, kActorLucy, true);
if (Game_Flag_Query(kFlagHF06SteelInterruption)) {
Actor_Says(kActorLucy, 390, 18);
Actor_Says(kActorMcCoy, 2115, 17);
}
} else if (actorId == kActorDektora
&& Actor_Query_Goal_Number(kActorDektora) != kGoalDektoraGone
) {
Actor_Face_Actor(kActorDektora, kActorMcCoy, true);
Actor_Face_Actor(kActorMcCoy, kActorDektora, true);
if (Game_Flag_Query(kFlagHF06SteelInterruption)) {
Actor_Says(kActorDektora, 100, 3);
Actor_Says(kActorMcCoy, 2115, 17);
}
}
return false;
}
bool SceneScriptHF06::ClickedOnItem(int itemId, bool a2) {
return false;
}
bool SceneScriptHF06::ClickedOnExit(int exitId) {
if (exitId == 0) {
if (!Loop_Actor_Walk_To_XYZ(kActorMcCoy, 170.0f, 367.93f, 497.0f, 0, true, false, false)) {
Actor_Face_Heading(kActorMcCoy, 730, false);
Loop_Actor_Travel_Stairs(kActorMcCoy, 2, false, kAnimationModeIdle);
Ambient_Sounds_Remove_All_Non_Looping_Sounds(true);
Ambient_Sounds_Remove_All_Looping_Sounds(1u);
Game_Flag_Set(kFlagHF06toHF05);
Set_Enter(kSetHF05, kSceneHF05);
}
return true;
}
return false;
}
bool SceneScriptHF06::ClickedOn2DRegion(int region) {
return false;
}
void SceneScriptHF06::SceneFrameAdvanced(int frame) {
}
void SceneScriptHF06::ActorChangedGoal(int actorId, int newGoal, int oldGoal, bool currentSet) {
if (actorId == kActorSteele
&& oldGoal != kGoalSteeleGone
&& newGoal == kGoalSteeleGone
) {
Loop_Actor_Walk_To_Actor(kActorMcCoy, kActorSteele, 24, false, false);
Actor_Says(kActorSteele, 250, -1);
Actor_Says(kActorMcCoy, 2120, kAnimationModeCombatIdle);
Actor_Says(kActorSteele, 260, -1);
Actor_Says(kActorSteele, 270, -1);
int otherActorId = -1;
if (Actor_Query_In_Set(kActorDektora, kSetHF06)
&& Actor_Query_Goal_Number(kActorDektora) == kGoalDektoraGone
) {
otherActorId = kActorDektora;
} else if (Actor_Query_In_Set(kActorLucy, kSetHF06)
&& Actor_Query_Goal_Number(kActorLucy) == kGoalLucyGone
) {
otherActorId = kActorLucy;
}
if (otherActorId != -1) {
Music_Play(kMusicLoveSong, 35, 0, 3, -1, kMusicLoopPlayOnce, 0);
Player_Set_Combat_Mode(false);
Delay(1000);
Actor_Voice_Over(990, kActorVoiceOver);
Actor_Voice_Over(1000, kActorVoiceOver);
Actor_Voice_Over(1010, kActorVoiceOver);
Loop_Actor_Walk_To_Actor(kActorMcCoy, otherActorId, 24, false, false);
Item_Pickup_Spin_Effect(kModelAnimationBomb, 355, 200);
Actor_Voice_Over(1020, kActorVoiceOver);
Actor_Voice_Over(1030, kActorVoiceOver);
Actor_Voice_Over(1040, kActorVoiceOver);
Actor_Voice_Over(1050, kActorVoiceOver);
Actor_Clue_Acquire(kActorMcCoy, kClueBomb, true, -1);
}
if (Actor_Query_In_Set(kActorDektora, kSetHF06)) {
Actor_Set_Targetable(kActorDektora, false);
}
if (Actor_Query_In_Set(kActorLucy, kSetHF06)) {
Actor_Set_Targetable(kActorLucy, false);
}
Scene_Exits_Enable();
}
}
void SceneScriptHF06::PlayerWalkedIn() {
if (Game_Flag_Query(kFlagHF01TalkToLovedOne)) {
int actorId = -1;
if (Global_Variable_Query(kVariableAffectionTowards) == kAffectionTowardsLucy
&& Actor_Query_Goal_Number(kActorLucy) != kGoalLucyGone
) {
actorId = kActorLucy;
} else if (Global_Variable_Query(kVariableAffectionTowards) == kAffectionTowardsDektora
&& Actor_Query_Goal_Number(kActorDektora) != kGoalDektoraGone
) {
actorId = kActorDektora;
}
if (actorId != -1) {
Actor_Put_In_Set(actorId, kSetHF06);
if (Game_Flag_Query(kFlagHF06SteelInterruption)) {
Actor_Set_At_XYZ(actorId, 173.67f, 367.93f, 446.04f, 229);
Async_Actor_Walk_To_XYZ(actorId, 173.67f, 367.93f, 394.04f, 0, false);
} else {
Actor_Set_At_XYZ(actorId, 97.67f, 367.93f, 534.04f, 725);
Async_Actor_Walk_To_XYZ(actorId, 24.2f, 367.93f, 537.71f, 0, false);
}
}
}
Footstep_Sound_Override_On(3);
Loop_Actor_Travel_Stairs(kActorMcCoy, 2, true, kAnimationModeIdle);
Footstep_Sound_Override_Off();
if ( Game_Flag_Query(kFlagHF01TalkToLovedOne)
&& !Game_Flag_Query(kFlagHF06SteelInterruption)
) {
steelInterruption();
}
}
void SceneScriptHF06::PlayerWalkedOut() {
Music_Stop(2u);
}
void SceneScriptHF06::DialogueQueueFlushed(int a1) {
}
void SceneScriptHF06::steelInterruption() {
int actorId;
if (Actor_Query_In_Set(kActorDektora, kSetHF06)) {
actorId = kActorDektora;
} else if (Actor_Query_In_Set(kActorLucy, kSetHF06)) {
actorId = kActorLucy;
} else {
return;
}
Actor_Set_Targetable(actorId, true);
Loop_Actor_Walk_To_XYZ(kActorMcCoy, 14.33f, 367.93f, 399.0f, 0, false, true, false);
Actor_Face_Heading(kActorMcCoy, 486, true);
addAmbientSounds();
Actor_Put_In_Set(kActorSteele, kSetHF06);
Actor_Set_At_XYZ(kActorSteele, 92.0f, 367.93f, 19.0f, 0);
Actor_Set_Targetable(kActorSteele, true);
Actor_Face_Actor(actorId, kActorSteele, true);
if (actorId == kActorDektora) {
Actor_Says(kActorDektora, 90, 13);
} else if (actorId == kActorLucy) {
Actor_Says(kActorLucy, 380, 13);
}
Actor_Says(kActorMcCoy, 6230, 0);
Actor_Says(kActorSteele, 280, 58);
Actor_Face_Actor(kActorMcCoy, kActorSteele, true);
Player_Set_Combat_Mode(true);
// TODO revisit setting kActorMcCoy to Combat Aim via Actor_Change_Animation_Mode()
// (see notes in Gordo AI script in his CompletedMovementTrack())
Actor_Change_Animation_Mode(kActorMcCoy, kAnimationModeCombatAim);
Actor_Change_Animation_Mode(kActorSteele, kAnimationModeCombatWalk);
Loop_Actor_Walk_To_XYZ(kActorSteele, 92.0f, 367.93f, 107.0f, 0, false, false, false);
Actor_Face_Actor(kActorSteele, kActorMcCoy, true);
Actor_Change_Animation_Mode(kActorSteele, kAnimationModeCombatIdle);
Actor_Says(kActorSteele, 290, 58);
Actor_Says(kActorMcCoy, 2130, -1);
Actor_Says(kActorSteele, 300, 59);
Actor_Says(kActorMcCoy, 2135, -1);
Actor_Says(kActorSteele, 310, 60);
Actor_Says(kActorMcCoy, 2140, -1);
Actor_Says(kActorSteele, 320, 59);
Actor_Says(kActorMcCoy, 2145, -1);
Actor_Says(kActorSteele, 330, 58);
Actor_Says(kActorSteele, 340, 58);
Actor_Says(kActorSteele, 350, 58);
Actor_Change_Animation_Mode(kActorSteele, kAnimationModeCombatIdle);
Game_Flag_Set(kFlagNotUsed644);
Actor_Set_Goal_Number(kActorSteele, kGoalSteeleHF06Attack);
Actor_Face_Actor(kActorSteele, actorId, true);
Actor_Change_Animation_Mode(kActorSteele, kAnimationModeCombatAttack);
Delay(500);
Scene_Loop_Set_Default(3);
Scene_Loop_Start_Special(kSceneLoopModeOnce, 2, true);
Sound_Play(kSfxBOMBFAIL, 50, 0, 0, 50);
Game_Flag_Set(kFlagHF06SteelInterruption);
Scene_Exits_Disable();
Non_Player_Actor_Combat_Mode_On(kActorSteele, kActorCombatStateUncover, true, actorId, 15, kAnimationModeCombatIdle, kAnimationModeCombatWalk, kAnimationModeCombatRun, 0, 0, 100, 10, 300, false);
}
void SceneScriptHF06::addAmbientSounds() {
Ambient_Sounds_Add_Sound(kSfxSIREN2, 20, 80, 20, 100, -100, 100, -101, -101, 0, 0);
Ambient_Sounds_Add_Speech_Sound(kActorOfficerLeary, 250, 5u, 70u, 7, 10, -50, 50, -101, -101, 1, 1);
Ambient_Sounds_Add_Speech_Sound(kActorOfficerLeary, 330, 5u, 70u, 7, 10, -50, 50, -101, -101, 1, 1);
Ambient_Sounds_Add_Speech_Sound(kActorOfficerLeary, 340, 5u, 90u, 7, 10, -50, 50, -101, -101, 1, 1);
Ambient_Sounds_Add_Speech_Sound(kActorOfficerLeary, 360, 5u, 70u, 7, 10, -50, 50, -101, -101, 1, 1);
Ambient_Sounds_Add_Speech_Sound(kActorOfficerGrayford, 380, 5u, 70u, 7, 10, -50, 50, -101, -101, 1, 1);
Ambient_Sounds_Add_Speech_Sound(kActorOfficerGrayford, 510, 5u, 70u, 7, 10, -50, 50, -101, -101, 1, 1);
Ambient_Sounds_Add_Speech_Sound(kActorDispatcher, 80, 5u, 70u, 7, 10, -50, 50, -101, -101, 1, 1);
Ambient_Sounds_Add_Speech_Sound(kActorDispatcher, 160, 5u, 70u, 7, 10, -50, 50, -101, -101, 1, 1);
Ambient_Sounds_Add_Speech_Sound(kActorDispatcher, 280, 5u, 70u, 7, 10, -50, 50, -101, -101, 1, 1);
}
} // End of namespace BladeRunner