author | Wuzzy <almikes@aol.com> |
Tue, 11 Apr 2017 02:44:59 +0200 | |
changeset 12224 | d62d6f8ebef1 |
parent 12049 | 030464f34d47 |
child 12346 | fb22caa19600 |
permissions | -rw-r--r-- |
11015 | 1 |
-- Hedgewars SniperRifle Training |
2 |
-- Scripting Example |
|
3 |
||
4 |
-- Lines such as this one are comments - they are ignored |
|
5 |
-- by the game, no matter what kind of text is in there. |
|
6 |
-- It's also possible to place a comment after some real |
|
7 |
-- instruction as you see below. In short, everything |
|
8 |
-- following "--" is ignored. |
|
9 |
||
10 |
--------------------------------------------------------------- |
|
11 |
-- At first we implement the localization library using loadfile. |
|
12 |
-- This allows us to localize strings without needing to think |
|
13 |
-- about translations. |
|
14 |
-- We can use the function loc(text) to localize a string. |
|
15 |
||
16 |
HedgewarsScriptLoad("/Scripts/Locale.lua") |
|
17 |
||
18 |
-- This variable will hold the number of destroyed targets. |
|
19 |
local score = 0 |
|
20 |
-- This variable will hold the number of shots from the sniper rifle |
|
21 |
local shots = 0 |
|
22 |
-- This variable represents the number of targets to destroy. |
|
23 |
local score_goal = 31 |
|
24 |
-- This variable controls how many milliseconds/ticks we'd |
|
25 |
-- like to wait before we end the round once all targets |
|
26 |
-- have been destroyed. |
|
27 |
local end_timer = 1000 -- 1000 ms = 1 s |
|
28 |
-- This variable is set to true if the game is lost (i.e. |
|
29 |
-- time runs out). |
|
30 |
local game_lost = false |
|
31 |
-- This variable will point to the hog's gear |
|
32 |
local player = nil |
|
33 |
-- This variable will grab the time left at the end of the round |
|
34 |
local time_goal = 0 |
|
35 |
||
36 |
local target = nil |
|
37 |
||
38 |
local last_hit_time = 0 |
|
11528 | 39 |
|
40 |
local cinematic = false |
|
41 |
||
11015 | 42 |
-- This is a custom function to make it easier to |
43 |
-- spawn more targets with just one line of code |
|
44 |
-- You may define as many custom functions as you |
|
45 |
-- like. |
|
46 |
function spawnTarget(x, y) |
|
47 |
-- add a new target gear |
|
48 |
target = AddGear(x, y, gtTarget, 0, 0, 0, 0) |
|
49 |
-- have the camera move to the target so the player knows where it is |
|
50 |
FollowGear(target) |
|
51 |
end |
|
52 |
||
53 |
function blowUp(x, y) |
|
11528 | 54 |
if cinematic == false then |
55 |
cinematic = true |
|
56 |
SetCinematicMode(true) |
|
57 |
end |
|
11015 | 58 |
-- adds some TNT |
59 |
gear = AddGear(x, y, gtDynamite, 0, 0, 0, 0) |
|
60 |
end |
|
61 |
||
62 |
function onNewTurn() |
|
63 |
SetWeapon(amSniperRifle) |
|
64 |
end |
|
65 |
||
66 |
-- This function is called before the game loads its |
|
67 |
-- resources. |
|
68 |
-- It's one of the predefined function names that will |
|
69 |
-- be called by the game. They give you entry points |
|
70 |
-- where you're able to call your own code using either |
|
71 |
-- provided instructions or custom functions. |
|
72 |
function onGameInit() |
|
73 |
-- At first we have to overwrite/set some global variables |
|
74 |
-- that define the map, the game has to load, as well as |
|
75 |
-- other things such as the game rules to use, etc. |
|
76 |
-- Things we don't modify here will use their default values. |
|
77 |
||
78 |
-- The base number for the random number generator |
|
79 |
Seed = 0 |
|
80 |
-- Game settings and rules |
|
81 |
GameFlags = gfMultiWeapon + gfOneClanMode + gfArtillery |
|
82 |
-- The time the player has to move each round (in ms) |
|
83 |
TurnTime = 150000 |
|
84 |
-- The frequency of crate drops |
|
85 |
CaseFreq = 0 |
|
86 |
-- The number of mines being placed |
|
87 |
MinesNum = 0 |
|
88 |
-- The number of explosives being placed |
|
89 |
Explosives = 0 |
|
90 |
-- The delay between each round |
|
91 |
Delay = 0 |
|
92 |
-- The map to be played |
|
93 |
Map = "Ropes" |
|
94 |
-- The theme to be used |
|
11017
16c47a5573e4
change theme used by sniper training, for performance reasons
sheepluva
parents:
11015
diff
changeset
|
95 |
Theme = "Golf" |
12224
d62d6f8ebef1
Disable Sudden Death consistently in all missions which don't require it
Wuzzy <almikes@aol.com>
parents:
12049
diff
changeset
|
96 |
-- Disable Sudden Death |
d62d6f8ebef1
Disable Sudden Death consistently in all missions which don't require it
Wuzzy <almikes@aol.com>
parents:
12049
diff
changeset
|
97 |
WaterRise = 0 |
d62d6f8ebef1
Disable Sudden Death consistently in all missions which don't require it
Wuzzy <almikes@aol.com>
parents:
12049
diff
changeset
|
98 |
HealthDecrease = 0 |
11015 | 99 |
|
100 |
-- Create the player team |
|
12049
030464f34d47
Tweak flags used in all missions to fit more to the theme
Wuzzy <almikes@aol.com>
parents:
11968
diff
changeset
|
101 |
AddTeam(loc("Sniperz"), 14483456, "Simple", "Island", "Default", "cm_crosshair") |
11015 | 102 |
-- And add a hog to it |
103 |
player = AddHog(loc("Hunter"), 0, 1, "Sniper") |
|
104 |
SetGearPosition(player, 602, 1465) |
|
105 |
end |
|
106 |
||
107 |
-- This function is called when the round starts |
|
108 |
-- it spawns the first target that has to be destroyed. |
|
109 |
-- In addition it shows the scenario goal(s). |
|
110 |
function onGameStart() |
|
111 |
-- Disable graph in stats screen |
|
112 |
SendHealthStatsOff() |
|
113 |
-- Spawn the first target. |
|
114 |
spawnTarget(860,1020) |
|
11017
16c47a5573e4
change theme used by sniper training, for performance reasons
sheepluva
parents:
11015
diff
changeset
|
115 |
|
11015 | 116 |
-- Show some nice mission goals. |
117 |
-- Parameters are: caption, sub caption, description, |
|
118 |
-- extra text, icon and time to show. |
|
119 |
-- A negative icon parameter (-n) represents the n-th weapon icon |
|
120 |
-- A positive icon paramter (n) represents the (n+1)-th mission icon |
|
121 |
-- A timeframe of 0 is replaced with the default time to show. |
|
122 |
ShowMission(loc("Sniper Training"), loc("Aiming Practice"), loc("Eliminate all targets before your time runs out.|You have unlimited ammo for this mission."), -amSniperRifle, 0) |
|
123 |
end |
|
124 |
||
125 |
-- This function is called every game tick. |
|
126 |
-- Note that there are 1000 ticks within one second. |
|
127 |
-- You shouldn't try to calculate too complicated |
|
128 |
-- code here as this might slow down your game. |
|
129 |
function onGameTick20() |
|
130 |
if game_lost then |
|
131 |
return |
|
132 |
end |
|
133 |
-- after a target is destroyed, show hog, then target |
|
134 |
if (target ~= nil) and (TurnTimeLeft + 1300 < last_hit_time) then |
|
135 |
-- move camera to the target |
|
136 |
FollowGear(target) |
|
137 |
elseif TurnTimeLeft + 300 < last_hit_time then |
|
138 |
-- move camera to the hog |
|
139 |
FollowGear(player) |
|
140 |
end |
|
141 |
-- If time's up, set the game to be lost. |
|
142 |
-- We actually check the time to be "1 ms" as it |
|
143 |
-- will be at "0 ms" right at the start of the game. |
|
144 |
if TurnTimeLeft < 40 and TurnTimeLeft > 0 and score < score_goal and game_lost == false then |
|
145 |
game_lost = true |
|
146 |
-- ... and show a short message. |
|
147 |
AddCaption(loc("Time's up!")) |
|
148 |
ShowMission(loc("Sniper Training"), loc("Aiming Practice"), loc("Oh no! Time's up! Just try again."), -amSkip, 0) |
|
149 |
-- and generate the stats and go to the stats screen |
|
150 |
generateStats() |
|
151 |
EndGame() |
|
152 |
-- Just to be sure set the goal time to 1 ms |
|
153 |
time_goal = 1 |
|
154 |
end |
|
155 |
-- If the goal is reached or we've lost ... |
|
156 |
if score == score_goal or game_lost then |
|
157 |
-- ... check to see if the time we'd like to |
|
158 |
-- wait has passed and then ... |
|
159 |
if end_timer == 0 then |
|
160 |
-- ... end the game ... |
|
161 |
generateStats() |
|
162 |
EndGame() |
|
163 |
else |
|
164 |
-- ... or just lower the timer by 1. |
|
165 |
-- Reset the time left to stop the timer |
|
166 |
TurnTimeLeft = time_goal |
|
167 |
end |
|
168 |
end_timer = end_timer - 20 |
|
169 |
end |
|
170 |
end |
|
171 |
||
172 |
-- This function is called when the game is initialized |
|
173 |
-- to request the available ammo and probabilities |
|
174 |
function onAmmoStoreInit() |
|
175 |
-- add an unlimited supply of shotgun ammo |
|
176 |
SetAmmo(amSniperRifle, 9, 0, 0, 0) |
|
177 |
end |
|
178 |
||
179 |
-- This function is called when a new gear is added. |
|
180 |
-- We use it to count the number of shots, which we |
|
181 |
-- in turn use to calculate the final score and stats |
|
182 |
function onGearAdd(gear) |
|
183 |
if GetGearType(gear) == gtSniperRifleShot then |
|
184 |
shots = shots + 1 |
|
185 |
end |
|
186 |
end |
|
187 |
||
188 |
-- This function is called before a gear is destroyed. |
|
189 |
-- We use it to count the number of targets destroyed. |
|
190 |
function onGearDelete(gear) |
|
11528 | 191 |
local gt = GetGearType(gear) |
11017
16c47a5573e4
change theme used by sniper training, for performance reasons
sheepluva
parents:
11015
diff
changeset
|
192 |
|
11528 | 193 |
if gt == gtCase then |
11015 | 194 |
game_lost = true |
195 |
return |
|
196 |
end |
|
11017
16c47a5573e4
change theme used by sniper training, for performance reasons
sheepluva
parents:
11015
diff
changeset
|
197 |
|
11528 | 198 |
if (gt == gtDynamite) and cinematic then |
199 |
cinematic = false |
|
200 |
SetCinematicMode(false) |
|
201 |
return |
|
202 |
end |
|
203 |
||
204 |
if gt == gtTarget then |
|
11015 | 205 |
-- remember when the target was hit for adjusting the camera |
206 |
last_hit_time = TurnTimeLeft |
|
207 |
-- Add one point to our score/counter |
|
208 |
score = score + 1 |
|
209 |
-- If we haven't reached the goal ... |
|
210 |
if score < score_goal then |
|
211 |
-- ... spawn another target. |
|
212 |
if score == 1 then |
|
213 |
spawnTarget(1520,1350) |
|
214 |
elseif score == 2 then |
|
215 |
spawnTarget(1730,1040) |
|
216 |
elseif score == 3 then |
|
217 |
spawnTarget(2080,780) |
|
218 |
elseif score == 4 then |
|
219 |
AddCaption(loc("Good so far!") .. " " .. loc("Keep it up!")); |
|
220 |
blowUp(1730,1226) |
|
221 |
blowUp(1440,1595) |
|
222 |
blowUp(1527,1575) |
|
223 |
blowUp(1614,1595) |
|
224 |
blowUp(1420,1675) |
|
225 |
blowUp(1527,1675) |
|
226 |
blowUp(1634,1675) |
|
227 |
blowUp(1440,1755) |
|
228 |
blowUp(1527,1775) |
|
229 |
blowUp(1614,1755) |
|
230 |
spawnTarget(1527,1667) |
|
231 |
elseif score == 5 then |
|
232 |
spawnTarget(1527,1667) |
|
233 |
elseif score == 6 then |
|
234 |
spawnTarget(2175,1300) |
|
235 |
elseif score == 7 then |
|
236 |
spawnTarget(2250,940) |
|
237 |
elseif score == 8 then |
|
238 |
spawnTarget(2665,1540) |
|
239 |
elseif score == 9 then |
|
240 |
spawnTarget(3040,1160) |
|
241 |
elseif score == 10 then |
|
242 |
spawnTarget(2930,1500) |
|
243 |
elseif score == 11 then |
|
244 |
AddCaption(loc("This one's tricky.")); |
|
245 |
spawnTarget(700,720) |
|
246 |
elseif score == 12 then |
|
247 |
AddCaption(loc("Well done.")); |
|
248 |
blowUp(914,1222) |
|
249 |
blowUp(1050,1222) |
|
250 |
blowUp(1160,1008) |
|
251 |
blowUp(1160,1093) |
|
252 |
blowUp(1160,1188) |
|
253 |
blowUp(375,911) |
|
254 |
blowUp(510,911) |
|
255 |
blowUp(640,911) |
|
256 |
blowUp(780,911) |
|
257 |
blowUp(920,911) |
|
258 |
blowUp(1060,913) |
|
259 |
blowUp(1198,913) |
|
260 |
spawnTarget(1200,730) |
|
261 |
elseif score == 13 then |
|
262 |
spawnTarget(1200,830) |
|
263 |
elseif score == 14 then |
|
264 |
spawnTarget(1430,450) |
|
265 |
elseif score == 15 then |
|
266 |
spawnTarget(796,240) |
|
267 |
elseif score == 16 then |
|
268 |
spawnTarget(300,10) |
|
269 |
elseif score == 17 then |
|
270 |
spawnTarget(2080,820) |
|
271 |
elseif score == 18 then |
|
272 |
AddCaption(loc("Demolition is fun!")); |
|
273 |
blowUp(2110,920) |
|
274 |
blowUp(2210,920) |
|
275 |
blowUp(2200,305) |
|
276 |
blowUp(2300,305) |
|
277 |
blowUp(2300,400) |
|
278 |
blowUp(2300,500) |
|
279 |
blowUp(2300,600) |
|
280 |
blowUp(2300,700) |
|
281 |
blowUp(2300,800) |
|
282 |
blowUp(2300,900) |
|
283 |
blowUp(2401,305) |
|
284 |
blowUp(2532,305) |
|
285 |
blowUp(2663,305) |
|
286 |
spawnTarget(2300,760) |
|
287 |
elseif score == 19 then |
|
288 |
spawnTarget(2300,760) |
|
289 |
elseif score == 20 then |
|
290 |
spawnTarget(2738,190) |
|
291 |
elseif score == 21 then |
|
292 |
spawnTarget(2590,-100) |
|
293 |
elseif score == 22 then |
|
294 |
AddCaption(loc("Will this ever end?")); |
|
295 |
blowUp(2790,305) |
|
296 |
blowUp(2930,305) |
|
297 |
blowUp(3060,305) |
|
298 |
blowUp(3190,305) |
|
299 |
blowUp(3310,305) |
|
300 |
blowUp(3393,613) |
|
301 |
blowUp(2805,370) |
|
302 |
blowUp(2805,500) |
|
303 |
blowUp(2805,630) |
|
304 |
blowUp(2805,760) |
|
305 |
blowUp(2805,890) |
|
306 |
blowUp(3258,370) |
|
307 |
blowUp(3258,475) |
|
308 |
blowUp(3264,575) |
|
309 |
spawnTarget(3230,240) |
|
310 |
elseif score == 23 then |
|
311 |
spawnTarget(3230,290) |
|
312 |
elseif score == 24 then |
|
313 |
spawnTarget(3670,250) |
|
314 |
elseif score == 25 then |
|
315 |
spawnTarget(2620,-100) |
|
316 |
elseif score == 26 then |
|
317 |
spawnTarget(2870,300) |
|
318 |
elseif score == 27 then |
|
319 |
spawnTarget(3850,900) |
|
320 |
elseif score == 28 then |
|
321 |
spawnTarget(3780,300) |
|
322 |
elseif score == 29 then |
|
323 |
spawnTarget(3670,0) |
|
324 |
elseif score == 30 then |
|
325 |
AddCaption(loc("Last Target!")); |
|
326 |
spawnTarget(3480,1200) |
|
327 |
end |
|
328 |
else |
|
329 |
if not game_lost then |
|
330 |
-- Otherwise show that the goal was accomplished |
|
331 |
ShowMission(loc("Sniper Training"), loc("Aiming Practice"), loc("Congratulations! You've eliminated all targets|within the allowed time frame."), 0, 0) |
|
332 |
-- Also let the hogs shout "victory!" |
|
333 |
PlaySound(sndVictory) |
|
334 |
-- Save the time left so we may keep it. |
|
335 |
time_goal = TurnTimeLeft |
|
336 |
end |
|
337 |
end |
|
338 |
end |
|
339 |
end |
|
340 |
||
341 |
-- This function calculates the final score of the player and provides some texts and |
|
342 |
-- data for the final stats screen |
|
343 |
function generateStats() |
|
344 |
local accuracy = (score/shots)*100 |
|
345 |
local end_score_targets = (score * 200) |
|
346 |
local end_score_overall |
|
347 |
if not game_lost then |
|
348 |
local end_score_time = math.ceil(time_goal/5) |
|
349 |
local end_score_accuracy = math.ceil(accuracy * 100) |
|
350 |
end_score_overall = end_score_time + end_score_targets + end_score_accuracy |
|
351 |
||
352 |
SendStat(siGameResult, loc("You have successfully finished the sniper rifle training!")) |
|
353 |
SendStat(siCustomAchievement, string.format(loc("You have destroyed %d of %d targets (+%d points)."), score, score_goal, end_score_targets)) |
|
354 |
SendStat(siCustomAchievement, string.format(loc("You have made %d shots."), shots)) |
|
355 |
SendStat(siCustomAchievement, string.format(loc("Accuracy bonus: +%d points"), end_score_accuracy)) |
|
356 |
SendStat(siCustomAchievement, string.format(loc("You had %.2fs remaining on the clock (+%d points)."), (time_goal/1000), end_score_time)) |
|
357 |
else |
|
358 |
SendStat(siGameResult, loc("You lose!")) |
|
11017
16c47a5573e4
change theme used by sniper training, for performance reasons
sheepluva
parents:
11015
diff
changeset
|
359 |
|
11015 | 360 |
SendStat(siCustomAchievement, string.format(loc("You have destroyed %d of %d targets (+%d points)."), score, score_goal, end_score_targets)) |
361 |
SendStat(siCustomAchievement, string.format(loc("You have made %d shots."), shots)) |
|
362 |
end_score_overall = end_score_targets |
|
363 |
end |
|
364 |
SendStat(siPlayerKills, tostring(end_score_overall), loc("Sniperz")) |
|
365 |
SendStat(siPointType, loc("points")) |
|
366 |
end |