1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
|
/* 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 {
enum kUG08Loops {
kUG08LoopElevatorComingUp = 0,
kUG08LoopMainLoopElevator = 1,
kUG08LoopElevatorGoingDown = 3,
kUG08LoopMainNoElevator = 4
};
void SceneScriptUG08::InitializeScene() {
if (Game_Flag_Query(kFlagUG13toUG08)) {
Setup_Scene_Information(-124.0f, 93.18f, 71.0f, 745);
} else {
Setup_Scene_Information(-432.0f, 0.0f, -152.0f, 370);
}
Scene_Exit_Add_2D_Exit(0, 125, 220, 157, 303, 3);
Scene_Exit_Add_2D_Exit(1, 353, 145, 552, 309, 1);
Ambient_Sounds_Add_Looping_Sound(kSfxSTMLOOP7, 28, 0, 1);
Ambient_Sounds_Add_Looping_Sound(kSfxUGBED1, 40, 0, 1);
Ambient_Sounds_Add_Looping_Sound(kSfxUGBED2, 40, 0, 1);
Ambient_Sounds_Add_Sound(kSfxYELL1M1, 2, 120, 11, 12, -100, 100, -100, 100, 0, 0);
Ambient_Sounds_Add_Sound(kSfxYELL1M2, 2, 120, 11, 12, -100, 100, -100, 100, 0, 0);
Ambient_Sounds_Add_Sound(kSfxGRUNT1M1, 2, 120, 11, 12, -100, 100, -100, 100, 0, 0);
Ambient_Sounds_Add_Sound(kSfxGRUNT2M3, 2, 120, 11, 12, -100, 100, -100, 100, 0, 0);
Ambient_Sounds_Add_Sound(kSfxBBDRIP1, 2, 20, 20, 25, -100, 100, -100, 100, 0, 0);
Ambient_Sounds_Add_Sound(kSfxBBDRIP2, 2, 20, 20, 25, -100, 100, -100, 100, 0, 0);
Ambient_Sounds_Add_Sound(kSfxBBDRIP3, 2, 20, 20, 25, -100, 100, -100, 100, 0, 0);
Ambient_Sounds_Add_Sound(kSfxBBDRIP4, 2, 20, 20, 25, -100, 100, -100, 100, 0, 0);
Ambient_Sounds_Add_Sound(kSfxBBDRIP5, 2, 20, 20, 25, -100, 100, -100, 100, 0, 0);
Ambient_Sounds_Add_Sound(kSfxBBGRN1, 5, 50, 17, 37, -100, 100, -101, -101, 0, 0);
Ambient_Sounds_Add_Sound(kSfxBBGRN2, 5, 50, 17, 37, -100, 100, -101, -101, 0, 0);
Ambient_Sounds_Add_Sound(kSfxBBGRN3, 5, 50, 17, 37, -100, 100, -101, -101, 0, 0);
if (!Game_Flag_Query(kFlagUG08Entered)) {
Game_Flag_Set(kFlagUG08ElevatorUp);
Game_Flag_Set(kFlagUG08Entered);
}
#if BLADERUNNER_ORIGINAL_BUGS
#else
// if there's no elevator here (because it's in UG13 and the player took the long way round,
// McCoy is unable to call it up (there's no call button)
// Additionally, since the elevator exit is added regardless, McCoy will walk up to
// the elevator and then the elevator will blink in (BUG)
// Solution here is to:
// In easy mode: Have the elevator always be here.
// In normal/hard mode: If the elevator is missing, then:
// by ~33% probability the elevator will be up again,
// and by ~66% it won't be up, so we remove the elevator exit, and force McCoy to go the long way round again (or retry the room)
if (!Game_Flag_Query(kFlagUG08ElevatorUp)) {
if (Query_Difficulty_Level() == kGameDifficultyEasy
|| Random_Query(1, 3) == 1
) {
Game_Flag_Set(kFlagUG08ElevatorUp);
} else {
Scene_Exit_Remove(1);
}
}
#endif // BLADERUNNER_ORIGINAL_BUGS
if (Game_Flag_Query(kFlagUG13toUG08)) {
Scene_Loop_Start_Special(kSceneLoopModeLoseControl, kUG08LoopElevatorComingUp, false);
Scene_Loop_Set_Default(kUG08LoopMainLoopElevator);
} else if (Game_Flag_Query(kFlagUG08ElevatorUp)) {
Scene_Loop_Set_Default(kUG08LoopMainLoopElevator);
} else {
Scene_Loop_Set_Default(kUG08LoopMainNoElevator);
}
}
void SceneScriptUG08::SceneLoaded() {
Obstacle_Object("ELEV LEGS", true);
Unobstacle_Object("ELEV LEGS", true);
Unobstacle_Object("BOX RIGHT WALL ", true);
#if BLADERUNNER_ORIGINAL_BUGS
#else
Obstacle_Object("NORTHBLOCK", true);
#endif // BLADERUNNER_ORIGINAL_BUGS
}
bool SceneScriptUG08::MouseClick(int x, int y) {
return false;
}
bool SceneScriptUG08::ClickedOn3DObject(const char *objectName, bool a2) {
return false;
}
bool SceneScriptUG08::ClickedOnActor(int actorId) {
return false;
}
bool SceneScriptUG08::ClickedOnItem(int itemId, bool a2) {
return false;
}
bool SceneScriptUG08::ClickedOnExit(int exitId) {
if (exitId == 0) {
if (!Loop_Actor_Walk_To_XYZ(kActorMcCoy, -432.0f, 0.0f, -152.0f, 0, true, false, false)) {
Ambient_Sounds_Remove_All_Non_Looping_Sounds(true);
Ambient_Sounds_Remove_All_Looping_Sounds(1);
Game_Flag_Set(kFlagUG08toUG07);
Set_Enter(kSetUG07, kSceneUG07);
return false;
}
}
if (exitId == 1) {
if (!Loop_Actor_Walk_To_XYZ(kActorMcCoy, -312.0f, -2.0f, 152.0f, 0, true, false, false)) {
Actor_Face_Heading(kActorMcCoy, 240, false);
Footstep_Sound_Override_On(2);
Loop_Actor_Travel_Stairs(kActorMcCoy, 11, true, kAnimationModeIdle);
Footstep_Sound_Override_Off();
Loop_Actor_Walk_To_XYZ(kActorMcCoy, -118.02f, 93.02f, 52.76f, 0, false, false, false);
Player_Loses_Control();
Actor_Set_Invisible(kActorMcCoy, true);
Game_Flag_Set(kFlagUG08toUG13);
Game_Flag_Reset(kFlagUG08ElevatorUp);
Set_Enter(kSetUG13, kSceneUG13);
Scene_Loop_Start_Special(kSceneLoopModeChangeSet, kUG08LoopElevatorGoingDown, false);
return false;
}
}
return false;
}
bool SceneScriptUG08::ClickedOn2DRegion(int region) {
return false;
}
void SceneScriptUG08::SceneFrameAdvanced(int frame) {
if (frame == 91) {
Ambient_Sounds_Play_Sound(kSfxCARGELE2, 90, 0, 0, 100);
}
}
void SceneScriptUG08::ActorChangedGoal(int actorId, int newGoal, int oldGoal, bool currentSet) {
}
void SceneScriptUG08::PlayerWalkedIn() {
if (Game_Flag_Query(kFlagUG13toUG08)) {
Loop_Actor_Walk_To_XYZ(kActorMcCoy, -167.0f, 93.18f, 71.0f, 0, false, false, false);
Loop_Actor_Walk_To_XYZ(kActorMcCoy, -180.0f, 93.18f, 134.0f, 0, false, false, false);
Actor_Face_Heading(kActorMcCoy, 745, false);
Footstep_Sound_Override_On(2);
Loop_Actor_Travel_Stairs(kActorMcCoy, 11, false, kAnimationModeIdle);
Footstep_Sound_Override_Off();
Player_Gains_Control();
}
Game_Flag_Reset(kFlagUG07toUG08);
Game_Flag_Reset(kFlagUG13toUG08);
}
void SceneScriptUG08::PlayerWalkedOut() {
}
void SceneScriptUG08::DialogueQueueFlushed(int a1) {
}
} // End of namespace BladeRunner
|