author | Wuzzy <almikes@aol.com> |
Tue, 26 Apr 2016 17:40:29 +0200 | |
changeset 11759 | 1e2ec1be5041 |
parent 11758 | b6cf979b3377 |
child 11760 | 001994046892 |
permissions | -rw-r--r-- |
11015 | 1 |
--------------------------------------------------------- |
2 |
--- LE CONSTRUCTION MODE 0.7 (badly adapted from Hedge Editor 0.5) |
|
3 |
--------------------------------------------------------- |
|
4 |
-- a hedgewars gameplay mode by mikade |
|
5 |
-- special thanks to all who helped test and offered suggestions |
|
6 |
-- additional thanks to sheepluva/nemo for adding some extra hooks |
|
7 |
||
8 |
-- (to do) |
|
9 |
-- investigate loc not working on addcaptions |
|
10 |
-- check for parsecommands before porting to dev |
|
11 |
-- test onUpDown more extensively as it may need revision (check for amRubber etc) |
|
12 |
-- test localization of weapons and utils and stuff |
|
13 |
||
14 |
-- try posistion grenades in Harmer so it blows hogs away from the struc |
|
15 |
-- and don't explode too close to the struc |
|
16 |
||
17 |
-- additional/previous balance ideas |
|
18 |
-- based on your money? |
|
19 |
-- based on the number of strucs/gens you own? |
|
20 |
-- based on your existing arsenal? |
|
21 |
-- limit number of crates spawned per round perhaps (done) |
|
22 |
-- limit number of generators? |
|
23 |
||
24 |
------------------------------------------------------------------------------ |
|
11720
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
25 |
-- SCRIPT PARAMETER |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
26 |
------------------------------------------------------------------------------ |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
27 |
-- The script parameter can be used to configure the energy |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
28 |
-- of the game. It is a comma-seperated list of key=value pairs, where each |
11729
2d57eed66d41
Fix bad comment in Construction Mode
Wuzzy <almikes@aol.com>
parents:
11728
diff
changeset
|
29 |
-- key is a word and each value is an integer between 0 and 4294967295. |
11720
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
30 |
-- |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
31 |
-- Possible keys: |
11721
8c1a30d4cbc8
Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents:
11720
diff
changeset
|
32 |
--- initialenergy: Amount of energy that each team starts with (default: 550) |
11720
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
33 |
--- energyperround: Amount of energy that each team gets per round (default: 50) |
11729
2d57eed66d41
Fix bad comment in Construction Mode
Wuzzy <almikes@aol.com>
parents:
11728
diff
changeset
|
34 |
--- maxenergy: Maximum amount of energy each team can hold (default: 1000) |
11720
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
35 |
|
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
36 |
-- Example: “initialenergy=750, maxenergy=2000” starts thee game with 750 energy |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
37 |
-- and sets the maximum energy to 2000 |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
38 |
|
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
39 |
------------------------------------------------------------------------------ |
11015 | 40 |
--version history |
41 |
------------------------------------------------------------------------------ |
|
42 |
--v0.1 |
|
43 |
-- concept test |
|
44 |
||
45 |
--v0.2 |
|
46 |
-- improved documentation (in script and in game) |
|
47 |
-- improved localisation (or is it? at any rate, crate placement should now say e.g. Bazooka and not amBazooka) |
|
48 |
-- added variable weapon costs (based on the values from Vatten's Consumerism script) |
|
49 |
||
50 |
-- added reflector shield (still needs work and balancing) |
|
51 |
-- added weapon-filter (probably ok) |
|
52 |
||
53 |
-- enabled super weapons like ballgun, rcplane, watermelon, hellish to test balance |
|
54 |
-- reduce max money to 1000 |
|
55 |
||
56 |
--v0.3 |
|
57 |
-- some /s removed |
|
58 |
||
59 |
--v0.4 |
|
60 |
-- added support for per hog ammo (hopefully) |
|
61 |
||
62 |
--v0.5 (dev) |
|
63 |
-- added somewhat horribly implemented support for different structure sprites |
|
64 |
-- added override pictures for ammo menu |
|
65 |
-- added override message on wep select to aid understanding |
|
66 |
-- split menu into/between weps/parts: struc, crates, gears |
|
67 |
-- add a limit on crates per turn |
|
68 |
-- add a limit on extra time per turn |
|
69 |
-- add a test level |
|
70 |
-- restored rubber placement |
|
71 |
-- cleaned up some of the code a bit and removed about 280 lines of code I didn't need, lol |
|
72 |
||
73 |
--v0.6 (dev) |
|
74 |
-- added magic dance |
|
75 |
||
76 |
--v.07 (pushed to repo) |
|
77 |
-- added a cfg file |
|
78 |
-- removed another 903 lines of code we weren't using (lol) |
|
79 |
||
80 |
-------------------------------- |
|
81 |
-- STRUCTURES LIST / IDEAS |
|
82 |
-------------------------------- |
|
83 |
||
84 |
--Healing Station: heals hogs to 150 life |
|
85 |
--Teleportation Node: allows teleporting to any other teleporter nodes |
|
86 |
--Bio-filter: explodes enemy hogs |
|
87 |
--Respawner: if you have one of these, any slain hogs are resurrected here :D |
|
88 |
--Generator: generates energy (used to buy stuff, and possibly later other strucs might have upkeep costs) |
|
89 |
--Support Station: allows purchasing of weapons, utilities, and med-crates |
|
90 |
--Construction Station: allows purchasing of girders, rubber, mines, sticky mines, barrels |
|
91 |
--Reflector Shield: reflect projectiles |
|
92 |
--Weapon Filter: kill all equipement of enemy hogs passing through this area. |
|
93 |
||
94 |
||
95 |
--to make the grill more attractive make it vaporize flying saucers |
|
96 |
--and also rope, and maybe incoming gears |
|
97 |
||
98 |
-- make healing thing also cure poison |
|
99 |
-- maybe make poison more virulent and dangerous |
|
100 |
||
101 |
--(not implemented / abandoned ideas) |
|
102 |
-- Core: allows construction of other structures. |
|
103 |
-- Automated Turret (think red drones from space invasion) |
|
104 |
-- Canon (gives access to 3 fireballs per turn while near) |
|
105 |
-- something that allows control of wind/water |
|
106 |
-- Gravity Field generator : triggers world gravity change |
|
107 |
||
108 |
-- structures consume power over time and |
|
109 |
-- maybe you can turn structures OFF/ON, manually to save power. |
|
110 |
||
111 |
-- hacking |
|
112 |
-- allow hacking of structures, either being able to use enemy structures, |
|
113 |
-- or turning a team's structures against them. |
|
114 |
||
115 |
-- pylons |
|
116 |
-- allow hogs to put down a pylon-like gear which then allows the core |
|
117 |
-- to place other structures/objects within the pylon's sphere of influence |
|
118 |
-- this would allow aggressive structure advancement |
|
119 |
||
120 |
-- resouce mining? |
|
121 |
-- you could designate something like mines, that you could get close to, |
|
122 |
-- "pick up", and then "drop" back at a central location to simulate |
|
123 |
-- resource mining. bit complicated/meh, normal power generators probably easier |
|
124 |
||
125 |
-- it would be cool to have a red mask we could apply over girders |
|
126 |
-- that would indicate they were Indestructible |
|
127 |
||
128 |
HedgewarsScriptLoad("/Scripts/Locale.lua") |
|
129 |
HedgewarsScriptLoad("/Scripts/Tracker.lua") |
|
11720
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
130 |
HedgewarsScriptLoad("/Scripts/Params.lua") |
11015 | 131 |
|
132 |
---------------------------------------------- |
|
133 |
-- STRUC CRAP |
|
134 |
---------------------------------------------- |
|
135 |
||
136 |
strucID = {} |
|
137 |
strucGear = {} |
|
138 |
strucClan = {} |
|
139 |
strucType = {} |
|
140 |
strucCost = {} |
|
141 |
strucHealth = {} |
|
142 |
||
143 |
strucCirc = {} |
|
144 |
strucCircCol = {} |
|
145 |
strucCircRadius = {} |
|
146 |
strucCircType = {} |
|
147 |
strucAltDisplay = {} |
|
148 |
||
149 |
placedExpense = 0 |
|
150 |
||
151 |
tempID = nil |
|
152 |
||
153 |
sUID = 0 |
|
154 |
||
155 |
colorRed = 0xff0000ff |
|
156 |
colorGreen = 0x00ff00ff |
|
157 |
||
158 |
clanBoundsSX = {} |
|
159 |
clanBoundsSY = {} |
|
160 |
clanBoundsEX = {} |
|
161 |
clanBoundsEY = {} |
|
162 |
||
163 |
clanPower = {} |
|
164 |
clanID = {} |
|
165 |
clanLStrucIndex = {} |
|
166 |
||
167 |
clanLWepIndex = {} -- for ease of use let's track this stuff |
|
168 |
clanLUtilIndex = {} |
|
169 |
clanLGearIndex = {} |
|
170 |
clanUsedExtraTime = {} |
|
171 |
clanCratesSpawned = {} |
|
11721
8c1a30d4cbc8
Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents:
11720
diff
changeset
|
172 |
clanFirstTurn = {} |
11015 | 173 |
|
174 |
effectTimer = 0 |
|
175 |
||
176 |
wallsVisible = false |
|
177 |
wX = {} |
|
178 |
wY = {} |
|
179 |
wWidth = {} |
|
180 |
wHeight = {} |
|
181 |
wCol = {} |
|
182 |
margin = 20 |
|
183 |
||
184 |
vTag = {} |
|
185 |
lastWep = nil |
|
186 |
||
11717
f35139700d22
Construction Mode: Disable setting drill strike timer in object placement mode
Wuzzy <almikes@aol.com>
parents:
11716
diff
changeset
|
187 |
checkForSpecialWeaponsIn = -1 |
f35139700d22
Construction Mode: Disable setting drill strike timer in object placement mode
Wuzzy <almikes@aol.com>
parents:
11716
diff
changeset
|
188 |
|
11720
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
189 |
-- Config variables (script parameter) |
11721
8c1a30d4cbc8
Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents:
11720
diff
changeset
|
190 |
conf_initialEnergy = 550 |
11720
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
191 |
conf_energyPerRound = 50 |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
192 |
conf_maxEnergy = 1000 |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
193 |
|
11015 | 194 |
function HideTags() |
195 |
||
196 |
for i = 0, 2 do |
|
197 |
SetVisualGearValues(vTag[i],0,0,0,0,0,1,0, 0, 240000, 0xffffff00) |
|
198 |
end |
|
199 |
||
200 |
end |
|
201 |
||
202 |
function DrawTag(i) |
|
203 |
||
204 |
zoomL = 1.3 |
|
205 |
||
206 |
xOffset = 40 |
|
207 |
||
208 |
if i == 0 then |
|
209 |
yOffset = 40 |
|
210 |
tCol = 0xffba00ff |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
211 |
tValue = 30 |
11015 | 212 |
elseif i == 1 then |
213 |
zoomL = 1.1 |
|
214 |
xOffset = 45 |
|
215 |
yOffset = 70 |
|
216 |
tCol = 0x00ff00ff |
|
217 |
tValue = clanPower[GetHogClan(CurrentHedgehog)] |
|
218 |
elseif i == 2 then |
|
219 |
zoomL = 1.1 |
|
220 |
xOffset = 60 + 35 |
|
221 |
yOffset = 70 |
|
222 |
tCol = 0xa800ffff |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
223 |
tValue = 10 |
11015 | 224 |
end |
225 |
||
226 |
DeleteVisualGear(vTag[i]) |
|
227 |
vTag[i] = AddVisualGear(0, 0, vgtHealthTag, 0, false) |
|
228 |
g1, g2, g3, g4, g5, g6, g7, g8, g9, g10 = GetVisualGearValues(vTag[i]) |
|
229 |
SetVisualGearValues ( |
|
230 |
vTag[i], --id |
|
231 |
-div(ScreenWidth,2) + xOffset, --xoffset |
|
232 |
ScreenHeight - yOffset, --yoffset |
|
233 |
0, --dx |
|
234 |
0, --dy |
|
235 |
zoomL, --zoom |
|
236 |
1, --~= 0 means align to screen |
|
237 |
g7, --frameticks |
|
238 |
tValue, --value |
|
239 |
240000, --timer |
|
240 |
tCol --GetClanColor( GetHogClan(CurrentHedgehog) ) |
|
241 |
) |
|
242 |
||
243 |
end |
|
244 |
||
245 |
function onScreenResize() |
|
246 |
||
247 |
-- redraw Tags so that their screen locations are updated |
|
248 |
if (CurrentHedgehog ~= nil) then |
|
249 |
DrawTag(0) |
|
250 |
DrawTag(1) |
|
251 |
DrawTag(2) |
|
252 |
end |
|
253 |
||
254 |
end |
|
255 |
||
256 |
function XYisInRect(px, py, psx, psy, pex, pey) |
|
257 |
||
258 |
if (px > psx) and (px < pex) and (py > psy) and (py < pey) then |
|
259 |
return(true) |
|
260 |
else |
|
261 |
return(false) |
|
262 |
end |
|
263 |
||
264 |
end |
|
265 |
||
266 |
function AddWall(zXMin,zYMin, zWidth, zHeight, zCol) |
|
267 |
||
268 |
table.insert(wX, zXMin) |
|
269 |
table.insert(wY, zYMin) |
|
270 |
table.insert(wWidth, zWidth) |
|
271 |
table.insert(wHeight, zHeight) |
|
272 |
table.insert(wCol, zCol) |
|
273 |
||
274 |
end |
|
275 |
||
276 |
function BorderSpark(zXMin,zYMin, zWidth, zHeight, bCol) |
|
277 |
||
278 |
eX = zXMin + GetRandom(zWidth+10) |
|
279 |
eY = zYMin + GetRandom(zHeight+10) |
|
280 |
tempE = AddVisualGear(eX, eY, vgtDust, 0, false) |
|
281 |
if tempE ~= 0 then |
|
282 |
g1, g2, g3, g4, g5, g6, g7, g8, g9, g10 = GetVisualGearValues(tempE) |
|
283 |
SetVisualGearValues(tempE, eX, eY, g3, g4, g5, g6, g7, 1, g9, bCol ) |
|
284 |
end |
|
285 |
||
286 |
end |
|
287 |
||
288 |
function HandleBorderEffects() |
|
289 |
||
290 |
effectTimer = effectTimer + 1 |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
291 |
if effectTimer > 15 then |
11015 | 292 |
effectTimer = 1 |
293 |
for i = 1, #wX do |
|
294 |
BorderSpark(wX[i],wY[i],wWidth[i],wHeight[i], wCol[i]) |
|
295 |
end |
|
296 |
end |
|
297 |
||
298 |
end |
|
299 |
||
300 |
---- |
|
301 |
-- old reflecting stuff from like 3 years ago lol |
|
302 |
--- |
|
303 |
||
304 |
function gearCanBeDeflected(gear) |
|
305 |
||
306 |
if (GetGearType(gear) == gtShell) or |
|
307 |
(GetGearType(gear) == gtGrenade) or |
|
308 |
(GetGearType(gear) == gtAirBomb) or |
|
309 |
(GetGearType(gear) == gtClusterBomb) or |
|
310 |
(GetGearType(gear) == gtCluster) or |
|
311 |
(GetGearType(gear) == gtGasBomb) or |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
312 |
(GetGearType(gear) == gtMine) or |
11015 | 313 |
(GetGearType(gear) == gtMortar) or |
314 |
(GetGearType(gear) == gtHellishBomb) or |
|
315 |
(GetGearType(gear) == gtWatermelon) or |
|
316 |
(GetGearType(gear) == gtMelonPiece) or |
|
317 |
(GetGearType(gear) == gtEgg) or |
|
318 |
(GetGearType(gear) == gtDrill) or |
|
319 |
(GetGearType(gear) == gtBall) or |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
320 |
(GetGearType(gear) == gtExplosives) or |
11015 | 321 |
(GetGearType(gear) == gtFlame) or |
322 |
(GetGearType(gear) == gtPortal) or |
|
323 |
(GetGearType(gear) == gtDynamite) or |
|
324 |
(GetGearType(gear) == gtSMine) or |
|
325 |
(GetGearType(gear) == gtKnife) or |
|
326 |
(GetGearType(gear) == gtJetpack) or -- test this and birdy plz |
|
327 |
(GetGearType(gear) == gtBirdy) or -- test this and birdy plz |
|
328 |
(GetGearType(gear) == gtSnowball) or |
|
329 |
(GetGearType(gear) == gtMolotov) |
|
330 |
then |
|
331 |
return(true) |
|
332 |
else |
|
333 |
return(false) |
|
334 |
end |
|
335 |
||
336 |
end |
|
337 |
||
338 |
function getThreatDamage(gear) |
|
339 |
||
340 |
--- damage amounts for weapons |
|
341 |
if (GetGearType(gear) == gtGrenade) or |
|
342 |
(GetGearType(gear) == gtClusterBomb) or |
|
343 |
(GetGearType(gear) == gtGasBomb) or |
|
344 |
(GetGearType(gear) == gtKnife) or |
|
345 |
(GetGearType(gear) == gtEgg) or |
|
346 |
(GetGearType(gear) == gtMolotov) or |
|
347 |
(GetGearType(gear) == gtHellishBomb) or |
|
348 |
(GetGearType(gear) == gtWatermelon) or |
|
349 |
(GetGearType(gear) == gtSMine) |
|
350 |
then |
|
351 |
dmg = 30 |
|
352 |
||
353 |
elseif (GetGearType(gear) == gtMelonPiece) then |
|
354 |
dmg = 40 |
|
355 |
||
356 |
elseif (GetGearType(gear) == gtAirBomb) or |
|
357 |
(GetGearType(gear) == gtDrill) or |
|
358 |
(GetGearType(gear) == gtMine) or |
|
359 |
(GetGearType(gear) == gtCluster) then |
|
360 |
dmg = 20 |
|
361 |
||
362 |
elseif (GetGearType(gear) == gtFlame) or |
|
363 |
(GetGearType(gear) == gtPortal) or |
|
364 |
(GetGearType(gear) == gtDynamite) |
|
365 |
then |
|
366 |
dmg = 0 |
|
367 |
||
368 |
elseif (GetGearType(gear) == gtBall) then |
|
369 |
dmg = 1 |
|
370 |
||
371 |
else --normal shell, snowball etc |
|
372 |
dmg = 65 |
|
373 |
end |
|
374 |
||
375 |
return(dmg) |
|
376 |
||
377 |
end |
|
378 |
||
379 |
function setGearReflectionValues(gear) |
|
380 |
||
381 |
dmg = getThreatDamage(gear) |
|
382 |
setGearValue(gear,"damage",dmg) |
|
383 |
setGearValue(gear,"deflects",0) |
|
384 |
||
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
385 |
if (CurrentHedgehog ~= nil) then |
11015 | 386 |
setGearValue(gear,"owner",GetHogClan(CurrentHedgehog)) -- NEW NEEDS CHANGE? |
387 |
else |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
388 |
setGearValue(gear,"owner",10) |
11015 | 389 |
end |
390 |
||
391 |
end |
|
392 |
||
393 |
function AddStruc(pX,pY, pType, pClan) |
|
394 |
||
395 |
sUID = sUID + 1 |
|
396 |
||
397 |
tempG = AddGear(0, 0, gtTarget, 0, 0, 0, 0) |
|
398 |
SetGearPosition(tempG, pX, pY) |
|
399 |
setGearValue(tempG, "sUID", sUID) |
|
400 |
||
401 |
tempCirc = AddVisualGear(0,0,vgtCircle,0,true) |
|
402 |
||
403 |
SetVisualGearValues(tempCirc, 0, 0, 100, 255, 1, 100, 0, 500, 1, 0xFFFFFF00) |
|
404 |
||
405 |
table.insert(strucID, sUID) |
|
406 |
table.insert(strucType, pType) |
|
407 |
table.insert(strucGear,tempG) |
|
408 |
table.insert(strucClan,pClan) |
|
409 |
table.insert(strucCost,2) |
|
410 |
||
411 |
frameID = 0 |
|
412 |
visualSprite = sprTarget |
|
413 |
madness = AddVisualGear(GetX(tempG), GetY(tempG), vgtStraightShot, 1, true,1) |
|
414 |
g1, g2, g3, g4, g5, g6, g7, g8, g9, g10 = GetVisualGearValues(madness) --g9 |
|
415 |
||
416 |
||
417 |
if pType == loc("Reflector Shield") then |
|
418 |
table.insert(strucHealth,255) |
|
419 |
||
420 |
else |
|
421 |
table.insert(strucHealth,1) |
|
422 |
end |
|
423 |
||
424 |
table.insert(strucCirc,tempCirc) |
|
425 |
||
426 |
table.insert(strucCircType, 1) |
|
427 |
if pType == loc("Bio-Filter") then |
|
428 |
table.insert(strucCircCol,colorRed) |
|
429 |
table.insert(strucCircRadius,1000) |
|
430 |
frameID = 7 |
|
431 |
elseif pType == loc("Healing Station") then |
|
432 |
table.insert(strucCircCol,0xFF00FF00) |
|
433 |
table.insert(strucCircRadius,500) |
|
434 |
frameID = 3 |
|
435 |
elseif pType == loc("Respawner") then |
|
436 |
table.insert(strucCircCol,0xFF00FF00) |
|
437 |
table.insert(strucCircRadius,75) |
|
438 |
runOnHogs(EnableHogResurrectionForThisClan) |
|
439 |
frameID = 1 |
|
440 |
elseif pType == loc("Teleportation Node") then |
|
441 |
table.insert(strucCircCol,0x0000FFFF) |
|
442 |
table.insert(strucCircRadius,350) |
|
443 |
frameID = 6 |
|
444 |
elseif pType == loc("Generator") then |
|
445 |
table.insert(strucCircCol,0xFFFF00FF) |
|
446 |
table.insert(strucCircRadius,75) |
|
447 |
setGearValue(tempG, "power", 0) |
|
448 |
frameID = 2 |
|
449 |
elseif pType == loc("Support Station") then |
|
450 |
table.insert(strucCircCol,0xFFFF00FF) |
|
451 |
table.insert(strucCircRadius,500) |
|
452 |
frameID = 4 |
|
453 |
elseif pType == loc("Construction Station") then |
|
454 |
table.insert(strucCircCol,0xFFFFFFFF) |
|
455 |
table.insert(strucCircRadius,500) |
|
456 |
frameID = 8 |
|
457 |
elseif pType == loc("Reflector Shield") then |
|
458 |
table.insert(strucCircCol,0xffae00ff) |
|
459 |
table.insert(strucCircRadius,750) |
|
460 |
frameID = 9 |
|
461 |
elseif pType == loc("Weapon Filter") then |
|
462 |
table.insert(strucCircCol,0xa800ffff) |
|
463 |
table.insert(strucCircRadius,750) |
|
464 |
frameID = 5 |
|
465 |
end |
|
466 |
||
467 |
||
468 |
SetVisualGearValues(madness, g1, g2, 0, 0, g5, frameID, g7, visualSprite, g9, g10 ) |
|
469 |
SetState(tempG, bor(GetState(tempG),gstInvisible) ) |
|
470 |
table.insert(strucAltDisplay, madness) |
|
471 |
||
472 |
end |
|
473 |
||
474 |
-- this is basically onStructureDelete |
|
475 |
-- we may need to expand it for non-gear structures later |
|
476 |
function CheckGearForStructureLink(gear) |
|
477 |
||
478 |
respawnerDestroyed = false |
|
479 |
||
480 |
for i = 1, #strucID do |
|
481 |
if strucID[i] == getGearValue(gear,"sUID") then |
|
482 |
||
483 |
if strucType[i] == loc("Respawner") then |
|
484 |
respawnerDestroyed = true |
|
485 |
end |
|
486 |
||
487 |
table.remove(strucID,i) |
|
488 |
table.remove(strucGear,i) |
|
489 |
table.remove(strucClan,i) |
|
490 |
table.remove(strucType,i) |
|
491 |
table.remove(strucCost,i) |
|
492 |
table.remove(strucHealth,i) |
|
493 |
||
494 |
DeleteVisualGear(strucCirc[i]) |
|
495 |
table.remove(strucCirc,i) |
|
496 |
||
497 |
table.remove(strucCircCol,i) |
|
498 |
table.remove(strucCircRadius,i) |
|
499 |
table.remove(strucCircType,i) |
|
500 |
||
501 |
if strucAltDisplay[i] ~= 1 then |
|
502 |
DeleteVisualGear(strucAltDisplay[i]) |
|
503 |
end |
|
504 |
table.remove(strucAltDisplay,i) |
|
505 |
||
506 |
end |
|
507 |
end |
|
508 |
||
509 |
if respawnerDestroyed == true then |
|
510 |
runOnHogs(RecalibrateRespawn) |
|
511 |
end |
|
512 |
||
513 |
end |
|
514 |
||
515 |
-- called when we add a new respawner |
|
516 |
function EnableHogResurrectionForThisClan(gear) |
|
517 |
if GetHogClan(gear) == GetHogClan(CurrentHedgehog) then |
|
518 |
SetEffect(gear, heResurrectable, 1) |
|
519 |
end |
|
520 |
end |
|
521 |
||
522 |
-- this is called when a respawner blows up |
|
523 |
function RecalibrateRespawn(gear) |
|
524 |
||
525 |
respawnerList = {} |
|
526 |
for i = 1, #strucID do |
|
527 |
if (strucType[i] == loc("Respawner")) and (strucClan[i] == GetHogClan(gear)) then |
|
528 |
table.insert(respawnerList, i) |
|
529 |
end |
|
530 |
end |
|
531 |
||
532 |
if #respawnerList >= 1 then |
|
533 |
SetEffect(gear, heResurrectable, 1) |
|
534 |
else |
|
535 |
SetEffect(gear, heResurrectable, 0) |
|
536 |
end |
|
537 |
||
538 |
end |
|
539 |
||
540 |
--resposition dead hogs at a respawner if they own one |
|
541 |
function FindRespawner(gear) |
|
542 |
||
543 |
respawnerList = {} |
|
544 |
for i = 1, #strucID do |
|
545 |
if (strucType[i] == loc("Respawner")) and (strucClan[i] == GetHogClan(gear)) then |
|
546 |
table.insert(respawnerList, i) |
|
547 |
end |
|
548 |
end |
|
549 |
||
550 |
if #respawnerList >= 1 then |
|
551 |
i = GetRandom(#respawnerList)+1 |
|
552 |
SetGearPosition(gear,GetX(strucGear[respawnerList[i]]),GetY(strucGear[respawnerList[i]])-25) |
|
553 |
AddVisualGear(GetX(gear), GetY(gear), vgtExplosion, 0, false) |
|
554 |
else -- (this should never happen, but just in case) |
|
555 |
SetEffect(gear, heResurrectable, 0) |
|
556 |
DeleteGear(gear) |
|
557 |
end |
|
558 |
||
559 |
end |
|
560 |
||
561 |
function onGearResurrect(gear) |
|
562 |
AddVisualGear(GetX(gear), GetY(gear), vgtExplosion, 0, false) |
|
563 |
FindRespawner(gear) |
|
564 |
end |
|
565 |
||
566 |
||
567 |
function CheckTeleport(gear, tX, tY) |
|
568 |
||
569 |
teleportOriginSuccessful = false |
|
570 |
teleportDestinationSuccessful = false |
|
571 |
||
572 |
for i = 1, #strucID do |
|
573 |
||
574 |
if (strucType[i] == loc("Teleportation Node")) and (strucClan[i] == GetHogClan(CurrentHedgehog)) then |
|
575 |
||
576 |
dist = GetDistFromGearToXY(CurrentHedgehog,GetX(strucGear[i]), GetY(strucGear[i])) |
|
577 |
if strucCircType[i] == 0 then |
|
578 |
NR = strucCircRadius[i] |
|
579 |
else |
|
580 |
NR = (48/100*strucCircRadius[i])/2 |
|
581 |
end |
|
582 |
if dist <= NR*NR then |
|
583 |
teleportOriginSuccessful = true |
|
584 |
end |
|
585 |
||
586 |
dist = GetDistFromXYtoXY(tX,tY,GetX(strucGear[i]), GetY(strucGear[i])) |
|
587 |
if strucCircType[i] == 0 then |
|
588 |
NR = strucCircRadius[i] |
|
589 |
else |
|
590 |
NR = (48/100*strucCircRadius[i])/2 |
|
591 |
end |
|
592 |
if dist <= NR*NR then |
|
593 |
teleportDestinationSuccessful = true |
|
594 |
end |
|
595 |
||
596 |
end |
|
597 |
||
598 |
||
599 |
end |
|
600 |
||
601 |
if ((teleportDestinationSuccessful == false) or (teleportOriginSuccessful == false)) then |
|
602 |
AddCaption(loc("Teleport Unsuccessful. Please teleport within a clan teleporter's sphere of influence.")) |
|
603 |
SetGearTarget(gear, GetX(CurrentHedgehog), GetY(CurrentHedgehog)) |
|
604 |
end |
|
605 |
||
606 |
end |
|
607 |
||
608 |
--Check for proximity of gears to structures, and make structures behave accordingly |
|
609 |
function CheckProximity(gear) |
|
610 |
||
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
611 |
dist = GetDistFromGearToXY(gear, GetX(strucGear[tempID]), GetY(strucGear[tempID])) |
11015 | 612 |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
613 |
-- calculate my real radius if I am an aura |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
614 |
if strucCircType[tempID] == 0 then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
615 |
NR = strucCircRadius[tempID] |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
616 |
else |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
617 |
NR = (48/100*strucCircRadius[tempID])/2 |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
618 |
end |
11015 | 619 |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
620 |
-- we're in business |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
621 |
if dist <= NR*NR then |
11015 | 622 |
|
623 |
||
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
624 |
-- heal clan hogs |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
625 |
if strucType[tempID] == loc("Healing Station") then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
626 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
627 |
if GetGearType(gear) == gtHedgehog then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
628 |
if GetHogClan(gear) == strucClan[tempID] then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
629 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
630 |
hogLife = GetHealth(gear) + 1 |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
631 |
if hogLife > 150 then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
632 |
hogLife = 150 |
11015 | 633 |
end |
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
634 |
SetHealth(gear, hogLife) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
635 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
636 |
-- change this to the med kit sprite health ++++s later |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
637 |
tempE = AddVisualGear(GetX(strucGear[tempID]), GetY(strucGear[tempID]), vgtSmoke, 0, true) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
638 |
g1, g2, g3, g4, g5, g6, g7, g8, g9, g10 = GetVisualGearValues(tempE) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
639 |
SetVisualGearValues(tempE, g1, g2, g3, g4, g5, g6, g7, g8, g9, colorGreen ) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
640 |
|
11015 | 641 |
end |
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
642 |
end |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
643 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
644 |
-- explode enemy clan hogs |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
645 |
elseif strucType[tempID] == loc("Bio-Filter") then |
11015 | 646 |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
647 |
if GetGearType(gear) == gtHedgehog then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
648 |
if (GetHogClan(gear) ~= strucClan[tempID]) and (GetHealth(gear) > 0) then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
649 |
AddGear(GetX(gear), GetY(gear), gtGrenade, 0, 0, 0, 1) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
650 |
end |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
651 |
end |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
652 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
653 |
-- were those weapons in your pocket, or were you just happy to see me? |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
654 |
elseif strucType[tempID] == loc("Weapon Filter") then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
655 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
656 |
if GetGearType(gear) == gtHedgehog then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
657 |
if (GetHogClan(gear) ~= strucClan[tempID]) then |
11015 | 658 |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
659 |
for wpnIndex = 1, #atkArray do |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
660 |
AddAmmo(gear, atkArray[wpnIndex][1], 0) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
661 |
end |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
662 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
663 |
for wpnIndex = 1, #utilArray do |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
664 |
AddAmmo(gear, utilArray[wpnIndex][1], 0) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
665 |
end |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
666 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
667 |
AddAmmo(gear, amAirAttack, 100) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
668 |
AddAmmo(gear, amSwitch, 100) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
669 |
AddAmmo(gear, amSkip, 100) |
11015 | 670 |
|
671 |
end |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
672 |
end |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
673 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
674 |
-- BOUNCE! POGO! POGO! POGO! POGO! |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
675 |
elseif strucType[tempID] == loc("Reflector Shield") then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
676 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
677 |
-- add check for whose projectile it is |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
678 |
if gearCanBeDeflected(gear) == true then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
679 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
680 |
gOwner = getGearValue(gear,"owner") |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
681 |
gDeflects = getGearValue(gear,"deflects") |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
682 |
gDmg = getGearValue(gear,"damage") |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
683 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
684 |
if gDeflects >= 3 then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
685 |
DeleteGear(gear) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
686 |
AddVisualGear(GetX(gear), GetY(gear), vgtSmoke, 0, false) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
687 |
PlaySound(sndVaporize) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
688 |
elseif gOwner ~= strucClan[tempID] then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
689 |
--whether to vaporize gears or bounce them |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
690 |
if gDmg ~= 0 then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
691 |
dx, dy = GetGearVelocity(gear) |
11015 | 692 |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
693 |
if (dx == 0) and (dy == 0) then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
694 |
-- static mine, explosive, etc encountered |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
695 |
-- do nothing |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
696 |
else |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
697 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
698 |
--let's bounce something! |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
699 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
700 |
dx = dx*(-1) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
701 |
dy = dy*(-1) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
702 |
SetGearVelocity(gear,dx,dy) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
703 |
setGearValue(gear,"deflects",(gDeflects+1)) |
11015 | 704 |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
705 |
AddVisualGear(GetX(gear), GetY(gear), vgtExplosion, 0, false) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
706 |
PlaySound(sndExplosion) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
707 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
708 |
strucHealth[tempID] = strucHealth[tempID] - gDmg |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
709 |
strucCircCol[tempID] = strucCircCol[tempID] - gDmg |
11015 | 710 |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
711 |
if strucHealth[tempID] <= 0 then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
712 |
AddVisualGear(GetX(strucGear[tempID]), GetY(strucGear[tempID]), vgtExplosion, 0, false) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
713 |
DeleteGear(strucGear[tempID]) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
714 |
PlaySound(sndExplosion) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
715 |
end |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
716 |
|
11015 | 717 |
end |
718 |
||
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
719 |
else |
11015 | 720 |
DeleteGear(gear) |
721 |
AddVisualGear(GetX(gear), GetY(gear), vgtSmoke, 0, false) |
|
722 |
PlaySound(sndVaporize) |
|
723 |
end |
|
724 |
end |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
725 |
end |
11015 | 726 |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
727 |
--mark as within range of a teleporter node |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
728 |
elseif strucType[tempID] == loc("Teleportation Node") then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
729 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
730 |
if GetGearType(gear) == gtHedgehog then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
731 |
if GetHogClan(gear) == strucClan[tempID] then |
11015 | 732 |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
733 |
for i = 1, #sProx do |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
734 |
if sProx[i][1] == loc("Teleportation Mode") then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
735 |
sProx[i][2] = true |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
736 |
end |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
737 |
end |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
738 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
739 |
end |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
740 |
end |
11015 | 741 |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
742 |
-- mark as within range of construction station |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
743 |
-- and thus allow menu access to placement modes |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
744 |
-- for girders, mines, sticky mines and barrels |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
745 |
elseif strucType[tempID] == loc("Construction Station") then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
746 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
747 |
if GetGearType(gear) == gtHedgehog then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
748 |
if GetHogClan(gear) == strucClan[tempID] then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
749 |
tempE = AddVisualGear(GetX(strucGear[tempID]), GetY(strucGear[tempID]), vgtSmoke, 0, true) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
750 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
751 |
for i = 1, #sProx do |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
752 |
if ((sProx[i][1] == loc("Girder Placement Mode")) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
753 |
or (sProx[i][1] == loc("Rubber Placement Mode")) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
754 |
or (sProx[i][1] == loc("Mine Placement Mode")) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
755 |
or (sProx[i][1] == loc("Sticky Mine Placement Mode")) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
756 |
or (sProx[i][1] == loc("Barrel Placement Mode"))) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
757 |
then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
758 |
sProx[i][2] = true |
11015 | 759 |
end |
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
760 |
end |
11015 | 761 |
|
762 |
||
763 |
end |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
764 |
end |
11015 | 765 |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
766 |
-- mark as within stupport station range |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
767 |
-- and thus allow menu access to placement modes |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
768 |
-- for weapon, utility, and med crates |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
769 |
elseif strucType[tempID] == loc("Support Station") then |
11015 | 770 |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
771 |
if GetGearType(gear) == gtHedgehog then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
772 |
if GetHogClan(gear) == strucClan[tempID] then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
773 |
tempE = AddVisualGear(GetX(strucGear[tempID]), GetY(strucGear[tempID]), vgtSmoke, 0, true) |
11015 | 774 |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
775 |
for i = 1, #sProx do |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
776 |
if ((sProx[i][1] == loc("Health Crate Placement Mode")) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
777 |
or (sProx[i][1] == loc("Weapon Crate Placement Mode")) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
778 |
or (sProx[i][1] == loc("Utility Crate Placement Mode"))) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
779 |
then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
780 |
sProx[i][2] = true |
11015 | 781 |
end |
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
782 |
end |
11015 | 783 |
|
784 |
||
785 |
end |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
786 |
end |
11015 | 787 |
end |
788 |
||
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
789 |
end |
11015 | 790 |
|
791 |
end |
|
792 |
||
793 |
-- used to check if we need to run through all hogs or just currenthedgehog |
|
794 |
function isAStructureThatAppliesToMultipleGears(pID) |
|
795 |
if strucType[pID] == loc("Healing Station") or |
|
796 |
strucType[pID] == loc("Reflector Shield") or |
|
797 |
strucType[pID] == loc("Weapon Filter") or |
|
798 |
strucType[pID] == loc("Bio-Filter") |
|
799 |
then |
|
800 |
return(true) |
|
801 |
else |
|
802 |
return(false) |
|
803 |
end |
|
804 |
end |
|
805 |
||
806 |
function HandleStructures() |
|
807 |
||
11724
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
808 |
if GameTime % 100 == 0 then |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
809 |
for i = 1, #sProx do |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
810 |
sProx[i][2] = false |
11015 | 811 |
|
11724
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
812 |
if sProx[i][1] == loc("Structure Placement Mode") then |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
813 |
sProx[i][2] = true |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
814 |
end |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
815 |
|
11015 | 816 |
end |
817 |
end |
|
818 |
||
819 |
for i = 1, #strucID do |
|
820 |
||
11723
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
821 |
SetVisualGearValues(strucCirc[i], GetX(strucGear[i]), GetY(strucGear[i]), nil, nil, nil, nil, nil, strucCircRadius[i], nil, strucCircCol[i]) |
11015 | 822 |
|
823 |
tempID = i |
|
824 |
||
11723
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
825 |
SetVisualGearValues(strucAltDisplay[i], GetX(strucGear[i]), GetY(strucGear[i]), 0, 0, nil, nil, 800000, sprTarget) |
11015 | 826 |
|
11723
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
827 |
if GameTime % 100 == 0 then |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
828 |
-- Check For proximity of stuff to our structures |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
829 |
if isAStructureThatAppliesToMultipleGears(i) then |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
830 |
runOnGears(CheckProximity) |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
831 |
else -- only check prox on CurrentHedgehog |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
832 |
if CurrentHedgehog ~= nil then |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
833 |
CheckProximity(CurrentHedgehog) |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
834 |
end |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
835 |
end |
11015 | 836 |
|
11723
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
837 |
if strucType[i] == loc("Generator") then |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
838 |
|
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
839 |
for z = 0, ClansCount-1 do |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
840 |
if z == strucClan[i] then |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
841 |
increaseGearValue(strucGear[i],"power") |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
842 |
if getGearValue(strucGear[i],"power") == 10 then |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
843 |
setGearValue(strucGear[i],"power",0) |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
844 |
clanPower[z] = clanPower[z] + 1 |
11728
373150be0356
Construction Mode: Sanity-check numbers from script parameter
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
845 |
if conf_maxEnergy ~= "inf" and clanPower[z] > conf_maxEnergy then |
11723
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
846 |
clanPower[z] = conf_maxEnergy |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
847 |
end |
11015 | 848 |
end |
11723
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
849 |
|
11015 | 850 |
end |
851 |
end |
|
852 |
end |
|
853 |
||
854 |
end |
|
855 |
||
856 |
end |
|
857 |
||
858 |
||
859 |
||
860 |
-- this is kinda messy and gross (even more than usual), fix it up at some point |
|
861 |
-- it just assumes that if you have access to girders, it works for rubbers |
|
862 |
-- as that is what the struc implemenation means due to construction station |
|
11727
1c09b8d050ce
Construction Mode: Fix timer issues
Wuzzy <almikes@aol.com>
parents:
11726
diff
changeset
|
863 |
if GameTime % 100 == 0 and CurrentHedgehog ~= nil then |
11724
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
864 |
anyUIProx = false |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
865 |
for i = 1, #sProx do |
11015 | 866 |
|
11724
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
867 |
if sProx[i][1] == loc("Girder Placement Mode") then |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
868 |
if sProx[i][2] == true then |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
869 |
AddAmmo(CurrentHedgehog, amGirder, 100) |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
870 |
AddAmmo(CurrentHedgehog, amRubber, 100) |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
871 |
AddAmmo(CurrentHedgehog, amDrillStrike, 100) |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
872 |
else |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
873 |
AddAmmo(CurrentHedgehog, amGirder, 0) |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
874 |
AddAmmo(CurrentHedgehog, amRubber, 0) |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
875 |
AddAmmo(CurrentHedgehog, amDrillStrike, 0) -- new |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
876 |
end |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
877 |
elseif sProx[i][1] == loc("Teleportation Mode") then |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
878 |
if sProx[i][2] == true then |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
879 |
AddAmmo(CurrentHedgehog, amTeleport, 100) |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
880 |
else |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
881 |
AddAmmo(CurrentHedgehog, amTeleport, 0) |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
882 |
end |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
883 |
elseif sProx[i][1] == loc("Weapon Crate Placement Mode") then |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
884 |
-- this is new stuff |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
885 |
if sProx[i][2] == true then |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
886 |
AddAmmo(CurrentHedgehog, amNapalm, 100) |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
887 |
else |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
888 |
AddAmmo(CurrentHedgehog, amNapalm, 0) |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
889 |
end |
11015 | 890 |
end |
11724
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
891 |
|
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
892 |
if (sProx[i][2] == true) then |
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
893 |
anyUIProx = true |
11015 | 894 |
end |
11724
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11723
diff
changeset
|
895 |
|
11015 | 896 |
end |
897 |
end |
|
898 |
||
899 |
end |
|
900 |
||
901 |
||
902 |
function checkForSpecialWeapons() |
|
903 |
||
904 |
||
905 |
||
906 |
if (GetCurAmmoType() == amAirAttack) then |
|
907 |
AddCaption(loc("Structure Placement Tool"),GetClanColor(GetHogClan(CurrentHedgehog)),capgrpAmmoinfo) |
|
908 |
elseif (GetCurAmmoType() == amDrillStrike) then |
|
909 |
AddCaption(loc("Object Placement Tool"),GetClanColor(GetHogClan(CurrentHedgehog)),capgrpAmmoinfo) |
|
910 |
elseif (GetCurAmmoType() == amNapalm) then |
|
911 |
AddCaption(loc("Crate Placement Tool"),GetClanColor(GetHogClan(CurrentHedgehog)),capgrpAmmoinfo) |
|
912 |
end |
|
913 |
||
914 |
lastWep = GetCurAmmoType() |
|
915 |
||
916 |
end |
|
917 |
||
918 |
---------------------------------------------------------- |
|
919 |
-- EXCERPTS OF ADAPTED HEDGE_EDITOR CODE FOLLOWS |
|
920 |
---------------------------------------------------------- |
|
921 |
-- experimental crap |
|
922 |
||
923 |
local landType = 0 |
|
924 |
----------------------------------------- |
|
925 |
-- tracking vars for save slash load purposes |
|
926 |
----------------------------------------- |
|
927 |
||
928 |
local hhs = {} |
|
929 |
||
930 |
--------------------------------- |
|
931 |
-- crates are made of this stuff |
|
932 |
--------------------------------- |
|
933 |
placeholder = 20 |
|
934 |
atkArray = |
|
935 |
{ |
|
936 |
{amBazooka, "amBazooka", 0, loc("Bazooka"), 2*placeholder}, |
|
937 |
--{amBee, "amBee", 0, loc("Homing Bee"), 4*placeholder}, |
|
938 |
{amMortar, "amMortar", 0, loc("Mortar"), 1*placeholder}, |
|
939 |
{amDrill, "amDrill", 0, loc("Drill Rocket"), 3*placeholder}, |
|
940 |
{amSnowball, "amSnowball", 0, loc("Mudball"), 3*placeholder}, |
|
941 |
||
942 |
{amGrenade, "amGrenade", 0, loc("Grenade"), 2*placeholder}, |
|
943 |
{amClusterBomb, "amClusterBomb", 0, loc("Cluster Bomb"), 3*placeholder}, |
|
944 |
{amWatermelon, "amWatermelon", 0, loc("Watermelon Bomb"), 25*placeholder}, |
|
11709
cea5418c1af6
Construction Mode: Make weapon names match en.txt
Wuzzy <almikes@aol.com>
parents:
11708
diff
changeset
|
945 |
{amHellishBomb, "amHellishBomb", 0, loc("Hellish hand-grenade"), 25*placeholder}, |
11759
1e2ec1be5041
Construction Mode: Reorder weapon and utility list to parrallel weapon menu order
Wuzzy <almikes@aol.com>
parents:
11758
diff
changeset
|
946 |
{amMolotov, "amMolotov", 0, loc("Molotov Cocktail"), 3*placeholder}, |
11709
cea5418c1af6
Construction Mode: Make weapon names match en.txt
Wuzzy <almikes@aol.com>
parents:
11708
diff
changeset
|
947 |
{amGasBomb, "amGasBomb", 0, loc("Old Limburger"), 3*placeholder}, |
11015 | 948 |
|
949 |
{amShotgun, "amShotgun", 0, loc("Shotgun"), 2*placeholder}, |
|
950 |
{amDEagle, "amDEagle", 0, loc("Desert Eagle"), 2*placeholder}, |
|
951 |
{amSniperRifle, "amSniperRifle", 0, loc("Sniper Rifle"), 3*placeholder}, |
|
11709
cea5418c1af6
Construction Mode: Make weapon names match en.txt
Wuzzy <almikes@aol.com>
parents:
11708
diff
changeset
|
952 |
--{amSineGun, "amSineGun", 0, loc("Sine Gun"), 6*placeholder}, |
11759
1e2ec1be5041
Construction Mode: Reorder weapon and utility list to parrallel weapon menu order
Wuzzy <almikes@aol.com>
parents:
11758
diff
changeset
|
953 |
{amFlamethrower,"amFlamethrower", 0, loc("Flamethrower"), 4*placeholder}, |
11015 | 954 |
{amIceGun, "amIceGun", 0, loc("Freezer"), 15*placeholder}, |
955 |
||
956 |
{amFirePunch, "amFirePunch", 0, loc("Shoryuken"), 3*placeholder}, |
|
957 |
{amWhip, "amWhip", 0, loc("Whip"), 1*placeholder}, |
|
958 |
{amBaseballBat, "amBaseballBat", 0, loc("Baseball Bat"), 7*placeholder}, |
|
959 |
--{amKamikaze, "amKamikaze", 0, loc("Kamikaze"), 1*placeholder}, |
|
960 |
{amSeduction, "amSeduction", 0, loc("Seduction"), 1*placeholder}, |
|
961 |
{amHammer, "amHammer", 0, loc("Hammer"), 1*placeholder}, |
|
962 |
||
963 |
{amMine, "amMine", 0, loc("Mine"), 1*placeholder}, |
|
964 |
{amDynamite, "amDynamite", 0, loc("Dynamite"), 9*placeholder}, |
|
965 |
{amCake, "amCake", 0, loc("Cake"), 25*placeholder}, |
|
966 |
{amBallgun, "amBallgun", 0, loc("Ballgun"), 40*placeholder}, |
|
967 |
--{amRCPlane, "amRCPlane", 0, loc("RC Plane"), 25*placeholder}, |
|
968 |
{amSMine, "amSMine", 0, loc("Sticky Mine"), 5*placeholder}, |
|
969 |
||
970 |
--{amAirAttack, "amAirAttack", 0, loc("Air Attack"), 10*placeholder}, |
|
971 |
--{amMineStrike, "amMineStrike", 0, loc("Mine Strike"), 15*placeholder}, |
|
972 |
--{amNapalm, "amNapalm", 0, loc("Napalm"), 15*placeholder}, |
|
973 |
--{amPiano, "amPiano", 0, loc("Piano Strike"), 40*placeholder}, |
|
11759
1e2ec1be5041
Construction Mode: Reorder weapon and utility list to parrallel weapon menu order
Wuzzy <almikes@aol.com>
parents:
11758
diff
changeset
|
974 |
--{amDrillStrike, "amDrillStrike", 0, loc("Drill Strike"), 15*placeholder}, |
11015 | 975 |
|
976 |
{amKnife, "amKnife", 0, loc("Cleaver"), 2*placeholder}, |
|
977 |
||
978 |
{amBirdy, "amBirdy", 0, loc("Birdy"), 7*placeholder} |
|
979 |
||
980 |
} |
|
981 |
||
982 |
utilArray = |
|
983 |
{ |
|
11759
1e2ec1be5041
Construction Mode: Reorder weapon and utility list to parrallel weapon menu order
Wuzzy <almikes@aol.com>
parents:
11758
diff
changeset
|
984 |
{amPickHammer, "amPickHammer", 0, loc("Pick Hammer"), 2*placeholder}, |
11709
cea5418c1af6
Construction Mode: Make weapon names match en.txt
Wuzzy <almikes@aol.com>
parents:
11708
diff
changeset
|
985 |
{amBlowTorch, "amBlowTorch", 0, loc("Blow Torch"), 4*placeholder}, |
11015 | 986 |
--{amGirder, "amGirder", 0, loc("Girder"), 4*placeholder}, |
11758
b6cf979b3377
Construction Mode: Fix landspray being considered a weapon instead of utility
Wuzzy <almikes@aol.com>
parents:
11730
diff
changeset
|
987 |
{amLandGun, "amLandGun", 0, loc("Land Spray"), 5*placeholder}, |
11709
cea5418c1af6
Construction Mode: Make weapon names match en.txt
Wuzzy <almikes@aol.com>
parents:
11708
diff
changeset
|
988 |
--{amRubber, "amRubber", 0, loc("Rubber"), 5*placeholder}, |
11015 | 989 |
|
990 |
{amRope, "amRope", 0, loc("Rope"), 7*placeholder}, |
|
991 |
{amParachute, "amParachute", 0, loc("Parachute"), 2*placeholder}, |
|
992 |
--{amTeleport, "amTeleport", 0, loc("Teleport"), 6*placeholder}, |
|
993 |
{amJetpack, "amJetpack", 0, loc("Flying Saucer"), 8*placeholder}, |
|
11759
1e2ec1be5041
Construction Mode: Reorder weapon and utility list to parrallel weapon menu order
Wuzzy <almikes@aol.com>
parents:
11758
diff
changeset
|
994 |
{amPortalGun, "amPortalGun", 0, loc("Portable Portal Device"), 15*placeholder}, |
11015 | 995 |
|
996 |
{amInvulnerable, "amInvulnerable", 0, loc("Invulnerable"), 5*placeholder}, |
|
997 |
{amLaserSight, "amLaserSight", 0, loc("Laser Sight"), 2*placeholder}, |
|
998 |
{amVampiric, "amVampiric", 0, loc("Vampirism"), 6*placeholder}, |
|
11759
1e2ec1be5041
Construction Mode: Reorder weapon and utility list to parrallel weapon menu order
Wuzzy <almikes@aol.com>
parents:
11758
diff
changeset
|
999 |
--{amResurrector, "amResurrector", 0, loc("Resurrector"), 8*placeholder}, |
1e2ec1be5041
Construction Mode: Reorder weapon and utility list to parrallel weapon menu order
Wuzzy <almikes@aol.com>
parents:
11758
diff
changeset
|
1000 |
--{amTardis, "amTardis", 0, loc("Time Box"), 2*placeholder}, |
11015 | 1001 |
|
11759
1e2ec1be5041
Construction Mode: Reorder weapon and utility list to parrallel weapon menu order
Wuzzy <almikes@aol.com>
parents:
11758
diff
changeset
|
1002 |
--{amSwitch, "amSwitch", 0, loc("Switch Hog"), 4*placeholder} |
11015 | 1003 |
{amLowGravity, "amLowGravity", 0, loc("Low Gravity"), 4*placeholder}, |
1004 |
{amExtraDamage, "amExtraDamage", 0, loc("Extra Damage"), 6*placeholder}, |
|
1005 |
{amExtraTime, "amExtraTime", 0, loc("Extra Time"), 8*placeholder} |
|
1006 |
||
1007 |
} |
|
1008 |
||
1009 |
---------------------------- |
|
1010 |
-- placement shite |
|
1011 |
---------------------------- |
|
1012 |
||
1013 |
local cGear = nil -- detects placement of girders and objects (using airattack) |
|
1014 |
local curWep = amNothing |
|
1015 |
||
1016 |
-- primary placement categories |
|
1017 |
local cIndex = 1 -- category index |
|
1018 |
local cat = { |
|
1019 |
"Girder Placement Mode", |
|
1020 |
"Rubber Placement Mode", |
|
1021 |
"Mine Placement Mode", |
|
1022 |
"Sticky Mine Placement Mode", |
|
1023 |
"Barrel Placement Mode", |
|
1024 |
"Health Crate Placement Mode", |
|
1025 |
"Weapon Crate Placement Mode", |
|
1026 |
"Utility Crate Placement Mode", |
|
1027 |
"Structure Placement Mode" |
|
1028 |
} |
|
1029 |
||
1030 |
||
1031 |
sProx = { |
|
1032 |
{loc("Girder Placement Mode"),false}, |
|
1033 |
{loc("Rubber Placement Mode"),false}, |
|
1034 |
{loc("Mine Placement Mode"),false}, |
|
1035 |
{loc("Sticky Mine Placement Mode"),false}, |
|
1036 |
{loc("Barrel Placement Mode"),false}, |
|
1037 |
{loc("Health Crate Placement Mode"),false}, |
|
1038 |
{loc("Weapon Crate Placement Mode"),false}, |
|
1039 |
{loc("Utility Crate Placement Mode"),false}, |
|
1040 |
{loc("Structure Placement Mode"),false}, |
|
1041 |
{loc("Teleportation Mode"),false} |
|
1042 |
} |
|
1043 |
||
1044 |
||
1045 |
local pMode = {} -- pMode contains custom subsets of the main categories |
|
1046 |
local pIndex = 1 |
|
1047 |
||
1048 |
local CGR = 1 -- current girder rotation, we actually need this as HW remembers what rotation you last used |
|
1049 |
||
1050 |
local placedX = {} |
|
1051 |
local placedY = {} |
|
1052 |
local placedSpec = {} |
|
1053 |
local placedSuperSpec = {} |
|
1054 |
local placedType = {} |
|
1055 |
local placedCount = 0 |
|
1056 |
||
1057 |
local sCirc -- circle that appears around selected gears |
|
1058 |
local sGear = nil |
|
1059 |
local closestDist |
|
1060 |
local closestGear = nil |
|
1061 |
||
1062 |
local tCirc = {} -- array of circles that appear around tagged gears |
|
1063 |
||
1064 |
------------------------ |
|
1065 |
-- SOME GENERAL METHODS |
|
1066 |
------------------------ |
|
1067 |
||
1068 |
function GetDistFromGearToXY(gear, g2X, g2Y) |
|
1069 |
||
1070 |
g1X, g1Y = GetGearPosition(gear) |
|
1071 |
q = g1X - g2X |
|
1072 |
w = g1Y - g2Y |
|
1073 |
||
1074 |
return ( (q*q) + (w*w) ) |
|
1075 |
||
1076 |
end |
|
1077 |
||
1078 |
function GetDistFromXYtoXY(a, b, c, d) |
|
1079 |
q = a - c |
|
1080 |
w = b - d |
|
1081 |
return ( (q*q) + (w*w) ) |
|
1082 |
end |
|
1083 |
||
1084 |
function SelectGear(gear) |
|
1085 |
||
1086 |
d = GetDistFromGearToXY(gear, placedX[placedCount], placedY[placedCount]) |
|
1087 |
||
1088 |
if d < closestDist then |
|
1089 |
closestDist = d |
|
1090 |
closestGear = gear |
|
1091 |
end |
|
1092 |
||
1093 |
end |
|
1094 |
||
1095 |
-- essentially called when user clicks the mouse |
|
1096 |
-- with girders or an airattack |
|
1097 |
function PlaceObject(x,y) |
|
1098 |
||
1099 |
placedX[placedCount] = x |
|
1100 |
placedY[placedCount] = y |
|
1101 |
placedType[placedCount] = cat[cIndex] |
|
1102 |
placedSpec[placedCount] = pMode[pIndex] |
|
1103 |
||
1104 |
if (clanUsedExtraTime[GetHogClan(CurrentHedgehog)] == true) and (cat[cIndex] == "Utility Crate Placement Mode") and (utilArray[pIndex][1] == amExtraTime) then |
|
11722
fc4909039db8
Construction Mode: “spawn” extra time, not buying
Wuzzy <almikes@aol.com>
parents:
11721
diff
changeset
|
1105 |
AddCaption(loc("You may only spawn 1 Extra Time per turn."),0xffba00ff,capgrpVolume) |
11015 | 1106 |
PlaySound(sndDenied) |
1107 |
elseif (clanCratesSpawned[GetHogClan(CurrentHedgehog)] > 4) and ( (cat[cIndex] == "Health Crate Placement Mode") or (cat[cIndex] == "Utility Crate Placement Mode") or (cat[cIndex] == "Weapon Crate Placement Mode") ) then |
|
1108 |
AddCaption(loc("You may only spawn 5 crates per turn."),0xffba00ff,capgrpVolume) |
|
1109 |
PlaySound(sndDenied) |
|
1110 |
elseif (XYisInRect(x,y, clanBoundsSX[GetHogClan(CurrentHedgehog)],clanBoundsSY[GetHogClan(CurrentHedgehog)],clanBoundsEX[GetHogClan(CurrentHedgehog)],clanBoundsEY[GetHogClan(CurrentHedgehog)]) == true) |
|
1111 |
and (clanPower[GetHogClan(CurrentHedgehog)] >= placedExpense) |
|
1112 |
then |
|
1113 |
||
1114 |
||
1115 |
||
1116 |
if cat[cIndex] == "Girder Placement Mode" then |
|
1117 |
PlaceGirder(x, y, CGR) |
|
1118 |
placedSpec[placedCount] = CGR |
|
1119 |
elseif cat[cIndex] == "Rubber Placement Mode" then |
|
1120 |
PlaceSprite(x,y, sprAmRubber, CGR, nil, nil, nil, nil, lfBouncy) |
|
1121 |
placedSpec[placedCount] = CGR |
|
1122 |
elseif cat[cIndex] == "Health Crate Placement Mode" then |
|
1123 |
gear = SpawnHealthCrate(x,y) |
|
1124 |
SetHealth(gear, pMode[pIndex]) |
|
1125 |
setGearValue(gear,"caseType","med") |
|
1126 |
clanCratesSpawned[GetHogClan(CurrentHedgehog)] = clanCratesSpawned[GetHogClan(CurrentHedgehog)] +1 |
|
1127 |
elseif cat[cIndex] == "Weapon Crate Placement Mode" then |
|
1128 |
gear = SpawnAmmoCrate(x, y, atkArray[pIndex][1]) |
|
1129 |
placedSpec[placedCount] = atkArray[pIndex][2] |
|
1130 |
setGearValue(gear,"caseType","ammo") |
|
1131 |
setGearValue(gear,"contents",atkArray[pIndex][2]) |
|
1132 |
clanCratesSpawned[GetHogClan(CurrentHedgehog)] = clanCratesSpawned[GetHogClan(CurrentHedgehog)] +1 |
|
1133 |
elseif cat[cIndex] == "Utility Crate Placement Mode" then |
|
1134 |
gear = SpawnUtilityCrate(x, y, utilArray[pIndex][1]) |
|
1135 |
placedSpec[placedCount] = utilArray[pIndex][2] |
|
1136 |
setGearValue(gear,"caseType","util") |
|
1137 |
setGearValue(gear,"contents",utilArray[pIndex][2]) |
|
1138 |
if utilArray[pIndex][1] == amExtraTime then |
|
1139 |
clanUsedExtraTime[GetHogClan(CurrentHedgehog)] = true |
|
1140 |
end |
|
1141 |
clanCratesSpawned[GetHogClan(CurrentHedgehog)] = clanCratesSpawned[GetHogClan(CurrentHedgehog)] +1 |
|
1142 |
elseif cat[cIndex] == "Barrel Placement Mode" then |
|
1143 |
gear = AddGear(x, y, gtExplosives, 0, 0, 0, 0) |
|
1144 |
SetHealth(gear, pMode[pIndex]) |
|
1145 |
elseif cat[cIndex] == "Mine Placement Mode" then |
|
1146 |
gear = AddGear(x, y, gtMine, 0, 0, 0, 0) |
|
1147 |
SetTimer(gear, pMode[pIndex]) |
|
1148 |
elseif cat[cIndex] == "Sticky Mine Placement Mode" then |
|
1149 |
gear = AddGear(x, y, gtSMine, 0, 0, 0, 0) |
|
1150 |
||
1151 |
elseif cat[cIndex] == "Structure Placement Mode" then |
|
1152 |
||
1153 |
AddStruc(x,y, pMode[pIndex],GetHogClan(CurrentHedgehog)) |
|
1154 |
||
1155 |
end |
|
1156 |
||
1157 |
clanPower[GetHogClan(CurrentHedgehog)] = clanPower[GetHogClan(CurrentHedgehog)] - placedExpense |
|
1158 |
placedCount = placedCount + 1 |
|
1159 |
||
1160 |
else |
|
1161 |
if (clanPower[GetHogClan(CurrentHedgehog)] >= placedExpense) then |
|
1162 |
AddCaption(loc("Invalid Placement"),0xffba00ff,capgrpVolume) |
|
1163 |
else |
|
1164 |
AddCaption(loc("Insufficient Power"),0xffba00ff,capgrpVolume) |
|
1165 |
end |
|
1166 |
PlaySound(sndDenied) |
|
1167 |
end |
|
1168 |
||
1169 |
||
1170 |
end |
|
1171 |
||
1172 |
-- called when user changes primary selection |
|
1173 |
-- either via up/down keys |
|
1174 |
-- or selecting girder/airattack |
|
1175 |
function RedefineSubset() |
|
1176 |
||
1177 |
pIndex = 1 |
|
1178 |
pMode = {} |
|
1179 |
placedExpense = 1 |
|
1180 |
||
1181 |
if cat[cIndex] == "Girder Placement Mode" then |
|
1182 |
pIndex = CGR |
|
11712
0a33c3172e6d
Mark some forgotten Construction Mode strings for translation
Wuzzy <almikes@aol.com>
parents:
11711
diff
changeset
|
1183 |
pMode = {loc("Girder")} |
11015 | 1184 |
elseif cat[cIndex] == "Rubber Placement Mode" then |
1185 |
pIndex = CGR |
|
11712
0a33c3172e6d
Mark some forgotten Construction Mode strings for translation
Wuzzy <almikes@aol.com>
parents:
11711
diff
changeset
|
1186 |
pMode = {loc("Rubber")} |
11015 | 1187 |
placedExpense = 3 |
1188 |
elseif cat[cIndex] == "Barrel Placement Mode" then |
|
11713
106112bbacfa
Tweak barrel and mine defaults in Construction Mode
Wuzzy <almikes@aol.com>
parents:
11712
diff
changeset
|
1189 |
pMode = {60} |
11015 | 1190 |
placedExpense = 10 |
1191 |
elseif cat[cIndex] == "Health Crate Placement Mode" then |
|
11726
4addfad422ab
Construction Mode: Recognize health case amount from game scheme
Wuzzy <almikes@aol.com>
parents:
11725
diff
changeset
|
1192 |
pMode = {HealthCaseAmount} |
11015 | 1193 |
placedExpense = 5 |
1194 |
elseif cat[cIndex] == "Weapon Crate Placement Mode" then |
|
1195 |
for i = 1, #atkArray do |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
1196 |
pMode[i] = atkArray[i][4] |
11015 | 1197 |
end |
11708
d5d798172875
Fix crate costs in Construction Mode being all the same (fixes #15)
Wuzzy <almikes@aol.com>
parents:
11301
diff
changeset
|
1198 |
placedExpense = atkArray[pIndex][5] |
11015 | 1199 |
elseif cat[cIndex] == "Utility Crate Placement Mode" then |
1200 |
for i = 1, #utilArray do |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
1201 |
pMode[i] = utilArray[i][4] |
11015 | 1202 |
end |
11708
d5d798172875
Fix crate costs in Construction Mode being all the same (fixes #15)
Wuzzy <almikes@aol.com>
parents:
11301
diff
changeset
|
1203 |
placedExpense = utilArray[pIndex][5] |
11015 | 1204 |
elseif cat[cIndex] == "Mine Placement Mode" then |
11713
106112bbacfa
Tweak barrel and mine defaults in Construction Mode
Wuzzy <almikes@aol.com>
parents:
11712
diff
changeset
|
1205 |
pMode = {0,1000,2000,3000,4000,5000} |
11015 | 1206 |
placedExpense = 15 |
1207 |
elseif cat[cIndex] == "Sticky Mine Placement Mode" then |
|
11712
0a33c3172e6d
Mark some forgotten Construction Mode strings for translation
Wuzzy <almikes@aol.com>
parents:
11711
diff
changeset
|
1208 |
pMode = {loc("Sticky Mine")} |
11015 | 1209 |
placedExpense = 20 |
1210 |
elseif cat[cIndex] == "Structure Placement Mode" then |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
1211 |
pMode = {loc("Healing Station"), loc("Bio-Filter"), loc("Weapon Filter"), loc("Reflector Shield"), loc("Respawner"),loc("Teleportation Node"),loc("Generator"),loc("Construction Station"),loc("Support Station")} |
11015 | 1212 |
end |
1213 |
||
1214 |
||
1215 |
||
1216 |
||
1217 |
end |
|
1218 |
||
1219 |
-- called in onGameTick() |
|
1220 |
function HandleHedgeEditor() |
|
1221 |
||
11723
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
1222 |
HandleStructures() |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
1223 |
|
11015 | 1224 |
if CurrentHedgehog ~= nil then |
1225 |
||
1226 |
if wallsVisible == true then |
|
1227 |
HandleBorderEffects() |
|
1228 |
end |
|
1229 |
||
1230 |
if (CurrentHedgehog ~= nil) and (TurnTimeLeft ~= TurnTime) then |
|
1231 |
if (lastWep ~= GetCurAmmoType()) then |
|
1232 |
checkForSpecialWeapons() |
|
11717
f35139700d22
Construction Mode: Disable setting drill strike timer in object placement mode
Wuzzy <almikes@aol.com>
parents:
11716
diff
changeset
|
1233 |
elseif checkForSpecialWeaponsIn == 0 then |
f35139700d22
Construction Mode: Disable setting drill strike timer in object placement mode
Wuzzy <almikes@aol.com>
parents:
11716
diff
changeset
|
1234 |
checkForSpecialWeapons() |
f35139700d22
Construction Mode: Disable setting drill strike timer in object placement mode
Wuzzy <almikes@aol.com>
parents:
11716
diff
changeset
|
1235 |
checkForSpecialWeaponsIn = -1 |
f35139700d22
Construction Mode: Disable setting drill strike timer in object placement mode
Wuzzy <almikes@aol.com>
parents:
11716
diff
changeset
|
1236 |
else |
f35139700d22
Construction Mode: Disable setting drill strike timer in object placement mode
Wuzzy <almikes@aol.com>
parents:
11716
diff
changeset
|
1237 |
checkForSpecialWeaponsIn = checkForSpecialWeaponsIn - 1 |
11015 | 1238 |
end |
1239 |
end |
|
1240 |
||
11727
1c09b8d050ce
Construction Mode: Fix timer issues
Wuzzy <almikes@aol.com>
parents:
11726
diff
changeset
|
1241 |
if GameTime % 100 == 0 then |
11015 | 1242 |
|
1243 |
DrawTag(1) |
|
1244 |
||
1245 |
curWep = GetCurAmmoType() |
|
1246 |
||
1247 |
-- change to girder mode on weapon swap |
|
1248 |
if (cIndex ~= 1) and (curWep == amGirder) then |
|
1249 |
cIndex = 1 |
|
1250 |
RedefineSubset() |
|
1251 |
elseif (cIndex ~=2) and (curWep == amRubber) then |
|
1252 |
cIndex = 2 |
|
1253 |
RedefineSubset() |
|
1254 |
-- change to generic mode if girder no longer selected |
|
1255 |
elseif (cIndex == 1) and (curWep ~= amGirder) then |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
1256 |
cIndex = 3 |
11015 | 1257 |
RedefineSubset() |
1258 |
elseif (cIndex == 2) and (curWep ~= amRubber) then |
|
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
1259 |
cIndex = 3 |
11015 | 1260 |
RedefineSubset() |
1261 |
||
1262 |
end |
|
1263 |
||
1264 |
-- update display selection criteria |
|
1265 |
if (curWep == amGirder) or (curWep == amAirAttack) or (curWep == amNapalm) or (curWep == amDrillStrike) or (curWep == amRubber) then |
|
1266 |
||
1267 |
---------------hooolllllyyyy fucking shit this |
|
1268 |
-- code is a broken mess now |
|
1269 |
-- it was redesigned and compromised three times |
|
1270 |
-- so now it is a mess trying to do what it was |
|
1271 |
-- never designed to do |
|
1272 |
-- needs to be rewritten badly sadface |
|
1273 |
-- this bit here catches the new 3 types of weapons |
|
1274 |
if ((sProx[cIndex][1] == loc("Structure Placement Mode") and (curWep ~= amAirAttack))) then |
|
1275 |
updatePlacementDisplay(1) |
|
1276 |
elseif (sProx[cIndex][1] == loc("Health Crate Placement Mode")) or |
|
1277 |
(sProx[cIndex][1] == loc("Weapon Crate Placement Mode")) or |
|
1278 |
(sProx[cIndex][1] == loc("Utility Crate Placement Mode")) then |
|
1279 |
if curWep ~= amNapalm then |
|
1280 |
updatePlacementDisplay(1) |
|
1281 |
end |
|
1282 |
||
1283 |
elseif (sProx[cIndex][1] == loc("Mine Placement Mode")) or |
|
1284 |
(sProx[cIndex][1] == loc("Sticky Mine Placement Mode")) or |
|
1285 |
(sProx[cIndex][1] == loc("Barrel Placement Mode")) then |
|
1286 |
if curWep ~= amDrillStrike then |
|
1287 |
updatePlacementDisplay(1) |
|
1288 |
end |
|
1289 |
||
1290 |
end |
|
1291 |
||
1292 |
--this is called when it happens that we have placement |
|
1293 |
--mode selected and we are looking at something |
|
1294 |
--we shouldn't be allowed to look at, as would be the case |
|
1295 |
--when you WERE allowed to look at it, but then maybe |
|
1296 |
--a bomb blows up the structure that was granting you |
|
1297 |
--that ability |
|
1298 |
if (sProx[cIndex][2] ~= true) then |
|
1299 |
updatePlacementDisplay(1) |
|
1300 |
else |
|
1301 |
updateCost() |
|
1302 |
end |
|
1303 |
||
1304 |
||
11301
fa18940f290d
- Rus localization for following game styles:
antonc27 <antonc27@mail.ru>
parents:
11015
diff
changeset
|
1305 |
AddCaption(loc(cat[cIndex]),0xffba00ff,capgrpMessage) |
11714
8575b8b76373
Construction Mode: Show mine timer in seconds
Wuzzy <almikes@aol.com>
parents:
11713
diff
changeset
|
1306 |
showModeMessage() |
11015 | 1307 |
wallsVisible = true |
1308 |
else |
|
1309 |
wallsVisible = false |
|
1310 |
end |
|
1311 |
||
1312 |
end |
|
1313 |
||
1314 |
end |
|
1315 |
||
1316 |
-- some kind of target detected, tell me your story |
|
1317 |
if cGear ~= nil then |
|
1318 |
||
1319 |
x,y = GetGearTarget(cGear) |
|
1320 |
||
1321 |
if GetGearType(cGear) == gtAirAttack then |
|
1322 |
DeleteGear(cGear) |
|
1323 |
PlaceObject(x, y) |
|
1324 |
elseif GetGearType(cGear) == gtTeleport then |
|
1325 |
||
1326 |
CheckTeleport(cGear, x, y) |
|
1327 |
cGear = nil |
|
1328 |
elseif GetGearType(cGear) == gtGirder then |
|
1329 |
||
1330 |
CGR = GetState(cGear) |
|
1331 |
||
11718
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
1332 |
PlaceObject(x, y) |
11015 | 1333 |
end |
1334 |
||
1335 |
end |
|
1336 |
||
1337 |
end |
|
1338 |
||
1339 |
--------------------------------------------------------------- |
|
1340 |
-- Cycle through selection subsets (by changing pIndex, pMode) |
|
1341 |
-- i.e health of barrels, medikits, |
|
1342 |
-- timer of mines |
|
1343 |
-- contents of crates |
|
1344 |
-- gears to reposition etc. |
|
1345 |
--------------------------------------------------------------- |
|
1346 |
||
1347 |
function updateCost() |
|
1348 |
||
1349 |
if pMode[pIndex] == loc("Healing Station") then |
|
1350 |
placedExpense = 50 |
|
1351 |
elseif pMode[pIndex] == loc("Weapon Filter") then |
|
1352 |
placedExpense = 50 |
|
1353 |
elseif pMode[pIndex] == loc("Bio-Filter") then |
|
1354 |
placedExpense = 100 |
|
1355 |
elseif pMode[pIndex] == loc("Respawner") then |
|
1356 |
placedExpense = 300 |
|
1357 |
elseif pMode[pIndex] == loc("Teleportation Node") then |
|
1358 |
placedExpense = 30 |
|
1359 |
elseif pMode[pIndex] == loc("Support Station") then |
|
1360 |
placedExpense = 50 |
|
1361 |
elseif pMode[pIndex] == loc("Construction Station") then |
|
1362 |
placedExpense = 50 |
|
1363 |
elseif pMode[pIndex] == loc("Generator") then |
|
1364 |
placedExpense = 300 |
|
1365 |
elseif pMode[pIndex] == loc("Reflector Shield") then |
|
1366 |
placedExpense = 200 |
|
11708
d5d798172875
Fix crate costs in Construction Mode being all the same (fixes #15)
Wuzzy <almikes@aol.com>
parents:
11301
diff
changeset
|
1367 |
elseif cat[cIndex] == "Weapon Crate Placement Mode" then |
11015 | 1368 |
placedExpense = atkArray[pIndex][5] |
11708
d5d798172875
Fix crate costs in Construction Mode being all the same (fixes #15)
Wuzzy <almikes@aol.com>
parents:
11301
diff
changeset
|
1369 |
elseif cat[cIndex] == "Utility Crate Placement Mode" then |
11015 | 1370 |
placedExpense = utilArray[pIndex][5] |
1371 |
end |
|
1372 |
||
1373 |
AddCaption(loc("Cost") .. ": " .. placedExpense,0xffba00ff,capgrpAmmostate) |
|
1374 |
||
1375 |
end |
|
1376 |
||
11717
f35139700d22
Construction Mode: Disable setting drill strike timer in object placement mode
Wuzzy <almikes@aol.com>
parents:
11716
diff
changeset
|
1377 |
function onTimer(key) |
f35139700d22
Construction Mode: Disable setting drill strike timer in object placement mode
Wuzzy <almikes@aol.com>
parents:
11716
diff
changeset
|
1378 |
|
f35139700d22
Construction Mode: Disable setting drill strike timer in object placement mode
Wuzzy <almikes@aol.com>
parents:
11716
diff
changeset
|
1379 |
checkForSpecialWeaponsIn = 1 |
f35139700d22
Construction Mode: Disable setting drill strike timer in object placement mode
Wuzzy <almikes@aol.com>
parents:
11716
diff
changeset
|
1380 |
|
f35139700d22
Construction Mode: Disable setting drill strike timer in object placement mode
Wuzzy <almikes@aol.com>
parents:
11716
diff
changeset
|
1381 |
end |
f35139700d22
Construction Mode: Disable setting drill strike timer in object placement mode
Wuzzy <almikes@aol.com>
parents:
11716
diff
changeset
|
1382 |
|
11015 | 1383 |
function onLeft() |
1384 |
||
1385 |
pIndex = pIndex - 1 |
|
1386 |
if pIndex == 0 then |
|
1387 |
pIndex = #pMode |
|
1388 |
end |
|
1389 |
||
1390 |
if (curWep == amGirder) or (curWep == amAirAttack) or (curWep == amNapalm) or (curWep == amDrillStrike) then |
|
11714
8575b8b76373
Construction Mode: Show mine timer in seconds
Wuzzy <almikes@aol.com>
parents:
11713
diff
changeset
|
1391 |
showModeMessage() |
11015 | 1392 |
updateCost() |
1393 |
end |
|
1394 |
||
1395 |
||
1396 |
end |
|
1397 |
||
1398 |
function onRight() |
|
1399 |
||
1400 |
pIndex = pIndex + 1 |
|
1401 |
if pIndex > #pMode then |
|
1402 |
pIndex = 1 |
|
1403 |
end |
|
1404 |
||
1405 |
if (curWep == amGirder) or (curWep == amAirAttack) or (curWep == amNapalm) or (curWep == amDrillStrike) then |
|
11714
8575b8b76373
Construction Mode: Show mine timer in seconds
Wuzzy <almikes@aol.com>
parents:
11713
diff
changeset
|
1406 |
showModeMessage() |
11015 | 1407 |
updateCost() |
1408 |
end |
|
1409 |
||
1410 |
end |
|
1411 |
||
11730
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11729
diff
changeset
|
1412 |
function showModeMessage() |
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11729
diff
changeset
|
1413 |
if CurrentHedgehog == nil then return end |
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11729
diff
changeset
|
1414 |
local val = pMode[pIndex] |
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11729
diff
changeset
|
1415 |
local str |
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11729
diff
changeset
|
1416 |
if cat[cIndex] == "Mine Placement Mode" then |
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11729
diff
changeset
|
1417 |
-- timer in seconds |
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11729
diff
changeset
|
1418 |
str = string.format(loc("%d sec"), div(val, 1000)) |
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11729
diff
changeset
|
1419 |
elseif cat[cIndex] == "Girder Placement Mode" then |
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11729
diff
changeset
|
1420 |
str = loc("Girder") |
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11729
diff
changeset
|
1421 |
elseif cat[cIndex] == "Rubber Placement Mode" then |
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11729
diff
changeset
|
1422 |
str = loc("Rubber") |
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11729
diff
changeset
|
1423 |
else |
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11729
diff
changeset
|
1424 |
str = tostring(val) |
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11729
diff
changeset
|
1425 |
end |
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11729
diff
changeset
|
1426 |
AddCaption(str,0xffba00ff,capgrpMessage2) |
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11729
diff
changeset
|
1427 |
end |
11015 | 1428 |
|
1429 |
function updatePlacementDisplay(pDir) |
|
1430 |
||
1431 |
foundMatch = false |
|
1432 |
while(foundMatch == false) do |
|
1433 |
cIndex = cIndex + pDir |
|
1434 |
||
1435 |
if (cIndex == 1) or (cIndex == 2) then --1 --we no longer hit girder by normal means |
|
1436 |
cIndex = #cat |
|
1437 |
elseif cIndex > #cat then |
|
1438 |
cIndex = 3 -- 2 ----we no longer hit girder by normal means |
|
1439 |
end |
|
1440 |
||
1441 |
if sProx[cIndex][2] == true then |
|
1442 |
if (GetCurAmmoType() == amNapalm) then |
|
1443 |
if (sProx[cIndex][1] == loc("Health Crate Placement Mode")) or |
|
1444 |
(sProx[cIndex][1] == loc("Weapon Crate Placement Mode")) or |
|
1445 |
(sProx[cIndex][1] == loc("Utility Crate Placement Mode")) |
|
1446 |
then |
|
1447 |
foundMatch = true |
|
1448 |
end |
|
1449 |
elseif (GetCurAmmoType() == amDrillStrike) then |
|
1450 |
if (sProx[cIndex][1] == loc("Mine Placement Mode")) or |
|
1451 |
(sProx[cIndex][1] == loc("Sticky Mine Placement Mode")) or |
|
1452 |
(sProx[cIndex][1] == loc("Barrel Placement Mode")) |
|
1453 |
then |
|
1454 |
foundMatch = true |
|
1455 |
end |
|
1456 |
elseif (GetCurAmmoType() == amAirAttack) then |
|
1457 |
if sProx[cIndex][1] == loc("Structure Placement Mode") then |
|
1458 |
foundMatch = true |
|
1459 |
end |
|
1460 |
end |
|
1461 |
end |
|
1462 |
||
1463 |
||
1464 |
if foundMatch == true then |
|
1465 |
RedefineSubset() |
|
1466 |
updateCost() |
|
1467 |
end |
|
1468 |
||
1469 |
end |
|
1470 |
||
1471 |
end |
|
1472 |
||
1473 |
--------------------------------------------------------- |
|
1474 |
-- Cycle through primary categories (by changing cIndex) |
|
1475 |
-- i.e mine, sticky mine, barrels |
|
1476 |
-- health/weapon/utility crate, placement of gears |
|
1477 |
--------------------------------------------------------- |
|
1478 |
function onUp() |
|
1479 |
||
11715
511d0f2aa9bf
Construction Mode: Disable up/down in building mode
Wuzzy <almikes@aol.com>
parents:
11714
diff
changeset
|
1480 |
if ( (curWep == amNapalm) or (curWep == amDrillStrike) ) then |
11015 | 1481 |
updatePlacementDisplay(-1) |
1482 |
end |
|
1483 |
||
1484 |
end |
|
1485 |
||
1486 |
function onDown() |
|
1487 |
||
11715
511d0f2aa9bf
Construction Mode: Disable up/down in building mode
Wuzzy <almikes@aol.com>
parents:
11714
diff
changeset
|
1488 |
if ( (curWep == amNapalm) or (curWep == amDrillStrike) ) then |
11015 | 1489 |
updatePlacementDisplay(1) |
1490 |
end |
|
1491 |
||
1492 |
end |
|
1493 |
||
1494 |
---------------------------- |
|
1495 |
-- standard event handlers |
|
1496 |
---------------------------- |
|
1497 |
||
11720
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
1498 |
-- Parses a positive integer |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
1499 |
function parseInt(str, default) |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
1500 |
if str == nil then return default end |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
1501 |
local s = string.match(str, "(%d*)") |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
1502 |
if s ~= nil then |
11728
373150be0356
Construction Mode: Sanity-check numbers from script parameter
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
1503 |
return math.min(4294967295, math.max(0, tonumber(s))) |
11720
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
1504 |
else |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
1505 |
return nil |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
1506 |
end |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
1507 |
end |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
1508 |
|
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
1509 |
-- Parse parameters |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
1510 |
function onParameters() |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
1511 |
parseParams() |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
1512 |
conf_initialEnergy = parseInt(params["initialenergy"], conf_initialEnergy) |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
1513 |
conf_energyPerRound = parseInt(params["energyperround"], conf_energyPerRound) |
11728
373150be0356
Construction Mode: Sanity-check numbers from script parameter
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
1514 |
if params["maxenergy"] == "inf" then |
373150be0356
Construction Mode: Sanity-check numbers from script parameter
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
1515 |
conf_maxEnergy = "inf" |
373150be0356
Construction Mode: Sanity-check numbers from script parameter
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
1516 |
else |
373150be0356
Construction Mode: Sanity-check numbers from script parameter
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
1517 |
conf_maxEnergy = parseInt(params["maxenergy"], conf_maxEnergy) |
373150be0356
Construction Mode: Sanity-check numbers from script parameter
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
1518 |
end |
11720
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
1519 |
end |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
1520 |
|
11015 | 1521 |
function onGameInit() |
1522 |
||
1523 |
Explosives = 0 |
|
1524 |
MinesNum = 0 |
|
1525 |
||
1526 |
EnableGameFlags(gfInfAttack) |
|
1527 |
||
1528 |
||
1529 |
RedefineSubset() |
|
1530 |
||
1531 |
end |
|
1532 |
||
1533 |
function initialSetup(gear) |
|
1534 |
||
1535 |
FindPlace(gear, false, clanBoundsSX[GetHogClan(gear)], clanBoundsEX[GetHogClan(gear)],true) |
|
1536 |
||
1537 |
-- for now, everyone should have this stuff |
|
1538 |
AddAmmo(gear, amAirAttack, 100) |
|
1539 |
AddAmmo(gear, amSwitch, 100) |
|
1540 |
AddAmmo(gear, amSkip, 100) |
|
1541 |
||
1542 |
end |
|
1543 |
||
1544 |
function onGameStart() |
|
1545 |
||
1546 |
trackTeams() |
|
1547 |
||
1548 |
ShowMission ( |
|
1549 |
loc("CONSTRUCTION MODE"), |
|
1550 |
loc("a Hedgewars mini-game"), |
|
1551 |
loc("Build a fortress and destroy your enemy.") .. "|" .. |
|
1552 |
loc("There are a variety of structures available to aid you.") .. "|" .. |
|
1553 |
loc("Use the air-attack weapons and the arrow keys to select structures.") .. "|" .. |
|
1554 |
" " .. "|" .. |
|
1555 |
loc("Healing Station") .. ": " .. loc("Grants nearby hogs life-regeneration.") .. "|" .. |
|
1556 |
loc("Bio-Filter") .. ": " .. loc("Aggressively removes enemy hedgehogs.") .. "|" .. |
|
1557 |
loc("Weapon Filter") .. ": " .. loc("Dematerializes weapons and equipment carried by enemy hedgehogs.") .. "|" .. |
|
1558 |
loc("Reflector Shield") .. ": " .. loc("Reflects enemy projectiles.") .. "|" .. |
|
1559 |
||
1560 |
loc("Generator") .. ": " .. loc("Generates power.") .. "|" .. |
|
1561 |
loc("Respawner") .. ": " .. loc("Resurrects dead hedgehogs.") .. "|" .. |
|
11301
fa18940f290d
- Rus localization for following game styles:
antonc27 <antonc27@mail.ru>
parents:
11015
diff
changeset
|
1562 |
loc("Teleportation Node") .. ": " .. loc("Allows free teleportation between other nodes.") .. "|" .. |
11015 | 1563 |
loc("Construction Station") .. ": " .. loc("Allows placement of girders, rubber-bands, mines, sticky mines and barrels.") .. "|" .. |
11725
3444792e8ebe
Construction Mode: Remove 2 useless blank lines in mission panel
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
1564 |
loc("Support Station") .. ": " .. loc("Allows the placement of weapons, utiliites, and health crates.") |
3444792e8ebe
Construction Mode: Remove 2 useless blank lines in mission panel
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
1565 |
, 4, 5000 |
11015 | 1566 |
) |
1567 |
||
1568 |
||
1569 |
sCirc = AddVisualGear(0,0,vgtCircle,0,true) |
|
1570 |
SetVisualGearValues(sCirc, 0, 0, 100, 255, 1, 10, 0, 40, 3, 0x00000000) |
|
1571 |
||
1572 |
for i = 0, ClansCount-1 do |
|
11720
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
1573 |
clanPower[i] = conf_initialEnergy |
11015 | 1574 |
clanLWepIndex[i] = 1 -- for ease of use let's track this stuff |
1575 |
clanLUtilIndex[i] = 1 |
|
1576 |
clanLGearIndex[i] = 1 |
|
1577 |
clanUsedExtraTime[i] = false |
|
1578 |
clanCratesSpawned[i] = 0 |
|
11721
8c1a30d4cbc8
Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents:
11720
diff
changeset
|
1579 |
clanFirstTurn[i] = true |
11015 | 1580 |
|
1581 |
end |
|
1582 |
||
1583 |
tMapWidth = RightX - LeftX |
|
1584 |
tMapHeight = WaterLine - TopY |
|
1585 |
clanInterval = div(tMapWidth,ClansCount) |
|
1586 |
||
1587 |
for i = 1, ClansCount do |
|
1588 |
||
1589 |
clanBoundsSX[i-1] = LeftX+(clanInterval*i)-clanInterval+20 |
|
1590 |
clanBoundsSY[i-1] = TopY |
|
1591 |
clanBoundsEX[i-1] = LeftX+(clanInterval*i)-20 |
|
1592 |
clanBoundsEY[i-1] = WaterLine |
|
1593 |
||
1594 |
--top and bottom |
|
1595 |
AddWall(LeftX+(clanInterval*i)-clanInterval,TopY,clanInterval,margin,GetClanColor(i-1)) |
|
1596 |
AddWall(LeftX+(clanInterval*i)-clanInterval,WaterLine-25,clanInterval,margin,GetClanColor(i-1)) |
|
1597 |
||
1598 |
--add a wall to the left and right |
|
1599 |
AddWall(LeftX+(clanInterval*i)-clanInterval+20,TopY,margin,WaterLine,GetClanColor(i-1)) |
|
1600 |
AddWall(LeftX+(clanInterval*i)-20,TopY,margin,WaterLine,GetClanColor(i-1)) |
|
1601 |
||
1602 |
end |
|
1603 |
||
1604 |
runOnHogs(initialSetup) |
|
1605 |
||
1606 |
end |
|
1607 |
||
1608 |
||
1609 |
function onNewTurn() |
|
1610 |
||
11720
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
1611 |
local clan = GetHogClan(CurrentHedgehog) |
11721
8c1a30d4cbc8
Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents:
11720
diff
changeset
|
1612 |
if clanFirstTurn[clan] then |
8c1a30d4cbc8
Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents:
11720
diff
changeset
|
1613 |
clanFirstTurn[clan] = false |
8c1a30d4cbc8
Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents:
11720
diff
changeset
|
1614 |
else |
8c1a30d4cbc8
Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents:
11720
diff
changeset
|
1615 |
clanPower[clan] = clanPower[clan] + conf_energyPerRound |
11728
373150be0356
Construction Mode: Sanity-check numbers from script parameter
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
1616 |
if conf_maxEnergy ~= "inf" and clanPower[clan] > conf_maxEnergy then |
11721
8c1a30d4cbc8
Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents:
11720
diff
changeset
|
1617 |
clanPower[clan] = conf_maxEnergy |
8c1a30d4cbc8
Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents:
11720
diff
changeset
|
1618 |
end |
11720
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
1619 |
end |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
1620 |
clanUsedExtraTime[clan] = false |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11719
diff
changeset
|
1621 |
clanCratesSpawned[clan] = 0 |
11015 | 1622 |
|
1623 |
end |
|
1624 |
||
1625 |
function onGameTick() |
|
1626 |
HandleHedgeEditor() |
|
1627 |
end |
|
1628 |
||
1629 |
function isATrackedGear(gear) |
|
1630 |
if (GetGearType(gear) == gtHedgehog) or |
|
1631 |
(GetGearType(gear) == gtTarget) or |
|
1632 |
(GetGearType(gear) == gtCase) |
|
1633 |
then |
|
1634 |
return(true) |
|
1635 |
else |
|
1636 |
return(false) |
|
1637 |
end |
|
1638 |
end |
|
1639 |
||
1640 |
-- track hedgehogs and placement gears |
|
1641 |
function onGearAdd(gear) |
|
1642 |
||
1643 |
if GetGearType(gear) == gtHedgehog then |
|
1644 |
elseif (GetGearType(gear) == gtAirAttack) or (GetGearType(gear) == gtTeleport) or (GetGearType(gear) == gtGirder) then |
|
1645 |
cGear = gear |
|
1646 |
||
1647 |
end |
|
1648 |
||
1649 |
if isATrackedGear(gear) then |
|
1650 |
trackGear(gear) |
|
1651 |
elseif gearCanBeDeflected(gear) then |
|
1652 |
trackGear(gear) |
|
1653 |
setGearReflectionValues(gear) |
|
1654 |
end |
|
1655 |
||
1656 |
end |
|
1657 |
||
1658 |
function onGearDelete(gear) |
|
1659 |
||
1660 |
if GetGearType(gear) == gtTarget then |
|
1661 |
CheckGearForStructureLink(gear) |
|
1662 |
end |
|
1663 |
||
1664 |
if (GetGearType(gear) == gtAirAttack) or (GetGearType(gear) == gtTeleport) or (GetGearType(gear) == gtGirder) then |
|
1665 |
cGear = nil |
|
1666 |
end |
|
1667 |
||
1668 |
if (isATrackedGear(gear) or gearCanBeDeflected(gear)) then |
|
1669 |
||
1670 |
if getGearValue(gear, "tCirc") ~= nil then |
|
1671 |
DeleteVisualGear(getGearValue(gear, "tCirc")) |
|
1672 |
end |
|
1673 |
||
1674 |
trackDeletion(gear) |
|
1675 |
||
1676 |
end |
|
1677 |
||
1678 |
end |