author | Wuzzy <Wuzzy2@mail.ru> |
Sat, 26 Oct 2019 22:44:15 +0200 | |
changeset 15485 | 91c972f126b7 |
parent 15483 | 70aba717485a |
child 15488 | 04b63bcdb2ab |
permissions | -rw-r--r-- |
15396 | 1 |
--[[ |
2 |
RACER |
|
3 |
map-independant racing script |
|
4 |
originally by mikade, edited heavily by others |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
5 |
|
15396 | 6 |
----------------------------------------- |
7 |
Script parameters: |
|
8 |
rounds=N |
|
9 |
--> The game will be played with N rounds (default: 3) |
|
10 |
||
11 |
waypointradius=N |
|
12 |
--> The waypoints have a radius of N pixels (default: 450) |
|
13 |
||
14 |
maxwaypoints=N |
|
15 |
--> The maximum number of waypoints to be placed (default: 8) |
|
16 |
||
17 |
teamrope=true |
|
18 |
--> The team will be colored in the color of the team. |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
19 |
----------------------------------------- |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
20 |
|
15396 | 21 |
DEVELOPER WARNING - FOR OFFICIAL DEVELOPMENT -- |
22 |
Be careful when editig this script, do not introduce changes lightly! |
|
23 |
This script is used for time records on the official Hedgewars server. |
|
24 |
Introducing breaking changes means we have to invalidate past time records! |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
25 |
|
15396 | 26 |
]] |
11647
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
27 |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
28 |
----------------------------- |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
29 |
-- SCRIPT BEGINS |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
30 |
----------------------------- |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
31 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
32 |
HedgewarsScriptLoad("/Scripts/Locale.lua") |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
33 |
HedgewarsScriptLoad("/Scripts/OfficialChallenges.lua") |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
34 |
HedgewarsScriptLoad("/Scripts/Params.lua") |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
35 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
36 |
------------------ |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
37 |
-- Got Variables? |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
38 |
------------------ |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
39 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
40 |
local roundLimit = 3 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
41 |
local roundNumber = 0 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
42 |
local firstClan = 10 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
43 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
44 |
local fastX = {} |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
45 |
local fastY = {} |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
46 |
local fastCount = 0 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
47 |
local fastIndex = 0 |
11581 | 48 |
local fastColour = 0xffffffff |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
49 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
50 |
local currX = {} |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
51 |
local currY = {} |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
52 |
local currCount = 0 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
53 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
54 |
local specialPointsX = {} |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
55 |
local specialPointsY = {} |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
56 |
local specialPointsCount = 0 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
57 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
58 |
local TeamRope = false |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
59 |
|
13129
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
60 |
local waypointCursor = false |
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
61 |
local waypointPreview = nil |
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
62 |
|
14070
a5be3ef4bbbe
Update official challenge hashes, improve console logging (warning: racer #17 is missing!)
Wuzzy <Wuzzy2@mail.ru>
parents:
13841
diff
changeset
|
63 |
local officialChallenge |
a5be3ef4bbbe
Update official challenge hashes, improve console logging (warning: racer #17 is missing!)
Wuzzy <Wuzzy2@mail.ru>
parents:
13841
diff
changeset
|
64 |
|
15403
e347c3508f95
Racer: Fix ammo delay confusion if gfKing or gfPlaceHog were set
Wuzzy <Wuzzy2@mail.ru>
parents:
15402
diff
changeset
|
65 |
local ammoDelays |
15398
09b63f9032f4
Racer: Disable other ammos in waypoint placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
15397
diff
changeset
|
66 |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
67 |
-------------------------- |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
68 |
-- hog and team tracking variales |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
69 |
-------------------------- |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
70 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
71 |
local numhhs = 0 -- store number of hedgehogs |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
72 |
local hhs = {} -- store hedgehog gears |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
73 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
74 |
local numTeams -- store the number of teams in the game |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
75 |
local teamNameArr = {} -- store the list of teams |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
76 |
local teamClan = {} |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
77 |
local teamSize = {} -- store how many hogs per team |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
78 |
local teamIndex = {} -- at what point in the hhs{} does each team begin |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
79 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
80 |
local teamComment = {} |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
81 |
local teamScore = {} |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
82 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
83 |
------- |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
84 |
-- racer vars |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
85 |
-------- |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
86 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
87 |
local cGear = nil |
13024
a568bc16a99a
Racer and TechRacer: Move cameera to first waypoint in Ready phase
Wuzzy <Wuzzy2@mail.ru>
parents:
12967
diff
changeset
|
88 |
local cameraGear = nil -- gear created to center the cameera on |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
89 |
|
11930
4ed643879c0f
Racer: Clean up “did not finish” mess
Wuzzy <almikes@aol.com>
parents:
11929
diff
changeset
|
90 |
local bestClan = 10 |
13839
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
91 |
local bestTime = MAX_TURN_TIME |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
92 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
93 |
local gameBegun = false |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
94 |
local gameOver = false |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
95 |
local racerActive = false |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
96 |
local trackTime = 0 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
97 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
98 |
local wpCirc = {} |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
99 |
local wpX = {} |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
100 |
local wpY = {} |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
101 |
local wpCol = {} |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
102 |
local wpActive = {} |
11929
167de692f2d7
Add new Racer script parameter: waypointradius
Wuzzy <almikes@aol.com>
parents:
11928
diff
changeset
|
103 |
local wpRad = 450 |
15483
70aba717485a
Racer: Reposition and resize predefined waypoints in scaled drawn maps
Wuzzy <Wuzzy2@mail.ru>
parents:
15413
diff
changeset
|
104 |
local WAYPOINT_RADIUS_MIN = 40 |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
105 |
local wpCount = 0 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
106 |
local wpLimit = 8 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
107 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
108 |
local usedWeapons = {} |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
109 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
110 |
local roundN |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
111 |
local lastRound |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
112 |
local RoundHasChanged |
12407
8cc070640fd1
Fix skipping in Racer causing the next team to be skipped, too
Wuzzy <almikes@aol.com>
parents:
12406
diff
changeset
|
113 |
local turnSkipped = false |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
114 |
|
11647
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
115 |
local boostX = 0 |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
116 |
local boostY = 0 |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
117 |
local boostValue = 1 |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
118 |
|
12967
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
119 |
-- themes with bright background |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
120 |
local brightThemes = { |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
121 |
Bath = true, |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
122 |
Bamboo = true, |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
123 |
Beach = true, |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
124 |
Blox = true, |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
125 |
Compost = true, |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
126 |
Desert = true, |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
127 |
Fruit = true, |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
128 |
Golf = true, |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
129 |
Hoggywood = true, |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
130 |
Jungle = true, |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
131 |
Olympics = true, |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
132 |
Sheep = true, |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
133 |
} |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
134 |
-- themes with medium or heavily mixed brightness. |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
135 |
-- only add themes here if both bright and dark waypoint |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
136 |
-- colors fail otherwise. |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
137 |
local mediumThemes = { |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
138 |
Halloween = true, |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
139 |
} |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
140 |
-- All themes not explicitly listed above are assumed to |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
141 |
-- be "dark" and work with the default bright waypoints. |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
142 |
|
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
143 |
-- Waypoint colors in 3 color themes! |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
144 |
-- We do this so the waypoints are easy on the eyes, |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
145 |
-- at least in each of the default themes. |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
146 |
|
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
147 |
-- Bright waypoints (default) |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
148 |
local waypointColourBright = 0xFFFFFFFF -- Primary colour of inactive waypoints |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
149 |
local waypointColourBrightAtPlacement = 0xAAAAAAFF -- Colour of non-highlighted waypoints while placing |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
150 |
-- Medium bright waypoints |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
151 |
local waypointColourMedium = 0x606060FF |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
152 |
local waypointColourMediumAtPlacement = 0x404040FF |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
153 |
-- Dark waypoints |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
154 |
local waypointColourDark = 0x000000FF |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
155 |
local waypointColourDarkAtPlacement = 0x303030FF |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
156 |
|
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
157 |
-- Waypoints touched by the players assume the clan color, which is unchanged. |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
158 |
-- Touched waypoints are not important to be visible. |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
159 |
|
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
160 |
-- Default waypoint colors (only use these color variables in the code below) |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
161 |
local waypointColour = waypointColourBright |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
162 |
local waypointColourAtPlacement = waypointColourBrightAtPlacement |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
163 |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
164 |
------------------- |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
165 |
-- general methods |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
166 |
------------------- |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
167 |
|
12967
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
168 |
-- Returns brightness level of background from 1-3. |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
169 |
-- 1 = brightest |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
170 |
function GetBackgroundBrightness() |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
171 |
-- This just looks at the theme names above. |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
172 |
-- This code will fail for bright unofficial themes. |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
173 |
-- TODO: Change how this thing works. |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
174 |
-- Consider adding a function into the Lua API which looks |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
175 |
-- up the theme's sky color, so we could use thit instead. |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
176 |
if brightThemes[Theme] then |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
177 |
return 1 |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
178 |
elseif mediumThemes[Theme] then |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
179 |
return 2 |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
180 |
else |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
181 |
return 3 |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
182 |
end |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
183 |
end |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
184 |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
185 |
function onParameters() |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
186 |
parseParams() |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
187 |
if params["teamrope"] ~= nil then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
188 |
TeamRope = true |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
189 |
end |
11926
ace20b1d8d53
Add “rounds” script parameter for Racer
Wuzzy <almikes@aol.com>
parents:
11925
diff
changeset
|
190 |
if params["rounds"] ~= nil then |
ace20b1d8d53
Add “rounds” script parameter for Racer
Wuzzy <almikes@aol.com>
parents:
11925
diff
changeset
|
191 |
roundLimit = math.max(1, math.floor(tonumber(params["rounds"]))) |
ace20b1d8d53
Add “rounds” script parameter for Racer
Wuzzy <almikes@aol.com>
parents:
11925
diff
changeset
|
192 |
if type(roundLimit) ~= "number" then |
ace20b1d8d53
Add “rounds” script parameter for Racer
Wuzzy <almikes@aol.com>
parents:
11925
diff
changeset
|
193 |
roundLimit = 3 |
ace20b1d8d53
Add “rounds” script parameter for Racer
Wuzzy <almikes@aol.com>
parents:
11925
diff
changeset
|
194 |
end |
ace20b1d8d53
Add “rounds” script parameter for Racer
Wuzzy <almikes@aol.com>
parents:
11925
diff
changeset
|
195 |
end |
11929
167de692f2d7
Add new Racer script parameter: waypointradius
Wuzzy <almikes@aol.com>
parents:
11928
diff
changeset
|
196 |
if params["waypointradius"] ~= nil then |
15483
70aba717485a
Racer: Reposition and resize predefined waypoints in scaled drawn maps
Wuzzy <Wuzzy2@mail.ru>
parents:
15413
diff
changeset
|
197 |
wpRad = math.max(WAYPOINT_RADIUS_MIN, math.floor(tonumber(params["waypointradius"]))) |
11985
b2783dd12f30
Fix incorrect type check of wpRad in Racer
Wuzzy <almikes@aol.com>
parents:
11984
diff
changeset
|
198 |
if type(wpRad) ~= "number" then |
11929
167de692f2d7
Add new Racer script parameter: waypointradius
Wuzzy <almikes@aol.com>
parents:
11928
diff
changeset
|
199 |
wpRad = 450 |
167de692f2d7
Add new Racer script parameter: waypointradius
Wuzzy <almikes@aol.com>
parents:
11928
diff
changeset
|
200 |
end |
167de692f2d7
Add new Racer script parameter: waypointradius
Wuzzy <almikes@aol.com>
parents:
11928
diff
changeset
|
201 |
end |
11986
f97b1c7fa053
Allow to set Racer waypoint limit with script parameter “maxwaypoints”
Wuzzy <almikes@aol.com>
parents:
11985
diff
changeset
|
202 |
if params["maxwaypoints"] ~= nil then |
f97b1c7fa053
Allow to set Racer waypoint limit with script parameter “maxwaypoints”
Wuzzy <almikes@aol.com>
parents:
11985
diff
changeset
|
203 |
wpLimit = math.max(2, math.floor(tonumber(params["maxwaypoints"]))) |
f97b1c7fa053
Allow to set Racer waypoint limit with script parameter “maxwaypoints”
Wuzzy <almikes@aol.com>
parents:
11985
diff
changeset
|
204 |
if type(wpLimit) ~= "number" then |
f97b1c7fa053
Allow to set Racer waypoint limit with script parameter “maxwaypoints”
Wuzzy <almikes@aol.com>
parents:
11985
diff
changeset
|
205 |
wpLimit = 8 |
f97b1c7fa053
Allow to set Racer waypoint limit with script parameter “maxwaypoints”
Wuzzy <almikes@aol.com>
parents:
11985
diff
changeset
|
206 |
end |
f97b1c7fa053
Allow to set Racer waypoint limit with script parameter “maxwaypoints”
Wuzzy <almikes@aol.com>
parents:
11985
diff
changeset
|
207 |
end |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
208 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
209 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
210 |
function RebuildTeamInfo() |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
211 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
212 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
213 |
-- make a list of individual team names |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
214 |
for i = 0, (TeamsCount-1) do |
11928
42e90b244e11
Racer: Dump old commented-out code
Wuzzy <almikes@aol.com>
parents:
11927
diff
changeset
|
215 |
teamNameArr[i] = " " |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
216 |
teamSize[i] = 0 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
217 |
teamIndex[i] = 0 |
13839
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
218 |
teamScore[i] = MAX_TURN_TIME |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
219 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
220 |
numTeams = 0 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
221 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
222 |
for i = 0, (numhhs-1) do |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
223 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
224 |
z = 0 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
225 |
unfinished = true |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
226 |
while(unfinished == true) do |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
227 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
228 |
newTeam = true |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
229 |
tempHogTeamName = GetHogTeamName(hhs[i]) -- this is the new name |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
230 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
231 |
if tempHogTeamName == teamNameArr[z] then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
232 |
newTeam = false |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
233 |
unfinished = false |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
234 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
235 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
236 |
z = z + 1 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
237 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
238 |
if z == TeamsCount then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
239 |
unfinished = false |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
240 |
if newTeam == true then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
241 |
teamNameArr[numTeams] = tempHogTeamName |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
242 |
numTeams = numTeams + 1 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
243 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
244 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
245 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
246 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
247 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
248 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
249 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
250 |
-- find out how many hogs per team, and the index of the first hog in hhs |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
251 |
for i = 0, (numTeams-1) do |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
252 |
for z = 0, (numhhs-1) do |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
253 |
if GetHogTeamName(hhs[z]) == teamNameArr[i] then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
254 |
teamClan[i] = GetHogClan(hhs[z]) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
255 |
if teamSize[i] == 0 then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
256 |
teamIndex[i] = z -- should give starting index |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
257 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
258 |
teamSize[i] = teamSize[i] + 1 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
259 |
--add a pointer so this hog appears at i in hhs |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
260 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
261 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
262 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
263 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
264 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
265 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
266 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
267 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
268 |
----------------- |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
269 |
-- RACER METHODS |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
270 |
----------------- |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
271 |
|
11647
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
272 |
function onLeft() |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
273 |
boostX = boostX +boostValue |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
274 |
end |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
275 |
function onLeftUp() |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
276 |
boostX = boostX -boostValue |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
277 |
end |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
278 |
function onRight() |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
279 |
boostX = boostX -boostValue |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
280 |
end |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
281 |
function onRightUp() |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
282 |
boostX = boostX +boostValue |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
283 |
end |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
284 |
function onUp() |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
285 |
boostY = boostY +boostValue |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
286 |
end |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
287 |
function onUpUp() |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
288 |
boostY = boostY -boostValue |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
289 |
end |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
290 |
function onDown() |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
291 |
boostY = boostY -boostValue |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
292 |
end |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
293 |
function onDownUp() |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
294 |
boostY = boostY +boostValue |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
295 |
end |
b4d621700bbb
Allow variable boost directions in Racer
mikade <redgrinner@gmail.com>
parents:
11585
diff
changeset
|
296 |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
297 |
function CheckWaypoints() |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
298 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
299 |
trackFinished = true |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
300 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
301 |
for i = 0, (wpCount-1) do |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
302 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
303 |
g1X, g1Y = GetGearPosition(CurrentHedgehog) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
304 |
g2X, g2Y = wpX[i], wpY[i] |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
305 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
306 |
g1X = g1X - g2X |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
307 |
g1Y = g1Y - g2Y |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
308 |
dist = (g1X*g1X) + (g1Y*g1Y) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
309 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
310 |
NR = (48/100*wpRad)/2 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
311 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
312 |
if dist < (NR*NR) then |
11928
42e90b244e11
Racer: Dump old commented-out code
Wuzzy <almikes@aol.com>
parents:
11927
diff
changeset
|
313 |
wpCol[i] = GetClanColor(GetHogClan(CurrentHedgehog)) |
12962
52c12029c7bd
Increase opacity of Racer/TechRacer waypoints
Wuzzy <Wuzzy2@mail.ru>
parents:
12407
diff
changeset
|
314 |
SetVisualGearValues(wpCirc[i], wpX[i], wpY[i], 64, 64, 1, 10, 0, wpRad, 5, wpCol[i]) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
315 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
316 |
wpRem = 0 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
317 |
for k = 0, (wpCount-1) do |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
318 |
if wpActive[k] == false then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
319 |
wpRem = wpRem + 1 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
320 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
321 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
322 |
|
11925
7123bfc9643c
Racer: Don't mess with ammo display when touching waypoint
Wuzzy <almikes@aol.com>
parents:
11924
diff
changeset
|
323 |
if wpActive[i] == false then |
11927
72593678e8d6
Racer: Show “Track completed!” message
Wuzzy <almikes@aol.com>
parents:
11926
diff
changeset
|
324 |
local wpMessage = "" |
72593678e8d6
Racer: Show “Track completed!” message
Wuzzy <almikes@aol.com>
parents:
11926
diff
changeset
|
325 |
if wpRem-1 == 0 then |
72593678e8d6
Racer: Show “Track completed!” message
Wuzzy <almikes@aol.com>
parents:
11926
diff
changeset
|
326 |
wpMessage = loc("Track completed!") |
72593678e8d6
Racer: Show “Track completed!” message
Wuzzy <almikes@aol.com>
parents:
11926
diff
changeset
|
327 |
else |
72593678e8d6
Racer: Show “Track completed!” message
Wuzzy <almikes@aol.com>
parents:
11926
diff
changeset
|
328 |
wpMessage = string.format(loc("Waypoints remaining: %d"), wpRem-1) |
72593678e8d6
Racer: Show “Track completed!” message
Wuzzy <almikes@aol.com>
parents:
11926
diff
changeset
|
329 |
end |
72593678e8d6
Racer: Show “Track completed!” message
Wuzzy <almikes@aol.com>
parents:
11926
diff
changeset
|
330 |
AddCaption(wpMessage, 0xffba00ff, capgrpGameState) |
11925
7123bfc9643c
Racer: Don't mess with ammo display when touching waypoint
Wuzzy <almikes@aol.com>
parents:
11924
diff
changeset
|
331 |
end |
7123bfc9643c
Racer: Don't mess with ammo display when touching waypoint
Wuzzy <almikes@aol.com>
parents:
11924
diff
changeset
|
332 |
wpActive[i] = true |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
333 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
334 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
335 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
336 |
if wpActive[i] == false then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
337 |
trackFinished = false |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
338 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
339 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
340 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
341 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
342 |
return(trackFinished) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
343 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
344 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
345 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
346 |
function AdjustScores() |
11930
4ed643879c0f
Racer: Clean up “did not finish” mess
Wuzzy <almikes@aol.com>
parents:
11929
diff
changeset
|
347 |
bestTimeComment = loc("Did not finish") |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
348 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
349 |
newScore = false |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
350 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
351 |
-- update this clan's time if the new track is better |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
352 |
for i = 0, (numTeams-1) do |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
353 |
if teamClan[i] == GetHogClan(CurrentHedgehog) then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
354 |
if trackTime < teamScore[i] then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
355 |
teamScore[i] = trackTime |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
356 |
newScore = true |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
357 |
else |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
358 |
newScore = false |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
359 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
360 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
361 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
362 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
363 |
-- find the best time out of those so far |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
364 |
for i = 0, (numTeams-1) do |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
365 |
if teamScore[i] < bestTime then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
366 |
bestTime = teamScore[i] |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
367 |
bestClan = teamClan[i] |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
368 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
369 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
370 |
|
13839
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
371 |
if bestTime ~= MAX_TURN_TIME then |
11924 | 372 |
bestTimeComment = string.format(loc("%.1fs"), (bestTime/1000)) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
373 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
374 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
375 |
if newScore == true then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
376 |
if trackTime == bestTime then -- best time of the race |
11924 | 377 |
ShowMission(loc("Racer"), |
378 |
loc("Track completed!"), |
|
379 |
string.format(loc("New race record: %.1fs"), (trackTime/1000)) .. "|" .. |
|
380 |
string.format(loc("Winning time: %s"), bestTimeComment), 0, 4000) |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
381 |
PlaySound(sndHomerun) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
382 |
else -- best time for the clan |
11924 | 383 |
ShowMission(loc("Racer"), |
384 |
loc("Track completed!"), |
|
385 |
string.format(loc("New clan record: %.1fs"), (trackTime/1000)) .. "|" .. |
|
386 |
string.format(loc("Winning time: %s"), bestTimeComment), 4, 4000) |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
387 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
388 |
else -- not any kind of new score |
11924 | 389 |
ShowMission(loc("Racer"), |
390 |
loc("Track completed!"), |
|
391 |
string.format(loc("Time: %.1fs"), (trackTime/1000)) .. "|" .. |
|
392 |
string.format(loc("Winning time: %s"), bestTimeComment), -amSkip, 4000) |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
393 |
PlaySound(sndHellish) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
394 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
395 |
|
13027
625d5a45f267
Racer/TechRacer: Show best times next to team bars
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
396 |
for i = 0, (TeamsCount-1) do |
13839
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
397 |
if teamNameArr[i] ~= " " and teamScore[i] ~= MAX_TURN_TIME then |
13027
625d5a45f267
Racer/TechRacer: Show best times next to team bars
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
398 |
SetTeamLabel(teamNameArr[i], string.format(loc("%.1fs"), teamScore[i]/1000)) |
625d5a45f267
Racer/TechRacer: Show best times next to team bars
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
399 |
end |
625d5a45f267
Racer/TechRacer: Show best times next to team bars
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
400 |
end |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
401 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
402 |
if bestTime == trackTime then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
403 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
404 |
fastColour = GetClanColor(GetHogClan(CurrentHedgehog)) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
405 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
406 |
for i = 0, (currCount-1) do |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
407 |
fastX[i] = currX[i] |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
408 |
fastY[i] = currY[i] |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
409 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
410 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
411 |
fastCount = currCount |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
412 |
fastIndex = 0 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
413 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
414 |
else |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
415 |
currCount = 0 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
416 |
fastIndex = 0 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
417 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
418 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
419 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
420 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
421 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
422 |
function onNewRound() |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
423 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
424 |
roundNumber = roundNumber + 1 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
425 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
426 |
totalComment = "" |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
427 |
for i = 0, (TeamsCount-1) do |
13839
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
428 |
if teamNameArr[i] ~= " " and teamScore[i] ~= MAX_TURN_TIME then |
11923 | 429 |
teamComment[i] = string.format(loc("%s: %.1fs"), teamNameArr[i], (teamScore[i]/1000)) .. "|" |
430 |
else |
|
11930
4ed643879c0f
Racer: Clean up “did not finish” mess
Wuzzy <almikes@aol.com>
parents:
11929
diff
changeset
|
431 |
teamComment[i] = string.format(loc("%s: Did not finish"), teamNameArr[i]) .. "|" |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
432 |
end |
11923 | 433 |
totalComment = totalComment .. teamComment[i] |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
434 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
435 |
|
15069
e16f906224fd
Change mission panel icons for a couple of game styles
Wuzzy <Wuzzy2@mail.ru>
parents:
15068
diff
changeset
|
436 |
local icon |
e16f906224fd
Change mission panel icons for a couple of game styles
Wuzzy <Wuzzy2@mail.ru>
parents:
15068
diff
changeset
|
437 |
if roundNumber >= roundLimit then |
e16f906224fd
Change mission panel icons for a couple of game styles
Wuzzy <Wuzzy2@mail.ru>
parents:
15068
diff
changeset
|
438 |
icon = 0 |
e16f906224fd
Change mission panel icons for a couple of game styles
Wuzzy <Wuzzy2@mail.ru>
parents:
15068
diff
changeset
|
439 |
else |
e16f906224fd
Change mission panel icons for a couple of game styles
Wuzzy <Wuzzy2@mail.ru>
parents:
15068
diff
changeset
|
440 |
icon = 2 |
e16f906224fd
Change mission panel icons for a couple of game styles
Wuzzy <Wuzzy2@mail.ru>
parents:
15068
diff
changeset
|
441 |
end |
11924 | 442 |
ShowMission( loc("Racer"), |
443 |
loc("Status update"), |
|
444 |
string.format(loc("Rounds complete: %d/%d"), roundNumber, roundLimit) .. "|" .. " " .. "|" .. |
|
15069
e16f906224fd
Change mission panel icons for a couple of game styles
Wuzzy <Wuzzy2@mail.ru>
parents:
15068
diff
changeset
|
445 |
loc("Best team times: ") .. "|" .. totalComment, icon, 4000) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
446 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
447 |
-- end game if its at round limit |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
448 |
if roundNumber >= roundLimit then |
11923 | 449 |
-- Sort the scores for the ranking list |
450 |
local unfinishedArray = {} |
|
451 |
local sortedTeams = {} |
|
452 |
local k = 1 |
|
13839
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
453 |
local c = 1 |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
454 |
local clanScores = {} |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
455 |
local previousClan |
11923 | 456 |
for i = 0, TeamsCount-1 do |
13839
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
457 |
local clan = GetTeamClan(teamNameArr[i]) |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
458 |
if not clanScores[clan+1] then |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
459 |
clanScores[clan+1] = {} |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
460 |
clanScores[clan+1].index = clan |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
461 |
clanScores[clan+1].score = teamScore[i] |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
462 |
end |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
463 |
if teamScore[i] ~= MAX_TURN_TIME and teamNameArr[i] ~= " " then |
11923 | 464 |
sortedTeams[k] = {} |
465 |
sortedTeams[k].name = teamNameArr[i] |
|
466 |
sortedTeams[k].score = teamScore[i] |
|
13839
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
467 |
sortedTeams[k].clan = clan |
11923 | 468 |
k = k + 1 |
469 |
else |
|
470 |
table.insert(unfinishedArray, string.format(loc("%s did not finish the race."), teamNameArr[i])) |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
471 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
472 |
end |
13839
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
473 |
table.sort(sortedTeams, function(team1, team2) |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
474 |
if team1.score == team2.score then |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
475 |
return team1.clan < team2.clan |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
476 |
else |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
477 |
return team1.score < team2.score |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
478 |
end |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
479 |
end) |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
480 |
table.sort(clanScores, function(clan1, clan2) return clan1.score < clan2.score end) |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
481 |
local rank = 0 |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
482 |
local rankPlus = 0 |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
483 |
local prevScore |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
484 |
local clanRanks = {} |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
485 |
for c = 1, #clanScores do |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
486 |
rankPlus = rankPlus + 1 |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
487 |
if clanScores[c].score ~= prevScore then |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
488 |
rank = rank + rankPlus |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
489 |
rankPlus = 0 |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
490 |
end |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
491 |
prevScore = clanScores[c].score |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
492 |
clanRanks[clanScores[c].index] = rank |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
493 |
end |
11923 | 494 |
|
495 |
-- Write all the stats! |
|
496 |
for i = 1, #sortedTeams do |
|
14578
50f511588635
Outsource commonly used words in siPointType to QTfrontend
Wuzzy <Wuzzy2@mail.ru>
parents:
14548
diff
changeset
|
497 |
SendStat(siPointType, "!TIME") |
13839
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
498 |
SendStat(siTeamRank, tostring(clanRanks[GetTeamClan(sortedTeams[i].name)])) |
11923 | 499 |
SendStat(siPlayerKills, sortedTeams[i].score, sortedTeams[i].name) |
500 |
end |
|
501 |
||
13839
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
502 |
local roundDraw = false |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
503 |
if #clanScores >= 2 and clanScores[1].score == clanScores[2].score and clanScores[1].score ~= MAX_TURN_TIME then |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
504 |
roundDraw = true |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
505 |
SendStat(siGameResult, loc("Round draw")) |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
506 |
SendStat(siCustomAchievement, loc("The teams are tied for the fastest time.")) |
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
507 |
elseif #sortedTeams >= 1 then |
11923 | 508 |
SendStat(siGameResult, string.format(loc("%s wins!"), sortedTeams[1].name)) |
509 |
SendStat(siCustomAchievement, string.format(loc("%s wins with a best time of %.1fs."), sortedTeams[1].name, (sortedTeams[1].score/1000))) |
|
510 |
for i=1,#unfinishedArray do |
|
511 |
SendStat(siCustomAchievement, unfinishedArray[i]) |
|
512 |
end |
|
513 |
else |
|
13839
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
514 |
roundDraw = true |
11923 | 515 |
SendStat(siGameResult, loc("Round draw")) |
516 |
SendStat(siCustomAchievement, loc("Nobody managed to finish the race. What a shame!")) |
|
12406
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
517 |
if specialPointsCount > 0 then |
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
518 |
SendStat(siCustomAchievement, loc("Maybe you should try an easier map next time.")) |
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
519 |
else |
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
520 |
SendStat(siCustomAchievement, loc("Maybe you should try easier waypoints next time.")) |
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
521 |
end |
11923 | 522 |
end |
523 |
||
12333
6bdabf67a012
Add back the missing winning animation for Racer and TechRecer
Wuzzy <almikes@aol.com>
parents:
12287
diff
changeset
|
524 |
-- Kill all the losers |
6bdabf67a012
Add back the missing winning animation for Racer and TechRecer
Wuzzy <almikes@aol.com>
parents:
12287
diff
changeset
|
525 |
for i = 0, (numhhs-1) do |
13839
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
526 |
if GetHogClan(hhs[i]) ~= bestClan or roundDraw then |
12333
6bdabf67a012
Add back the missing winning animation for Racer and TechRecer
Wuzzy <almikes@aol.com>
parents:
12287
diff
changeset
|
527 |
SetEffect(hhs[i], heResurrectable, 0) |
6bdabf67a012
Add back the missing winning animation for Racer and TechRecer
Wuzzy <almikes@aol.com>
parents:
12287
diff
changeset
|
528 |
SetHealth(hhs[i],0) |
15400 | 529 |
elseif not roundDraw then |
530 |
SetEffect(hhs[i], heInvulnerable, 1) |
|
12333
6bdabf67a012
Add back the missing winning animation for Racer and TechRecer
Wuzzy <almikes@aol.com>
parents:
12287
diff
changeset
|
531 |
end |
6bdabf67a012
Add back the missing winning animation for Racer and TechRecer
Wuzzy <almikes@aol.com>
parents:
12287
diff
changeset
|
532 |
end |
6bdabf67a012
Add back the missing winning animation for Racer and TechRecer
Wuzzy <almikes@aol.com>
parents:
12287
diff
changeset
|
533 |
|
6bdabf67a012
Add back the missing winning animation for Racer and TechRecer
Wuzzy <almikes@aol.com>
parents:
12287
diff
changeset
|
534 |
gameOver = true |
12964
a5c5fe878a4e
Racer, TechRacer: Fade out waypoints at the end
Wuzzy <Wuzzy2@mail.ru>
parents:
12963
diff
changeset
|
535 |
for i=0, wpCount-1 do |
a5c5fe878a4e
Racer, TechRacer: Fade out waypoints at the end
Wuzzy <Wuzzy2@mail.ru>
parents:
12963
diff
changeset
|
536 |
-- Fade out waypoints |
a5c5fe878a4e
Racer, TechRacer: Fade out waypoints at the end
Wuzzy <Wuzzy2@mail.ru>
parents:
12963
diff
changeset
|
537 |
SetVisualGearValues(wpCirc[i], nil, nil, 0, 0, nil, 6) |
a5c5fe878a4e
Racer, TechRacer: Fade out waypoints at the end
Wuzzy <Wuzzy2@mail.ru>
parents:
12963
diff
changeset
|
538 |
end |
12333
6bdabf67a012
Add back the missing winning animation for Racer and TechRecer
Wuzzy <almikes@aol.com>
parents:
12287
diff
changeset
|
539 |
EndTurn(true) |
6bdabf67a012
Add back the missing winning animation for Racer and TechRecer
Wuzzy <almikes@aol.com>
parents:
12287
diff
changeset
|
540 |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
541 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
542 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
543 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
544 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
545 |
function CheckForNewRound() |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
546 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
547 |
if GetHogClan(CurrentHedgehog) == firstClan then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
548 |
onNewRound() |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
549 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
550 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
551 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
552 |
|
12287
faf1b93422ba
Use new EndTurn in a couple of scripts, esp. to fix timeout taunts in Racer
Wuzzy <almikes@aol.com>
parents:
12079
diff
changeset
|
553 |
function DisableTumbler(endTurn) |
faf1b93422ba
Use new EndTurn in a couple of scripts, esp. to fix timeout taunts in Racer
Wuzzy <almikes@aol.com>
parents:
12079
diff
changeset
|
554 |
if endTurn == nil then endTurn = true end |
faf1b93422ba
Use new EndTurn in a couple of scripts, esp. to fix timeout taunts in Racer
Wuzzy <almikes@aol.com>
parents:
12079
diff
changeset
|
555 |
if racerActive then |
faf1b93422ba
Use new EndTurn in a couple of scripts, esp. to fix timeout taunts in Racer
Wuzzy <almikes@aol.com>
parents:
12079
diff
changeset
|
556 |
currCount = 0 |
faf1b93422ba
Use new EndTurn in a couple of scripts, esp. to fix timeout taunts in Racer
Wuzzy <almikes@aol.com>
parents:
12079
diff
changeset
|
557 |
fastIndex = 0 |
faf1b93422ba
Use new EndTurn in a couple of scripts, esp. to fix timeout taunts in Racer
Wuzzy <almikes@aol.com>
parents:
12079
diff
changeset
|
558 |
if endTurn then |
faf1b93422ba
Use new EndTurn in a couple of scripts, esp. to fix timeout taunts in Racer
Wuzzy <almikes@aol.com>
parents:
12079
diff
changeset
|
559 |
EndTurn(true) |
faf1b93422ba
Use new EndTurn in a couple of scripts, esp. to fix timeout taunts in Racer
Wuzzy <almikes@aol.com>
parents:
12079
diff
changeset
|
560 |
end |
faf1b93422ba
Use new EndTurn in a couple of scripts, esp. to fix timeout taunts in Racer
Wuzzy <almikes@aol.com>
parents:
12079
diff
changeset
|
561 |
racerActive = false -- newadd |
12963
544c4302efe4
Racer, TechRacer: Change waypoint opacity on victory or failure
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
562 |
|
12964
a5c5fe878a4e
Racer, TechRacer: Fade out waypoints at the end
Wuzzy <Wuzzy2@mail.ru>
parents:
12963
diff
changeset
|
563 |
if trackFinished and not gameOver then |
12963
544c4302efe4
Racer, TechRacer: Change waypoint opacity on victory or failure
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
564 |
for i=0, wpCount-1 do |
544c4302efe4
Racer, TechRacer: Change waypoint opacity on victory or failure
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
565 |
SetVisualGearValues(wpCirc[i], nil, nil, 255, 255, nil, 2) |
544c4302efe4
Racer, TechRacer: Change waypoint opacity on victory or failure
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
566 |
end |
12964
a5c5fe878a4e
Racer, TechRacer: Fade out waypoints at the end
Wuzzy <Wuzzy2@mail.ru>
parents:
12963
diff
changeset
|
567 |
elseif not gameOver then |
12963
544c4302efe4
Racer, TechRacer: Change waypoint opacity on victory or failure
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
568 |
for i=0, wpCount-1 do |
544c4302efe4
Racer, TechRacer: Change waypoint opacity on victory or failure
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
569 |
SetVisualGearValues(wpCirc[i], nil, nil, 32, 32, nil, 1) |
544c4302efe4
Racer, TechRacer: Change waypoint opacity on victory or failure
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
570 |
end |
544c4302efe4
Racer, TechRacer: Change waypoint opacity on victory or failure
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
571 |
end |
12287
faf1b93422ba
Use new EndTurn in a couple of scripts, esp. to fix timeout taunts in Racer
Wuzzy <almikes@aol.com>
parents:
12079
diff
changeset
|
572 |
end |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
573 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
574 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
575 |
function HandleGhost() |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
576 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
577 |
-- get the current xy of the racer at this point |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
578 |
currX[currCount] = GetX(CurrentHedgehog) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
579 |
currY[currCount] = GetY(CurrentHedgehog) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
580 |
currCount = currCount + 1 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
581 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
582 |
-- draw a ping of smoke where the fastest player was at this point |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
583 |
if (fastCount ~= 0) and (fastIndex < fastCount) then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
584 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
585 |
fastIndex = fastIndex + 1 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
586 |
|
13685
09ea1faf97ca
Remove calls to GetVisualGearValues where it's not needed
Wuzzy <Wuzzy2@mail.ru>
parents:
13630
diff
changeset
|
587 |
local tempE = AddVisualGear(fastX[fastIndex], fastY[fastIndex], vgtSmoke, 0, false) |
09ea1faf97ca
Remove calls to GetVisualGearValues where it's not needed
Wuzzy <Wuzzy2@mail.ru>
parents:
13630
diff
changeset
|
588 |
SetVisualGearValues(tempE, nil, nil, nil, nil, nil, nil, nil, nil, nil, fastColour ) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
589 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
590 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
591 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
592 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
593 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
594 |
function TryRepositionHogs() |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
595 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
596 |
if MapHasBorder() == true then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
597 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
598 |
for i = 0, (numhhs-1) do |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
599 |
if hhs[i] ~= nil then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
600 |
SetGearPosition(hhs[i],GetX(hhs[i]), TopY-10) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
601 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
602 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
603 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
604 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
605 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
606 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
607 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
608 |
---------------------------------- |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
609 |
-- GAME METHODS / EVENT HANDLERS |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
610 |
---------------------------------- |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
611 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
612 |
function onGameInit() |
15385 | 613 |
EnableGameFlags(gfInfAttack) |
15402
1028f5606b5f
Racer, TechRacer: Force-disable several bad game flags
Wuzzy <Wuzzy2@mail.ru>
parents:
15400
diff
changeset
|
614 |
-- Force-disable various game flags that would break the script |
1028f5606b5f
Racer, TechRacer: Force-disable several bad game flags
Wuzzy <Wuzzy2@mail.ru>
parents:
15400
diff
changeset
|
615 |
DisableGameFlags(gfKing, gfSwitchHog, gfAISurvival, gfPlaceHog, gfTagTeam) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
616 |
CaseFreq = 0 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
617 |
WaterRise = 0 |
12079
8f222872d432
Disable SD for a couple of scripts and mission maps
Wuzzy <almikes@aol.com>
parents:
11986
diff
changeset
|
618 |
HealthDecrease = 0 |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
619 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
620 |
|
12406
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
621 |
function InstructionsBuild() |
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
622 |
ShowMission( |
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
623 |
loc("Racer"), |
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
624 |
loc("A Hedgewars mini-game"), |
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
625 |
loc("Build a track and race.") .. "|" .. |
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
626 |
string.format(loc("Round limit: %d"), roundLimit), |
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
627 |
4, 4000) |
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
628 |
end |
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
629 |
|
12407
8cc070640fd1
Fix skipping in Racer causing the next team to be skipped, too
Wuzzy <almikes@aol.com>
parents:
12406
diff
changeset
|
630 |
function InstructionsRace() |
12406
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
631 |
ShowMission(loc("Racer"), |
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
632 |
loc("A Hedgewars mini-game"), |
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
633 |
loc("Touch all waypoints as fast as you can!"), |
15068
6f51c75994a4
Semi-standardize usage of icons in many mission panels
Wuzzy <Wuzzy2@mail.ru>
parents:
14578
diff
changeset
|
634 |
1, 4000) |
12406
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
635 |
end |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
636 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
637 |
function onGameStart() |
15483
70aba717485a
Racer: Reposition and resize predefined waypoints in scaled drawn maps
Wuzzy <Wuzzy2@mail.ru>
parents:
15413
diff
changeset
|
638 |
|
70aba717485a
Racer: Reposition and resize predefined waypoints in scaled drawn maps
Wuzzy <Wuzzy2@mail.ru>
parents:
15413
diff
changeset
|
639 |
-- Adjust pre-defined waypoints in scaled drawn maps |
70aba717485a
Racer: Reposition and resize predefined waypoints in scaled drawn maps
Wuzzy <Wuzzy2@mail.ru>
parents:
15413
diff
changeset
|
640 |
if MapGen == mgDrawn and MapFeatureSize ~= 12 and specialPointsCount > 0 then |
70aba717485a
Racer: Reposition and resize predefined waypoints in scaled drawn maps
Wuzzy <Wuzzy2@mail.ru>
parents:
15413
diff
changeset
|
641 |
local landW = RightX - LeftX + 1 |
70aba717485a
Racer: Reposition and resize predefined waypoints in scaled drawn maps
Wuzzy <Wuzzy2@mail.ru>
parents:
15413
diff
changeset
|
642 |
local landH = LAND_HEIGHT - TopY |
70aba717485a
Racer: Reposition and resize predefined waypoints in scaled drawn maps
Wuzzy <Wuzzy2@mail.ru>
parents:
15413
diff
changeset
|
643 |
-- Reposition pre-defined waypoints |
70aba717485a
Racer: Reposition and resize predefined waypoints in scaled drawn maps
Wuzzy <Wuzzy2@mail.ru>
parents:
15413
diff
changeset
|
644 |
for i = 0, (specialPointsCount-1) do |
70aba717485a
Racer: Reposition and resize predefined waypoints in scaled drawn maps
Wuzzy <Wuzzy2@mail.ru>
parents:
15413
diff
changeset
|
645 |
specialPointsX[i] = LeftX + div(specialPointsX[i] * landW, 4096) |
70aba717485a
Racer: Reposition and resize predefined waypoints in scaled drawn maps
Wuzzy <Wuzzy2@mail.ru>
parents:
15413
diff
changeset
|
646 |
specialPointsY[i] = TopY + div(specialPointsY[i] * landH, 2048) |
70aba717485a
Racer: Reposition and resize predefined waypoints in scaled drawn maps
Wuzzy <Wuzzy2@mail.ru>
parents:
15413
diff
changeset
|
647 |
end |
70aba717485a
Racer: Reposition and resize predefined waypoints in scaled drawn maps
Wuzzy <Wuzzy2@mail.ru>
parents:
15413
diff
changeset
|
648 |
-- Scale waypoint size |
70aba717485a
Racer: Reposition and resize predefined waypoints in scaled drawn maps
Wuzzy <Wuzzy2@mail.ru>
parents:
15413
diff
changeset
|
649 |
wpRad = math.max(WAYPOINT_RADIUS_MIN, div(wpRad * landW, 4096)) |
70aba717485a
Racer: Reposition and resize predefined waypoints in scaled drawn maps
Wuzzy <Wuzzy2@mail.ru>
parents:
15413
diff
changeset
|
650 |
end |
70aba717485a
Racer: Reposition and resize predefined waypoints in scaled drawn maps
Wuzzy <Wuzzy2@mail.ru>
parents:
15413
diff
changeset
|
651 |
|
13769
e874bfe563c7
Make sure scripts don't break w/ only 1 clan
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
652 |
if ClansCount >= 2 then |
e874bfe563c7
Make sure scripts don't break w/ only 1 clan
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
653 |
SendGameResultOff() |
e874bfe563c7
Make sure scripts don't break w/ only 1 clan
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
654 |
SendRankingStatsOff() |
e874bfe563c7
Make sure scripts don't break w/ only 1 clan
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
655 |
SendHealthStatsOff() |
e874bfe563c7
Make sure scripts don't break w/ only 1 clan
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
656 |
SendAchievementsStatsOff() |
e874bfe563c7
Make sure scripts don't break w/ only 1 clan
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
657 |
end |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
658 |
|
13124
991db8fc45eb
Racer: No longer play Incoming or Missed sound
Wuzzy <Wuzzy2@mail.ru>
parents:
13103
diff
changeset
|
659 |
SetSoundMask(sndIncoming, true) |
991db8fc45eb
Racer: No longer play Incoming or Missed sound
Wuzzy <Wuzzy2@mail.ru>
parents:
13103
diff
changeset
|
660 |
SetSoundMask(sndMissed, true) |
991db8fc45eb
Racer: No longer play Incoming or Missed sound
Wuzzy <Wuzzy2@mail.ru>
parents:
13103
diff
changeset
|
661 |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
662 |
roundN = 0 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
663 |
lastRound = TotalRounds |
11928
42e90b244e11
Racer: Dump old commented-out code
Wuzzy <almikes@aol.com>
parents:
11927
diff
changeset
|
664 |
RoundHasChanged = false |
14070
a5be3ef4bbbe
Update official challenge hashes, improve console logging (warning: racer #17 is missing!)
Wuzzy <Wuzzy2@mail.ru>
parents:
13841
diff
changeset
|
665 |
officialChallenge = detectMapWithDigest() |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
666 |
|
12967
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
667 |
if GetBackgroundBrightness() == 1 then |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
668 |
-- Dark waypoint colour theme |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
669 |
waypointColour = waypointColourDark |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
670 |
waypointColourAtPlacement = waypointColourDarkAtPlacement |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
671 |
elseif GetBackgroundBrightness() == 2 then |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
672 |
-- Medium waypoint colour theme |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
673 |
waypointColour = waypointColourMedium |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
674 |
waypointColourAtPlacement = waypointColourMediumAtPlacement |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
675 |
end |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
676 |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
677 |
for i = 0, (specialPointsCount-1) do |
12406
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
678 |
PlaceWayPoint(specialPointsX[i], specialPointsY[i], false) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
679 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
680 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
681 |
RebuildTeamInfo() |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
682 |
|
12406
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
683 |
if specialPointsCount > 0 then |
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
684 |
InstructionsRace() |
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
685 |
else |
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
686 |
InstructionsBuild() |
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
687 |
end |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
688 |
|
11946
65e61f495129
Overwrite special ammo descriptions in Racer script
Wuzzy <almikes@aol.com>
parents:
11931
diff
changeset
|
689 |
SetAmmoTexts(amAirAttack, loc("Place waypoint"), loc("Racer tool"), |
65e61f495129
Overwrite special ammo descriptions in Racer script
Wuzzy <almikes@aol.com>
parents:
11931
diff
changeset
|
690 |
loc("Build an awesome race track by placing|waypoints which the hedgehogs have to|touch in any order to finish a round.") .. "|" .. |
65e61f495129
Overwrite special ammo descriptions in Racer script
Wuzzy <almikes@aol.com>
parents:
11931
diff
changeset
|
691 |
loc("Hedgehogs will start in the first waypoint.") .. "|" .. |
11983
9e57915f5365
Allow to remove waypoints in Racer with precise key
Wuzzy <almikes@aol.com>
parents:
11946
diff
changeset
|
692 |
loc("Cursor: Place waypoint") .. "|" .. |
9e57915f5365
Allow to remove waypoints in Racer with precise key
Wuzzy <almikes@aol.com>
parents:
11946
diff
changeset
|
693 |
loc("Precise: Remove previous waypoint")) |
11946
65e61f495129
Overwrite special ammo descriptions in Racer script
Wuzzy <almikes@aol.com>
parents:
11931
diff
changeset
|
694 |
|
65e61f495129
Overwrite special ammo descriptions in Racer script
Wuzzy <almikes@aol.com>
parents:
11931
diff
changeset
|
695 |
SetAmmoTexts(amSkip, loc("Finish waypoint placement"), loc("Racer tool"), |
65e61f495129
Overwrite special ammo descriptions in Racer script
Wuzzy <almikes@aol.com>
parents:
11931
diff
changeset
|
696 |
loc("Happy with your race track?|Then stop building and start racing!") .. "|" .. |
65e61f495129
Overwrite special ammo descriptions in Racer script
Wuzzy <almikes@aol.com>
parents:
11931
diff
changeset
|
697 |
loc("Or let the next player place waypoints|if less than 2 waypoints have been placed.") .. "|" .. |
65e61f495129
Overwrite special ammo descriptions in Racer script
Wuzzy <almikes@aol.com>
parents:
11931
diff
changeset
|
698 |
loc("Attack: Activate")) |
65e61f495129
Overwrite special ammo descriptions in Racer script
Wuzzy <almikes@aol.com>
parents:
11931
diff
changeset
|
699 |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
700 |
TryRepositionHogs() |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
701 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
702 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
703 |
|
12406
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
704 |
function PlaceWayPoint(x,y,placedByUser) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
705 |
if not racerActive then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
706 |
if wpCount == 0 or wpX[wpCount - 1] ~= x or wpY[wpCount - 1] ~= y then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
707 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
708 |
wpX[wpCount] = x |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
709 |
wpY[wpCount] = y |
12967
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
710 |
wpCol[wpCount] = waypointColour |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
711 |
wpCirc[wpCount] = AddVisualGear(wpX[wpCount],wpY[wpCount],vgtCircle,0,true) |
11563 | 712 |
|
12965
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
713 |
local flashing, minO, maxO |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
714 |
if wpCount == 0 then |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
715 |
-- First waypoint flashes. Useful to know since this is the spawn position. |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
716 |
minO, maxO = 164, 255 |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
717 |
flashing = 5 |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
718 |
else |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
719 |
-- Other waypoints are not animated (before the race starts) |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
720 |
minO, maxO = 255, 255 |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
721 |
flashing = 0 |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
722 |
end |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
723 |
SetVisualGearValues(wpCirc[wpCount], wpX[wpCount], wpY[wpCount], minO, maxO, 1, flashing, 0, wpRad, 5, wpCol[wpCount]) |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
724 |
|
12967
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
725 |
-- Use alternate waypoint color for all waypoints but the last one. This gives a subtle “highlighting” effect. |
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
726 |
SetVisualGearValues(wpCirc[wpCount-1], nil, nil, nil, nil, nil, nil, nil, nil, nil, waypointColourAtPlacement) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
727 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
728 |
wpCount = wpCount + 1 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
729 |
|
12406
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
730 |
if placedByUser then |
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
731 |
AddCaption(string.format(loc("Waypoint placed. Available points remaining: %d"), wpLimit-wpCount)) |
13124
991db8fc45eb
Racer: No longer play Incoming or Missed sound
Wuzzy <Wuzzy2@mail.ru>
parents:
13103
diff
changeset
|
732 |
PlaySound(sndPlaced) |
12406
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
733 |
end |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
734 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
735 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
736 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
737 |
|
11983
9e57915f5365
Allow to remove waypoints in Racer with precise key
Wuzzy <almikes@aol.com>
parents:
11946
diff
changeset
|
738 |
function onPrecise() |
9e57915f5365
Allow to remove waypoints in Racer with precise key
Wuzzy <almikes@aol.com>
parents:
11946
diff
changeset
|
739 |
if not racerActive and CurrentHedgehog ~= nil and GetCurAmmoType() == amAirAttack then |
9e57915f5365
Allow to remove waypoints in Racer with precise key
Wuzzy <almikes@aol.com>
parents:
11946
diff
changeset
|
740 |
DeletePreviousWayPoint() |
9e57915f5365
Allow to remove waypoints in Racer with precise key
Wuzzy <almikes@aol.com>
parents:
11946
diff
changeset
|
741 |
end |
9e57915f5365
Allow to remove waypoints in Racer with precise key
Wuzzy <almikes@aol.com>
parents:
11946
diff
changeset
|
742 |
end |
9e57915f5365
Allow to remove waypoints in Racer with precise key
Wuzzy <almikes@aol.com>
parents:
11946
diff
changeset
|
743 |
|
9e57915f5365
Allow to remove waypoints in Racer with precise key
Wuzzy <almikes@aol.com>
parents:
11946
diff
changeset
|
744 |
function DeletePreviousWayPoint() |
9e57915f5365
Allow to remove waypoints in Racer with precise key
Wuzzy <almikes@aol.com>
parents:
11946
diff
changeset
|
745 |
if wpCount > 0 then |
9e57915f5365
Allow to remove waypoints in Racer with precise key
Wuzzy <almikes@aol.com>
parents:
11946
diff
changeset
|
746 |
wpCount = wpCount - 1 |
9e57915f5365
Allow to remove waypoints in Racer with precise key
Wuzzy <almikes@aol.com>
parents:
11946
diff
changeset
|
747 |
wpX[wpCount] = nil |
9e57915f5365
Allow to remove waypoints in Racer with precise key
Wuzzy <almikes@aol.com>
parents:
11946
diff
changeset
|
748 |
wpY[wpCount] = nil |
9e57915f5365
Allow to remove waypoints in Racer with precise key
Wuzzy <almikes@aol.com>
parents:
11946
diff
changeset
|
749 |
wpCol[wpCount] = nil |
9e57915f5365
Allow to remove waypoints in Racer with precise key
Wuzzy <almikes@aol.com>
parents:
11946
diff
changeset
|
750 |
DeleteVisualGear(wpCirc[wpCount]) |
9e57915f5365
Allow to remove waypoints in Racer with precise key
Wuzzy <almikes@aol.com>
parents:
11946
diff
changeset
|
751 |
wpCirc[wpCount] = nil |
12967
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
752 |
SetVisualGearValues(wpCirc[wpCount-1], nil, nil, nil, nil, nil, nil, nil, nil, nil, waypointColour) |
11983
9e57915f5365
Allow to remove waypoints in Racer with precise key
Wuzzy <almikes@aol.com>
parents:
11946
diff
changeset
|
753 |
AddCaption(string.format(loc("Waypoint removed. Available points: %d"), wpLimit-wpCount)) |
13129
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
754 |
PlaySound(sndBump) |
11983
9e57915f5365
Allow to remove waypoints in Racer with precise key
Wuzzy <almikes@aol.com>
parents:
11946
diff
changeset
|
755 |
else |
9e57915f5365
Allow to remove waypoints in Racer with precise key
Wuzzy <almikes@aol.com>
parents:
11946
diff
changeset
|
756 |
PlaySound(sndDenied) |
9e57915f5365
Allow to remove waypoints in Racer with precise key
Wuzzy <almikes@aol.com>
parents:
11946
diff
changeset
|
757 |
AddCaption(loc("No waypoint to be removed!")) |
9e57915f5365
Allow to remove waypoints in Racer with precise key
Wuzzy <almikes@aol.com>
parents:
11946
diff
changeset
|
758 |
end |
9e57915f5365
Allow to remove waypoints in Racer with precise key
Wuzzy <almikes@aol.com>
parents:
11946
diff
changeset
|
759 |
end |
9e57915f5365
Allow to remove waypoints in Racer with precise key
Wuzzy <almikes@aol.com>
parents:
11946
diff
changeset
|
760 |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
761 |
function onSpecialPoint(x,y,flag) |
11563 | 762 |
if flag == 99 then |
763 |
fastX[fastCount] = x |
|
764 |
fastY[fastCount] = y |
|
765 |
fastCount = fastCount + 1 |
|
766 |
else |
|
767 |
addHashData(x) |
|
768 |
addHashData(y) |
|
769 |
addHashData(flag) |
|
770 |
specialPointsX[specialPointsCount] = x |
|
771 |
specialPointsY[specialPointsCount] = y |
|
772 |
specialPointsCount = specialPointsCount + 1 |
|
773 |
end |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
774 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
775 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
776 |
function onNewTurn() |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
777 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
778 |
CheckForNewRound() |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
779 |
TryRepositionHogs() |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
780 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
781 |
racerActive = false |
12407
8cc070640fd1
Fix skipping in Racer causing the next team to be skipped, too
Wuzzy <almikes@aol.com>
parents:
12406
diff
changeset
|
782 |
turnSkipped = false |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
783 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
784 |
trackTime = 0 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
785 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
786 |
currCount = 0 -- hopefully this solves problem |
14548
c572eb57dd2d
Fix Racer ghost not resetting properly after a skip (bug 565)
Wuzzy <Wuzzy2@mail.ru>
parents:
14252
diff
changeset
|
787 |
fastIndex = 0 |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
788 |
AddAmmo(CurrentHedgehog, amAirAttack, 0) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
789 |
gTimer = 0 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
790 |
|
15404
0e3bf53dfe47
Racer, TechRacer: Mask taunts like Stupid when track was completed successfully
Wuzzy <Wuzzy2@mail.ru>
parents:
15403
diff
changeset
|
791 |
SetSoundMask(sndStupid, false) |
0e3bf53dfe47
Racer, TechRacer: Mask taunts like Stupid when track was completed successfully
Wuzzy <Wuzzy2@mail.ru>
parents:
15403
diff
changeset
|
792 |
SetSoundMask(sndBugger, false) |
0e3bf53dfe47
Racer, TechRacer: Mask taunts like Stupid when track was completed successfully
Wuzzy <Wuzzy2@mail.ru>
parents:
15403
diff
changeset
|
793 |
SetSoundMask(sndDrat, false) |
0e3bf53dfe47
Racer, TechRacer: Mask taunts like Stupid when track was completed successfully
Wuzzy <Wuzzy2@mail.ru>
parents:
15403
diff
changeset
|
794 |
|
15403
e347c3508f95
Racer: Fix ammo delay confusion if gfKing or gfPlaceHog were set
Wuzzy <Wuzzy2@mail.ru>
parents:
15402
diff
changeset
|
795 |
-- Remember ammo delays for later |
e347c3508f95
Racer: Fix ammo delay confusion if gfKing or gfPlaceHog were set
Wuzzy <Wuzzy2@mail.ru>
parents:
15402
diff
changeset
|
796 |
if ammoDelays == nil then |
e347c3508f95
Racer: Fix ammo delay confusion if gfKing or gfPlaceHog were set
Wuzzy <Wuzzy2@mail.ru>
parents:
15402
diff
changeset
|
797 |
ammoDelays = {} |
e347c3508f95
Racer: Fix ammo delay confusion if gfKing or gfPlaceHog were set
Wuzzy <Wuzzy2@mail.ru>
parents:
15402
diff
changeset
|
798 |
for a=0, AmmoTypeMax do |
15411
2cde69c1c680
Racer: Really fix delay confusion when attempting to force-disable gfKing/gfPlaceHog
Wuzzy <Wuzzy2@mail.ru>
parents:
15410
diff
changeset
|
799 |
local _, _, delay = GetAmmo(a) |
2cde69c1c680
Racer: Really fix delay confusion when attempting to force-disable gfKing/gfPlaceHog
Wuzzy <Wuzzy2@mail.ru>
parents:
15410
diff
changeset
|
800 |
-- delay >= 10000 is special value used in hog placement phase. |
2cde69c1c680
Racer: Really fix delay confusion when attempting to force-disable gfKing/gfPlaceHog
Wuzzy <Wuzzy2@mail.ru>
parents:
15410
diff
changeset
|
801 |
-- This extracts the "true" delay |
2cde69c1c680
Racer: Really fix delay confusion when attempting to force-disable gfKing/gfPlaceHog
Wuzzy <Wuzzy2@mail.ru>
parents:
15410
diff
changeset
|
802 |
if delay >= 10000 then |
2cde69c1c680
Racer: Really fix delay confusion when attempting to force-disable gfKing/gfPlaceHog
Wuzzy <Wuzzy2@mail.ru>
parents:
15410
diff
changeset
|
803 |
delay = delay - 10000 |
2cde69c1c680
Racer: Really fix delay confusion when attempting to force-disable gfKing/gfPlaceHog
Wuzzy <Wuzzy2@mail.ru>
parents:
15410
diff
changeset
|
804 |
end |
15403
e347c3508f95
Racer: Fix ammo delay confusion if gfKing or gfPlaceHog were set
Wuzzy <Wuzzy2@mail.ru>
parents:
15402
diff
changeset
|
805 |
ammoDelays[a] = delay |
e347c3508f95
Racer: Fix ammo delay confusion if gfKing or gfPlaceHog were set
Wuzzy <Wuzzy2@mail.ru>
parents:
15402
diff
changeset
|
806 |
end |
e347c3508f95
Racer: Fix ammo delay confusion if gfKing or gfPlaceHog were set
Wuzzy <Wuzzy2@mail.ru>
parents:
15402
diff
changeset
|
807 |
end |
e347c3508f95
Racer: Fix ammo delay confusion if gfKing or gfPlaceHog were set
Wuzzy <Wuzzy2@mail.ru>
parents:
15402
diff
changeset
|
808 |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
809 |
-- Handle Starting Stage of Game |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
810 |
if (gameOver == false) and (gameBegun == false) then |
11931
a01a890093f3
Racer: Reduce minimum number of waypoints to 2, tweak descriptions
Wuzzy <almikes@aol.com>
parents:
11930
diff
changeset
|
811 |
if wpCount >= 2 then |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
812 |
gameBegun = true |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
813 |
roundNumber = 0 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
814 |
firstClan = GetHogClan(CurrentHedgehog) |
12406
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
815 |
if specialPointsCount == 0 then |
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
816 |
InstructionsRace() |
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
817 |
end |
11946
65e61f495129
Overwrite special ammo descriptions in Racer script
Wuzzy <almikes@aol.com>
parents:
11931
diff
changeset
|
818 |
|
15398
09b63f9032f4
Racer: Disable other ammos in waypoint placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
15397
diff
changeset
|
819 |
-- Restore old ammo delays |
09b63f9032f4
Racer: Disable other ammos in waypoint placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
15397
diff
changeset
|
820 |
for a=0, AmmoTypeMax do |
09b63f9032f4
Racer: Disable other ammos in waypoint placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
15397
diff
changeset
|
821 |
if a ~= amAirAttack and a ~= amSkip then |
09b63f9032f4
Racer: Disable other ammos in waypoint placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
15397
diff
changeset
|
822 |
SetAmmoDelay(a, ammoDelays[a]) |
09b63f9032f4
Racer: Disable other ammos in waypoint placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
15397
diff
changeset
|
823 |
end |
09b63f9032f4
Racer: Disable other ammos in waypoint placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
15397
diff
changeset
|
824 |
end |
09b63f9032f4
Racer: Disable other ammos in waypoint placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
15397
diff
changeset
|
825 |
|
11946
65e61f495129
Overwrite special ammo descriptions in Racer script
Wuzzy <almikes@aol.com>
parents:
11931
diff
changeset
|
826 |
SetAmmoTexts(amSkip, nil, nil, nil) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
827 |
else |
11986
f97b1c7fa053
Allow to set Racer waypoint limit with script parameter “maxwaypoints”
Wuzzy <almikes@aol.com>
parents:
11985
diff
changeset
|
828 |
local infoString |
f97b1c7fa053
Allow to set Racer waypoint limit with script parameter “maxwaypoints”
Wuzzy <almikes@aol.com>
parents:
11985
diff
changeset
|
829 |
if wpLimit > 2 then |
f97b1c7fa053
Allow to set Racer waypoint limit with script parameter “maxwaypoints”
Wuzzy <almikes@aol.com>
parents:
11985
diff
changeset
|
830 |
infoString = string.format(loc("Place 2-%d waypoints using the waypoint placement tool."), wpLimit) |
f97b1c7fa053
Allow to set Racer waypoint limit with script parameter “maxwaypoints”
Wuzzy <almikes@aol.com>
parents:
11985
diff
changeset
|
831 |
else |
f97b1c7fa053
Allow to set Racer waypoint limit with script parameter “maxwaypoints”
Wuzzy <almikes@aol.com>
parents:
11985
diff
changeset
|
832 |
infoString = loc("Place 2 waypoints using the waypoint placement tool.") |
f97b1c7fa053
Allow to set Racer waypoint limit with script parameter “maxwaypoints”
Wuzzy <almikes@aol.com>
parents:
11985
diff
changeset
|
833 |
end |
11924 | 834 |
ShowMission(loc("Racer"), |
15069
e16f906224fd
Change mission panel icons for a couple of game styles
Wuzzy <Wuzzy2@mail.ru>
parents:
15068
diff
changeset
|
835 |
loc("Waypoint placement phase"), infoString, -amAirAttack, 4000) |
15397
b186e1f4c5ed
Racer: Make sure the waypoint placer always has 0 delay
Wuzzy <Wuzzy2@mail.ru>
parents:
15396
diff
changeset
|
836 |
AddAmmo(CurrentHedgehog, amAirAttack, AMMO_INFINITE) |
15398
09b63f9032f4
Racer: Disable other ammos in waypoint placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
15397
diff
changeset
|
837 |
for a=0, AmmoTypeMax do |
09b63f9032f4
Racer: Disable other ammos in waypoint placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
15397
diff
changeset
|
838 |
if a ~= amAirAttack and a ~= amSkip then |
09b63f9032f4
Racer: Disable other ammos in waypoint placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
15397
diff
changeset
|
839 |
SetAmmoDelay(a, 9999) |
09b63f9032f4
Racer: Disable other ammos in waypoint placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
15397
diff
changeset
|
840 |
end |
09b63f9032f4
Racer: Disable other ammos in waypoint placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
15397
diff
changeset
|
841 |
end |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
842 |
SetWeapon(amAirAttack) |
15137
651c1737be2a
WxW, Racer: Make bots skip/auto-confirm setup phase
Wuzzy <Wuzzy2@mail.ru>
parents:
15069
diff
changeset
|
843 |
-- Bots skip waypoint placement |
651c1737be2a
WxW, Racer: Make bots skip/auto-confirm setup phase
Wuzzy <Wuzzy2@mail.ru>
parents:
15069
diff
changeset
|
844 |
if GetHogLevel(CurrentHedgehog) ~= 0 then |
651c1737be2a
WxW, Racer: Make bots skip/auto-confirm setup phase
Wuzzy <Wuzzy2@mail.ru>
parents:
15069
diff
changeset
|
845 |
SkipTurn() |
651c1737be2a
WxW, Racer: Make bots skip/auto-confirm setup phase
Wuzzy <Wuzzy2@mail.ru>
parents:
15069
diff
changeset
|
846 |
end |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
847 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
848 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
849 |
|
12965
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
850 |
-- Set the waypoints to unactive on new round |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
851 |
if gameBegun and not gameOver then |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
852 |
for i = 0,(wpCount-1) do |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
853 |
wpActive[i] = false |
12967
e32fff07b8d7
Racer: Make waypoints dark in bright themes like Bath
Wuzzy <Wuzzy2@mail.ru>
parents:
12965
diff
changeset
|
854 |
wpCol[i] = waypointColour |
12965
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
855 |
local flashing, minO, maxO |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
856 |
if i == 0 then |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
857 |
-- Make first waypoint flash very noticably |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
858 |
minO, maxO = 92, 255 |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
859 |
flashing = 2 |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
860 |
else |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
861 |
minO, maxO = 164, 224 |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
862 |
flashing = 10 |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
863 |
end |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
864 |
SetVisualGearValues(wpCirc[i], nil, nil, minO, maxO, nil, flashing, nil, nil, nil, wpCol[i]) |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
865 |
end |
13024
a568bc16a99a
Racer and TechRacer: Move cameera to first waypoint in Ready phase
Wuzzy <Wuzzy2@mail.ru>
parents:
12967
diff
changeset
|
866 |
|
a568bc16a99a
Racer and TechRacer: Move cameera to first waypoint in Ready phase
Wuzzy <Wuzzy2@mail.ru>
parents:
12967
diff
changeset
|
867 |
if cameraGear then |
a568bc16a99a
Racer and TechRacer: Move cameera to first waypoint in Ready phase
Wuzzy <Wuzzy2@mail.ru>
parents:
12967
diff
changeset
|
868 |
DeleteGear(cameraGear) |
a568bc16a99a
Racer and TechRacer: Move cameera to first waypoint in Ready phase
Wuzzy <Wuzzy2@mail.ru>
parents:
12967
diff
changeset
|
869 |
end |
a568bc16a99a
Racer and TechRacer: Move cameera to first waypoint in Ready phase
Wuzzy <Wuzzy2@mail.ru>
parents:
12967
diff
changeset
|
870 |
-- Move camera to first waypoint |
a568bc16a99a
Racer and TechRacer: Move cameera to first waypoint in Ready phase
Wuzzy <Wuzzy2@mail.ru>
parents:
12967
diff
changeset
|
871 |
-- We use a dummy gear to feed FollowGear. It does not affect the race. |
a568bc16a99a
Racer and TechRacer: Move cameera to first waypoint in Ready phase
Wuzzy <Wuzzy2@mail.ru>
parents:
12967
diff
changeset
|
872 |
cameraGear = AddGear(wpX[0], wpY[0], gtGenericFaller, 0, 0, 0, 5000) |
a568bc16a99a
Racer and TechRacer: Move cameera to first waypoint in Ready phase
Wuzzy <Wuzzy2@mail.ru>
parents:
12967
diff
changeset
|
873 |
SetState(cameraGear, bor(GetState(cameraGear), gstNoGravity+gstInvisible)) |
a568bc16a99a
Racer and TechRacer: Move cameera to first waypoint in Ready phase
Wuzzy <Wuzzy2@mail.ru>
parents:
12967
diff
changeset
|
874 |
FollowGear(cameraGear) |
12965
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
875 |
end |
21eda4fe383c
Racer: Make first waypoint flash and highlight last waypoint while placing
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
876 |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
877 |
if gameOver == true then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
878 |
gameBegun = false |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
879 |
racerActive = false -- newadd |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
880 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
881 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
882 |
AddAmmo(CurrentHedgehog, amTardis, 0) |
13103
cf2a58dccc4a
CTF: Remove tardis and resurrector
Wuzzy <Wuzzy2@mail.ru>
parents:
13027
diff
changeset
|
883 |
AddAmmo(CurrentHedgehog, amResurrector, 0) |
cf2a58dccc4a
CTF: Remove tardis and resurrector
Wuzzy <Wuzzy2@mail.ru>
parents:
13027
diff
changeset
|
884 |
AddAmmo(CurrentHedgehog, amInvulnerable, 0) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
885 |
AddAmmo(CurrentHedgehog, amDrillStrike, 0) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
886 |
AddAmmo(CurrentHedgehog, amMineStrike, 0) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
887 |
AddAmmo(CurrentHedgehog, amNapalm, 0) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
888 |
AddAmmo(CurrentHedgehog, amPiano, 0) |
15413
ca8896b9c7c6
Racer: Remove a few ammo types that could break the gameplay
Wuzzy <Wuzzy2@mail.ru>
parents:
15411
diff
changeset
|
889 |
AddAmmo(CurrentHedgehog, amSwitch, 0) |
ca8896b9c7c6
Racer: Remove a few ammo types that could break the gameplay
Wuzzy <Wuzzy2@mail.ru>
parents:
15411
diff
changeset
|
890 |
AddAmmo(CurrentHedgehog, amKamikaze, 0) |
ca8896b9c7c6
Racer: Remove a few ammo types that could break the gameplay
Wuzzy <Wuzzy2@mail.ru>
parents:
15411
diff
changeset
|
891 |
AddAmmo(CurrentHedgehog, amIceGun, 0) |
15397
b186e1f4c5ed
Racer: Make sure the waypoint placer always has 0 delay
Wuzzy <Wuzzy2@mail.ru>
parents:
15396
diff
changeset
|
892 |
SetAmmoDelay(amAirAttack, 0) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
893 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
894 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
895 |
function onGameTick20() |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
896 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
897 |
-- airstrike detected, convert this into a potential waypoint spot |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
898 |
if cGear ~= nil then |
15410
8504fee3b601
Racer: Fix weird water splashes after waypoint placement
Wuzzy <Wuzzy2@mail.ru>
parents:
15404
diff
changeset
|
899 |
local x,y = GetGearPosition(cGear) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
900 |
if x > -9000 then |
15410
8504fee3b601
Racer: Fix weird water splashes after waypoint placement
Wuzzy <Wuzzy2@mail.ru>
parents:
15404
diff
changeset
|
901 |
local x,y = GetGearTarget(cGear) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
902 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
903 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
904 |
if TestRectForObstacle(x-20, y-20, x+20, y+20, true) then |
11924 | 905 |
AddCaption(loc("Please place the waypoint in the air, within the map boundaries")) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
906 |
PlaySound(sndDenied) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
907 |
elseif (y > WaterLine-50) then |
11924 | 908 |
AddCaption(loc("Please place the waypoint further away from the waterline")) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
909 |
PlaySound(sndDenied) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
910 |
else |
12406
cd53f1bf52ff
Stop telling the player to build a track in Racer when it is already built
Wuzzy <almikes@aol.com>
parents:
12388
diff
changeset
|
911 |
PlaceWayPoint(x, y, true) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
912 |
if wpCount == wpLimit then |
11924 | 913 |
AddCaption(loc("Race complexity limit reached")) |
12287
faf1b93422ba
Use new EndTurn in a couple of scripts, esp. to fix timeout taunts in Racer
Wuzzy <almikes@aol.com>
parents:
12079
diff
changeset
|
914 |
EndTurn(true) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
915 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
916 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
917 |
else |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
918 |
DeleteGear(cGear) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
919 |
end |
15410
8504fee3b601
Racer: Fix weird water splashes after waypoint placement
Wuzzy <Wuzzy2@mail.ru>
parents:
15404
diff
changeset
|
920 |
SetGearPosition(cGear, -10000, y) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
921 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
922 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
923 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
924 |
-- start the player tumbling with a boom once their turn has actually begun |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
925 |
if racerActive == false then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
926 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
927 |
if (TurnTimeLeft > 0) and (TurnTimeLeft ~= TurnTime) then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
928 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
929 |
-- if the gamehas started put the player in the middle of the first |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
930 |
--waypoint that was placed |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
931 |
if gameBegun == true then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
932 |
AddCaption(loc("Good to go!")) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
933 |
racerActive = true |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
934 |
trackTime = 0 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
935 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
936 |
SetGearPosition(CurrentHedgehog, wpX[0], wpY[0]) |
15385 | 937 |
Explode(GetX(CurrentHedgehog)+boostX, |
938 |
GetY(CurrentHedgehog)+boostY, |
|
939 |
50, |
|
940 |
EXPLNoDamage + EXPLAutoSound) |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
941 |
FollowGear(CurrentHedgehog) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
942 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
943 |
HideMission() |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
944 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
945 |
-- don't start empty-handed |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
946 |
if (GetCurAmmoType() == amNothing) then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
947 |
SetNextWeapon() |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
948 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
949 |
else |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
950 |
-- still in placement mode |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
951 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
952 |
|
13129
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
953 |
end |
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
954 |
if not racerActive and not gameBegun and GetCurAmmoType() == amAirAttack then |
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
955 |
waypointCursor = true |
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
956 |
else |
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
957 |
waypointCursor = false |
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
958 |
end |
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
959 |
else |
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
960 |
waypointCursor = false |
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
961 |
end |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
962 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
963 |
-- has the player started his tumbling spree? |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
964 |
if (CurrentHedgehog ~= nil) then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
965 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
966 |
--airstrike conversion used to be here |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
967 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
968 |
-- if the RACE has started, show tracktimes and keep tabs on waypoints |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
969 |
if (racerActive == true) and (gameBegun == true) then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
970 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
971 |
--ghost |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
972 |
if GameTime%40 == 0 then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
973 |
HandleGhost() |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
974 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
975 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
976 |
trackTime = trackTime + 20 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
977 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
978 |
if GameTime%100 == 0 then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
979 |
|
11924 | 980 |
AddCaption(string.format(loc("Time: %.1fs"), (trackTime/1000)),GetClanColor(GetHogClan(CurrentHedgehog)),capgrpMessage2) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
981 |
|
15404
0e3bf53dfe47
Racer, TechRacer: Mask taunts like Stupid when track was completed successfully
Wuzzy <Wuzzy2@mail.ru>
parents:
15403
diff
changeset
|
982 |
-- Track completed, all waypoints touched |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
983 |
if (CheckWaypoints() == true) then |
15404
0e3bf53dfe47
Racer, TechRacer: Mask taunts like Stupid when track was completed successfully
Wuzzy <Wuzzy2@mail.ru>
parents:
15403
diff
changeset
|
984 |
SetSoundMask(sndStupid, true) |
0e3bf53dfe47
Racer, TechRacer: Mask taunts like Stupid when track was completed successfully
Wuzzy <Wuzzy2@mail.ru>
parents:
15403
diff
changeset
|
985 |
SetSoundMask(sndBugger, true) |
0e3bf53dfe47
Racer, TechRacer: Mask taunts like Stupid when track was completed successfully
Wuzzy <Wuzzy2@mail.ru>
parents:
15403
diff
changeset
|
986 |
SetSoundMask(sndDrat, true) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
987 |
AdjustScores() |
15400 | 988 |
SetEffect(CurrentHedgehog, heInvulnerable, 1) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
989 |
DisableTumbler() |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
990 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
991 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
992 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
993 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
994 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
995 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
996 |
-- if the player has expended his tunbling time, stop him tumbling |
12407
8cc070640fd1
Fix skipping in Racer causing the next team to be skipped, too
Wuzzy <almikes@aol.com>
parents:
12406
diff
changeset
|
997 |
if TurnTimeLeft <= 20 and not turnSkipped then |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
998 |
DisableTumbler() |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
999 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1000 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1001 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1002 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1003 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1004 |
|
13129
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
1005 |
function onGameTick() |
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
1006 |
if waypointCursor then |
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
1007 |
if not waypointPreview then |
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
1008 |
waypointPreview = AddVisualGear(CursorX, CursorY, vgtCircle, 0, true) |
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
1009 |
end |
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
1010 |
SetVisualGearValues(waypointPreview, CursorX, CursorY, 200, 200, 0, 0, 0, div(wpRad, 5), 5, waypointColourAtPlacement) |
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
1011 |
else |
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
1012 |
if waypointPreview then |
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
1013 |
DeleteVisualGear(waypointPreview) |
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
1014 |
waypointPreview = nil |
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
1015 |
end |
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
1016 |
end |
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
1017 |
end |
9a328734e469
Racer: Draw waypoint outline around cursor while in placement phase
Wuzzy <Wuzzy2@mail.ru>
parents:
13124
diff
changeset
|
1018 |
|
15399
4b792051c159
Racer: Fix hog taking damage skipping turn of next team
Wuzzy <Wuzzy2@mail.ru>
parents:
15398
diff
changeset
|
1019 |
function onGearDamage(gear) |
4b792051c159
Racer: Fix hog taking damage skipping turn of next team
Wuzzy <Wuzzy2@mail.ru>
parents:
15398
diff
changeset
|
1020 |
|
4b792051c159
Racer: Fix hog taking damage skipping turn of next team
Wuzzy <Wuzzy2@mail.ru>
parents:
15398
diff
changeset
|
1021 |
if gear == CurrentHedgehog then |
4b792051c159
Racer: Fix hog taking damage skipping turn of next team
Wuzzy <Wuzzy2@mail.ru>
parents:
15398
diff
changeset
|
1022 |
DisableTumbler(false) |
4b792051c159
Racer: Fix hog taking damage skipping turn of next team
Wuzzy <Wuzzy2@mail.ru>
parents:
15398
diff
changeset
|
1023 |
end |
4b792051c159
Racer: Fix hog taking damage skipping turn of next team
Wuzzy <Wuzzy2@mail.ru>
parents:
15398
diff
changeset
|
1024 |
|
4b792051c159
Racer: Fix hog taking damage skipping turn of next team
Wuzzy <Wuzzy2@mail.ru>
parents:
15398
diff
changeset
|
1025 |
end |
4b792051c159
Racer: Fix hog taking damage skipping turn of next team
Wuzzy <Wuzzy2@mail.ru>
parents:
15398
diff
changeset
|
1026 |
|
13630
fe7d2bbf5f3f
Fix resurrection animation appearing at wrong position for some missions and styles
Wuzzy <Wuzzy2@mail.ru>
parents:
13129
diff
changeset
|
1027 |
function onGearResurrect(gear, vGear) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1028 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1029 |
if gear == CurrentHedgehog then |
12287
faf1b93422ba
Use new EndTurn in a couple of scripts, esp. to fix timeout taunts in Racer
Wuzzy <almikes@aol.com>
parents:
12079
diff
changeset
|
1030 |
DisableTumbler(false) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1031 |
end |
13630
fe7d2bbf5f3f
Fix resurrection animation appearing at wrong position for some missions and styles
Wuzzy <Wuzzy2@mail.ru>
parents:
13129
diff
changeset
|
1032 |
if vGear then |
fe7d2bbf5f3f
Fix resurrection animation appearing at wrong position for some missions and styles
Wuzzy <Wuzzy2@mail.ru>
parents:
13129
diff
changeset
|
1033 |
DeleteVisualGear(vGear) |
fe7d2bbf5f3f
Fix resurrection animation appearing at wrong position for some missions and styles
Wuzzy <Wuzzy2@mail.ru>
parents:
13129
diff
changeset
|
1034 |
end |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1035 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1036 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1037 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1038 |
function onGearAdd(gear) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1039 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1040 |
if GetGearType(gear) == gtHedgehog then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1041 |
hhs[numhhs] = gear |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1042 |
numhhs = numhhs + 1 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1043 |
SetEffect(gear, heResurrectable, 1) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1044 |
elseif GetGearType(gear) == gtAirAttack then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1045 |
cGear = gear |
15410
8504fee3b601
Racer: Fix weird water splashes after waypoint placement
Wuzzy <Wuzzy2@mail.ru>
parents:
15404
diff
changeset
|
1046 |
local x,y = GetGearPosition(cGear) |
8504fee3b601
Racer: Fix weird water splashes after waypoint placement
Wuzzy <Wuzzy2@mail.ru>
parents:
15404
diff
changeset
|
1047 |
SetGearPosition(cGear, 10000, y) |
8504fee3b601
Racer: Fix weird water splashes after waypoint placement
Wuzzy <Wuzzy2@mail.ru>
parents:
15404
diff
changeset
|
1048 |
elseif (not gameBegun) and GetGearType(gear) == gtAirBomb then |
8504fee3b601
Racer: Fix weird water splashes after waypoint placement
Wuzzy <Wuzzy2@mail.ru>
parents:
15404
diff
changeset
|
1049 |
DeleteGear(gear) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1050 |
elseif GetGearType(gear) == gtRope and TeamRope then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1051 |
SetTag(gear,1) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1052 |
SetGearValues(gear,nil,nil,nil,nil,nil,nil,nil,nil,nil,nil,GetClanColor(GetHogClan(CurrentHedgehog))) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1053 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1054 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1055 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1056 |
function onGearDelete(gear) |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1057 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1058 |
if GetGearType(gear) == gtAirAttack then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1059 |
cGear = nil |
13024
a568bc16a99a
Racer and TechRacer: Move cameera to first waypoint in Ready phase
Wuzzy <Wuzzy2@mail.ru>
parents:
12967
diff
changeset
|
1060 |
elseif gear == cameraGear then |
a568bc16a99a
Racer and TechRacer: Move cameera to first waypoint in Ready phase
Wuzzy <Wuzzy2@mail.ru>
parents:
12967
diff
changeset
|
1061 |
cameraGear = nil |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1062 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1063 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1064 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1065 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1066 |
function onAttack() |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1067 |
at = GetCurAmmoType() |
11563 | 1068 |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1069 |
usedWeapons[at] = 0 |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1070 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1071 |
|
12407
8cc070640fd1
Fix skipping in Racer causing the next team to be skipped, too
Wuzzy <almikes@aol.com>
parents:
12406
diff
changeset
|
1072 |
function onHogAttack(ammoType) |
8cc070640fd1
Fix skipping in Racer causing the next team to be skipped, too
Wuzzy <almikes@aol.com>
parents:
12406
diff
changeset
|
1073 |
if ammoType == amSkip then |
8cc070640fd1
Fix skipping in Racer causing the next team to be skipped, too
Wuzzy <almikes@aol.com>
parents:
12406
diff
changeset
|
1074 |
turnSkipped = true |
8cc070640fd1
Fix skipping in Racer causing the next team to be skipped, too
Wuzzy <almikes@aol.com>
parents:
12406
diff
changeset
|
1075 |
end |
8cc070640fd1
Fix skipping in Racer causing the next team to be skipped, too
Wuzzy <almikes@aol.com>
parents:
12406
diff
changeset
|
1076 |
end |
8cc070640fd1
Fix skipping in Racer causing the next team to be skipped, too
Wuzzy <almikes@aol.com>
parents:
12406
diff
changeset
|
1077 |
|
15245
395563ffc8b5
Racer: Count turn as skipped when computer skipped
Wuzzy <Wuzzy2@mail.ru>
parents:
15137
diff
changeset
|
1078 |
function onSkipTurn() |
395563ffc8b5
Racer: Count turn as skipped when computer skipped
Wuzzy <Wuzzy2@mail.ru>
parents:
15137
diff
changeset
|
1079 |
turnSkipped = true |
395563ffc8b5
Racer: Count turn as skipped when computer skipped
Wuzzy <Wuzzy2@mail.ru>
parents:
15137
diff
changeset
|
1080 |
end |
395563ffc8b5
Racer: Count turn as skipped when computer skipped
Wuzzy <Wuzzy2@mail.ru>
parents:
15137
diff
changeset
|
1081 |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1082 |
function onAchievementsDeclaration() |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1083 |
usedWeapons[amSkip] = nil |
11563 | 1084 |
usedWeapons[amExtraTime] = nil |
1085 |
||
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1086 |
usedRope = usedWeapons[amRope] ~= nil |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1087 |
usedPortal = usedWeapons[amPortalGun] ~= nil |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1088 |
usedSaucer = usedWeapons[amJetpack] ~= nil |
11563 | 1089 |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1090 |
usedWeapons[amNothing] = nil |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1091 |
usedWeapons[amRope] = nil |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1092 |
usedWeapons[amPortalGun] = nil |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1093 |
usedWeapons[amJetpack] = nil |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1094 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1095 |
usedOther = next(usedWeapons) ~= nil |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1096 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1097 |
if usedOther then -- smth besides nothing, skip, rope, portal or saucer used |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1098 |
raceType = "unknown race" |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1099 |
elseif usedRope and not usedPortal and not usedSaucer then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1100 |
raceType = "rope race" |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1101 |
elseif not usedRope and usedPortal and not usedSaucer then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1102 |
raceType = "portal race" |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1103 |
elseif not usedRope and not usedPortal and usedSaucer then |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1104 |
raceType = "saucer race" |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1105 |
elseif (usedRope or usedPortal or usedSaucer or usedOther) == false then -- no weapons used at all? |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1106 |
raceType = "no tools race" |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1107 |
else -- at least two of rope, portal and saucer used |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1108 |
raceType = "mixed race" |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1109 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1110 |
|
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1111 |
for i = 0, (numTeams-1) do |
13839
2fceeea62b10
Add tie handling for Racer and TechRacer
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
1112 |
if teamScore[i] < MAX_TURN_TIME then |
14070
a5be3ef4bbbe
Update official challenge hashes, improve console logging (warning: racer #17 is missing!)
Wuzzy <Wuzzy2@mail.ru>
parents:
13841
diff
changeset
|
1113 |
DeclareAchievement(raceType, teamNameArr[i], officialChallenge, teamScore[i]) |
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1114 |
end |
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1115 |
end |
11569 | 1116 |
|
14070
a5be3ef4bbbe
Update official challenge hashes, improve console logging (warning: racer #17 is missing!)
Wuzzy <Wuzzy2@mail.ru>
parents:
13841
diff
changeset
|
1117 |
if officialChallenge ~= nil and fastCount > 0 then |
11569 | 1118 |
StartGhostPoints(fastCount) |
1119 |
||
1120 |
for i = 0, (fastCount - 1) do |
|
1121 |
DumpPoint(fastX[i], fastY[i]) |
|
1122 |
end |
|
1123 |
end |
|
10856
d080b8d4c114
team coloured, just for the heck of it, based on a param. also del airmine, 'cause, probably not fun here. you're invuln anyway.
nemo
parents:
10847
diff
changeset
|
1124 |
end |