author | Wuzzy <Wuzzy2@mail.ru> |
Fri, 31 Aug 2018 21:34:33 +0200 | |
changeset 13728 | 247d1bcf3c5e |
parent 13664 | 85506d95977d |
child 13742 | 2bb7141496a9 |
permissions | -rw-r--r-- |
11405 | 1 |
--[[ |
2 |
Flying Saucer Training |
|
3 |
This is a training mission which teaches many basic (and not-so-basic) moves |
|
4 |
with the flying saucer. |
|
5 |
||
6 |
Lesson plan: |
|
7 |
- Taking off |
|
8 |
- Basic flight |
|
9 |
- Landing safely |
|
10 |
- Managing fuel |
|
11 |
- Changing saucers in mid-flight |
|
12 |
- Diving |
|
13 |
- Dropping weapons from flying saucer |
|
14 |
- Firing from flying saucer with [Precise] + [Attack] |
|
15 |
- Aiming in flying saucer with [Precise] + [Up]/[Down] |
|
16 |
- Underwater attack |
|
17 |
- Free flight with inf. fuel and some weapons at end of training |
|
18 |
||
19 |
FIXME: |
|
20 |
- Bad respawn animation ("explosion" just happens randomly because of the way the resurrection effect works) |
|
21 |
- Hide fuel if infinite (probably needs engine support) |
|
22 |
]] |
|
23 |
||
24 |
HedgewarsScriptLoad("/Scripts/Locale.lua") |
|
25 |
HedgewarsScriptLoad("/Scripts/Tracker.lua") |
|
26 |
||
27 |
local Player = nil -- Pointer to hog created in: onGameInit |
|
28 |
local Target = nil -- Pointer to target hog |
|
29 |
local Objective = false -- Get to the target |
|
30 |
||
31 |
local TargetNumber = 0 -- The current target number |
|
32 |
local GrenadeThrown = false -- Used for the Boom Target |
|
33 |
local BazookasLeft = 0 -- Used by the Launch Target and the Unterwater Attack Target |
|
34 |
||
35 |
local InfFuel = false -- If true, flying saucer has infinite fuel |
|
36 |
local SaucerGear = nil -- Store flying saucer gear here (if one exists) |
|
37 |
local TargetGears = {} -- List of remaining gears to collect or destroy in the current round |
|
38 |
local TargetsRemaining = 0 |
|
39 |
local Barrels = {} -- Table contraining the explosive barrel gears |
|
40 |
||
41 |
local CheckTimer = 500 -- Time to wait at least before checking safe landing |
|
42 |
local Check = false -- The last target has recently been collected/destroyed and the CheckTimer is running |
|
43 |
local GrenadeTimer = 0 -- Time after a grenade has been thrown |
|
44 |
||
45 |
local TargetPos = {} -- Table of targets |
|
46 |
||
47 |
local StartPos = { X = 742, Y = 290 } |
|
48 |
||
49 |
--[[ |
|
50 |
List of all targets (or "objectives"). The player has to complete them one-by-one and must always land safely afterwards. |
|
51 |
Some target numbers have names for easier reference. |
|
52 |
]] |
|
53 |
TargetPos[1] = { |
|
54 |
Targets = {{ X = 1027, Y = 217 }}, |
|
55 |
Ammo = { }, |
|
56 |
Message = loc("Here you will learn how to fly the flying saucer|and get so learn some cool tricks.") .. "|" .. |
|
57 |
loc("Collect the first crate to begin!"), |
|
58 |
MessageIcon = -amJetpack, } |
|
59 |
TargetPos[2] = { |
|
60 |
Targets = {{ X = 1369, Y = 265 }}, |
|
61 |
Ammo = { [amJetpack] = 100 }, |
|
62 |
InfFuel = true, |
|
63 |
MessageTime = 10000, |
|
64 |
Message = loc("Get to the crate using your flying saucer!") .. "|" .. |
|
13354 | 65 |
loc("Press [Attack] (space bar by default) to start,|repeatedly tap the up, left and right movement keys to accelerate.") .. "|" .. |
11405 | 66 |
loc("Try to land softly, as you can still take fall damage!"), } |
67 |
TargetPos[3] = { |
|
68 |
Targets = {{ X = 689, Y = 58 }}, |
|
69 |
Ammo = { [amJetpack] = 100 }, |
|
70 |
MessageTime = 5000, |
|
71 |
Message = loc("Now collect the next crate!") .. "|" .. loc("Be careful, your fuel is limited from now on!") .."|" .. |
|
72 |
loc("Tip: If you get stuck in this training, use \"Skip turn\" to restart the current objective.") } |
|
73 |
||
74 |
-- The Double Target |
|
75 |
local DoubleTarget = 4 |
|
76 |
TargetPos[4] = { |
|
77 |
Targets = { { X = 84, Y = -20 }, { X = 1980 , Y = -20 } }, |
|
78 |
Ammo = { [amJetpack] = 2 }, |
|
79 |
MessageTime = 9000, |
|
80 |
Message = loc("Now collect the 2 crates to the far left and right.") .. "|" .. |
|
81 |
loc("You only have 2 flying saucers this time.") .. "|" .. |
|
82 |
loc("Tip: You can change your flying saucer|in mid-flight by hitting the [Attack] key twice."), } |
|
83 |
TargetPos[5] = { |
|
84 |
Targets = {{ X = 47, Y = 804 }}, |
|
85 |
Ammo = { [amJetpack] = 100 }, |
|
86 |
MessageTime = 5000, |
|
87 |
Message = loc("Time for a more interesting stunt, but first just collect the next crate!"), } |
|
88 |
TargetPos[6] = { |
|
89 |
Targets = {{ X = 604, Y = 871}}, |
|
90 |
MessageTime = 15000, |
|
91 |
Message = loc("You can dive with your flying saucer!") .. "|" .. |
|
92 |
loc("Try it now and dive here to collect the crate on the right girder.") .. "|" .. |
|
93 |
loc("You only have one flying saucer this time.") .. "|" .. |
|
94 |
loc("Beware, though, you will only be able to move slowly through the water.") .. "|" .. |
|
95 |
loc("Warning: Never ever leave the flying saucer while in water!"), |
|
96 |
Ammo = { [amJetpack] = 1 }, } |
|
97 |
||
98 |
TargetPos[7] = { |
|
99 |
Targets = {{ X = 1884, Y = 704 }}, |
|
100 |
MessageTime = 6500, |
|
12424
b9cc405541c1
Fix various loc() syntax errors in scripts
Wuzzy <almikes@aol.com>
parents:
11405
diff
changeset
|
101 |
Message = loc("Now dive just one more time and collect the next crate.") .. "|" .. |
b9cc405541c1
Fix various loc() syntax errors in scripts
Wuzzy <almikes@aol.com>
parents:
11405
diff
changeset
|
102 |
loc("Tip: Don't remain for too long in the water, or you won't make it."), |
11405 | 103 |
Ammo = { [amJetpack] = 1}, } |
104 |
||
105 |
-- The Boom Target |
|
106 |
local BoomTarget = 8 |
|
107 |
TargetPos[8] = { |
|
108 |
Modifier = true, Func = function() |
|
109 |
Info(loc("Instructions"), |
|
110 |
loc("Now let's try to drop weapons while flying!") .. "|" .. |
|
111 |
loc("You have to destroy the target above by dropping a grenade on it from your flying saucer.") .. "|" .. |
|
112 |
loc("It's not that easy, so listen carefully:") .. "|" .. |
|
113 |
loc("Step 1: Activate your flying saucer but do NOT move yet!") .. "|" .. |
|
114 |
loc("Step 2: Select your grenade.") .. "|" .. |
|
115 |
loc("Step 3: Start flying and get yourself right above the target.") .. "|" .. |
|
116 |
loc("Step 4: Drop your grenade by pressing the [Long jump] key.") .. "|" .. |
|
12424
b9cc405541c1
Fix various loc() syntax errors in scripts
Wuzzy <almikes@aol.com>
parents:
11405
diff
changeset
|
117 |
loc("Step 5: Get away quickly and land safely anywhere.") .. "| |" .. |
b9cc405541c1
Fix various loc() syntax errors in scripts
Wuzzy <almikes@aol.com>
parents:
11405
diff
changeset
|
118 |
loc("Note: We only give you grenades if you stay in your flying saucer."), nil, 20000) |
11405 | 119 |
|
120 |
SpawnBoomTarget() |
|
121 |
||
122 |
if SaucerGear ~= nil then |
|
123 |
AddAmmo(Player, amGrenade, 1) |
|
124 |
else |
|
125 |
AddAmmo(Player, amGrenade, 0) |
|
126 |
end |
|
127 |
GrenadeThrown = false |
|
128 |
||
129 |
end, |
|
130 |
Ammo = { [amJetpack] = 100 }, |
|
131 |
Respawn = { X = 2000, Y = 742 }, } |
|
132 |
||
133 |
-- The Launch Target |
|
134 |
local LaunchTarget = 9 |
|
135 |
TargetPos[9] = { |
|
136 |
Targets = {{ X = 1700, Y = 640, Type = gtTarget }, { X = 1460, Y = 775, Type = gtTarget }}, |
|
137 |
MessageTime = 20000, |
|
138 |
Message = loc("Only the best pilots can master the following stunts.") .. "|" .. |
|
139 |
loc("As you've seen, the dropped grenade roughly fell into your flying direction.") .. "|" .. |
|
140 |
loc("You have to destroy two targets, but the previous technique would be very difficult or dangerous to use.") .. "|" .. |
|
141 |
loc("So you are able to launch projectiles into your aiming direction, always at full power.") .."|".. |
|
142 |
loc("To launch a projectile in mid-flight, hold [Precise] and press [Long jump].") .. "|" .. |
|
13354 | 143 |
loc("You can even change your aiming direction in mid-flight if you first hold [Precise] and then press [Up] or [Down].") .. "|" .. |
11405 | 144 |
loc("Tip: Changing your aim while flying is very difficult, so adjust it before you take off."), |
145 |
Ammo = { [amJetpack] = 1, }, |
|
146 |
Respawn = { X = 1764, Y = 916 }, |
|
147 |
ExtraFunc = function() |
|
148 |
HogTurnLeft(Player, true) |
|
149 |
if SaucerGear ~= nil then |
|
150 |
AddAmmo(Player, amBazooka, 2) |
|
151 |
else |
|
152 |
AddAmmo(Player, amBazooka, 0) |
|
153 |
end |
|
154 |
BazookasLeft = 2 |
|
155 |
||
156 |
end } |
|
157 |
||
158 |
-- The Underwater Attack Target |
|
159 |
local UnderwaterAttackTarget = 10 |
|
160 |
TargetPos[10] = { |
|
161 |
MessageTime = 17000, |
|
162 |
Message = loc("Now for the supreme discipline of saucer flying, the underwater attack.") .. "|" .. |
|
163 |
loc("Basically this is a combination of diving and launching.") .. "|" .. |
|
164 |
loc("Dropping a weapon while in water would just drown it, but launching one would work.") .."|" .. |
|
165 |
loc("Based on what you've learned, destroy the target on the girder and as always, land safely!"), |
|
166 |
Targets = {{ X = 1200, Y = 930, Type = gtTarget }}, |
|
167 |
Ammo = { [amJetpack] = 1, }, |
|
168 |
Respawn = { X = 1027, Y = 217 }, |
|
169 |
ExtraFunc = function() |
|
170 |
if SaucerGear ~= nil then |
|
171 |
AddAmmo(Player, amBazooka, 1) |
|
172 |
else |
|
173 |
AddAmmo(Player, amBazooka, 0) |
|
174 |
end |
|
175 |
BazookasLeft = 1 |
|
176 |
end } |
|
177 |
TargetPos[11] = { |
|
178 |
Targets = {{ X = 742, Y = 290 }}, |
|
179 |
MessageTime = 5000, |
|
180 |
Message = loc("This almost concludes our tutorial.") .. "|" .. |
|
181 |
loc("You now have infinite fuel, grenades and bazookas for fun.") .. "|" .. |
|
182 |
loc("Collect or destroy the final crate to finish the training."), |
|
183 |
Ammo = { [amJetpack] = 100, [amGrenade] = 100, [amBazooka] = 100 }, |
|
184 |
InfFuel = true, } |
|
185 |
TargetPos[12] = { Modifier = true, Func = function() |
|
186 |
Objective = true |
|
13643 | 187 |
AddCaption(loc("Training complete!"), capcolDefault, capgrpGameState) |
11405 | 188 |
Info(loc("Training complete!"), loc("Good bye!"), 4, 5000) |
189 |
||
190 |
if SaucerGear ~= nil then |
|
191 |
DeleteGear(SaucerGear) |
|
192 |
end |
|
193 |
SetState(Player, band(GetState(Player), bnot(gstHHDriven))) |
|
194 |
SetState(Player, bor(GetState(Player), gstWinner)) |
|
195 |
PlaySound(sndVictory, Player) |
|
196 |
||
197 |
SendStat(siGameResult, loc("You have finished the Flying Saucer Training!")) |
|
198 |
SendStat(siCustomAchievement, loc("Good job!")) |
|
199 |
SendStat(siPlayerKills, "0", loc("Hogonauts")) |
|
200 |
||
201 |
TurnTimeLeft = 0 |
|
202 |
EndGame() |
|
203 |
end, |
|
204 |
} |
|
205 |
||
206 |
-- Just a wrapper for ShowMission |
|
207 |
function Info(Title, Text, Icon, Time) |
|
208 |
if Time == nil then Time = 0 end |
|
209 |
if Icon == nil then Icon = 2 end |
|
210 |
ShowMission(loc("Flying Saucer Training"), Title, Text, Icon, Time) |
|
211 |
end |
|
212 |
||
213 |
-- Spawn all the gears for the Boom Target |
|
214 |
function SpawnBoomTarget() |
|
215 |
if TargetsRemaining < 1 then |
|
216 |
TargetGears[1] = AddGear(1602, 507, gtTarget, 0, 0, 0, 0) |
|
217 |
TargetsRemaining = TargetsRemaining + 1 |
|
218 |
end |
|
219 |
||
220 |
if Barrels[1] == nil then |
|
221 |
Barrels[1] = AddGear(1563, 532, gtExplosives, 0, 0, 0, 0) |
|
222 |
end |
|
223 |
if Barrels[2] == nil then |
|
224 |
Barrels[2] = AddGear(1648, 463, gtExplosives, 0, 0, 0, 0) |
|
225 |
end |
|
226 |
||
227 |
for i=1,#Barrels do |
|
228 |
SetHealth(Barrels[i], 1) |
|
229 |
end |
|
230 |
end |
|
231 |
||
232 |
-- Generic target spawning for the current target |
|
233 |
function SpawnTargets() |
|
234 |
for i=1,#TargetPos[TargetNumber].Targets do |
|
235 |
if TargetGears[i] == nil then |
|
236 |
SpawnTarget(TargetPos[TargetNumber].Targets[i].X, TargetPos[TargetNumber].Targets[i].Y, |
|
237 |
TargetPos[TargetNumber].Targets[i].Type, i) |
|
238 |
end |
|
239 |
end |
|
240 |
end |
|
241 |
||
242 |
function SpawnTarget( PosX, PosY, Type, ID ) |
|
243 |
if Type ~= nil and Type ~= gtCase then |
|
244 |
if Type == gtTarget then |
|
245 |
TargetGears[ID] = AddGear(PosX, PosY, gtTarget, 0, 0, 0, 0) |
|
246 |
end |
|
247 |
else |
|
248 |
TargetGears[ID] = SpawnFakeUtilityCrate(PosX, PosY, false, false) |
|
249 |
end |
|
250 |
TargetsRemaining = TargetsRemaining + 1 |
|
251 |
end |
|
252 |
||
253 |
function AutoSpawn() -- Auto-spawn the next target after you've obtained the current target! |
|
254 |
TargetNumber = TargetNumber + 1 |
|
255 |
TargetsRemaining = 0 |
|
256 |
||
257 |
if TargetPos[TargetNumber].Ammo then |
|
258 |
for ammoType, count in pairs(TargetPos[TargetNumber].Ammo) do |
|
259 |
AddAmmo(Player, ammoType, count) |
|
260 |
end |
|
261 |
if GetCurAmmoType() ~= amJetpack then |
|
262 |
SetWeapon(amJetpack) |
|
263 |
end |
|
264 |
end |
|
265 |
if TargetPos[TargetNumber].InfFuel then |
|
266 |
InfFuel = true |
|
267 |
else |
|
268 |
InfFuel = false |
|
269 |
end |
|
13594
ddd90e92c4c3
Use proper infinite fuel feature in flying saucer training
Wuzzy <Wuzzy2@mail.ru>
parents:
13583
diff
changeset
|
270 |
UpdateInfFuel() |
11405 | 271 |
|
272 |
-- Func (if present) will be run instead of the ordinary spawning handling |
|
273 |
if TargetPos[TargetNumber].Modifier then -- If there is a modifier, run the function |
|
274 |
TargetPos[TargetNumber].Func() |
|
275 |
return true |
|
276 |
end |
|
277 |
||
278 |
-- ExtraFunc is for additional events for a target |
|
279 |
if TargetPos[TargetNumber].ExtraFunc ~= nil then |
|
280 |
TargetPos[TargetNumber].ExtraFunc() |
|
281 |
end |
|
282 |
||
283 |
local subcap |
|
284 |
if TargetNumber == 1 then |
|
285 |
subcap = loc("Training") |
|
286 |
else |
|
287 |
subcap = loc("Instructions") |
|
288 |
end |
|
289 |
Info(subcap, TargetPos[TargetNumber].Message, TargetPos[TargetNumber].MessageIcon, TargetPos[TargetNumber].MessageTime) |
|
290 |
||
291 |
-- Spawn targets on the next position |
|
292 |
SpawnTargets() |
|
293 |
||
294 |
if TargetNumber > 1 then |
|
13643 | 295 |
AddCaption(loc("Next target is ready!"), capcolDefault, capgrpMessage2) |
11405 | 296 |
end |
297 |
end |
|
298 |
||
299 |
-- Returns true if the hedgehog has safely "landed" (alive, no flying saucer gear and not moving) |
|
300 |
-- This is to ensure the training only continues when the player didn't screw up and to restart the current target |
|
301 |
function HasHedgehogLandedYet() |
|
302 |
if band(GetState(Player), gstMoving) == 0 and SaucerGear == nil and GetHealth(Player) > 0 then |
|
303 |
return true |
|
304 |
else |
|
305 |
return false |
|
306 |
end |
|
307 |
end |
|
308 |
||
309 |
-- Clean up the gear mess left behind when the player failed to get a clean state after restarting |
|
310 |
function CleanUpGears() |
|
311 |
-- (We track flames, grenades, bazooka shells) |
|
312 |
runOnGears(DeleteGear) |
|
313 |
end |
|
314 |
||
315 |
-- Completely restarts the current target/objective; the hedgehog is spawned at the last "checkpoint" |
|
316 |
-- Called when hedgeghog is resurrected or skips turn |
|
317 |
function ResetCurrentTarget() |
|
318 |
GrenadeThrown = false |
|
319 |
GrenadeTimer = 0 |
|
320 |
if TargetNumber == LaunchTarget then |
|
321 |
BazookasLeft = 2 |
|
322 |
elseif TargetNumber == UnderwaterAttackTarget then |
|
323 |
BazookasLeft = 1 |
|
324 |
else |
|
325 |
BazookasLeft = 0 |
|
326 |
end |
|
327 |
Check = false |
|
328 |
||
329 |
CleanUpGears() |
|
330 |
||
331 |
local X, Y |
|
332 |
if TargetNumber == 1 then |
|
333 |
X, Y = StartPos.X, StartPos.Y |
|
334 |
else |
|
335 |
if TargetPos[TargetNumber-1].Modifier or TargetPos[TargetNumber-1].Respawn ~= nil then |
|
336 |
X, Y = TargetPos[TargetNumber-1].Respawn.X, TargetPos[TargetNumber-1].Respawn.Y |
|
337 |
else |
|
338 |
X, Y = TargetPos[TargetNumber-1].Targets[1].X, TargetPos[TargetNumber-1].Targets[1].Y |
|
339 |
end |
|
340 |
end |
|
341 |
if TargetNumber == BoomTarget then |
|
342 |
SpawnBoomTarget() |
|
343 |
end |
|
344 |
if TargetPos[TargetNumber].Modifier ~= true then |
|
345 |
SpawnTargets() |
|
346 |
end |
|
347 |
if TargetPos[TargetNumber].Ammo then |
|
348 |
for ammoType, count in pairs(TargetPos[TargetNumber].Ammo) do |
|
349 |
AddAmmo(Player, ammoType, count) |
|
350 |
end |
|
351 |
if GetCurAmmoType() ~= amJetpack then |
|
352 |
SetWeapon(amJetpack) |
|
353 |
end |
|
354 |
end |
|
355 |
if TargetPos[TargetNumber].InfFuel then |
|
356 |
InfFuel = true |
|
357 |
else |
|
358 |
InfFuel = false |
|
359 |
end |
|
13594
ddd90e92c4c3
Use proper infinite fuel feature in flying saucer training
Wuzzy <Wuzzy2@mail.ru>
parents:
13583
diff
changeset
|
360 |
UpdateInfFuel() |
11405 | 361 |
|
362 |
SetGearPosition(Player, X, Y) |
|
363 |
end |
|
364 |
||
365 |
function onGameInit() |
|
366 |
Seed = 1 |
|
367 |
GameFlags = gfInfAttack + gfOneClanMode + gfSolidLand + gfDisableWind |
|
13664
85506d95977d
Use new script variable cMaxTurnTime in scripts for consistency
Wuzzy <Wuzzy2@mail.ru>
parents:
13643
diff
changeset
|
368 |
TurnTime = cMaxTurnTime --[[ This effectively hides the turn time; a turn time above 1000s is not displayed. |
85506d95977d
Use new script variable cMaxTurnTime in scripts for consistency
Wuzzy <Wuzzy2@mail.ru>
parents:
13643
diff
changeset
|
369 |
We will also ensure this timer always stays above 999s later ]] |
11405 | 370 |
CaseFreq = 0 |
371 |
MinesNum = 0 |
|
372 |
Explosives = 0 |
|
373 |
Map = "Eyes" |
|
374 |
Theme = "EarthRise" |
|
375 |
SuddenDeathTurns = 50 |
|
376 |
WaterRise = 0 |
|
377 |
HealthDecrease = 0 |
|
378 |
||
379 |
-- Team name is a pun on “hedgehog” and “astronauts” |
|
13583
141cdfe0f3ca
Switch almost all Lua calls of AddTeam to using default clan colors instead of hardcoded color
Wuzzy <Wuzzy2@mail.ru>
parents:
13354
diff
changeset
|
380 |
AddTeam( loc( "Hogonauts" ), -9, "earth", "Earth", "Default", "cm_galaxy" ) |
11405 | 381 |
|
382 |
-- Hedgehog name is a pun on “Neil Armstrong” |
|
383 |
Player = AddHog( loc( "Neil Hogstrong" ), 0, 1, "NoHat" ) |
|
384 |
SetGearPosition( Player, StartPos.X, StartPos.Y) |
|
385 |
SetEffect( Player, heResurrectable, 1 ) |
|
386 |
end |
|
387 |
||
388 |
function onGameStart() |
|
389 |
SendHealthStatsOff() |
|
390 |
||
391 |
-- Girder near first crate |
|
392 |
PlaceGirder(1257, 204, 6) |
|
393 |
||
394 |
-- The upper girders |
|
395 |
PlaceGirder(84, 16, 0) |
|
396 |
PlaceGirder(1980, 16, 0) |
|
397 |
||
398 |
-- The lower girder platform at the water pit |
|
399 |
PlaceGirder(509, 896, 4) |
|
400 |
PlaceGirder(668, 896, 4) |
|
401 |
PlaceGirder(421, 896, 2) |
|
402 |
PlaceGirder(758, 896, 2) |
|
403 |
||
404 |
-- Girders for the Launch Target and the Underwater Attack Target |
|
405 |
PlaceGirder(1191, 960, 4) |
|
406 |
PlaceGirder(1311, 960, 0) |
|
407 |
PlaceGirder(1460, 827, 3) |
|
408 |
PlaceGirder(1509, 763, 2) |
|
409 |
PlaceGirder(1605, 672, 4) |
|
410 |
PlaceGirder(1764, 672, 4) |
|
411 |
PlaceGirder(1803, 577, 6) |
|
412 |
||
413 |
-- Spawn our 1st target using the wrapper function |
|
414 |
AutoSpawn() |
|
415 |
end |
|
416 |
||
417 |
function onAmmoStoreInit() |
|
418 |
SetAmmo(amJetpack, 0, 0, 0, 0) |
|
419 |
SetAmmo(amGrenade, 0, 0, 0, 0) |
|
420 |
SetAmmo(amBazooka, 0, 0, 0, 0) |
|
421 |
||
422 |
-- Added for resetting current target/objective when player is stuck somehow |
|
423 |
SetAmmo(amSkip, 9, 0, 0, 0) |
|
424 |
end |
|
425 |
||
426 |
function onGearAdd(Gear) |
|
427 |
if GetGearType(Gear) == gtJetpack then |
|
428 |
SaucerGear = Gear |
|
429 |
if TargetNumber == BoomTarget and GrenadeThrown == false then |
|
430 |
AddAmmo(Player, amGrenade, 1) |
|
431 |
end |
|
432 |
if (TargetNumber == LaunchTarget or TargetNumber == UnderwaterAttackTarget) and BazookasLeft > 0 then |
|
433 |
AddAmmo(Player, amBazooka, BazookasLeft) |
|
434 |
end |
|
13594
ddd90e92c4c3
Use proper infinite fuel feature in flying saucer training
Wuzzy <Wuzzy2@mail.ru>
parents:
13583
diff
changeset
|
435 |
UpdateInfFuel() |
13071
bcb205281f38
Some minor convenience improvements in Basic Flying Saucer Training
Wuzzy <Wuzzy2@mail.ru>
parents:
12424
diff
changeset
|
436 |
-- If player starts using saucer, the player probably finished reading and the mission panel |
bcb205281f38
Some minor convenience improvements in Basic Flying Saucer Training
Wuzzy <Wuzzy2@mail.ru>
parents:
12424
diff
changeset
|
437 |
-- would just get in the way. So we hide it! |
bcb205281f38
Some minor convenience improvements in Basic Flying Saucer Training
Wuzzy <Wuzzy2@mail.ru>
parents:
12424
diff
changeset
|
438 |
HideMission() |
11405 | 439 |
end |
440 |
if GetGearType(Gear) == gtGrenade then |
|
441 |
GrenadeThrown = true |
|
442 |
GrenadeTimer = 0 |
|
443 |
end |
|
444 |
if GetGearType(Gear) == gtShell then |
|
445 |
BazookasLeft = BazookasLeft - 1 |
|
446 |
end |
|
447 |
if GetGearType(Gear) == gtFlame or GetGearType(Gear) == gtGrenade or GetGearType(Gear) == gtShell then |
|
448 |
trackGear(Gear) |
|
449 |
end |
|
450 |
end |
|
451 |
||
452 |
function onGearDelete(Gear) |
|
453 |
if GetGearType(Player) ~= nil and (GetGearType(Gear) == gtTarget or GetGearType(Gear) == gtCase) then |
|
454 |
for i=1, #TargetGears do |
|
455 |
if Gear == TargetGears[i] then |
|
456 |
TargetGears[i] = nil |
|
457 |
TargetsRemaining = TargetsRemaining - 1 |
|
458 |
end |
|
459 |
end |
|
460 |
if TargetsRemaining <= 0 then |
|
461 |
if TargetNumber == BoomTarget or not HasHedgehogLandedYet() then |
|
462 |
if SaucerGear then |
|
13643 | 463 |
AddCaption(loc("Objective completed! Now land safely."), capcolDefault, capgrpMessage2) |
11405 | 464 |
end |
465 |
Check = true |
|
466 |
CheckTimer = 500 |
|
467 |
else |
|
468 |
AutoSpawn() |
|
469 |
end |
|
470 |
end |
|
471 |
end |
|
472 |
if GetGearType(Gear) == gtGrenade then |
|
473 |
GrenadeTimer = 0 |
|
474 |
GrenadeExploded = true |
|
475 |
end |
|
476 |
if GetGearType(Gear) == gtJetpack then |
|
477 |
SaucerGear = nil |
|
478 |
if TargetNumber == BoomTarget then |
|
479 |
AddAmmo(Player, amGrenade, 0) |
|
480 |
end |
|
481 |
if TargetNumber == LaunchTarget or TargetNumber == UnderwaterAttackTarget then |
|
482 |
AddAmmo(Player, amBazooka, 0) |
|
483 |
end |
|
484 |
end |
|
485 |
if GetGearType(Gear) == gtCase and GetGearType(Player) ~= nil then |
|
486 |
PlaySound(sndShotgunReload) |
|
487 |
end |
|
488 |
if Gear == Barrels[1] then |
|
489 |
Barrels[1] = nil |
|
490 |
end |
|
491 |
if Gear == Barrels[2] then |
|
492 |
Barrels[2] = nil |
|
13643 | 493 |
AddCaption(loc("Kaboom!"), capcolDefault, capgrpMessage) |
11405 | 494 |
end |
495 |
end |
|
496 |
||
497 |
||
498 |
||
499 |
function onNewTurn() |
|
13071
bcb205281f38
Some minor convenience improvements in Basic Flying Saucer Training
Wuzzy <Wuzzy2@mail.ru>
parents:
12424
diff
changeset
|
500 |
if GetAmmoCount(CurrentHedgehog, amJetpack) > 0 then |
bcb205281f38
Some minor convenience improvements in Basic Flying Saucer Training
Wuzzy <Wuzzy2@mail.ru>
parents:
12424
diff
changeset
|
501 |
SetWeapon(amJetpack) |
bcb205281f38
Some minor convenience improvements in Basic Flying Saucer Training
Wuzzy <Wuzzy2@mail.ru>
parents:
12424
diff
changeset
|
502 |
end |
11405 | 503 |
end |
504 |
||
505 |
function onGameTick20() |
|
506 |
if (TurnTimeLeft < 1500000 and not Objective) then |
|
507 |
TurnTimeLeft = TurnTime |
|
508 |
end |
|
509 |
if Check then |
|
510 |
CheckTimer = CheckTimer - 20 |
|
511 |
if CheckTimer <= 0 then |
|
512 |
if HasHedgehogLandedYet() then |
|
513 |
AutoSpawn() |
|
514 |
Check = false |
|
515 |
GrenadeThrown = false |
|
516 |
end |
|
517 |
end |
|
518 |
end |
|
13643 | 519 |
if GrenadeExploded and TargetNumber == BoomTarget and GetHealth(Player) then |
11405 | 520 |
GrenadeTimer = GrenadeTimer + 20 |
521 |
if GrenadeTimer > 1500 then |
|
522 |
GrenadeTimer = 0 |
|
523 |
GrenadeThrown = false |
|
524 |
GrenadeExploded = false |
|
525 |
if SaucerGear and TargetNumber == BoomTarget and TargetsRemaining > 0 then |
|
526 |
PlaySound(sndShotgunReload) |
|
13643 | 527 |
AddCaption(loc("+1 Grenade"), GetClanColor(GetHogClan(Player)), capgrpAmmoinfo) |
11405 | 528 |
AddAmmo(Player, amGrenade, 1) |
529 |
end |
|
530 |
end |
|
531 |
end |
|
532 |
end |
|
533 |
||
13594
ddd90e92c4c3
Use proper infinite fuel feature in flying saucer training
Wuzzy <Wuzzy2@mail.ru>
parents:
13583
diff
changeset
|
534 |
function UpdateInfFuel() |
ddd90e92c4c3
Use proper infinite fuel feature in flying saucer training
Wuzzy <Wuzzy2@mail.ru>
parents:
13583
diff
changeset
|
535 |
if SaucerGear then |
ddd90e92c4c3
Use proper infinite fuel feature in flying saucer training
Wuzzy <Wuzzy2@mail.ru>
parents:
13583
diff
changeset
|
536 |
if InfFuel then |
ddd90e92c4c3
Use proper infinite fuel feature in flying saucer training
Wuzzy <Wuzzy2@mail.ru>
parents:
13583
diff
changeset
|
537 |
SetHealth(SaucerGear, JETPACK_FUEL_INFINITE) |
ddd90e92c4c3
Use proper infinite fuel feature in flying saucer training
Wuzzy <Wuzzy2@mail.ru>
parents:
13583
diff
changeset
|
538 |
elseif GetHealth(SaucerGear == JETPACK_FUEL_INFINITE) then |
ddd90e92c4c3
Use proper infinite fuel feature in flying saucer training
Wuzzy <Wuzzy2@mail.ru>
parents:
13583
diff
changeset
|
539 |
SetHealth(SaucerGear, 2000) |
ddd90e92c4c3
Use proper infinite fuel feature in flying saucer training
Wuzzy <Wuzzy2@mail.ru>
parents:
13583
diff
changeset
|
540 |
end |
11405 | 541 |
end |
542 |
end |
|
543 |
||
544 |
function onGearDamage(Gear) |
|
545 |
if Gear == Player then |
|
546 |
CleanUpGears() |
|
547 |
GrenadeThrown = false |
|
548 |
Check = false |
|
549 |
end |
|
550 |
end |
|
551 |
||
13630
fe7d2bbf5f3f
Fix resurrection animation appearing at wrong position for some missions and styles
Wuzzy <Wuzzy2@mail.ru>
parents:
13594
diff
changeset
|
552 |
function onGearResurrect(Gear, VGear) |
11405 | 553 |
if Gear == Player then |
13643 | 554 |
AddCaption(loc("Oh no! You have died. Try again!"), capcolDefault, capgrpMessage2) |
11405 | 555 |
ResetCurrentTarget() |
13630
fe7d2bbf5f3f
Fix resurrection animation appearing at wrong position for some missions and styles
Wuzzy <Wuzzy2@mail.ru>
parents:
13594
diff
changeset
|
556 |
if VGear then |
fe7d2bbf5f3f
Fix resurrection animation appearing at wrong position for some missions and styles
Wuzzy <Wuzzy2@mail.ru>
parents:
13594
diff
changeset
|
557 |
SetVisualGearValues(VGear, GetX(Gear), GetY(Gear)) |
fe7d2bbf5f3f
Fix resurrection animation appearing at wrong position for some missions and styles
Wuzzy <Wuzzy2@mail.ru>
parents:
13594
diff
changeset
|
558 |
end |
11405 | 559 |
end |
560 |
end |
|
561 |
||
13172
159004144897
Use onSkipTurn in scripts to detect turn skips
Wuzzy <Wuzzy2@mail.ru>
parents:
13071
diff
changeset
|
562 |
function onSkipTurn() |
13643 | 563 |
AddCaption(loc("Try again!"), capcolDefault, capgrpMessage2) |
13172
159004144897
Use onSkipTurn in scripts to detect turn skips
Wuzzy <Wuzzy2@mail.ru>
parents:
13071
diff
changeset
|
564 |
ResetCurrentTarget() |
11405 | 565 |
end |