author | Wuzzy <Wuzzy2@mail.ru> |
Fri, 05 Oct 2018 16:36:41 +0200 | |
changeset 13854 | 297cf5c19172 |
parent 13648 | 690cc84e9fd6 |
child 14306 | 8fc6ac47f00a |
permissions | -rw-r--r-- |
12953
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1 |
--[[----------------------------------------------------- |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
2 |
-- CONSTRUCTION MODE -- |
11015 | 3 |
--------------------------------------------------------- |
12953
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
4 |
A Hedgewars gameplay mode by mikade. |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
5 |
Special thanks to all who helped test and offered suggestions. |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
6 |
Additional thanks to sheepluva/nemo for adding some extra hooks. |
11015 | 7 |
|
12953
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
8 |
--------------------- |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
9 |
-- STRUCTURES LIST -- |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
10 |
--------------------- |
11725
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
11 |
|
12953
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
12 |
* Healing Station: Heals hogs to 150 health |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
13 |
* Teleportation Node: Allows teleporting to any other teleporter nodes |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
14 |
* Bio-filter: Explodes enemy hogs |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
15 |
* Respawner: If you have one of these, any slain hogs are resurrected here |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
16 |
* Generator: Generates power (used to buy stuff) |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
17 |
* Support Station: Allows purchasing crates |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
18 |
* Construction Station: Allows purchasing girders, rubber, mines, sticky mines, barrels |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
19 |
* Reflector Shield: Reflect projectiles |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
20 |
* Weapon Filter: Removes all equipement of enemy hogs passing through this area |
11015 | 21 |
|
12953
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
22 |
--------------------------------------------------------- |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
23 |
-- SCRIPT PARAMETER |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
24 |
--------------------------------------------------------- |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
25 |
The script parameter can be used to configure the energy |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
26 |
of the game. It is a comma-seperated list of key=value pairs, where each |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
27 |
key is a word and each value is an integer between 0 and 4294967295. |
11015 | 28 |
|
12953
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
29 |
Possible keys: |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
30 |
* initialenergy: Amount of energy that each team starts with (default: 550) |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
31 |
Note: Must be smaller than or equal to maxenergy |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
32 |
* energyperround: Amount of energy that each team gets per round (default: 50) |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
33 |
* maxenergy: Maximum amount of energy each team can hold (default: 1000) |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
34 |
* cratesperround: Maximum number of crates you can place per round (default: 5) |
11015 | 35 |
|
12953
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
36 |
For the previous 2 keys, you can use the value “inf” for an unlimited amount. |
11015 | 37 |
|
12953
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
38 |
Example: “initialenergy=750, maxenergy=2000” starts thee game with 750 energy |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
39 |
and sets the maximum energy to 2000. |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
40 |
Example: “craterperround=inf” disables the crate placement limit. |
11015 | 41 |
|
12953
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
42 |
--------------------------------------------------------- |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
43 |
-- Ideas list -- |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
44 |
--------------------------------------------------------- |
11015 | 45 |
|
12953
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
46 |
* To make the weapon filter more attractive, make it vaporize flying saucers |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
47 |
and also rope, and maybe incoming gears |
11015 | 48 |
|
12953
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
49 |
* Make healing thing also cure poison? |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
50 |
* Maybe make poison more virulent and dangerous |
11015 | 51 |
|
12953
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
52 |
]] |
11015 | 53 |
|
54 |
HedgewarsScriptLoad("/Scripts/Locale.lua") |
|
55 |
HedgewarsScriptLoad("/Scripts/Tracker.lua") |
|
11725
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
56 |
HedgewarsScriptLoad("/Scripts/Params.lua") |
11015 | 57 |
|
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
58 |
-- Structures stuff |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
59 |
local strucID = {} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
60 |
local strucGear = {} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
61 |
local strucClan = {} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
62 |
local strucType = {} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
63 |
local strucCost = {} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
64 |
local strucHealth = {} |
11015 | 65 |
|
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
66 |
local strucCirc = {} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
67 |
local strucCircCol = {} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
68 |
local strucCircRadius = {} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
69 |
local strucAltDisplay = {} |
11015 | 70 |
|
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
71 |
-- Clan stuff |
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
72 |
local clanPower = {} -- current power for each clan. Used to build stuff |
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
73 |
local clanPowerTag = nil -- visual gear ID of displayed clan power |
11015 | 74 |
|
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
75 |
local clanUsedExtraTime = {} -- has used extra time in this round? |
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
76 |
local clanCratesSpawned = {} -- number of crates spawned in this round |
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
77 |
local clanFirstTurn = {} |
11015 | 78 |
|
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
79 |
local clanBoundsSX = {} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
80 |
local clanBoundsSY = {} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
81 |
local clanBoundsEX = {} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
82 |
local clanBoundsEY = {} |
11015 | 83 |
|
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
84 |
-- For tracking previous mode selection per-team |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
85 |
local teamLStructIndex = {} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
86 |
local teamLObjectMode = {} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
87 |
local teamLCrateMode = {} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
88 |
local teamLMineIndex = {} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
89 |
local teamLWeapIndex = {} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
90 |
local teamLUtilIndex = {} |
12949
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
91 |
|
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
92 |
-- Wall stuff |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
93 |
local wallsVisible = false |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
94 |
local wX = {} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
95 |
local wY = {} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
96 |
local wWidth = {} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
97 |
local wHeight = {} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
98 |
local wCol = {} |
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
99 |
local wMargin = 20 |
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
100 |
local borderEffectTimer = 0 -- timer for border clan sparkles |
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
101 |
|
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
102 |
-- Other stuff |
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
103 |
local placedExpense = 0 -- Cost of current selected thing |
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
104 |
local curWep = amNothing -- current weapon, used to reduce # of calls to GetCurAmmoType() |
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
105 |
|
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
106 |
local fortMode = false -- is using a fort map? |
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
107 |
local tempID_CheckProximity = nil -- temporary structure variable for CheckProximity |
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
108 |
local cGear = nil -- detects placement of girders and objects (using airattack) |
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
109 |
local uniqueStructureID = 0 -- Counter and ID for structures. Is incremented each time a structure spawns |
11015 | 110 |
|
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
111 |
-- Colors |
12957
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
112 |
local colorSupportStation = 0xFFFF00FF |
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
113 |
local colorConstructionStation = 0xFFFFFFFF |
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
114 |
local colorTeleportationNode = 0x0000FFFF |
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
115 |
local colorHealingStation = 0xFF808040 -- Just a slight glow |
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
116 |
local colorBioFilter = 0xFF0000FF |
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
117 |
local colorReflectorShield = 0xFFAE00FF |
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
118 |
local colorWeaponFilter = 0xA800FFFF |
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
119 |
|
12974
2fee2ee717eb
Construction Mode: Spawn particles over generators, tweak other particles
Wuzzy <Wuzzy2@mail.ru>
parents:
12973
diff
changeset
|
120 |
local colorHealingStationParticle = 0x00FF0080 |
2fee2ee717eb
Construction Mode: Spawn particles over generators, tweak other particles
Wuzzy <Wuzzy2@mail.ru>
parents:
12973
diff
changeset
|
121 |
local colorGeneratorParticle = 0xFFFF00FF |
12957
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
122 |
|
13648 | 123 |
local colorMessageError = capcolDefault |
11722
f35139700d22
Construction Mode: Disable setting drill strike timer in object placement mode
Wuzzy <almikes@aol.com>
parents:
11721
diff
changeset
|
124 |
|
12946
ffbd31afed96
HedgeEditor, Construction Mode: Refactor code by adding fake ammo type variables
Wuzzy <Wuzzy2@mail.ru>
parents:
12945
diff
changeset
|
125 |
-- Fake ammo types, for the overwritten weapons in Construction Mode |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
126 |
local amCMStructurePlacer = amAirAttack |
12977
d82e4e583805
Construction Mode: Fix annoying extra messages when using object placer
Wuzzy <Wuzzy2@mail.ru>
parents:
12974
diff
changeset
|
127 |
local amCMCratePlacer = amMineStrike |
d82e4e583805
Construction Mode: Fix annoying extra messages when using object placer
Wuzzy <Wuzzy2@mail.ru>
parents:
12974
diff
changeset
|
128 |
local amCMObjectPlacer = amNapalm |
12946
ffbd31afed96
HedgeEditor, Construction Mode: Refactor code by adding fake ammo type variables
Wuzzy <Wuzzy2@mail.ru>
parents:
12945
diff
changeset
|
129 |
|
11725
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
130 |
-- Config variables (script parameter) |
13031
ca7fdb431b34
Construction Mode, Space Invasion: Add example script param in default schems to make editing more convenient
Wuzzy <Wuzzy2@mail.ru>
parents:
13027
diff
changeset
|
131 |
-- NOTE: If you change this, also change the default game scheme “Construction Mode” |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
132 |
local conf_initialEnergy = 550 |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
133 |
local conf_energyPerRound = 50 |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
134 |
local conf_maxEnergy = 1000 |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
135 |
local conf_cratesPerRound = 5 |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
136 |
|
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
137 |
----------------------- |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
138 |
-- CRATE DEFINITIONS -- |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
139 |
----------------------- |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
140 |
-- format: |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
141 |
-- { ammoType, cost } |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
142 |
|
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
143 |
local costFactor = 20 |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
144 |
|
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
145 |
-- WEAPON CRATES |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
146 |
-- Weapons which shouldn't be aded: |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
147 |
-- Air attack, napalm, drillstrike: Overwritten weapons for the Construction Mode tools |
12959
50dd4f88daf4
Always remove mine strike in Construction Mode
Wuzzy <Wuzzy2@mail.ru>
parents:
12958
diff
changeset
|
148 |
-- Mine strike: Is currently broken |
12960
4fbe2d18df9c
Construction Mode: Now amSwitch amount can be changed in weapon scheme
Wuzzy <Wuzzy2@mail.ru>
parents:
12959
diff
changeset
|
149 |
-- Piano strike: Hog is resurrected by respawner. Not strictly prohibited, however. |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
150 |
local atkArray = { |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
151 |
{amBazooka, 2*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
152 |
--{amBee, 4*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
153 |
{amMortar, 1*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
154 |
{amDrill, 3*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
155 |
{amSnowball, 3*costFactor}, |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
156 |
|
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
157 |
{amGrenade, 2*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
158 |
{amClusterBomb, 3*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
159 |
{amWatermelon, 25*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
160 |
{amHellishBomb, 25*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
161 |
{amMolotov, 3*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
162 |
{amGasBomb, 3*costFactor}, |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
163 |
|
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
164 |
{amShotgun, 2*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
165 |
{amDEagle, 2*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
166 |
{amSniperRifle, 3*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
167 |
--{amSineGun, 6*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
168 |
{amFlamethrower, 4*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
169 |
{amIceGun, 15*costFactor}, |
12961
89930daecaab
Add minigun to scripts. Also add a few missing ammos to BRW and RW
Wuzzy <Wuzzy2@mail.ru>
parents:
12960
diff
changeset
|
170 |
{amMinigun, 13*costFactor}, |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
171 |
|
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
172 |
{amFirePunch, 3*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
173 |
{amWhip, 1*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
174 |
{amBaseballBat, 7*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
175 |
--{amKamikaze, 1*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
176 |
{amSeduction, 1*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
177 |
{amHammer, 1*costFactor}, |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
178 |
|
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
179 |
{amMine, 1*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
180 |
{amDynamite, 9*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
181 |
{amCake, 25*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
182 |
{amBallgun, 40*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
183 |
--{amRCPlane, 25*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
184 |
{amSMine, 5*costFactor}, |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
185 |
|
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
186 |
--{amPiano, 40*costFactor}, |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
187 |
|
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
188 |
{amPickHammer, 2*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
189 |
{amBlowTorch, 4*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
190 |
{amKnife, 2*costFactor}, |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
191 |
|
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
192 |
{amBirdy, 7*costFactor}, |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
193 |
} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
194 |
|
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
195 |
-- UTILITY CRATES -- |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
196 |
|
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
197 |
-- Utilities which shouldn't be added: |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
198 |
-- * Teleport: We have teleportation node |
12960
4fbe2d18df9c
Construction Mode: Now amSwitch amount can be changed in weapon scheme
Wuzzy <Wuzzy2@mail.ru>
parents:
12959
diff
changeset
|
199 |
-- * Switch: Infinite in default Construction Mode weapons scheme |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
200 |
-- * Girder, rubber: Requires construction station |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
201 |
-- * Resurrector: We have the resurrector structure for this |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
202 |
|
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
203 |
-- Utilities which might be weird for this mode: |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
204 |
-- * Tardis: Randomly teleports hog, maybe even into enemy clan's area |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
205 |
local utilArray = { |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
206 |
{amLandGun, 5*costFactor}, |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
207 |
|
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
208 |
{amRope, 7*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
209 |
{amParachute, 2*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
210 |
{amJetpack, 8*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
211 |
{amPortalGun, 15*costFactor}, |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
212 |
|
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
213 |
{amInvulnerable, 5*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
214 |
{amLaserSight, 2*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
215 |
{amVampiric, 6*costFactor}, |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
216 |
|
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
217 |
{amLowGravity, 4*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
218 |
{amExtraDamage, 6*costFactor}, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
219 |
{amExtraTime, 8*costFactor} |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
220 |
} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
221 |
|
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
222 |
---------------------------- |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
223 |
-- Placement stuff |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
224 |
---------------------------- |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
225 |
|
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
226 |
-- primary placement categories |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
227 |
local cIndex = 1 -- category index |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
228 |
local cat = { |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
229 |
loc_noop("Girder Placement Mode"), |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
230 |
loc_noop("Rubber Placement Mode"), |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
231 |
loc_noop("Mine Placement Mode"), |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
232 |
loc_noop("Sticky Mine Placement Mode"), |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
233 |
loc_noop("Barrel Placement Mode"), |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
234 |
loc_noop("Weapon Crate Placement Mode"), |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
235 |
loc_noop("Utility Crate Placement Mode"), |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
236 |
loc_noop("Health Crate Placement Mode"), |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
237 |
loc_noop("Structure Placement Mode"), |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
238 |
} |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
239 |
|
12978
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
240 |
-- Frames in sprTarget for the structure images |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
241 |
local catFrames = { |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
242 |
["Respawner"] = 1, |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
243 |
["Generator"] = 2, |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
244 |
["Healing Station"] = 3, |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
245 |
["Support Station"] = 4, |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
246 |
["Weapon Filter"] = 5, |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
247 |
["Teleportation Node"] = 6, |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
248 |
["Bio-Filter"] = 7, |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
249 |
["Construction Station"] = 8, |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
250 |
["Reflector Shield"] = 9, |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
251 |
} |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
252 |
|
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
253 |
local catReverse = {} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
254 |
for c=1, #cat do |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
255 |
catReverse[cat[c]] = c |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
256 |
end |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
257 |
|
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
258 |
-- Track girders in proximity of CurrentHedgehog |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
259 |
local sProx = { |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
260 |
["Girder Placement Mode"] = false, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
261 |
["Rubber Placement Mode"] = false, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
262 |
["Mine Placement Mode"] = false, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
263 |
["Sticky Mine Placement Mode"] = false, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
264 |
["Barrel Placement Mode"] = false, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
265 |
["Weapon Crate Placement Mode"] = false, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
266 |
["Utility Crate Placement Mode"] = false, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
267 |
["Health Crate Placement Mode"] = false, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
268 |
["Structure Placement Mode"] = false, |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
269 |
["Teleportation Mode"] = false, |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
270 |
} |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
271 |
|
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
272 |
local pMode = {} -- pMode contains custom subsets of the main categories |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
273 |
local pIndex = 1 |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
274 |
|
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
275 |
local currentGirderRotation = 1 -- current girder rotation, we actually need this as HW remembers what rotation you last used |
11725
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
276 |
|
12964
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
277 |
-- Returns true if ammoType is an ammo type with a special meaning |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
278 |
-- in Construction Mode. |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
279 |
function IsConstructionModeAmmo(ammoType) |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
280 |
return ammoType == amCMStructurePlacer or |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
281 |
ammoType == amCMObjectPlacer or |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
282 |
ammoType == amCMCratePlacer or |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
283 |
ammoType == amGirder or |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
284 |
ammoType == amRubber or |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
285 |
ammoType == amTeleport |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
286 |
end |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
287 |
|
13027
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
288 |
function RenderClanPower() |
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
289 |
for i=0, TeamsCount-1 do |
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
290 |
local name = GetTeamName(i) |
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
291 |
SetTeamLabel(name, clanPower[GetTeamClan(name)]) |
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
292 |
end |
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
293 |
|
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
294 |
DrawClanPowerTag() |
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
295 |
end |
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
296 |
|
12841
8610462e3d33
Remove 2 unused number tags in Construction Mode GUI
Wuzzy <Wuzzy2@mail.ru>
parents:
12687
diff
changeset
|
297 |
function DrawClanPowerTag() |
11015 | 298 |
|
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
299 |
local zoomL = 1.1 |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
300 |
local xOffset = 45 |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
301 |
local yOffset = 70 |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
302 |
local tValue = clanPower[GetHogClan(CurrentHedgehog)] |
13027
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
303 |
local tCol = GetClanColor(GetHogClan(CurrentHedgehog)) |
11015 | 304 |
|
12841
8610462e3d33
Remove 2 unused number tags in Construction Mode GUI
Wuzzy <Wuzzy2@mail.ru>
parents:
12687
diff
changeset
|
305 |
DeleteVisualGear(clanPowerTag) |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
306 |
clanPowerTag = AddVisualGear(-div(ScreenWidth, 2) + xOffset, ScreenHeight - yOffset, vgtHealthTag, tValue, false) |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
307 |
|
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
308 |
SetVisualGearValues( |
13027
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
309 |
clanPowerTag, -- id |
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
310 |
nil, -- x offset (set above) |
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
311 |
nil, -- y offset (set above) |
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
312 |
0, -- dx |
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
313 |
0, -- dy |
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
314 |
zoomL, -- zoom |
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
315 |
1, -- ~= 0 means align to screen |
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
316 |
nil, -- frameticks |
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
317 |
nil, -- value (set above) |
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
318 |
240000, -- timer |
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
319 |
tCol -- color |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
320 |
) |
11015 | 321 |
|
322 |
end |
|
323 |
||
12962
08f91e9e3d2c
Construction Mode: Hide power tag when it's nobody's turn
Wuzzy <Wuzzy2@mail.ru>
parents:
12961
diff
changeset
|
324 |
function DeleteClanPowerTag() |
08f91e9e3d2c
Construction Mode: Hide power tag when it's nobody's turn
Wuzzy <Wuzzy2@mail.ru>
parents:
12961
diff
changeset
|
325 |
DeleteVisualGear(clanPowerTag) |
08f91e9e3d2c
Construction Mode: Hide power tag when it's nobody's turn
Wuzzy <Wuzzy2@mail.ru>
parents:
12961
diff
changeset
|
326 |
clanPowerTag = nil |
08f91e9e3d2c
Construction Mode: Hide power tag when it's nobody's turn
Wuzzy <Wuzzy2@mail.ru>
parents:
12961
diff
changeset
|
327 |
end |
08f91e9e3d2c
Construction Mode: Hide power tag when it's nobody's turn
Wuzzy <Wuzzy2@mail.ru>
parents:
12961
diff
changeset
|
328 |
|
11015 | 329 |
function XYisInRect(px, py, psx, psy, pex, pey) |
330 |
||
331 |
if (px > psx) and (px < pex) and (py > psy) and (py < pey) then |
|
332 |
return(true) |
|
333 |
else |
|
334 |
return(false) |
|
335 |
end |
|
336 |
||
337 |
end |
|
338 |
||
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
339 |
function AddWall(zXMin, zYMin, zWidth, zHeight, zCol) |
11015 | 340 |
|
341 |
table.insert(wX, zXMin) |
|
342 |
table.insert(wY, zYMin) |
|
343 |
table.insert(wWidth, zWidth) |
|
344 |
table.insert(wHeight, zHeight) |
|
345 |
table.insert(wCol, zCol) |
|
346 |
||
347 |
end |
|
348 |
||
349 |
function BorderSpark(zXMin,zYMin, zWidth, zHeight, bCol) |
|
350 |
||
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
351 |
local eX = zXMin + GetRandom(zWidth+10) |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
352 |
local eY = zYMin + GetRandom(zHeight+10) |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
353 |
local tempE = AddVisualGear(eX, eY, vgtDust, 0, false) |
11015 | 354 |
if tempE ~= 0 then |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
355 |
SetVisualGearValues(tempE, eX, eY, nil, nil, nil, nil, nil, 1, nil, bCol) |
11015 | 356 |
end |
357 |
||
358 |
end |
|
359 |
||
360 |
function HandleBorderEffects() |
|
361 |
||
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
362 |
borderEffectTimer = borderEffectTimer + 1 |
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
363 |
if borderEffectTimer > 15 then |
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
364 |
borderEffectTimer = 1 |
11015 | 365 |
for i = 1, #wX do |
366 |
BorderSpark(wX[i],wY[i],wWidth[i],wHeight[i], wCol[i]) |
|
367 |
end |
|
368 |
end |
|
369 |
||
370 |
end |
|
371 |
||
372 |
---- |
|
373 |
-- old reflecting stuff from like 3 years ago lol |
|
374 |
--- |
|
375 |
||
376 |
function gearCanBeDeflected(gear) |
|
377 |
||
378 |
if (GetGearType(gear) == gtShell) or |
|
379 |
(GetGearType(gear) == gtGrenade) or |
|
380 |
(GetGearType(gear) == gtAirBomb) or |
|
381 |
(GetGearType(gear) == gtClusterBomb) or |
|
382 |
(GetGearType(gear) == gtCluster) or |
|
383 |
(GetGearType(gear) == gtGasBomb) or |
|
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
384 |
(GetGearType(gear) == gtMine) or |
11015 | 385 |
(GetGearType(gear) == gtMortar) or |
386 |
(GetGearType(gear) == gtHellishBomb) or |
|
387 |
(GetGearType(gear) == gtWatermelon) or |
|
388 |
(GetGearType(gear) == gtMelonPiece) or |
|
389 |
(GetGearType(gear) == gtEgg) or |
|
390 |
(GetGearType(gear) == gtDrill) or |
|
391 |
(GetGearType(gear) == gtBall) or |
|
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
392 |
(GetGearType(gear) == gtExplosives) or |
12953
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
393 |
(GetGearType(gear) == gtFlame) or |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
394 |
(GetGearType(gear) == gtPortal) or |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
395 |
(GetGearType(gear) == gtDynamite) or |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
396 |
(GetGearType(gear) == gtSMine) or |
11015 | 397 |
(GetGearType(gear) == gtKnife) or |
12953
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
398 |
(GetGearType(gear) == gtJetpack) or |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
399 |
(GetGearType(gear) == gtBirdy) or |
11015 | 400 |
(GetGearType(gear) == gtSnowball) or |
401 |
(GetGearType(gear) == gtMolotov) |
|
402 |
then |
|
403 |
return(true) |
|
404 |
else |
|
405 |
return(false) |
|
406 |
end |
|
407 |
||
408 |
end |
|
409 |
||
410 |
function getThreatDamage(gear) |
|
411 |
||
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
412 |
local dmg |
11015 | 413 |
--- damage amounts for weapons |
414 |
if (GetGearType(gear) == gtGrenade) or |
|
415 |
(GetGearType(gear) == gtClusterBomb) or |
|
416 |
(GetGearType(gear) == gtGasBomb) or |
|
417 |
(GetGearType(gear) == gtKnife) or |
|
418 |
(GetGearType(gear) == gtEgg) or |
|
419 |
(GetGearType(gear) == gtMolotov) or |
|
420 |
(GetGearType(gear) == gtHellishBomb) or |
|
421 |
(GetGearType(gear) == gtWatermelon) or |
|
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
422 |
(GetGearType(gear) == gtSMine) then |
11015 | 423 |
dmg = 30 |
424 |
||
425 |
elseif (GetGearType(gear) == gtMelonPiece) then |
|
426 |
dmg = 40 |
|
427 |
||
428 |
elseif (GetGearType(gear) == gtAirBomb) or |
|
429 |
(GetGearType(gear) == gtDrill) or |
|
430 |
(GetGearType(gear) == gtMine) or |
|
431 |
(GetGearType(gear) == gtCluster) then |
|
432 |
dmg = 20 |
|
433 |
||
434 |
elseif (GetGearType(gear) == gtFlame) or |
|
435 |
(GetGearType(gear) == gtPortal) or |
|
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
436 |
(GetGearType(gear) == gtDynamite) then |
11015 | 437 |
dmg = 0 |
438 |
||
439 |
elseif (GetGearType(gear) == gtBall) then |
|
440 |
dmg = 1 |
|
441 |
||
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
442 |
else -- normal shell, snowball etc |
11015 | 443 |
dmg = 65 |
444 |
end |
|
445 |
||
446 |
return(dmg) |
|
447 |
||
448 |
end |
|
449 |
||
450 |
function setGearReflectionValues(gear) |
|
451 |
||
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
452 |
local dmg = getThreatDamage(gear) |
11015 | 453 |
setGearValue(gear,"damage",dmg) |
454 |
setGearValue(gear,"deflects",0) |
|
455 |
||
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
456 |
if (CurrentHedgehog ~= nil) then |
11015 | 457 |
setGearValue(gear,"owner",GetHogClan(CurrentHedgehog)) -- NEW NEEDS CHANGE? |
458 |
else |
|
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
459 |
setGearValue(gear,"owner",10) |
11015 | 460 |
end |
461 |
||
462 |
end |
|
463 |
||
12953
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
464 |
function isATrackedGear(gear) |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
465 |
if (GetGearType(gear) == gtHedgehog) or |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
466 |
(GetGearType(gear) == gtTarget) or |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
467 |
(GetGearType(gear) == gtCase) |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
468 |
then |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
469 |
return(true) |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
470 |
else |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
471 |
return(false) |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
472 |
end |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
473 |
end |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
474 |
|
11015 | 475 |
function AddStruc(pX,pY, pType, pClan) |
476 |
||
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
477 |
uniqueStructureID = uniqueStructureID + 1 |
11015 | 478 |
|
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
479 |
local tempG = AddGear(0, 0, gtTarget, 0, 0, 0, 0) |
11015 | 480 |
SetGearPosition(tempG, pX, pY) |
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
481 |
setGearValue(tempG, "uniqueStructureID", uniqueStructureID) |
11015 | 482 |
|
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
483 |
local tempCirc = AddVisualGear(0,0,vgtCircle,0,true) |
11015 | 484 |
|
12957
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
485 |
if pType ~= "Respawner" and pType ~= "Generator" then |
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
486 |
SetVisualGearValues(tempCirc, 0, 0, 100, 255, 1, 100, 0, 500, 1, 0xFFFFFF00) |
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
487 |
table.insert(strucCirc, tempCirc) |
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
488 |
else |
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
489 |
table.insert(strucCirc, false) |
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
490 |
end |
11015 | 491 |
|
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
492 |
table.insert(strucID, uniqueStructureID) |
11015 | 493 |
table.insert(strucType, pType) |
494 |
table.insert(strucGear,tempG) |
|
495 |
table.insert(strucClan,pClan) |
|
496 |
table.insert(strucCost,2) |
|
497 |
||
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
498 |
local frameID = 0 |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
499 |
local visualSprite = sprTarget |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
500 |
local madness = AddVisualGear(GetX(tempG), GetY(tempG), vgtStraightShot, 1, true,1) |
11015 | 501 |
|
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
502 |
if pType == "Reflector Shield" then |
11015 | 503 |
table.insert(strucHealth,255) |
504 |
||
505 |
else |
|
506 |
table.insert(strucHealth,1) |
|
507 |
end |
|
508 |
||
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
509 |
if pType == "Bio-Filter" then |
12957
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
510 |
table.insert(strucCircCol, colorBioFilter) |
11015 | 511 |
table.insert(strucCircRadius,1000) |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
512 |
elseif pType == "Healing Station" then |
12957
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
513 |
table.insert(strucCircCol, colorHealingStation) |
11015 | 514 |
table.insert(strucCircRadius,500) |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
515 |
elseif pType == "Respawner" then |
12957
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
516 |
table.insert(strucCircCol, 0) |
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
517 |
table.insert(strucCircRadius,0) |
11015 | 518 |
runOnHogs(EnableHogResurrectionForThisClan) |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
519 |
elseif pType == "Teleportation Node" then |
12957
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
520 |
table.insert(strucCircCol, colorTeleportationNode) |
11015 | 521 |
table.insert(strucCircRadius,350) |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
522 |
elseif pType == "Generator" then |
12957
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
523 |
table.insert(strucCircCol, 0) |
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
524 |
table.insert(strucCircRadius,0) |
11015 | 525 |
setGearValue(tempG, "power", 0) |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
526 |
elseif pType == "Support Station" then |
12957
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
527 |
table.insert(strucCircCol, colorSupportStation) |
11015 | 528 |
table.insert(strucCircRadius,500) |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
529 |
elseif pType == "Construction Station" then |
12957
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
530 |
table.insert(strucCircCol, colorConstructionStation) |
11015 | 531 |
table.insert(strucCircRadius,500) |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
532 |
elseif pType == "Reflector Shield" then |
12957
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
533 |
table.insert(strucCircCol, colorReflectorShield) |
11015 | 534 |
table.insert(strucCircRadius,750) |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
535 |
elseif pType == "Weapon Filter" then |
12957
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
536 |
table.insert(strucCircCol, colorWeaponFilter) |
11015 | 537 |
table.insert(strucCircRadius,750) |
538 |
end |
|
12978
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
539 |
if catFrames[pType] then |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
540 |
frameID = catFrames[pType] |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
541 |
end |
11015 | 542 |
|
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
543 |
SetVisualGearValues(madness, nil, nil, 0, 0, nil, frameID, nil, visualSprite, nil, nil) |
11015 | 544 |
SetState(tempG, bor(GetState(tempG),gstInvisible) ) |
545 |
table.insert(strucAltDisplay, madness) |
|
546 |
||
547 |
end |
|
548 |
||
549 |
-- this is basically onStructureDelete |
|
550 |
-- we may need to expand it for non-gear structures later |
|
551 |
function CheckGearForStructureLink(gear) |
|
552 |
||
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
553 |
local respawnerDestroyed = false |
11015 | 554 |
|
555 |
for i = 1, #strucID do |
|
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
556 |
if strucID[i] == getGearValue(gear,"uniqueStructureID") then |
11015 | 557 |
|
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
558 |
if strucType[i] == "Respawner" then |
11015 | 559 |
respawnerDestroyed = true |
560 |
end |
|
561 |
||
562 |
table.remove(strucID,i) |
|
563 |
table.remove(strucGear,i) |
|
564 |
table.remove(strucClan,i) |
|
565 |
table.remove(strucType,i) |
|
566 |
table.remove(strucCost,i) |
|
567 |
table.remove(strucHealth,i) |
|
568 |
||
569 |
DeleteVisualGear(strucCirc[i]) |
|
570 |
table.remove(strucCirc,i) |
|
571 |
||
572 |
table.remove(strucCircCol,i) |
|
573 |
table.remove(strucCircRadius,i) |
|
574 |
||
575 |
if strucAltDisplay[i] ~= 1 then |
|
576 |
DeleteVisualGear(strucAltDisplay[i]) |
|
577 |
end |
|
578 |
table.remove(strucAltDisplay,i) |
|
579 |
||
580 |
end |
|
581 |
end |
|
582 |
||
583 |
if respawnerDestroyed == true then |
|
584 |
runOnHogs(RecalibrateRespawn) |
|
585 |
end |
|
586 |
||
587 |
end |
|
588 |
||
589 |
-- called when we add a new respawner |
|
590 |
function EnableHogResurrectionForThisClan(gear) |
|
591 |
if GetHogClan(gear) == GetHogClan(CurrentHedgehog) then |
|
592 |
SetEffect(gear, heResurrectable, 1) |
|
593 |
end |
|
594 |
end |
|
595 |
||
596 |
-- this is called when a respawner blows up |
|
597 |
function RecalibrateRespawn(gear) |
|
598 |
||
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
599 |
local respawnerList = {} |
11015 | 600 |
for i = 1, #strucID do |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
601 |
if (strucType[i] == "Respawner") and (strucClan[i] == GetHogClan(gear)) then |
11015 | 602 |
table.insert(respawnerList, i) |
603 |
end |
|
604 |
end |
|
605 |
||
606 |
if #respawnerList >= 1 then |
|
607 |
SetEffect(gear, heResurrectable, 1) |
|
608 |
else |
|
609 |
SetEffect(gear, heResurrectable, 0) |
|
610 |
end |
|
611 |
||
612 |
end |
|
613 |
||
614 |
--resposition dead hogs at a respawner if they own one |
|
615 |
function FindRespawner(gear) |
|
616 |
||
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
617 |
local respawnerList = {} |
11015 | 618 |
for i = 1, #strucID do |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
619 |
if (strucType[i] == "Respawner") and (strucClan[i] == GetHogClan(gear)) then |
11015 | 620 |
table.insert(respawnerList, i) |
621 |
end |
|
622 |
end |
|
623 |
||
624 |
if #respawnerList >= 1 then |
|
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
625 |
local i = GetRandom(#respawnerList)+1 |
11015 | 626 |
SetGearPosition(gear,GetX(strucGear[respawnerList[i]]),GetY(strucGear[respawnerList[i]])-25) |
627 |
AddVisualGear(GetX(gear), GetY(gear), vgtExplosion, 0, false) |
|
12973
b27960c83818
Construction Mode: Show message when respawning hog
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
628 |
local msgs = { |
b27960c83818
Construction Mode: Show message when respawning hog
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
629 |
loc("The respawner respawns %s"), |
b27960c83818
Construction Mode: Show message when respawning hog
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
630 |
loc("%s died … and lives again!"), |
b27960c83818
Construction Mode: Show message when respawning hog
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
631 |
loc("%s gets an extra life"), |
b27960c83818
Construction Mode: Show message when respawning hog
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
632 |
loc("%s is now a zombie hedgehog"), |
b27960c83818
Construction Mode: Show message when respawning hog
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
633 |
loc("%s has been rescued from death"), |
b27960c83818
Construction Mode: Show message when respawning hog
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
634 |
} |
b27960c83818
Construction Mode: Show message when respawning hog
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
635 |
local r = math.random(1, #msgs) |
b27960c83818
Construction Mode: Show message when respawning hog
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
636 |
AddCaption(string.format(msgs[r], GetHogName(gear))) |
11015 | 637 |
else -- (this should never happen, but just in case) |
638 |
SetEffect(gear, heResurrectable, 0) |
|
639 |
DeleteGear(gear) |
|
640 |
end |
|
641 |
||
642 |
end |
|
643 |
||
644 |
function CheckTeleport(gear, tX, tY) |
|
645 |
||
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
646 |
local teleportOriginSuccessful = false |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
647 |
local teleportDestinationSuccessful = false |
11015 | 648 |
|
649 |
for i = 1, #strucID do |
|
650 |
||
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
651 |
if (strucType[i] == "Teleportation Node") and (strucClan[i] == GetHogClan(CurrentHedgehog)) then |
11015 | 652 |
|
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
653 |
local dist = GetDistFromGearToXY(CurrentHedgehog,GetX(strucGear[i]), GetY(strucGear[i])) |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
654 |
local NR |
12957
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
655 |
NR = (48/100*strucCircRadius[i])/2 |
11015 | 656 |
if dist <= NR*NR then |
657 |
teleportOriginSuccessful = true |
|
658 |
end |
|
659 |
||
660 |
dist = GetDistFromXYtoXY(tX,tY,GetX(strucGear[i]), GetY(strucGear[i])) |
|
12957
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
661 |
NR = (48/100*strucCircRadius[i])/2 |
11015 | 662 |
if dist <= NR*NR then |
663 |
teleportDestinationSuccessful = true |
|
664 |
end |
|
665 |
||
666 |
end |
|
667 |
||
668 |
||
669 |
end |
|
670 |
||
671 |
if ((teleportDestinationSuccessful == false) or (teleportOriginSuccessful == false)) then |
|
12979
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
672 |
if IsHogLocal(CurrentHedgehog) then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
673 |
AddCaption(loc("Teleport unsuccessful. Please teleport within a clan teleporter's sphere of influence."), colorMessageError, capgrpMessage) |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
674 |
end |
11015 | 675 |
SetGearTarget(gear, GetX(CurrentHedgehog), GetY(CurrentHedgehog)) |
676 |
end |
|
677 |
||
678 |
end |
|
679 |
||
680 |
--Check for proximity of gears to structures, and make structures behave accordingly |
|
681 |
function CheckProximity(gear) |
|
682 |
||
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
683 |
local sID = tempID_CheckProximity |
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
684 |
|
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
685 |
local dist = GetDistFromGearToXY(gear, GetX(strucGear[sID]), GetY(strucGear[sID])) |
12687
b7fd7ab8ddf9
Construction Mode: Fix Lua error spam when using time box with filters on map
Wuzzy <almikes@aol.com>
parents:
12402
diff
changeset
|
686 |
if not dist then |
b7fd7ab8ddf9
Construction Mode: Fix Lua error spam when using time box with filters on map
Wuzzy <almikes@aol.com>
parents:
12402
diff
changeset
|
687 |
return |
b7fd7ab8ddf9
Construction Mode: Fix Lua error spam when using time box with filters on map
Wuzzy <almikes@aol.com>
parents:
12402
diff
changeset
|
688 |
end |
11015 | 689 |
|
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
690 |
-- calculate my real radius if I am an aura |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
691 |
local NR |
12957
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
692 |
NR = (48/100*strucCircRadius[sID])/2 |
11015 | 693 |
|
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
694 |
-- we're in business |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
695 |
if dist <= NR*NR then |
11015 | 696 |
|
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
697 |
-- heal clan hogs |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
698 |
if strucType[sID] == "Healing Station" then |
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
699 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
700 |
if GetGearType(gear) == gtHedgehog then |
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
701 |
if GetHogClan(gear) == strucClan[sID] then |
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
702 |
|
12945
39b7b3ed619e
Add healing visual effect + heal msg in scripts
Wuzzy <Wuzzy2@mail.ru>
parents:
12841
diff
changeset
|
703 |
local hogLife = GetHealth(gear) |
39b7b3ed619e
Add healing visual effect + heal msg in scripts
Wuzzy <Wuzzy2@mail.ru>
parents:
12841
diff
changeset
|
704 |
-- Heal hog by 1 HP, up to 150 HP total |
39b7b3ed619e
Add healing visual effect + heal msg in scripts
Wuzzy <Wuzzy2@mail.ru>
parents:
12841
diff
changeset
|
705 |
if hogLife < 150 then |
39b7b3ed619e
Add healing visual effect + heal msg in scripts
Wuzzy <Wuzzy2@mail.ru>
parents:
12841
diff
changeset
|
706 |
if ((hogLife + 1) % 5) == 0 then |
39b7b3ed619e
Add healing visual effect + heal msg in scripts
Wuzzy <Wuzzy2@mail.ru>
parents:
12841
diff
changeset
|
707 |
-- Health anim every 5 HP |
39b7b3ed619e
Add healing visual effect + heal msg in scripts
Wuzzy <Wuzzy2@mail.ru>
parents:
12841
diff
changeset
|
708 |
HealHog(gear, 1, false) |
39b7b3ed619e
Add healing visual effect + heal msg in scripts
Wuzzy <Wuzzy2@mail.ru>
parents:
12841
diff
changeset
|
709 |
else |
39b7b3ed619e
Add healing visual effect + heal msg in scripts
Wuzzy <Wuzzy2@mail.ru>
parents:
12841
diff
changeset
|
710 |
SetHealth(gear, hogLife+1) |
39b7b3ed619e
Add healing visual effect + heal msg in scripts
Wuzzy <Wuzzy2@mail.ru>
parents:
12841
diff
changeset
|
711 |
end |
11015 | 712 |
end |
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
713 |
|
12974
2fee2ee717eb
Construction Mode: Spawn particles over generators, tweak other particles
Wuzzy <Wuzzy2@mail.ru>
parents:
12973
diff
changeset
|
714 |
-- Maybe find better animation? |
2fee2ee717eb
Construction Mode: Spawn particles over generators, tweak other particles
Wuzzy <Wuzzy2@mail.ru>
parents:
12973
diff
changeset
|
715 |
local tempE = AddVisualGear(GetX(strucGear[sID]), GetY(strucGear[sID]), vgtSmoke, 0, false) |
12957
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
716 |
SetVisualGearValues(tempE, nil, nil, nil, nil, nil, nil, nil, nil, nil, colorHealingStationParticle) |
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
717 |
|
11015 | 718 |
end |
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
719 |
end |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
720 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
721 |
-- explode enemy clan hogs |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
722 |
elseif strucType[sID] == "Bio-Filter" then |
11015 | 723 |
|
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
724 |
if GetGearType(gear) == gtHedgehog then |
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
725 |
if (GetHogClan(gear) ~= strucClan[sID]) and (GetHealth(gear) > 0) then |
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
726 |
AddGear(GetX(gear), GetY(gear), gtGrenade, 0, 0, 0, 1) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
727 |
end |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
728 |
end |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
729 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
730 |
-- were those weapons in your pocket, or were you just happy to see me? |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
731 |
elseif strucType[sID] == "Weapon Filter" then |
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
732 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
733 |
if GetGearType(gear) == gtHedgehog then |
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
734 |
if (GetHogClan(gear) ~= strucClan[sID]) then |
11015 | 735 |
|
12964
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
736 |
-- Vaporize (almost) all of the hog's ammo |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
737 |
|
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
738 |
local ammosDestroyed = 0 |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
739 |
for wpnIndex = 0, AmmoTypeMax do |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
740 |
if (not IsConstructionModeAmmo(wpnIndex)) and wpnIndex ~= amSkip and wpnIndex ~= amNothing then |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
741 |
local count = GetAmmoCount(gear, wpnIndex) |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
742 |
-- Infinite ammos are spared |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
743 |
if count ~= 100 then |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
744 |
ammosDestroyed = ammosDestroyed + count |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
745 |
AddAmmo(gear, wpnIndex, 0) |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
746 |
end |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
747 |
end |
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
748 |
end |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
749 |
|
12964
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
750 |
if ammosDestroyed > 0 then |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
751 |
-- Vaporize effects |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
752 |
if gear == CurrentHedgehog then |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
753 |
local r = math.random(1, 2) |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
754 |
if r == 1 then |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
755 |
PlaySound(sndNutter, gear) |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
756 |
else |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
757 |
PlaySound(sndOops, gear) |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
758 |
end |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
759 |
end |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
760 |
PlaySound(sndVaporize) |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
761 |
for i=1, 5 do |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
762 |
AddVisualGear(GetX(gear), GetY(gear), vgtSmoke, 0, false) |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
763 |
end |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
764 |
|
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
765 |
local msgs = { |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
766 |
loc("%s lost all the weapons"), |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
767 |
loc("The ammo of %s has been vaporized"), |
12973
b27960c83818
Construction Mode: Show message when respawning hog
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
768 |
loc("%s fell victim to a weapon filter"), |
12964
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
769 |
loc("%s is suddenly low on ammo"), |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
770 |
loc("%s is now as poor as a church mouse"), |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
771 |
} |
695cc142827b
Construction Mode: Show Message and minor smoke effect when losing ammo due to weapon filter
Wuzzy <Wuzzy2@mail.ru>
parents:
12962
diff
changeset
|
772 |
local r = math.random(1, #msgs) |
13648 | 773 |
AddCaption(string.format(msgs[r], GetHogName(gear)), capcolDefault, capgrpAmmoinfo) |
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
774 |
end |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
775 |
|
11015 | 776 |
end |
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
777 |
end |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
778 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
779 |
-- BOUNCE! POGO! POGO! POGO! POGO! |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
780 |
elseif strucType[sID] == "Reflector Shield" then |
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
781 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
782 |
-- add check for whose projectile it is |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
783 |
if gearCanBeDeflected(gear) == true then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
784 |
|
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
785 |
local gOwner = getGearValue(gear,"owner") |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
786 |
local gDeflects = getGearValue(gear,"deflects") |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
787 |
local gDmg = getGearValue(gear,"damage") |
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
788 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
789 |
if gDeflects >= 3 then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
790 |
DeleteGear(gear) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
791 |
AddVisualGear(GetX(gear), GetY(gear), vgtSmoke, 0, false) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
792 |
PlaySound(sndVaporize) |
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
793 |
elseif gOwner ~= strucClan[sID] then |
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
794 |
--whether to vaporize gears or bounce them |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
795 |
if gDmg ~= 0 then |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
796 |
local dx, dy = GetGearVelocity(gear) |
11015 | 797 |
|
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
798 |
if (dx == 0) and (dy == 0) then |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
799 |
-- static mine, explosive, etc encountered |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
800 |
-- do nothing |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
801 |
else |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
802 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
803 |
--let's bounce something! |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
804 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
805 |
dx = dx*(-1) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
806 |
dy = dy*(-1) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
807 |
SetGearVelocity(gear,dx,dy) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
808 |
setGearValue(gear,"deflects",(gDeflects+1)) |
11015 | 809 |
|
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
810 |
AddVisualGear(GetX(gear), GetY(gear), vgtExplosion, 0, false) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
811 |
PlaySound(sndExplosion) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
812 |
|
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
813 |
strucHealth[sID] = strucHealth[sID] - gDmg |
12957
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
814 |
if strucCirc[sID] then |
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
815 |
strucCircCol[sID] = strucCircCol[sID] - gDmg |
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
816 |
end |
11015 | 817 |
|
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
818 |
if strucHealth[sID] <= 0 then |
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
819 |
AddVisualGear(GetX(strucGear[sID]), GetY(strucGear[sID]), vgtExplosion, 0, false) |
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
820 |
DeleteGear(strucGear[sID]) |
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
821 |
PlaySound(sndExplosion) |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
822 |
end |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
823 |
|
11015 | 824 |
end |
825 |
||
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
826 |
else |
11015 | 827 |
DeleteGear(gear) |
828 |
AddVisualGear(GetX(gear), GetY(gear), vgtSmoke, 0, false) |
|
829 |
PlaySound(sndVaporize) |
|
830 |
end |
|
831 |
end |
|
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
832 |
end |
11015 | 833 |
|
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
834 |
--mark as within range of a teleporter node |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
835 |
elseif strucType[sID] == "Teleportation Node" then |
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
836 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
837 |
if GetGearType(gear) == gtHedgehog then |
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
838 |
if GetHogClan(gear) == strucClan[sID] then |
11015 | 839 |
|
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
840 |
sProx["Teleportation Mode"] = true |
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
841 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
842 |
end |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
843 |
end |
11015 | 844 |
|
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
845 |
-- mark as within range of construction station |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
846 |
-- and thus allow menu access to placement modes |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
847 |
-- for girders, mines, sticky mines and barrels |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
848 |
elseif strucType[sID] == "Construction Station" then |
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
849 |
|
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
850 |
if GetGearType(gear) == gtHedgehog then |
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
851 |
if GetHogClan(gear) == strucClan[sID] then |
12974
2fee2ee717eb
Construction Mode: Spawn particles over generators, tweak other particles
Wuzzy <Wuzzy2@mail.ru>
parents:
12973
diff
changeset
|
852 |
AddVisualGear(GetX(strucGear[sID]), GetY(strucGear[sID]), vgtSmoke, 0, false) |
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
853 |
|
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
854 |
sProx["Girder Placement Mode"] = true |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
855 |
sProx["Rubber Placement Mode"] = true |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
856 |
sProx["Mine Placement Mode"] = true |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
857 |
sProx["Sticky Mine Placement Mode"] = true |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
858 |
sProx["Barrel Placement Mode"] = true |
11015 | 859 |
|
860 |
end |
|
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
861 |
end |
11015 | 862 |
|
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
863 |
-- mark as within stupport station range |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
864 |
-- and thus allow menu access to placement modes |
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
865 |
-- for weapon, utility, and med crates |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
866 |
elseif strucType[sID] == "Support Station" then |
11015 | 867 |
|
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
868 |
if GetGearType(gear) == gtHedgehog then |
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
869 |
if GetHogClan(gear) == strucClan[sID] then |
12974
2fee2ee717eb
Construction Mode: Spawn particles over generators, tweak other particles
Wuzzy <Wuzzy2@mail.ru>
parents:
12973
diff
changeset
|
870 |
AddVisualGear(GetX(strucGear[sID]), GetY(strucGear[sID]), vgtSmoke, 0, false) |
11015 | 871 |
|
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
872 |
sProx["Health Crate Placement Mode"] = true |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
873 |
sProx["Weapon Crate Placement Mode"] = true |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
874 |
sProx["Utility Crate Placement Mode"] = true |
11015 | 875 |
|
876 |
end |
|
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
877 |
end |
11015 | 878 |
end |
879 |
||
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
880 |
end |
11015 | 881 |
|
882 |
end |
|
883 |
||
884 |
-- used to check if we need to run through all hogs or just currenthedgehog |
|
885 |
function isAStructureThatAppliesToMultipleGears(pID) |
|
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
886 |
if strucType[pID] == "Healing Station" or |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
887 |
strucType[pID] == "Reflector Shield" or |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
888 |
strucType[pID] == "Weapon Filter" or |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
889 |
strucType[pID] == "Bio-Filter" |
11015 | 890 |
then |
891 |
return(true) |
|
892 |
else |
|
893 |
return(false) |
|
894 |
end |
|
895 |
end |
|
896 |
||
897 |
function HandleStructures() |
|
898 |
||
11729
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11728
diff
changeset
|
899 |
if GameTime % 100 == 0 then |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
900 |
for k, _ in pairs(sProx) do |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
901 |
if k ~= "Structure Placement Mode" then |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
902 |
sProx[k] = false |
11729
cf4d61123440
Construction Mode: Fix construction/support station
Wuzzy <almikes@aol.com>
parents:
11728
diff
changeset
|
903 |
end |
11015 | 904 |
end |
905 |
end |
|
906 |
||
907 |
for i = 1, #strucID do |
|
908 |
||
12957
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
909 |
if strucCirc[i] then |
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
910 |
SetVisualGearValues(strucCirc[i], GetX(strucGear[i]), GetY(strucGear[i]), nil, nil, nil, nil, nil, strucCircRadius[i], nil, strucCircCol[i]) |
eafaada79157
Construction Mode: Refactor colors, add subtle glow to healing station, don't spawn vGears for respawner and generator
Wuzzy <Wuzzy2@mail.ru>
parents:
12956
diff
changeset
|
911 |
end |
11015 | 912 |
|
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
913 |
tempID_CheckProximity = i |
11015 | 914 |
|
11728
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
915 |
SetVisualGearValues(strucAltDisplay[i], GetX(strucGear[i]), GetY(strucGear[i]), 0, 0, nil, nil, 800000, sprTarget) |
11015 | 916 |
|
11728
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
917 |
if GameTime % 100 == 0 then |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
918 |
-- Check For proximity of stuff to our structures |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
919 |
if isAStructureThatAppliesToMultipleGears(i) then |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
920 |
runOnGears(CheckProximity) |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
921 |
else -- only check prox on CurrentHedgehog |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
922 |
if CurrentHedgehog ~= nil then |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
923 |
CheckProximity(CurrentHedgehog) |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
924 |
end |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
925 |
end |
11015 | 926 |
|
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
927 |
if strucType[i] == "Generator" then |
11737 | 928 |
|
11728
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
929 |
for z = 0, ClansCount-1 do |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
930 |
if z == strucClan[i] then |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
931 |
increaseGearValue(strucGear[i],"power") |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
932 |
if getGearValue(strucGear[i],"power") == 10 then |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
933 |
setGearValue(strucGear[i],"power",0) |
12974
2fee2ee717eb
Construction Mode: Spawn particles over generators, tweak other particles
Wuzzy <Wuzzy2@mail.ru>
parents:
12973
diff
changeset
|
934 |
|
2fee2ee717eb
Construction Mode: Spawn particles over generators, tweak other particles
Wuzzy <Wuzzy2@mail.ru>
parents:
12973
diff
changeset
|
935 |
-- Add 1 energy (if not at max. already) |
2fee2ee717eb
Construction Mode: Spawn particles over generators, tweak other particles
Wuzzy <Wuzzy2@mail.ru>
parents:
12973
diff
changeset
|
936 |
if not (conf_maxEnergy ~= "inf" and clanPower[z] + 1 > conf_maxEnergy) then |
2fee2ee717eb
Construction Mode: Spawn particles over generators, tweak other particles
Wuzzy <Wuzzy2@mail.ru>
parents:
12973
diff
changeset
|
937 |
clanPower[z] = clanPower[z] + 1 |
2fee2ee717eb
Construction Mode: Spawn particles over generators, tweak other particles
Wuzzy <Wuzzy2@mail.ru>
parents:
12973
diff
changeset
|
938 |
|
2fee2ee717eb
Construction Mode: Spawn particles over generators, tweak other particles
Wuzzy <Wuzzy2@mail.ru>
parents:
12973
diff
changeset
|
939 |
-- Spawn one particle per energy added |
2fee2ee717eb
Construction Mode: Spawn particles over generators, tweak other particles
Wuzzy <Wuzzy2@mail.ru>
parents:
12973
diff
changeset
|
940 |
local particle = AddVisualGear(GetX(strucGear[i]), GetY(strucGear[i])-16, vgtStraightShot, sprStar, false) |
2fee2ee717eb
Construction Mode: Spawn particles over generators, tweak other particles
Wuzzy <Wuzzy2@mail.ru>
parents:
12973
diff
changeset
|
941 |
SetVisualGearValues(particle, nil, nil, math.random(-100, 100)*0.00005, 0.02, math.random(360), 0, 900, nil, 0, colorGeneratorParticle) |
2fee2ee717eb
Construction Mode: Spawn particles over generators, tweak other particles
Wuzzy <Wuzzy2@mail.ru>
parents:
12973
diff
changeset
|
942 |
|
2fee2ee717eb
Construction Mode: Spawn particles over generators, tweak other particles
Wuzzy <Wuzzy2@mail.ru>
parents:
12973
diff
changeset
|
943 |
else |
2fee2ee717eb
Construction Mode: Spawn particles over generators, tweak other particles
Wuzzy <Wuzzy2@mail.ru>
parents:
12973
diff
changeset
|
944 |
|
2fee2ee717eb
Construction Mode: Spawn particles over generators, tweak other particles
Wuzzy <Wuzzy2@mail.ru>
parents:
12973
diff
changeset
|
945 |
SetVisualGearValues(strucAltDisplay[i], GetX(strucGear[i]), GetY(strucGear[i]), 0, 0, nil, nil, 800000, sprTarget) |
11728
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
946 |
end |
12974
2fee2ee717eb
Construction Mode: Spawn particles over generators, tweak other particles
Wuzzy <Wuzzy2@mail.ru>
parents:
12973
diff
changeset
|
947 |
|
2fee2ee717eb
Construction Mode: Spawn particles over generators, tweak other particles
Wuzzy <Wuzzy2@mail.ru>
parents:
12973
diff
changeset
|
948 |
|
11015 | 949 |
end |
11737 | 950 |
|
11015 | 951 |
end |
952 |
end |
|
953 |
end |
|
954 |
||
955 |
end |
|
956 |
||
957 |
end |
|
958 |
||
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
959 |
-- Add and remove ammo based on structure proximity |
11732
1c09b8d050ce
Construction Mode: Fix timer issues
Wuzzy <almikes@aol.com>
parents:
11731
diff
changeset
|
960 |
if GameTime % 100 == 0 and CurrentHedgehog ~= nil then |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
961 |
if sProx["Girder Placement Mode"] then |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
962 |
AddAmmo(CurrentHedgehog, amGirder, 100) |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
963 |
else |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
964 |
AddAmmo(CurrentHedgehog, amGirder, 0) |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
965 |
end |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
966 |
if sProx["Rubber Placement Mode"] then |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
967 |
AddAmmo(CurrentHedgehog, amRubber, 100) |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
968 |
else |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
969 |
AddAmmo(CurrentHedgehog, amRubber, 0) |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
970 |
end |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
971 |
if sProx["Mine Placement Mode"] or sProx["Sticky Mine Placement Mode"] or sProx["Barrel Placement Mode"] then |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
972 |
AddAmmo(CurrentHedgehog, amCMObjectPlacer, 100) |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
973 |
else |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
974 |
AddAmmo(CurrentHedgehog, amCMObjectPlacer, 0) |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
975 |
end |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
976 |
if sProx["Teleportation Mode"] then |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
977 |
AddAmmo(CurrentHedgehog, amTeleport, 100) |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
978 |
else |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
979 |
AddAmmo(CurrentHedgehog, amTeleport, 0) |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
980 |
end |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
981 |
if sProx["Weapon Crate Placement Mode"] or sProx["Utility Crate Placement Mode"] or sProx["Health Crate Placement Mode"] then |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
982 |
AddAmmo(CurrentHedgehog, amCMCratePlacer, 100) |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
983 |
else |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
984 |
AddAmmo(CurrentHedgehog, amCMCratePlacer, 0) |
11015 | 985 |
end |
986 |
end |
|
987 |
||
988 |
end |
|
989 |
||
990 |
------------------------ |
|
991 |
-- SOME GENERAL METHODS |
|
992 |
------------------------ |
|
993 |
||
994 |
function GetDistFromGearToXY(gear, g2X, g2Y) |
|
995 |
||
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
996 |
local g1X, g1Y = GetGearPosition(gear) |
12687
b7fd7ab8ddf9
Construction Mode: Fix Lua error spam when using time box with filters on map
Wuzzy <almikes@aol.com>
parents:
12402
diff
changeset
|
997 |
if not g1X then |
b7fd7ab8ddf9
Construction Mode: Fix Lua error spam when using time box with filters on map
Wuzzy <almikes@aol.com>
parents:
12402
diff
changeset
|
998 |
return nil |
b7fd7ab8ddf9
Construction Mode: Fix Lua error spam when using time box with filters on map
Wuzzy <almikes@aol.com>
parents:
12402
diff
changeset
|
999 |
end |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
1000 |
local q = g1X - g2X |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
1001 |
local w = g1Y - g2Y |
11015 | 1002 |
|
1003 |
return ( (q*q) + (w*w) ) |
|
1004 |
||
1005 |
end |
|
1006 |
||
1007 |
function GetDistFromXYtoXY(a, b, c, d) |
|
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
1008 |
local q = a - c |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
1009 |
local w = b - d |
11015 | 1010 |
return ( (q*q) + (w*w) ) |
1011 |
end |
|
1012 |
||
1013 |
-- essentially called when user clicks the mouse |
|
1014 |
-- with girders or an airattack |
|
1015 |
function PlaceObject(x,y) |
|
1016 |
||
1017 |
if (clanUsedExtraTime[GetHogClan(CurrentHedgehog)] == true) and (cat[cIndex] == "Utility Crate Placement Mode") and (utilArray[pIndex][1] == amExtraTime) then |
|
12979
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1018 |
if IsHogLocal(CurrentHedgehog) then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1019 |
AddCaption(loc("You may only place 1 Extra Time crate per turn."), colorMessageError, capgrpVolume) |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1020 |
end |
11015 | 1021 |
PlaySound(sndDenied) |
12097
9fe7eb1f7df2
Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents:
12096
diff
changeset
|
1022 |
elseif (conf_cratesPerRound ~= "inf" and clanCratesSpawned[GetHogClan(CurrentHedgehog)] >= conf_cratesPerRound) and ( (cat[cIndex] == "Health Crate Placement Mode") or (cat[cIndex] == "Utility Crate Placement Mode") or (cat[cIndex] == "Weapon Crate Placement Mode") ) then |
12979
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1023 |
if IsHogLocal(CurrentHedgehog) then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1024 |
AddCaption(string.format(loc("You may only place %d crates per round."), conf_cratesPerRound), colorMessageError, capgrpVolume) |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1025 |
end |
11015 | 1026 |
PlaySound(sndDenied) |
1027 |
elseif (XYisInRect(x,y, clanBoundsSX[GetHogClan(CurrentHedgehog)],clanBoundsSY[GetHogClan(CurrentHedgehog)],clanBoundsEX[GetHogClan(CurrentHedgehog)],clanBoundsEY[GetHogClan(CurrentHedgehog)]) == true) |
|
1028 |
and (clanPower[GetHogClan(CurrentHedgehog)] >= placedExpense) |
|
1029 |
then |
|
12096
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1030 |
-- For checking if the actual placement succeeded |
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1031 |
local placed = false |
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
1032 |
local gear |
11015 | 1033 |
if cat[cIndex] == "Girder Placement Mode" then |
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
1034 |
placed = PlaceGirder(x, y, currentGirderRotation) |
11015 | 1035 |
elseif cat[cIndex] == "Rubber Placement Mode" then |
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
1036 |
placed = PlaceRubber(x, y, currentGirderRotation) |
11015 | 1037 |
elseif cat[cIndex] == "Health Crate Placement Mode" then |
1038 |
gear = SpawnHealthCrate(x,y) |
|
12096
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1039 |
if gear ~= nil then |
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1040 |
placed = true |
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1041 |
SetHealth(gear, pMode[pIndex]) |
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1042 |
clanCratesSpawned[GetHogClan(CurrentHedgehog)] = clanCratesSpawned[GetHogClan(CurrentHedgehog)] +1 |
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1043 |
end |
11015 | 1044 |
elseif cat[cIndex] == "Weapon Crate Placement Mode" then |
1045 |
gear = SpawnAmmoCrate(x, y, atkArray[pIndex][1]) |
|
12096
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1046 |
if gear ~= nil then |
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1047 |
placed = true |
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1048 |
clanCratesSpawned[GetHogClan(CurrentHedgehog)] = clanCratesSpawned[GetHogClan(CurrentHedgehog)] +1 |
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1049 |
end |
11015 | 1050 |
elseif cat[cIndex] == "Utility Crate Placement Mode" then |
1051 |
gear = SpawnUtilityCrate(x, y, utilArray[pIndex][1]) |
|
12096
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1052 |
if gear ~= nil then |
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1053 |
placed = true |
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1054 |
if utilArray[pIndex][1] == amExtraTime then |
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1055 |
clanUsedExtraTime[GetHogClan(CurrentHedgehog)] = true |
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1056 |
end |
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1057 |
clanCratesSpawned[GetHogClan(CurrentHedgehog)] = clanCratesSpawned[GetHogClan(CurrentHedgehog)] +1 |
11015 | 1058 |
end |
1059 |
elseif cat[cIndex] == "Barrel Placement Mode" then |
|
1060 |
gear = AddGear(x, y, gtExplosives, 0, 0, 0, 0) |
|
12096
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1061 |
if gear ~= nil then |
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1062 |
placed = true |
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1063 |
SetHealth(gear, pMode[pIndex]) |
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1064 |
end |
11015 | 1065 |
elseif cat[cIndex] == "Mine Placement Mode" then |
1066 |
gear = AddGear(x, y, gtMine, 0, 0, 0, 0) |
|
12096
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1067 |
if gear ~= nil then |
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1068 |
placed = true |
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1069 |
SetTimer(gear, pMode[pIndex]) |
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1070 |
end |
11015 | 1071 |
elseif cat[cIndex] == "Sticky Mine Placement Mode" then |
1072 |
gear = AddGear(x, y, gtSMine, 0, 0, 0, 0) |
|
12096
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1073 |
placed = gear ~= nil |
11015 | 1074 |
elseif cat[cIndex] == "Structure Placement Mode" then |
1075 |
AddStruc(x,y, pMode[pIndex],GetHogClan(CurrentHedgehog)) |
|
12096
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1076 |
placed = true |
11015 | 1077 |
end |
1078 |
||
12096
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1079 |
if placed then |
12962
08f91e9e3d2c
Construction Mode: Hide power tag when it's nobody's turn
Wuzzy <Wuzzy2@mail.ru>
parents:
12961
diff
changeset
|
1080 |
-- Pay the price |
12096
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1081 |
clanPower[GetHogClan(CurrentHedgehog)] = clanPower[GetHogClan(CurrentHedgehog)] - placedExpense |
13027
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
1082 |
RenderClanPower() |
13128
11f23afd84f2
Construction Mode: Fix annoying Incoming voice and other sound issues
Wuzzy <Wuzzy2@mail.ru>
parents:
13031
diff
changeset
|
1083 |
if cat[cIndex] == "Girder Placement Mode" or cat[cIndex] == "Rubber Placement Mode" then |
11f23afd84f2
Construction Mode: Fix annoying Incoming voice and other sound issues
Wuzzy <Wuzzy2@mail.ru>
parents:
13031
diff
changeset
|
1084 |
PlaySound(sndPlaced) |
11f23afd84f2
Construction Mode: Fix annoying Incoming voice and other sound issues
Wuzzy <Wuzzy2@mail.ru>
parents:
13031
diff
changeset
|
1085 |
end |
12096
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1086 |
else |
12979
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1087 |
if IsHogLocal(CurrentHedgehog) then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1088 |
AddCaption(loc("Invalid Placement"), colorMessageError, capgrpVolume) |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1089 |
end |
12096
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1090 |
PlaySound(sndDenied) |
db5e12d623cc
Contruction Mode: Fix rubber being placable in land and invalid girder placement costing energy
Wuzzy <almikes@aol.com>
parents:
11987
diff
changeset
|
1091 |
end |
11015 | 1092 |
|
1093 |
else |
|
12953
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1094 |
if (clanPower[GetHogClan(CurrentHedgehog)] >= placedExpense) then |
12979
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1095 |
if IsHogLocal(CurrentHedgehog) then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1096 |
AddCaption(loc("Invalid Placement"), colorMessageError, capgrpVolume) |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1097 |
end |
12953
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1098 |
else |
12979
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1099 |
if IsHogLocal(CurrentHedgehog) then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1100 |
AddCaption(loc("Insufficient Power"), colorMessageError, capgrpVolume) |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1101 |
end |
12953
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1102 |
end |
11015 | 1103 |
PlaySound(sndDenied) |
1104 |
end |
|
1105 |
||
1106 |
end |
|
1107 |
||
1108 |
-- called when user changes primary selection |
|
1109 |
-- either via up/down keys |
|
1110 |
-- or selecting girder/airattack |
|
1111 |
function RedefineSubset() |
|
1112 |
||
1113 |
pIndex = 1 |
|
1114 |
pMode = {} |
|
1115 |
||
12950
0e698562d76d
More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents:
12949
diff
changeset
|
1116 |
if (CurrentHedgehog == nil or band(GetState(CurrentHedgehog), gstHHDriven) == 0) then |
12949
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1117 |
return false |
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1118 |
end |
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1119 |
|
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1120 |
local team = GetHogTeamName(CurrentHedgehog) |
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1121 |
|
11015 | 1122 |
if cat[cIndex] == "Girder Placement Mode" then |
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
1123 |
pIndex = currentGirderRotation |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1124 |
pMode = {amGirder} |
11015 | 1125 |
elseif cat[cIndex] == "Rubber Placement Mode" then |
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
1126 |
pIndex = currentGirderRotation |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1127 |
pMode = {amRubber} |
11015 | 1128 |
elseif cat[cIndex] == "Barrel Placement Mode" then |
11718
106112bbacfa
Tweak barrel and mine defaults in Construction Mode
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
1129 |
pMode = {60} |
12949
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1130 |
teamLObjectMode[team] = cat[cIndex] |
11015 | 1131 |
elseif cat[cIndex] == "Health Crate Placement Mode" then |
11731
4addfad422ab
Construction Mode: Recognize health case amount from game scheme
Wuzzy <almikes@aol.com>
parents:
11730
diff
changeset
|
1132 |
pMode = {HealthCaseAmount} |
12949
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1133 |
teamLCrateMode[team] = cat[cIndex] |
11015 | 1134 |
elseif cat[cIndex] == "Weapon Crate Placement Mode" then |
1135 |
for i = 1, #atkArray do |
|
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1136 |
pMode[i] = atkArray[i][1] |
11015 | 1137 |
end |
12949
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1138 |
teamLCrateMode[team] = cat[cIndex] |
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1139 |
pIndex = teamLWeapIndex[team] |
11015 | 1140 |
elseif cat[cIndex] == "Utility Crate Placement Mode" then |
1141 |
for i = 1, #utilArray do |
|
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1142 |
pMode[i] = utilArray[i][1] |
11015 | 1143 |
end |
12949
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1144 |
teamLCrateMode[team] = cat[cIndex] |
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1145 |
pIndex = teamLUtilIndex[team] |
11015 | 1146 |
elseif cat[cIndex] == "Mine Placement Mode" then |
11718
106112bbacfa
Tweak barrel and mine defaults in Construction Mode
Wuzzy <almikes@aol.com>
parents:
11717
diff
changeset
|
1147 |
pMode = {0,1000,2000,3000,4000,5000} |
12949
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1148 |
teamLObjectMode[team] = cat[cIndex] |
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1149 |
pIndex = teamLMineIndex[team] |
11015 | 1150 |
elseif cat[cIndex] == "Sticky Mine Placement Mode" then |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1151 |
pMode = {amSMine} |
12949
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1152 |
teamLObjectMode[team] = cat[cIndex] |
11015 | 1153 |
elseif cat[cIndex] == "Structure Placement Mode" then |
12948
3feab46234dd
Construction Mode: Sort structure types roughly by importance and convenience
Wuzzy <Wuzzy2@mail.ru>
parents:
12947
diff
changeset
|
1154 |
pMode = { |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1155 |
loc_noop("Support Station"), |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1156 |
loc_noop("Construction Station"), |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1157 |
loc_noop("Healing Station"), |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1158 |
loc_noop("Teleportation Node"), |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1159 |
loc_noop("Weapon Filter"), |
12948
3feab46234dd
Construction Mode: Sort structure types roughly by importance and convenience
Wuzzy <Wuzzy2@mail.ru>
parents:
12947
diff
changeset
|
1160 |
|
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1161 |
loc_noop("Bio-Filter"), |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1162 |
loc_noop("Reflector Shield"), |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1163 |
loc_noop("Respawner"), |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1164 |
loc_noop("Generator"), |
12948
3feab46234dd
Construction Mode: Sort structure types roughly by importance and convenience
Wuzzy <Wuzzy2@mail.ru>
parents:
12947
diff
changeset
|
1165 |
} |
12949
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1166 |
pIndex = teamLStructIndex[team] |
11015 | 1167 |
end |
1168 |
||
12949
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1169 |
return true |
11015 | 1170 |
end |
1171 |
||
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1172 |
-- Updates the handling of the main construction mode tools: |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1173 |
-- Structure Placer, Crate Placer, Object Placer. |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1174 |
-- This handles the internal category state, |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1175 |
-- the HUD display and the clans outline. |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1176 |
function HandleConstructionModeTools() |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1177 |
-- Update display selection criteria |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1178 |
if (CurrentHedgehog ~= nil and band(GetState(CurrentHedgehog), gstHHDriven) ~= 0) then |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1179 |
curWep = GetCurAmmoType() |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1180 |
|
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1181 |
local updated = false |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1182 |
local team = GetHogTeamName(CurrentHedgehog) |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1183 |
if (curWep == amGirder) then |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1184 |
cIndex = 1 |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1185 |
RedefineSubset() |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1186 |
updated = true |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1187 |
elseif (curWep == amRubber) then |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1188 |
cIndex = 2 |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1189 |
RedefineSubset() |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1190 |
updated = true |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1191 |
elseif (curWep == amCMStructurePlacer) then |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1192 |
cIndex = 9 |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1193 |
RedefineSubset() |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1194 |
updateCost() |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1195 |
updated = true |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1196 |
elseif (curWep == amCMCratePlacer) then |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1197 |
cIndex = catReverse[teamLCrateMode[team]] |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1198 |
RedefineSubset() |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1199 |
updateCost() |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1200 |
updated = true |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1201 |
elseif (curWep == amCMObjectPlacer) then |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1202 |
cIndex = catReverse[teamLObjectMode[team]] |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1203 |
RedefineSubset() |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1204 |
updateCost() |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1205 |
updated = true |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1206 |
end |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1207 |
|
13128
11f23afd84f2
Construction Mode: Fix annoying Incoming voice and other sound issues
Wuzzy <Wuzzy2@mail.ru>
parents:
13031
diff
changeset
|
1208 |
if curWep == amCMStructurePlacer or curWep == amCMCratePlacer or curWep == amCMObjectPlacer then |
11f23afd84f2
Construction Mode: Fix annoying Incoming voice and other sound issues
Wuzzy <Wuzzy2@mail.ru>
parents:
13031
diff
changeset
|
1209 |
SetSoundMask(sndIncoming, true) |
11f23afd84f2
Construction Mode: Fix annoying Incoming voice and other sound issues
Wuzzy <Wuzzy2@mail.ru>
parents:
13031
diff
changeset
|
1210 |
else |
11f23afd84f2
Construction Mode: Fix annoying Incoming voice and other sound issues
Wuzzy <Wuzzy2@mail.ru>
parents:
13031
diff
changeset
|
1211 |
SetSoundMask(sndIncoming, false) |
11f23afd84f2
Construction Mode: Fix annoying Incoming voice and other sound issues
Wuzzy <Wuzzy2@mail.ru>
parents:
13031
diff
changeset
|
1212 |
end |
11f23afd84f2
Construction Mode: Fix annoying Incoming voice and other sound issues
Wuzzy <Wuzzy2@mail.ru>
parents:
13031
diff
changeset
|
1213 |
if curWep == amGirder or curWep == amRubber then |
11f23afd84f2
Construction Mode: Fix annoying Incoming voice and other sound issues
Wuzzy <Wuzzy2@mail.ru>
parents:
13031
diff
changeset
|
1214 |
SetSoundMask(sndDenied, true) |
11f23afd84f2
Construction Mode: Fix annoying Incoming voice and other sound issues
Wuzzy <Wuzzy2@mail.ru>
parents:
13031
diff
changeset
|
1215 |
else |
11f23afd84f2
Construction Mode: Fix annoying Incoming voice and other sound issues
Wuzzy <Wuzzy2@mail.ru>
parents:
13031
diff
changeset
|
1216 |
SetSoundMask(sndDenied, false) |
11f23afd84f2
Construction Mode: Fix annoying Incoming voice and other sound issues
Wuzzy <Wuzzy2@mail.ru>
parents:
13031
diff
changeset
|
1217 |
end |
11f23afd84f2
Construction Mode: Fix annoying Incoming voice and other sound issues
Wuzzy <Wuzzy2@mail.ru>
parents:
13031
diff
changeset
|
1218 |
|
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1219 |
if updated then |
12958
7ea62261c481
Construction Mode: Change message color
Wuzzy <Wuzzy2@mail.ru>
parents:
12957
diff
changeset
|
1220 |
AddCaption(loc(cat[cIndex]), GetClanColor(GetHogClan(CurrentHedgehog)), capgrpMessage) |
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1221 |
showModeMessage() |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1222 |
wallsVisible = true |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1223 |
else |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1224 |
wallsVisible = false |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1225 |
end |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1226 |
else |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1227 |
curWep = amNothing |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1228 |
wallsVisible = false |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1229 |
end |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1230 |
end |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1231 |
|
12978
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1232 |
local cursorIcon = nil |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1233 |
local ammoIcon = nil |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1234 |
local ammoIconBorder = nil |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1235 |
|
12979
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1236 |
-- Handle cursor stuff. This displays a sprite under the cursor so you can see what you're going to place. |
12978
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1237 |
function HandleCursor() |
12980
6d328f116044
Construction Mode: Fix cursor icon being displayed on teleport
Wuzzy <Wuzzy2@mail.ru>
parents:
12979
diff
changeset
|
1238 |
if curWep == amCMStructurePlacer or curWep == amCMObjectPlacer or curWep == amCMCratePlacer then |
12978
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1239 |
local dFrame = 0 |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1240 |
local dSprite |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1241 |
local yOffset = 0 |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1242 |
if (cat[cIndex] == "Structure Placement Mode") then |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1243 |
dSprite = sprTarget |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1244 |
dFrame = catFrames[pMode[pIndex]] |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1245 |
elseif (cat[cIndex] == "Mine Placement Mode") then |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1246 |
dSprite = sprCustom2 -- sprMineOff |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1247 |
elseif (cat[cIndex] == "Sticky Mine Placement Mode") then |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1248 |
dSprite = sprCustom3 -- sprSMineOff |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1249 |
elseif (cat[cIndex] == "Barrel Placement Mode") then |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1250 |
dSprite = sprExplosives |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1251 |
elseif (cat[cIndex] == "Health Crate Placement Mode") then |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1252 |
dSprite = sprFAid |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1253 |
elseif (cat[cIndex] == "Weapon Crate Placement Mode") then |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1254 |
dSprite = sprCase |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1255 |
elseif (cat[cIndex] == "Utility Crate Placement Mode") then |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1256 |
dSprite = sprUtility |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1257 |
else |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1258 |
dSprite = sprArrow |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1259 |
end |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1260 |
|
12979
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1261 |
-- Display the gear to be spawned under the cursor |
12978
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1262 |
if not cursorIcon then |
12979
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1263 |
cursorIcon = AddVisualGear(CursorX, CursorY, vgtStraightShot, dSprite, true, 3) |
12978
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1264 |
end |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1265 |
SetVisualGearValues(cursorIcon, CursorX, CursorY, 0, 0, 0, dFrame, 1000, dSprite, 1000) |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1266 |
|
12979
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1267 |
-- Render ammo icon for weapon and utility crate. |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1268 |
-- But hide this from prying eyes of your enemies online! |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1269 |
if IsHogLocal(CurrentHedgehog) then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1270 |
local ammoFrame |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1271 |
if (cat[cIndex] == "Weapon Crate Placement Mode") or (cat[cIndex] == "Utility Crate Placement Mode") then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1272 |
local tArr |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1273 |
if (cat[cIndex] == "Weapon Crate Placement Mode") then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1274 |
tArr = atkArray |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1275 |
else |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1276 |
tArr = utilArray |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1277 |
end |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1278 |
|
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1279 |
-- Get ammo icon |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1280 |
ammoFrame = tArr[pIndex][1] - 1 |
12978
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1281 |
end |
12979
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1282 |
if ammoFrame then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1283 |
local xDisplacement = 42 |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1284 |
local yDisplacement = 42 |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1285 |
local x = CursorX + yDisplacement |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1286 |
local y = CursorY + yDisplacement |
12978
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1287 |
|
12979
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1288 |
-- Border around ammo icon |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1289 |
if not ammoIconBorder then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1290 |
ammoIconBorder = AddVisualGear(x, y, vgtStraightShot, sprCustom1, true, 3) |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1291 |
end |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1292 |
SetVisualGearValues(ammoIconBorder, x, y, 0, 0, 0, 0, 1000, nil, 1000) |
12978
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1293 |
|
12979
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1294 |
-- Ammo icon |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1295 |
if not ammoIcon then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1296 |
ammoIcon = AddVisualGear(x, y, vgtStraightShot, sprAMAmmos, true, 3) |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1297 |
end |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1298 |
SetVisualGearValues(ammoIcon, x, y, 0, 0, 0, ammoFrame, 1000, nil, 1000) |
12978
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1299 |
|
12979
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1300 |
else |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1301 |
-- Cleanup vgears if not placing ammo crates |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1302 |
if ammoIcon then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1303 |
DeleteVisualGear(ammoIcon) |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1304 |
end |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1305 |
if ammoIconBorder then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1306 |
DeleteVisualGear(ammoIconBorder) |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1307 |
end |
12978
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1308 |
end |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1309 |
end |
12980
6d328f116044
Construction Mode: Fix cursor icon being displayed on teleport
Wuzzy <Wuzzy2@mail.ru>
parents:
12979
diff
changeset
|
1310 |
else |
6d328f116044
Construction Mode: Fix cursor icon being displayed on teleport
Wuzzy <Wuzzy2@mail.ru>
parents:
12979
diff
changeset
|
1311 |
-- Cleanup vgears |
6d328f116044
Construction Mode: Fix cursor icon being displayed on teleport
Wuzzy <Wuzzy2@mail.ru>
parents:
12979
diff
changeset
|
1312 |
if cursorIcon then |
6d328f116044
Construction Mode: Fix cursor icon being displayed on teleport
Wuzzy <Wuzzy2@mail.ru>
parents:
12979
diff
changeset
|
1313 |
DeleteVisualGear(cursorIcon) |
6d328f116044
Construction Mode: Fix cursor icon being displayed on teleport
Wuzzy <Wuzzy2@mail.ru>
parents:
12979
diff
changeset
|
1314 |
end |
6d328f116044
Construction Mode: Fix cursor icon being displayed on teleport
Wuzzy <Wuzzy2@mail.ru>
parents:
12979
diff
changeset
|
1315 |
if ammoIcon then |
6d328f116044
Construction Mode: Fix cursor icon being displayed on teleport
Wuzzy <Wuzzy2@mail.ru>
parents:
12979
diff
changeset
|
1316 |
DeleteVisualGear(ammoIcon) |
6d328f116044
Construction Mode: Fix cursor icon being displayed on teleport
Wuzzy <Wuzzy2@mail.ru>
parents:
12979
diff
changeset
|
1317 |
end |
6d328f116044
Construction Mode: Fix cursor icon being displayed on teleport
Wuzzy <Wuzzy2@mail.ru>
parents:
12979
diff
changeset
|
1318 |
if ammoIconBorder then |
6d328f116044
Construction Mode: Fix cursor icon being displayed on teleport
Wuzzy <Wuzzy2@mail.ru>
parents:
12979
diff
changeset
|
1319 |
DeleteVisualGear(ammoIconBorder) |
6d328f116044
Construction Mode: Fix cursor icon being displayed on teleport
Wuzzy <Wuzzy2@mail.ru>
parents:
12979
diff
changeset
|
1320 |
end |
12978
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1321 |
end |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1322 |
end |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1323 |
|
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1324 |
function onVisualGearDelete(vg) |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1325 |
if vg ~= nil then |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1326 |
if vg == cursorIcon then |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1327 |
cursorIcon = nil |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1328 |
elseif vg == ammoIcon then |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1329 |
ammoIcon = nil |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1330 |
elseif vg == ammoIconBorder then |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1331 |
ammoIconBorder = nil |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1332 |
end |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1333 |
end |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1334 |
end |
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1335 |
|
11015 | 1336 |
-- called in onGameTick() |
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1337 |
function HandleConstructionMode() |
11015 | 1338 |
|
11728
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
1339 |
HandleStructures() |
456f4e9f9dce
Construction Mode: Update structure overlay each tick, thus falling smoothly
Wuzzy <almikes@aol.com>
parents:
11727
diff
changeset
|
1340 |
|
11015 | 1341 |
if CurrentHedgehog ~= nil then |
1342 |
||
1343 |
if wallsVisible == true then |
|
1344 |
HandleBorderEffects() |
|
1345 |
end |
|
1346 |
||
12978
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1347 |
HandleCursor() |
9e4fc0b8ed1c
Construction Mode: Show selected object at cursor and crate preview
Wuzzy <Wuzzy2@mail.ru>
parents:
12977
diff
changeset
|
1348 |
|
11732
1c09b8d050ce
Construction Mode: Fix timer issues
Wuzzy <almikes@aol.com>
parents:
11731
diff
changeset
|
1349 |
if GameTime % 100 == 0 then |
11015 | 1350 |
|
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1351 |
-- Force-update the construction mode tools every 100ms. |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1352 |
-- This makes sure the announcer messages don't disappear |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1353 |
-- while the tool is selected. |
12950
0e698562d76d
More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents:
12949
diff
changeset
|
1354 |
if (band(GetState(CurrentHedgehog), gstHHDriven) ~= 0) then |
13027
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
1355 |
RenderClanPower() |
12950
0e698562d76d
More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents:
12949
diff
changeset
|
1356 |
curWep = GetCurAmmoType() |
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1357 |
HandleConstructionModeTools() |
11015 | 1358 |
else |
12962
08f91e9e3d2c
Construction Mode: Hide power tag when it's nobody's turn
Wuzzy <Wuzzy2@mail.ru>
parents:
12961
diff
changeset
|
1359 |
DeleteClanPowerTag() |
12950
0e698562d76d
More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents:
12949
diff
changeset
|
1360 |
curWep = amNothing |
11015 | 1361 |
end |
1362 |
||
1363 |
end |
|
1364 |
||
1365 |
end |
|
1366 |
||
1367 |
-- some kind of target detected, tell me your story |
|
1368 |
if cGear ~= nil then |
|
1369 |
||
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
1370 |
local x,y = GetGearTarget(cGear) |
11015 | 1371 |
|
1372 |
if GetGearType(cGear) == gtAirAttack then |
|
1373 |
DeleteGear(cGear) |
|
1374 |
PlaceObject(x, y) |
|
1375 |
elseif GetGearType(cGear) == gtTeleport then |
|
1376 |
||
1377 |
CheckTeleport(cGear, x, y) |
|
1378 |
cGear = nil |
|
1379 |
elseif GetGearType(cGear) == gtGirder then |
|
1380 |
||
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
1381 |
currentGirderRotation = GetState(cGear) |
11015 | 1382 |
|
11723
f699978eae19
Throw away old out-commented Construction Mode code
Wuzzy <almikes@aol.com>
parents:
11722
diff
changeset
|
1383 |
PlaceObject(x, y) |
11015 | 1384 |
end |
1385 |
||
1386 |
end |
|
1387 |
||
1388 |
end |
|
1389 |
||
1390 |
--------------------------------------------------------------- |
|
1391 |
-- Cycle through selection subsets (by changing pIndex, pMode) |
|
1392 |
-- i.e health of barrels, medikits, |
|
1393 |
-- timer of mines |
|
1394 |
-- contents of crates |
|
1395 |
-- gears to reposition etc. |
|
1396 |
--------------------------------------------------------------- |
|
1397 |
||
1398 |
function updateCost() |
|
1399 |
||
11765
001994046892
Construction Mode: Don't update ticker for cursor keys when hedgehog is not under control anymore
Wuzzy <almikes@aol.com>
parents:
11764
diff
changeset
|
1400 |
if CurrentHedgehog == nil or band(GetState(CurrentHedgehog), gstHHDriven) == 0 then return end |
001994046892
Construction Mode: Don't update ticker for cursor keys when hedgehog is not under control anymore
Wuzzy <almikes@aol.com>
parents:
11764
diff
changeset
|
1401 |
|
12979
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1402 |
-- Fallback cost |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1403 |
placedExpense = 1 |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1404 |
if pMode[pIndex] == "Healing Station" then |
11015 | 1405 |
placedExpense = 50 |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1406 |
elseif pMode[pIndex] == "Weapon Filter" then |
11015 | 1407 |
placedExpense = 50 |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1408 |
elseif pMode[pIndex] == "Bio-Filter" then |
11015 | 1409 |
placedExpense = 100 |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1410 |
elseif pMode[pIndex] == "Respawner" then |
11015 | 1411 |
placedExpense = 300 |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1412 |
elseif pMode[pIndex] == "Teleportation Node" then |
11015 | 1413 |
placedExpense = 30 |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1414 |
elseif pMode[pIndex] == "Support Station" then |
11015 | 1415 |
placedExpense = 50 |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1416 |
elseif pMode[pIndex] == "Construction Station" then |
11015 | 1417 |
placedExpense = 50 |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1418 |
elseif pMode[pIndex] == "Generator" then |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1419 |
placedExpense = 300 |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1420 |
elseif pMode[pIndex] == "Reflector Shield" then |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1421 |
placedExpense = 200 |
11713
d5d798172875
Fix crate costs in Construction Mode being all the same (fixes #15)
Wuzzy <almikes@aol.com>
parents:
11301
diff
changeset
|
1422 |
elseif cat[cIndex] == "Weapon Crate Placement Mode" then |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1423 |
placedExpense = atkArray[pIndex][2] |
11713
d5d798172875
Fix crate costs in Construction Mode being all the same (fixes #15)
Wuzzy <almikes@aol.com>
parents:
11301
diff
changeset
|
1424 |
elseif cat[cIndex] == "Utility Crate Placement Mode" then |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1425 |
placedExpense = utilArray[pIndex][2] |
12979
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1426 |
elseif cat[cIndex] == "Health Crate Placement Mode" then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1427 |
placedExpense = 5 |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1428 |
elseif cat[cIndex] == "Mine Placement Mode" then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1429 |
placedExpense = 15 |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1430 |
elseif cat[cIndex] == "Sticky Mine Placement Mode" then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1431 |
placedExpense = 20 |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1432 |
elseif cat[cIndex] == "Barrel Placement Mode" then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1433 |
placedExpense = 10 |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1434 |
elseif cat[cIndex] == "Girder Placement Mode" then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1435 |
placedExpense = 1 |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1436 |
elseif cat[cIndex] == "Rubber Placement Mode" then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1437 |
placedExpense = 3 |
11015 | 1438 |
end |
1439 |
||
12979
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1440 |
-- Hide cost from spectators. |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1441 |
-- Also, this information is hidden cuz it could be used to infer e.g. crate contents. |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1442 |
if IsHogLocal(CurrentHedgehog) then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1443 |
AddCaption(string.format(loc("Cost: %d"), placedExpense), GetClanColor(GetHogClan(CurrentHedgehog)), capgrpAmmostate) |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1444 |
end |
11015 | 1445 |
|
1446 |
end |
|
1447 |
||
12949
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1448 |
-- Should be called when the index of the mode was changed by the player. |
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1449 |
-- E.g. new weapon crate contents or structure type |
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1450 |
function updateIndex() |
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1451 |
if (curWep == amGirder) or (curWep == amRubber) or (curWep == amCMStructurePlacer) or (curWep == amCMCratePlacer) or (curWep == amCMObjectPlacer) then |
11719
8575b8b76373
Construction Mode: Show mine timer in seconds
Wuzzy <almikes@aol.com>
parents:
11718
diff
changeset
|
1452 |
showModeMessage() |
11015 | 1453 |
updateCost() |
1454 |
end |
|
1455 |
||
12949
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1456 |
-- Update team variables so the previous state can be restored later |
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1457 |
if CurrentHedgehog == nil or band(GetState(CurrentHedgehog), gstHHDriven) == 0 then return end |
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1458 |
local val = pMode[pIndex] |
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1459 |
local team = GetHogTeamName(CurrentHedgehog) |
12950
0e698562d76d
More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents:
12949
diff
changeset
|
1460 |
if cat[cIndex] == "Structure Placement Mode" then |
0e698562d76d
More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents:
12949
diff
changeset
|
1461 |
teamLStructIndex[team] = pIndex |
0e698562d76d
More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents:
12949
diff
changeset
|
1462 |
elseif cat[cIndex] == "Mine Placement Mode" then |
12949
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1463 |
teamLMineIndex[team] = pIndex |
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1464 |
elseif cat[cIndex] == "Weapon Crate Placement Mode" then |
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1465 |
teamLWeapIndex[team] = pIndex |
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1466 |
elseif cat[cIndex] == "Utility Crate Placement Mode" then |
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1467 |
teamLUtilIndex[team] = pIndex |
11015 | 1468 |
end |
1469 |
end |
|
1470 |
||
11735
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11734
diff
changeset
|
1471 |
function showModeMessage() |
11765
001994046892
Construction Mode: Don't update ticker for cursor keys when hedgehog is not under control anymore
Wuzzy <almikes@aol.com>
parents:
11764
diff
changeset
|
1472 |
if CurrentHedgehog == nil or band(GetState(CurrentHedgehog), gstHHDriven) == 0 then return end |
11735
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11734
diff
changeset
|
1473 |
local val = pMode[pIndex] |
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11734
diff
changeset
|
1474 |
local str |
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11734
diff
changeset
|
1475 |
if cat[cIndex] == "Mine Placement Mode" then |
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11734
diff
changeset
|
1476 |
-- timer in seconds |
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11734
diff
changeset
|
1477 |
str = string.format(loc("%d sec"), div(val, 1000)) |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1478 |
elseif cat[cIndex] == "Structure Placement Mode" then |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1479 |
str = loc(val) |
11735
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11734
diff
changeset
|
1480 |
elseif cat[cIndex] == "Girder Placement Mode" then |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1481 |
str = GetAmmoName(amGirder) |
11735
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11734
diff
changeset
|
1482 |
elseif cat[cIndex] == "Rubber Placement Mode" then |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1483 |
str = GetAmmoName(amRubber) |
12979
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1484 |
elseif cat[cIndex] == "Sticky Mine Placement Mode" then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1485 |
str = GetAmmoName(amSMine) |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1486 |
elseif cat[cIndex] == "Weapon Crate Placement Mode" |
12979
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1487 |
or cat[cIndex] == "Utility Crate Placement Mode" then |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1488 |
str = GetAmmoName(val) |
12979
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1489 |
elseif cat[cIndex] == "Health Crate Placement Mode" then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1490 |
str = tostring(val) |
11735
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11734
diff
changeset
|
1491 |
else |
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11734
diff
changeset
|
1492 |
str = tostring(val) |
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11734
diff
changeset
|
1493 |
end |
12979
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1494 |
-- Hide the mode message from prying enemy eyes except for the structure placer. |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1495 |
-- So stuff like crate contents or mine timers are secret. |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1496 |
if cat[cIndex] == "Structure Placement Mode" or IsHogLocal(CurrentHedgehog) then |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1497 |
AddCaption(str, GetClanColor(GetHogClan(CurrentHedgehog)), capgrpMessage2) |
f92e9b1df096
Construction Mode: Hide crate contents and object/crate placer submodes from prying eyes over the net
Wuzzy <Wuzzy2@mail.ru>
parents:
12978
diff
changeset
|
1498 |
end |
11735
8cc9c8a43dcc
Construction Mode: Fix Girder/Rubber mode sometimes show nil
Wuzzy <almikes@aol.com>
parents:
11734
diff
changeset
|
1499 |
end |
11015 | 1500 |
|
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1501 |
function rotateMode(pDir) |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1502 |
curWep = GetCurAmmoType() |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1503 |
local foundMatch = false |
11015 | 1504 |
while(foundMatch == false) do |
1505 |
cIndex = cIndex + pDir |
|
1506 |
||
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1507 |
if (cIndex == 1) or (cIndex == 2) then -- we no longer hit girder by normal means |
11015 | 1508 |
cIndex = #cat |
1509 |
elseif cIndex > #cat then |
|
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1510 |
cIndex = 3 -- we no longer hit girder by normal means |
11015 | 1511 |
end |
1512 |
||
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1513 |
if (GetCurAmmoType() == amCMCratePlacer) then |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1514 |
if (cat[cIndex] == "Health Crate Placement Mode") or |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1515 |
(cat[cIndex] == "Weapon Crate Placement Mode") or |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1516 |
(cat[cIndex] == "Utility Crate Placement Mode") then |
11015 | 1517 |
foundMatch = true |
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1518 |
end |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1519 |
elseif (GetCurAmmoType() == amCMObjectPlacer) then |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1520 |
if (cat[cIndex] == "Mine Placement Mode") or |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1521 |
(cat[cIndex] == "Sticky Mine Placement Mode") or |
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1522 |
(cat[cIndex] == "Barrel Placement Mode") then |
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1523 |
foundMatch = true |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1524 |
end |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1525 |
elseif (GetCurAmmoType() == amCMStructurePlacer) then |
12956
37b81c20358b
Refactor Construction Mode to NOT use localized strings as identifiers
Wuzzy <Wuzzy2@mail.ru>
parents:
12955
diff
changeset
|
1526 |
if cat[cIndex] == "Structure Placement Mode" then |
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1527 |
foundMatch = true |
11015 | 1528 |
end |
1529 |
end |
|
1530 |
end |
|
1531 |
||
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1532 |
if foundMatch == true then |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1533 |
RedefineSubset() |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1534 |
--updateCost() |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1535 |
HandleConstructionModeTools() |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1536 |
end |
11015 | 1537 |
end |
1538 |
||
12953
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1539 |
--------------------- |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1540 |
-- PLAYER CONTROLS -- |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1541 |
--------------------- |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1542 |
|
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1543 |
-- [Timer X]: Used as shortcut key for faster selection of stuff |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1544 |
function onTimer(key) |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1545 |
curWep = GetCurAmmoType() |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1546 |
|
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1547 |
if (curWep == amCMStructurePlacer) then |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1548 |
-- Select structure directly in structure placer |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1549 |
-- [Timer X] selects structures 1-5 |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1550 |
-- [Precise]+[Timer X] selects structures 6-10 |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1551 |
|
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1552 |
local structureID = key |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1553 |
local precise = band(GetGearMessage(CurrentHedgehog), gmPrecise) ~= 0 |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1554 |
if precise then |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1555 |
structureID = structureID + 5 |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1556 |
end |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1557 |
-- Check for valid pIndex |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1558 |
if structureID <= #pMode then |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1559 |
pIndex = structureID |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1560 |
updateIndex() |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1561 |
end |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1562 |
elseif (curWep == amCMObjectPlacer) then |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1563 |
-- [Timer X]: Set mine time 1-5 |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1564 |
if cat[cIndex] == "Mine Placement Mode" then |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1565 |
local index = key + 1 |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1566 |
if key <= #pMode then |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1567 |
pIndex = index |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1568 |
updateIndex() |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1569 |
end |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1570 |
end |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1571 |
end |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1572 |
|
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1573 |
end |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1574 |
|
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1575 |
-- [Switch]: Set mine time to 0 (only in mine placement mode) |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1576 |
function onSwitch() |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1577 |
curWep = GetCurAmmoType() |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1578 |
if (curWep == amCMObjectPlacer) then |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1579 |
pIndex = 1 |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1580 |
updateIndex() |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1581 |
end |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1582 |
end |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1583 |
|
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1584 |
-- [Left]/[Right]: Change submode (e.g. structure type) of any Construction Mode tool or rotate girder/rubber |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1585 |
function onLeft() |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1586 |
curWep = GetCurAmmoType() |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1587 |
if (curWep == amGirder) or (curWep == amRubber) or (curWep == amCMStructurePlacer) or (curWep == amCMCratePlacer) or (curWep == amCMObjectPlacer) then |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1588 |
pIndex = pIndex - 1 |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1589 |
if pIndex == 0 then |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1590 |
pIndex = #pMode |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1591 |
end |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1592 |
updateIndex() |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1593 |
end |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1594 |
end |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1595 |
function onRight() |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1596 |
curWep = GetCurAmmoType() |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1597 |
if (curWep == amGirder) or (curWep == amRubber) or (curWep == amCMStructurePlacer) or (curWep == amCMCratePlacer) or (curWep == amCMObjectPlacer) then |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1598 |
pIndex = pIndex + 1 |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1599 |
if pIndex > #pMode then |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1600 |
pIndex = 1 |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1601 |
end |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1602 |
updateIndex() |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1603 |
end |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1604 |
end |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1605 |
|
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1606 |
-- [Up]/[Down] |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1607 |
-- Cycle through the primary categories |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1608 |
-- (by changing cIndex) i.e. mine, sticky mine, |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1609 |
-- barrels, health/weapon/utility crate. |
11015 | 1610 |
function onUp() |
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1611 |
curWep = GetCurAmmoType() |
12946
ffbd31afed96
HedgeEditor, Construction Mode: Refactor code by adding fake ammo type variables
Wuzzy <Wuzzy2@mail.ru>
parents:
12945
diff
changeset
|
1612 |
if ( (curWep == amCMCratePlacer) or (curWep == amCMObjectPlacer) ) then |
12950
0e698562d76d
More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents:
12949
diff
changeset
|
1613 |
if CurrentHedgehog ~= nil and band(GetState(CurrentHedgehog), gstHHDriven) ~= 0 then |
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1614 |
rotateMode(-1) |
11765
001994046892
Construction Mode: Don't update ticker for cursor keys when hedgehog is not under control anymore
Wuzzy <almikes@aol.com>
parents:
11764
diff
changeset
|
1615 |
end |
11015 | 1616 |
end |
1617 |
||
1618 |
end |
|
1619 |
function onDown() |
|
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1620 |
curWep = GetCurAmmoType() |
12946
ffbd31afed96
HedgeEditor, Construction Mode: Refactor code by adding fake ammo type variables
Wuzzy <Wuzzy2@mail.ru>
parents:
12945
diff
changeset
|
1621 |
if ( (curWep == amCMCratePlacer) or (curWep == amCMObjectPlacer) ) then |
12950
0e698562d76d
More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents:
12949
diff
changeset
|
1622 |
if CurrentHedgehog ~= nil and band(GetState(CurrentHedgehog), gstHHDriven) ~= 0 then |
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1623 |
rotateMode(1) |
11765
001994046892
Construction Mode: Don't update ticker for cursor keys when hedgehog is not under control anymore
Wuzzy <almikes@aol.com>
parents:
11764
diff
changeset
|
1624 |
end |
11015 | 1625 |
end |
1626 |
end |
|
1627 |
||
12953
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1628 |
-- [Set weapon]/[Slot X]: Just update internal stuff |
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1629 |
onSetWeapon = HandleConstructionModeTools() |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1630 |
onSlot = onSetWeapon |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1631 |
|
11015 | 1632 |
---------------------------- |
1633 |
-- standard event handlers |
|
1634 |
---------------------------- |
|
1635 |
||
11725
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
1636 |
-- Parses a positive integer |
12097
9fe7eb1f7df2
Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents:
12096
diff
changeset
|
1637 |
function parseInt(str, default, infinityPermitted) |
9fe7eb1f7df2
Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents:
12096
diff
changeset
|
1638 |
if str == "inf" and infinityPermitted then |
9fe7eb1f7df2
Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents:
12096
diff
changeset
|
1639 |
return "inf" |
9fe7eb1f7df2
Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents:
12096
diff
changeset
|
1640 |
end |
11725
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
1641 |
if str == nil then return default end |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
1642 |
local s = string.match(str, "(%d*)") |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
1643 |
if s ~= nil then |
11733
373150be0356
Construction Mode: Sanity-check numbers from script parameter
Wuzzy <almikes@aol.com>
parents:
11732
diff
changeset
|
1644 |
return math.min(4294967295, math.max(0, tonumber(s))) |
11725
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
1645 |
else |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
1646 |
return nil |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
1647 |
end |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
1648 |
end |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
1649 |
|
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
1650 |
-- Parse parameters |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
1651 |
function onParameters() |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
1652 |
parseParams() |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
1653 |
conf_initialEnergy = parseInt(params["initialenergy"], conf_initialEnergy) |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
1654 |
conf_energyPerRound = parseInt(params["energyperround"], conf_energyPerRound) |
12097
9fe7eb1f7df2
Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents:
12096
diff
changeset
|
1655 |
conf_maxEnergy = parseInt(params["maxenergy"], conf_maxEnergy, true) |
9fe7eb1f7df2
Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents:
12096
diff
changeset
|
1656 |
conf_cratesPerRound = parseInt(params["cratesperround"], conf_cratesPerRound, true) |
11725
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
1657 |
end |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
1658 |
|
11015 | 1659 |
function onGameInit() |
1660 |
||
1661 |
Explosives = 0 |
|
1662 |
MinesNum = 0 |
|
1663 |
||
1664 |
EnableGameFlags(gfInfAttack) |
|
12098
0d6e0ed36c9e
Construction Mode: Fix free girder/rubber placement near hog
Wuzzy <almikes@aol.com>
parents:
12097
diff
changeset
|
1665 |
-- This is a hack to make sure all girder/rubber placement is handled by Construction Mode to overwrite the default behaviour |
0d6e0ed36c9e
Construction Mode: Fix free girder/rubber placement near hog
Wuzzy <almikes@aol.com>
parents:
12097
diff
changeset
|
1666 |
SetMaxBuildDistance(1) |
11015 | 1667 |
|
11886
34ede05e4d4f
Remove old Fort Mode from frontend
Wuzzy <almikes@aol.com>
parents:
11767
diff
changeset
|
1668 |
fortMode = MapGen == mgForts |
11738
67049c8dedd1
make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents:
11737
diff
changeset
|
1669 |
|
67049c8dedd1
make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents:
11737
diff
changeset
|
1670 |
-- if there are forts, let engine place the hogs on them |
67049c8dedd1
make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents:
11737
diff
changeset
|
1671 |
if fortMode then |
67049c8dedd1
make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents:
11737
diff
changeset
|
1672 |
EnableGameFlags(gfDivideTeams) |
67049c8dedd1
make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents:
11737
diff
changeset
|
1673 |
end |
11015 | 1674 |
|
1675 |
RedefineSubset() |
|
1676 |
||
1677 |
end |
|
1678 |
||
1679 |
function initialSetup(gear) |
|
1680 |
||
12959
50dd4f88daf4
Always remove mine strike in Construction Mode
Wuzzy <Wuzzy2@mail.ru>
parents:
12958
diff
changeset
|
1681 |
-- Engine already placed hogs in fort mode |
11738
67049c8dedd1
make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents:
11737
diff
changeset
|
1682 |
if not fortMode then |
67049c8dedd1
make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents:
11737
diff
changeset
|
1683 |
FindPlace(gear, false, clanBoundsSX[GetHogClan(gear)], clanBoundsEX[GetHogClan(gear)],true) |
67049c8dedd1
make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents:
11737
diff
changeset
|
1684 |
end |
11015 | 1685 |
|
12959
50dd4f88daf4
Always remove mine strike in Construction Mode
Wuzzy <Wuzzy2@mail.ru>
parents:
12958
diff
changeset
|
1686 |
-- Add core ammo |
12946
ffbd31afed96
HedgeEditor, Construction Mode: Refactor code by adding fake ammo type variables
Wuzzy <Wuzzy2@mail.ru>
parents:
12945
diff
changeset
|
1687 |
AddAmmo(gear, amCMStructurePlacer, 100) |
11015 | 1688 |
AddAmmo(gear, amSkip, 100) |
1689 |
||
12960
4fbe2d18df9c
Construction Mode: Now amSwitch amount can be changed in weapon scheme
Wuzzy <Wuzzy2@mail.ru>
parents:
12959
diff
changeset
|
1690 |
-- Remove special Construction Mode stuff. |
4fbe2d18df9c
Construction Mode: Now amSwitch amount can be changed in weapon scheme
Wuzzy <Wuzzy2@mail.ru>
parents:
12959
diff
changeset
|
1691 |
-- This stuff is added and removed dynamically based on |
4fbe2d18df9c
Construction Mode: Now amSwitch amount can be changed in weapon scheme
Wuzzy <Wuzzy2@mail.ru>
parents:
12959
diff
changeset
|
1692 |
-- proximity to structures. |
12959
50dd4f88daf4
Always remove mine strike in Construction Mode
Wuzzy <Wuzzy2@mail.ru>
parents:
12958
diff
changeset
|
1693 |
AddAmmo(gear, amCMObjectPlacer, 0) |
50dd4f88daf4
Always remove mine strike in Construction Mode
Wuzzy <Wuzzy2@mail.ru>
parents:
12958
diff
changeset
|
1694 |
AddAmmo(gear, amCMCratePlacer, 0) |
12960
4fbe2d18df9c
Construction Mode: Now amSwitch amount can be changed in weapon scheme
Wuzzy <Wuzzy2@mail.ru>
parents:
12959
diff
changeset
|
1695 |
AddAmmo(gear, amGirder, 0) |
4fbe2d18df9c
Construction Mode: Now amSwitch amount can be changed in weapon scheme
Wuzzy <Wuzzy2@mail.ru>
parents:
12959
diff
changeset
|
1696 |
AddAmmo(gear, amRubber, 0) |
4fbe2d18df9c
Construction Mode: Now amSwitch amount can be changed in weapon scheme
Wuzzy <Wuzzy2@mail.ru>
parents:
12959
diff
changeset
|
1697 |
AddAmmo(gear, amTeleport, 0) |
12959
50dd4f88daf4
Always remove mine strike in Construction Mode
Wuzzy <Wuzzy2@mail.ru>
parents:
12958
diff
changeset
|
1698 |
|
12977
d82e4e583805
Construction Mode: Fix annoying extra messages when using object placer
Wuzzy <Wuzzy2@mail.ru>
parents:
12974
diff
changeset
|
1699 |
-- Drill strike is broken, so we force-remove it |
d82e4e583805
Construction Mode: Fix annoying extra messages when using object placer
Wuzzy <Wuzzy2@mail.ru>
parents:
12974
diff
changeset
|
1700 |
AddAmmo(gear, amDrillStrike, 0) |
12960
4fbe2d18df9c
Construction Mode: Now amSwitch amount can be changed in weapon scheme
Wuzzy <Wuzzy2@mail.ru>
parents:
12959
diff
changeset
|
1701 |
|
4fbe2d18df9c
Construction Mode: Now amSwitch amount can be changed in weapon scheme
Wuzzy <Wuzzy2@mail.ru>
parents:
12959
diff
changeset
|
1702 |
-- Everything else is set by the weapon scheme. |
4fbe2d18df9c
Construction Mode: Now amSwitch amount can be changed in weapon scheme
Wuzzy <Wuzzy2@mail.ru>
parents:
12959
diff
changeset
|
1703 |
-- Infinite switch is recommended. |
11015 | 1704 |
end |
1705 |
||
1706 |
function onGameStart() |
|
1707 |
||
1708 |
trackTeams() |
|
1709 |
||
1710 |
ShowMission ( |
|
1711 |
loc("CONSTRUCTION MODE"), |
|
13024
880662cf41ee
Add team score next to team bars for CTF_Blizard, Control, CTF, Mutant, Space Invasion
Wuzzy <Wuzzy2@mail.ru>
parents:
12980
diff
changeset
|
1712 |
loc("A Hedgewars mini-game"), |
11015 | 1713 |
loc("Build a fortress and destroy your enemy.") .. "|" .. |
1714 |
loc("There are a variety of structures available to aid you.") .. "|" .. |
|
11947
abdb24f0c2d9
Change descriptions for special Construction Mode tools
Wuzzy <almikes@aol.com>
parents:
11886
diff
changeset
|
1715 |
loc("Use the structure placer to place structures.") |
12977
d82e4e583805
Construction Mode: Fix annoying extra messages when using object placer
Wuzzy <Wuzzy2@mail.ru>
parents:
12974
diff
changeset
|
1716 |
, -amCMStructurePlacer, 5000 |
11015 | 1717 |
) |
1718 |
||
12946
ffbd31afed96
HedgeEditor, Construction Mode: Refactor code by adding fake ammo type variables
Wuzzy <Wuzzy2@mail.ru>
parents:
12945
diff
changeset
|
1719 |
SetAmmoTexts(amCMStructurePlacer, loc("Structure Placer"), loc("Construction Mode tool"), loc("Build one of multiple different structures|to aid you in victory, at the cost of energy.") .. "| |" .. |
12948
3feab46234dd
Construction Mode: Sort structure types roughly by importance and convenience
Wuzzy <Wuzzy2@mail.ru>
parents:
12947
diff
changeset
|
1720 |
loc("Support Station: Allows placement of crates.") .. "|".. |
3feab46234dd
Construction Mode: Sort structure types roughly by importance and convenience
Wuzzy <Wuzzy2@mail.ru>
parents:
12947
diff
changeset
|
1721 |
loc("Construction Station: Allows placement of| girders, rubber, mines, sticky mines| and barrels.") .. "|" .. |
11947
abdb24f0c2d9
Change descriptions for special Construction Mode tools
Wuzzy <almikes@aol.com>
parents:
11886
diff
changeset
|
1722 |
loc("Healing Station: Heals nearby hogs.") .. "|" .. |
12948
3feab46234dd
Construction Mode: Sort structure types roughly by importance and convenience
Wuzzy <Wuzzy2@mail.ru>
parents:
12947
diff
changeset
|
1723 |
loc("Teleportation Node: Allows teleportation| between other nodes.") .. "|" .. |
3feab46234dd
Construction Mode: Sort structure types roughly by importance and convenience
Wuzzy <Wuzzy2@mail.ru>
parents:
12947
diff
changeset
|
1724 |
loc("Weapon Filter: Dematerializes all ammo| carried by enemies entering it.") .. "|" .. |
11947
abdb24f0c2d9
Change descriptions for special Construction Mode tools
Wuzzy <almikes@aol.com>
parents:
11886
diff
changeset
|
1725 |
loc("Bio-Filter: Aggressively removes enemies.") .. "|" .. |
abdb24f0c2d9
Change descriptions for special Construction Mode tools
Wuzzy <almikes@aol.com>
parents:
11886
diff
changeset
|
1726 |
loc("Reflector Shield: Reflects enemy projectiles.") .. "|" .. |
abdb24f0c2d9
Change descriptions for special Construction Mode tools
Wuzzy <almikes@aol.com>
parents:
11886
diff
changeset
|
1727 |
loc("Respawner: Resurrects dead hogs.") .. "|" .. |
12947
ca23981ec219
Add a few key shortcuts in Costruction Mode
Wuzzy <Wuzzy2@mail.ru>
parents:
12946
diff
changeset
|
1728 |
loc("Generator: Generates energy.") .. "|" .. |
12948
3feab46234dd
Construction Mode: Sort structure types roughly by importance and convenience
Wuzzy <Wuzzy2@mail.ru>
parents:
12947
diff
changeset
|
1729 |
" |" .. |
11947
abdb24f0c2d9
Change descriptions for special Construction Mode tools
Wuzzy <almikes@aol.com>
parents:
11886
diff
changeset
|
1730 |
|
12947
ca23981ec219
Add a few key shortcuts in Costruction Mode
Wuzzy <Wuzzy2@mail.ru>
parents:
12946
diff
changeset
|
1731 |
loc("Left/right: Choose structure type").."|".. |
ca23981ec219
Add a few key shortcuts in Costruction Mode
Wuzzy <Wuzzy2@mail.ru>
parents:
12946
diff
changeset
|
1732 |
loc("1-5, Precise + 1-4: Choose structure type").."|".. |
ca23981ec219
Add a few key shortcuts in Costruction Mode
Wuzzy <Wuzzy2@mail.ru>
parents:
12946
diff
changeset
|
1733 |
loc("Cursor: Build structure")) |
11947
abdb24f0c2d9
Change descriptions for special Construction Mode tools
Wuzzy <almikes@aol.com>
parents:
11886
diff
changeset
|
1734 |
|
12097
9fe7eb1f7df2
Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents:
12096
diff
changeset
|
1735 |
local txt_crateLimit = "" |
9fe7eb1f7df2
Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents:
12096
diff
changeset
|
1736 |
if conf_cratesPerRound ~= "inf" then |
9fe7eb1f7df2
Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents:
12096
diff
changeset
|
1737 |
txt_crateLimit = string.format(loc("You may only place %d crates per round."), conf_cratesPerRound) .. "|" |
9fe7eb1f7df2
Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents:
12096
diff
changeset
|
1738 |
end |
9fe7eb1f7df2
Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents:
12096
diff
changeset
|
1739 |
|
12946
ffbd31afed96
HedgeEditor, Construction Mode: Refactor code by adding fake ammo type variables
Wuzzy <Wuzzy2@mail.ru>
parents:
12945
diff
changeset
|
1740 |
SetAmmoTexts(amCMCratePlacer, loc("Crate Placer"), loc("Construction Mode tool"), |
12097
9fe7eb1f7df2
Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents:
12096
diff
changeset
|
1741 |
loc("This allows you to create a crate anywhere|within your clan's area of influence,|at the cost of energy.") .. "|" .. |
9fe7eb1f7df2
Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents:
12096
diff
changeset
|
1742 |
txt_crateLimit .. |
12948
3feab46234dd
Construction Mode: Sort structure types roughly by importance and convenience
Wuzzy <Wuzzy2@mail.ru>
parents:
12947
diff
changeset
|
1743 |
loc("Up/down: Choose crate type") .. "|" .. |
12097
9fe7eb1f7df2
Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents:
12096
diff
changeset
|
1744 |
loc("Left/right: Choose crate contents") .. "|" .. |
9fe7eb1f7df2
Construction Mode: Turn crate limit into a script parameter
Wuzzy <almikes@aol.com>
parents:
12096
diff
changeset
|
1745 |
loc("|Cursor: Place crate")) |
12947
ca23981ec219
Add a few key shortcuts in Costruction Mode
Wuzzy <Wuzzy2@mail.ru>
parents:
12946
diff
changeset
|
1746 |
SetAmmoTexts(amCMObjectPlacer, loc("Object Placer"), loc("Construction Mode tool"), |
ca23981ec219
Add a few key shortcuts in Costruction Mode
Wuzzy <Wuzzy2@mail.ru>
parents:
12946
diff
changeset
|
1747 |
loc("This allows you to create and place mines,|sticky mines and barrels anywhere within your|clan's area of influence at the cost of energy.").."|".. |
ca23981ec219
Add a few key shortcuts in Costruction Mode
Wuzzy <Wuzzy2@mail.ru>
parents:
12946
diff
changeset
|
1748 |
loc("Up/down: Choose object type|1-5/Switch/Left/Right: Choose mine timer|Cursor: Place object") |
ca23981ec219
Add a few key shortcuts in Costruction Mode
Wuzzy <Wuzzy2@mail.ru>
parents:
12946
diff
changeset
|
1749 |
) |
11015 | 1750 |
|
12341
fbc268170015
Construction Mode: Mention teleportation restriction in tooltip
Wuzzy <almikes@aol.com>
parents:
12219
diff
changeset
|
1751 |
SetAmmoDescriptionAppendix(amTeleport, loc("It only works in teleportation nodes of your own clan.")) |
fbc268170015
Construction Mode: Mention teleportation restriction in tooltip
Wuzzy <almikes@aol.com>
parents:
12219
diff
changeset
|
1752 |
|
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
1753 |
local sCirc = AddVisualGear(0,0,vgtCircle,0,true) |
11015 | 1754 |
SetVisualGearValues(sCirc, 0, 0, 100, 255, 1, 10, 0, 40, 3, 0x00000000) |
1755 |
||
1756 |
for i = 0, ClansCount-1 do |
|
11987
6f4b96669f9d
Fix Construction Mode screwing up when initialenergy > maxenergy
Wuzzy <almikes@aol.com>
parents:
11986
diff
changeset
|
1757 |
clanPower[i] = math.min(conf_initialEnergy, conf_maxEnergy) |
12949
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1758 |
|
11015 | 1759 |
clanUsedExtraTime[i] = false |
1760 |
clanCratesSpawned[i] = 0 |
|
11726
8c1a30d4cbc8
Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents:
11725
diff
changeset
|
1761 |
clanFirstTurn[i] = true |
11015 | 1762 |
|
1763 |
end |
|
12949
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1764 |
for i = 0, TeamsCount-1 do |
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1765 |
local team = GetTeamName(i) |
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1766 |
teamLStructIndex[team] = 1 |
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1767 |
teamLObjectMode[team] = "Mine Placement Mode" |
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1768 |
teamLCrateMode[team] = "Weapon Crate Placement Mode" |
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1769 |
teamLMineIndex[team] = 1 |
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1770 |
teamLWeapIndex[team] = 1 |
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1771 |
teamLUtilIndex[team] = 1 |
13027
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
1772 |
SetTeamLabel(team, tostring(clanPower[GetTeamClan(team)])) |
12949
712ae7ff8c3d
Construction Mode: Remember previous selection of pIndex
Wuzzy <Wuzzy2@mail.ru>
parents:
12948
diff
changeset
|
1773 |
end |
11015 | 1774 |
|
12954
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
1775 |
local tMapWidth = RightX - LeftX |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
1776 |
local tMapHeight = WaterLine - TopY |
4fa79a6a1883
Localize various Construction Mode vars
Wuzzy <Wuzzy2@mail.ru>
parents:
12953
diff
changeset
|
1777 |
local clanInterval = div(tMapWidth,ClansCount) |
11015 | 1778 |
|
11738
67049c8dedd1
make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents:
11737
diff
changeset
|
1779 |
-- define construction areas for each clan |
67049c8dedd1
make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents:
11737
diff
changeset
|
1780 |
-- if there are forts-based spawn locations, adjust areas around them |
67049c8dedd1
make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents:
11737
diff
changeset
|
1781 |
for i = 0, ClansCount-1 do |
67049c8dedd1
make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents:
11737
diff
changeset
|
1782 |
local slot |
67049c8dedd1
make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents:
11737
diff
changeset
|
1783 |
if fortMode then |
67049c8dedd1
make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents:
11737
diff
changeset
|
1784 |
slot = div(GetX(getFirstHogOfClan(i))-LeftX,clanInterval) |
67049c8dedd1
make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents:
11737
diff
changeset
|
1785 |
else |
67049c8dedd1
make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents:
11737
diff
changeset
|
1786 |
slot = i |
67049c8dedd1
make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents:
11737
diff
changeset
|
1787 |
end |
11015 | 1788 |
|
11738
67049c8dedd1
make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents:
11737
diff
changeset
|
1789 |
local color = GetClanColor(i) |
67049c8dedd1
make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents:
11737
diff
changeset
|
1790 |
|
67049c8dedd1
make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents:
11737
diff
changeset
|
1791 |
clanBoundsSX[i] = LeftX+(clanInterval*slot)+20 |
67049c8dedd1
make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents:
11737
diff
changeset
|
1792 |
clanBoundsSY[i] = TopY |
67049c8dedd1
make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents:
11737
diff
changeset
|
1793 |
clanBoundsEX[i] = LeftX+(clanInterval*slot)+clanInterval-20 |
67049c8dedd1
make construction mode work with fort mode without mixing up clans and forts
sheepluva
parents:
11737
diff
changeset
|
1794 |
clanBoundsEY[i] = WaterLine |
11015 | 1795 |
|
1796 |
--top and bottom |
|
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
1797 |
AddWall(LeftX+(clanInterval*slot),TopY,clanInterval,wMargin,color) |
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
1798 |
AddWall(LeftX+(clanInterval*slot),WaterLine-25,clanInterval,wMargin,color) |
11015 | 1799 |
|
1800 |
--add a wall to the left and right |
|
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
1801 |
AddWall(LeftX+(clanInterval*slot)+20,TopY,wMargin,WaterLine,color) |
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
1802 |
AddWall(LeftX+(clanInterval*slot)+clanInterval-20,TopY,wMargin,WaterLine,color) |
11015 | 1803 |
|
1804 |
end |
|
1805 |
||
1806 |
runOnHogs(initialSetup) |
|
1807 |
||
1808 |
end |
|
1809 |
||
1810 |
||
1811 |
function onNewTurn() |
|
1812 |
||
12950
0e698562d76d
More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents:
12949
diff
changeset
|
1813 |
curWep = GetCurAmmoType() |
0e698562d76d
More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents:
12949
diff
changeset
|
1814 |
|
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1815 |
HandleConstructionModeTools() |
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1816 |
|
11725
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
1817 |
local clan = GetHogClan(CurrentHedgehog) |
11726
8c1a30d4cbc8
Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents:
11725
diff
changeset
|
1818 |
if clanFirstTurn[clan] then |
8c1a30d4cbc8
Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents:
11725
diff
changeset
|
1819 |
clanFirstTurn[clan] = false |
8c1a30d4cbc8
Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents:
11725
diff
changeset
|
1820 |
else |
8c1a30d4cbc8
Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents:
11725
diff
changeset
|
1821 |
clanPower[clan] = clanPower[clan] + conf_energyPerRound |
11733
373150be0356
Construction Mode: Sanity-check numbers from script parameter
Wuzzy <almikes@aol.com>
parents:
11732
diff
changeset
|
1822 |
if conf_maxEnergy ~= "inf" and clanPower[clan] > conf_maxEnergy then |
11726
8c1a30d4cbc8
Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents:
11725
diff
changeset
|
1823 |
clanPower[clan] = conf_maxEnergy |
8c1a30d4cbc8
Construction Mode: Fix giving round energy boost at first round
Wuzzy <almikes@aol.com>
parents:
11725
diff
changeset
|
1824 |
end |
11725
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
1825 |
end |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
1826 |
clanUsedExtraTime[clan] = false |
5cb2f245ee2f
Add script parameter support to Construction Mode
Wuzzy <almikes@aol.com>
parents:
11724
diff
changeset
|
1827 |
clanCratesSpawned[clan] = 0 |
12962
08f91e9e3d2c
Construction Mode: Hide power tag when it's nobody's turn
Wuzzy <Wuzzy2@mail.ru>
parents:
12961
diff
changeset
|
1828 |
|
13027
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
1829 |
RenderClanPower() |
11015 | 1830 |
end |
1831 |
||
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1832 |
function onEndTurn() |
12950
0e698562d76d
More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents:
12949
diff
changeset
|
1833 |
curWep = amNothing |
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1834 |
HandleConstructionModeTools() |
12962
08f91e9e3d2c
Construction Mode: Hide power tag when it's nobody's turn
Wuzzy <Wuzzy2@mail.ru>
parents:
12961
diff
changeset
|
1835 |
DeleteClanPowerTag() |
12950
0e698562d76d
More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents:
12949
diff
changeset
|
1836 |
end |
0e698562d76d
More Construction Mode refactoring
Wuzzy <Wuzzy2@mail.ru>
parents:
12949
diff
changeset
|
1837 |
|
11015 | 1838 |
function onGameTick() |
12951
1a1a514aef2e
Construction Mode: Each team remembers its selections now
Wuzzy <Wuzzy2@mail.ru>
parents:
12950
diff
changeset
|
1839 |
HandleConstructionMode() |
11015 | 1840 |
end |
1841 |
||
12953
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1842 |
function onScreenResize() |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1843 |
-- redraw Tags so that their screen locations are updated |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1844 |
if (CurrentHedgehog ~= nil) then |
13027
1e7ac94d9d3c
Construction Mode: Show clan power next to all teams
Wuzzy <Wuzzy2@mail.ru>
parents:
13024
diff
changeset
|
1845 |
RenderClanPower() |
11015 | 1846 |
end |
1847 |
end |
|
1848 |
||
12953
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1849 |
|
13635
fe7d2bbf5f3f
Fix resurrection animation appearing at wrong position for some missions and styles
Wuzzy <Wuzzy2@mail.ru>
parents:
13128
diff
changeset
|
1850 |
function onGearResurrect(gear, vGear) |
12973
b27960c83818
Construction Mode: Show message when respawning hog
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
1851 |
if GetGearType(gear) == gtHedgehog then |
b27960c83818
Construction Mode: Show message when respawning hog
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
1852 |
FindRespawner(gear) |
13635
fe7d2bbf5f3f
Fix resurrection animation appearing at wrong position for some missions and styles
Wuzzy <Wuzzy2@mail.ru>
parents:
13128
diff
changeset
|
1853 |
if vGear then |
fe7d2bbf5f3f
Fix resurrection animation appearing at wrong position for some missions and styles
Wuzzy <Wuzzy2@mail.ru>
parents:
13128
diff
changeset
|
1854 |
SetVisualGearValues(vGear, GetX(gear), GetY(gear)) |
fe7d2bbf5f3f
Fix resurrection animation appearing at wrong position for some missions and styles
Wuzzy <Wuzzy2@mail.ru>
parents:
13128
diff
changeset
|
1855 |
end |
12973
b27960c83818
Construction Mode: Show message when respawning hog
Wuzzy <Wuzzy2@mail.ru>
parents:
12964
diff
changeset
|
1856 |
end |
12953
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1857 |
end |
f85a040d0350
Refactor Construction Mode code (delete old comments, move code around. NO functional changes)
Wuzzy <Wuzzy2@mail.ru>
parents:
12951
diff
changeset
|
1858 |
|
11015 | 1859 |
-- track hedgehogs and placement gears |
1860 |
function onGearAdd(gear) |
|
1861 |
||
12955
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
1862 |
local gt = GetGearType(gear) |
a260d233cef3
Improve internal Construction Mode code documentation
Wuzzy <Wuzzy2@mail.ru>
parents:
12954
diff
changeset
|
1863 |
if (gt == gtAirAttack) or (gt == gtTeleport) or (gt == gtGirder) then |
11015 | 1864 |
cGear = gear |
1865 |
end |
|
1866 |
||
1867 |
if isATrackedGear(gear) then |
|
1868 |
trackGear(gear) |
|
1869 |
elseif gearCanBeDeflected(gear) then |
|
1870 |
trackGear(gear) |
|
1871 |
setGearReflectionValues(gear) |
|
1872 |
end |
|
1873 |
||
1874 |
end |
|
1875 |
||
1876 |
function onGearDelete(gear) |
|
1877 |
||
1878 |
if GetGearType(gear) == gtTarget then |
|
1879 |
CheckGearForStructureLink(gear) |
|
1880 |
end |
|
1881 |
||
1882 |
if (GetGearType(gear) == gtAirAttack) or (GetGearType(gear) == gtTeleport) or (GetGearType(gear) == gtGirder) then |
|
1883 |
cGear = nil |
|
1884 |
end |
|
1885 |
||
1886 |
if (isATrackedGear(gear) or gearCanBeDeflected(gear)) then |
|
1887 |
||
1888 |
trackDeletion(gear) |
|
1889 |
||
1890 |
end |
|
1891 |
||
1892 |
end |