189 lines
5.9 KiB
C++
189 lines
5.9 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 2
|
|
* 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, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
*/
|
|
|
|
#include "bladerunner/script/scene_script.h"
|
|
|
|
namespace BladeRunner {
|
|
|
|
void SceneScriptDR05::InitializeScene() {
|
|
Setup_Scene_Information(-22.0f, 0.3f, 221.0f, 0);
|
|
Game_Flag_Reset(228);
|
|
Scene_Exit_Add_2D_Exit(0, 0, 38, 80, 467, 3);
|
|
Ambient_Sounds_Add_Looping_Sound(383, 25, 0, 1);
|
|
if (!Game_Flag_Query(272)) {
|
|
Overlay_Play("DR05OVER", 0, 1, 0, 0);
|
|
}
|
|
if (Game_Flag_Query(272)) {
|
|
Scene_Loop_Set_Default(2);
|
|
} else {
|
|
Scene_Loop_Set_Default(0);
|
|
}
|
|
}
|
|
|
|
void SceneScriptDR05::SceneLoaded() {
|
|
Obstacle_Object("MAN PROPHI", true);
|
|
Unobstacle_Object("BOX06", true);
|
|
Unobstacle_Object("BOX183", true);
|
|
Clickable_Object("T2 DOORWAY");
|
|
if (!Game_Flag_Query(272)) {
|
|
Item_Add_To_World(78, 932, 35, -1.57f, 31.33f, 75.21f, 540, 16, 16, true, true, false, true);
|
|
if (!Actor_Query_Goal_Number(kActorMoraji)) {
|
|
Item_Add_To_World(122, 931, 35, 37.35f, 1.59f, 46.72f, 0, 20, 20, true, true, false, true);
|
|
}
|
|
}
|
|
}
|
|
|
|
bool SceneScriptDR05::MouseClick(int x, int y) {
|
|
return false;
|
|
}
|
|
|
|
bool SceneScriptDR05::ClickedOn3DObject(const char *objectName, bool a2) {
|
|
if (Object_Query_Click("T2 DOORWAY", objectName)) {
|
|
if (Game_Flag_Query(276) || Actor_Query_Goal_Number(kActorMoraji)) {
|
|
if (!Loop_Actor_Walk_To_XYZ(kActorMcCoy, 57.61f, 0.3f, 69.27f, 0, 1, false, 0)) {
|
|
Actor_Face_Object(kActorMcCoy, "T2 DOORWAY", true);
|
|
Actor_Says(kActorMcCoy, 8522, 13);
|
|
Actor_Says(kActorMcCoy, 8521, 14);
|
|
}
|
|
} else {
|
|
Actor_Face_Object(kActorMcCoy, "T2 DOORWAY", true);
|
|
Actor_Says(kActorMcCoy, 1020, 14);
|
|
Actor_Says(kActorMoraji, 90, 13);
|
|
}
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool SceneScriptDR05::ClickedOnActor(int actorId) {
|
|
return false;
|
|
}
|
|
|
|
bool SceneScriptDR05::ClickedOnItem(int itemId, bool a2) {
|
|
if (itemId == 78) {
|
|
if (Player_Query_Combat_Mode()) {
|
|
Game_Flag_Set(271);
|
|
Actor_Set_Goal_Number(kActorMoraji, 30);
|
|
} else if (!Game_Flag_Query(272) && !Loop_Actor_Walk_To_Item(kActorMcCoy, 78, 24, 1, true) && Actor_Query_Goal_Number(kActorMoraji) != 11) {
|
|
if (!Actor_Query_Goal_Number(kActorMoraji)) {
|
|
Actor_Says_With_Pause(kActorMcCoy, 1015, 0.1f, 12);
|
|
Actor_Says(kActorMoraji, 70, 13);
|
|
}
|
|
Actor_Set_Goal_Number(kActorMoraji, 30);
|
|
}
|
|
//return true; //bug?
|
|
}
|
|
if (itemId == 122 && Player_Query_Combat_Mode() && Actor_Query_Goal_Number(kActorMoraji) == 0) {
|
|
Overlay_Play("DR05OVER", 1, 0, 1, 0);
|
|
Item_Remove_From_World(122);
|
|
Game_Flag_Set(270);
|
|
Actor_Set_Goal_Number(kActorMoraji, 10);
|
|
Music_Play(18, 71, 0, 0, -1, 0, 2);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool SceneScriptDR05::ClickedOnExit(int exitId) {
|
|
if (exitId == 0) {
|
|
if (!Loop_Actor_Walk_To_XYZ(kActorMcCoy, -22.0f, 0.3f, 221.0f, 0, 1, false, 0)) {
|
|
Game_Flag_Reset(232);
|
|
Game_Flag_Set(229);
|
|
Set_Enter(7, kSceneDR04);
|
|
}
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool SceneScriptDR05::ClickedOn2DRegion(int region) {
|
|
return false;
|
|
}
|
|
|
|
void SceneScriptDR05::SceneFrameAdvanced(int frame) {
|
|
if (frame == 49) {
|
|
Sound_Play(148, Random_Query(50, 50), 80, 80, 50);
|
|
}
|
|
if (Game_Flag_Query(271)) {
|
|
Item_Remove_From_World(78);
|
|
Game_Flag_Reset(271);
|
|
Game_Flag_Set(272);
|
|
Actor_Set_Goal_Number(kActorMoraji, 30);
|
|
}
|
|
}
|
|
|
|
void SceneScriptDR05::ActorChangedGoal(int actorId, int newGoal, int oldGoal, bool currentSet) {
|
|
}
|
|
|
|
void SceneScriptDR05::PlayerWalkedIn() {
|
|
if (!Game_Flag_Query(511) && !Game_Flag_Query(270) && Game_Flag_Query(272)) {
|
|
Item_Remove_From_World(122);
|
|
}
|
|
if (Game_Flag_Query(272)) {
|
|
Loop_Actor_Walk_To_XYZ(kActorMcCoy, -10.0f, 0.3f, 133.0f, 0, 0, false, 0);
|
|
if (!Game_Flag_Query(511)) {
|
|
Game_Flag_Set(511);
|
|
if (Game_Flag_Query(kFlagSadikIsReplicant)) {
|
|
Actor_Voice_Over(730, kActorVoiceOver);
|
|
Actor_Voice_Over(740, kActorVoiceOver);
|
|
Actor_Voice_Over(750, kActorVoiceOver);
|
|
Actor_Voice_Over(760, kActorVoiceOver);
|
|
Actor_Clue_Acquire(kActorMcCoy, kClueExpertBomber, 1, -1);
|
|
} else {
|
|
Actor_Voice_Over(670, kActorVoiceOver);
|
|
Actor_Voice_Over(680, kActorVoiceOver);
|
|
Actor_Voice_Over(700, kActorVoiceOver);
|
|
Actor_Voice_Over(710, kActorVoiceOver);
|
|
Actor_Voice_Over(720, kActorVoiceOver);
|
|
Actor_Clue_Acquire(kActorMcCoy, kClueAmateurBomber, 1, -1);
|
|
}
|
|
}
|
|
} else {
|
|
Loop_Actor_Walk_To_XYZ(kActorMcCoy, -10.0f, 0.3f, 133.0f, 0, 0, true, 0);
|
|
}
|
|
if (!Game_Flag_Query(274) && !Actor_Query_Goal_Number(kActorMoraji)) {
|
|
Actor_Face_Actor(kActorMcCoy, kActorMoraji, true);
|
|
Actor_Says(kActorMcCoy, 1010, 13);
|
|
Actor_Face_Item(kActorMcCoy, 78, true);
|
|
Player_Set_Combat_Mode(true);
|
|
Actor_Says(kActorMoraji, 60, 12);
|
|
Actor_Change_Animation_Mode(kActorMcCoy, 0);
|
|
Game_Flag_Set(274);
|
|
//return true;
|
|
}
|
|
//return false;
|
|
}
|
|
|
|
void SceneScriptDR05::PlayerWalkedOut() {
|
|
Ambient_Sounds_Remove_All_Non_Looping_Sounds(1);
|
|
Ambient_Sounds_Remove_All_Looping_Sounds(1);
|
|
if (Actor_Query_Goal_Number(kActorMoraji) == 10 || Actor_Query_Goal_Number(kActorMoraji) == 18 || Actor_Query_Goal_Number(kActorMoraji) == 19) {
|
|
Actor_Set_Goal_Number(kActorMoraji, 11);
|
|
//return true;
|
|
}
|
|
//return false;
|
|
}
|
|
|
|
void SceneScriptDR05::DialogueQueueFlushed(int a1) {
|
|
}
|
|
|
|
} // End of namespace BladeRunner
|