-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraphic_unit_selector.lua
388 lines (353 loc) · 8.83 KB
/
graphic_unit_selector.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
include('keysym.h.lua')
local version = "0.3" -- String declaration. We can do this before the GetInfo callin (event).
function widget:GetInfo()
return {
name = "Graphic Unit selector " .. version, -- .. means to combine two strings. The second string, 'version' (see above) is added to the end of this string.
desc = "Selects units when a user presses a certain key.",
author = "Shaman, mod by Helwor, NCG. Almost total rewrite ivand",
date = "May, 2017",
license = "None",
layer = 15,
enabled = true,
}
end
------------------------------------------------------------------------------------------------------------
--- CONFIG
------------------------------------------------------------------------------------------------------------
local color = {
raider = {0.25,0.41,1},
assault = {0.86,0.08,0.24},
skirm = {0.25,0.55,0.13},
arty = {0.8,0.68,0},
riot = {0,0.81,0.82},
special1 = {0.25,0.41,1},
special2 = {0.86,0.08,0.24},
aaunit = {0.25,0.41,1},
conunit = {5,2,1},
none = {1,1,1},
growth = {0.19,0.5,0.08},
shrink = {1,0.08,0.58},
}
local keysByClass = {
raider = KEYSYMS.N_1,
assault = KEYSYMS.N_3,
riot = KEYSYMS.N_2,
skirm = KEYSYMS.N_4,
arty = KEYSYMS.N_5,
aaunit = KEYSYMS.N_6,
special1 = KEYSYMS.N_7,
special2 = KEYSYMS.N_8,
conunit = KEYSYMS.N_0,
}
local classByKeys = {}
for k, v in pairs(keysByClass) do
classByKeys[v] = k
end
local keysAux={
plus = KEYSYMS.KP6,
minus = KEYSYMS.KP4,
}
local triggerKeys = {
[keysByClass.raider] = true,
[keysByClass.skirm] = true,
[keysByClass.riot] = true,
[keysByClass.assault] = true,
[keysByClass.arty] = true,
[keysByClass.special1] = true,
[keysByClass.special2] = true,
[keysByClass.aaunit] = true,
[keysByClass.conunit] = true,
}
local triggerKeysAux = {
[keysAux.plus] = true,
[keysAux.minus] = true,
}
local keyHoldTime = 0.01
local rad = 1000
local unitTypes = {
raider = {
shipscout = true,
shiptorpraider = true,
spiderscout = true,
cloakraid = true,
shieldraid = true,
vehraid = true,
amphraid = true,
vehscout = true,
jumpraid = true,
hoverraid = true,
subraider = true,
tankraid = true,
gunshipraid = true,
jumpscout = true,
tankheavyraid = true,
planefighter = true,
},
skirm = {
cloakskirm = true,
spiderskirm = true,
jumpskirm = true,
shieldskirm = true,
shipskirm = true,
amphfloater = true,
vehsupport = true,
gunshipskirm = true,
shieldfelon = true,
hoverskirm = true,
striderfunnelweb = true,
striderbantha = true,
},
riot = {
bomberriot = true,
amphimpulse = true,
cloakriot = true,
shieldriot = true,
spiderriot = true,
spideremp = true,
jumpblackhole = true,
vehriot = true,
tankriot = true,
amphriot = true,
shiptorp = true,
hoverriot = true,
gunshipassault = true,
shipassault = true,
shipriot = true,
striderdante = true,
},
assault = {
jumpsumo = true,
cloakassault = true,
spiderassault = true,
tankheavyassault = true,
tankassault = true,
shipassault = true,
amphassault = true,
vehassault = true,
shieldassault = true,
jumpassault = true,
hoverassault = true,
bomberprec = true,
bomberheavy = true,
gunshipkrow = true,
striderdetriment = true,
},
arty = {
cloakarty = true,
striderarty = true,
shieldarty = true,
jumparty = true,
veharty = true,
tankarty = true,
spidercrabe = true,
shiparty = true,
shipheavyarty = true,
shipcarrier = true,
hoverarty = true,
gunshipheavyskirm = true,
tankheavyarty = true,
vehheavyarty = true,
},
special1 = {
shieldscout = true,
cloakheavyraid = true,
cloaksnipe = true,
vehcapture = true,
gunshipemp = true,
hoverdepthcharge = true,
spiderantiheavy = true,
spherecloaker = true,
shieldshield = true,
cloakjammer = true,
planescout = true,
},
special2 = {
gunshiptrans = true,
shieldbomb = true,
cloakbomb = true,
gunshipbomb = true,
jumpbomb = true,
amphbomb = true,
gunshipheavytrans = true,
subtacmissile = true,
spiderscout = true,
amphtele = true,
bomberdisarm = true,
striderantiheavy = true,
striderscorpion = true,
},
aaunit = {
planefighter = true,
planeheavyfighter = true,
gunshipaa = true,
shieldaa = true,
cloakaa = true,
vehaa = true,
hoveraa = true,
amphaa = true,
spideraa = true,
jumpaa = true,
tankaa = true,
shipaa = true,
},
conunit = {
amphcon = true,
planecon = true,
cloakcon = true,
spidercon = true,
jumpcon = true,
tankcon = true,
hovercon = true,
shieldcon = true,
vehcon = true,
gunshipcon = true,
shipcon = true,
},
}
------------------------------------------------------------------------------------------------------------
--- END OF CONFIG
------------------------------------------------------------------------------------------------------------
function widget:Initialize()
--Unload if in replay or if mod is not Zero-K
if Spring.IsReplay() or string.upper(Game.modShortName or "") ~= "ZK" then
widgetHandler:RemoveWidget()
end
end
function widget:GameOver(winningAllyTeams)
--GameOver is irreversable with cheats, thus removing
widgetHandler:RemoveWidget()
end
local unloaded = false
local function CheckIfSpectator()
--spectator state is reversable with cheats
if Spring.GetSpectatingState() then
widgetHandler:RemoveCallIn("KeyPress")
widgetHandler:RemoveCallIn("KeyRelease")
widgetHandler:RemoveCallIn("Update")
widgetHandler:RemoveCallIn("DrawWorld")
unloaded = true
else
if unloaded then
widgetHandler:UpdateCallIn("KeyPress")
widgetHandler:UpdateCallIn("KeyRelease")
widgetHandler:UpdateCallIn("Update")
widgetHandler:UpdateCallIn("DrawWorld")
unloaded = false
end
end
end
local myTeamID = Spring.GetMyTeamID()
function widget:TeamChanged(teamID)
CheckIfSpectator()
myTeamID = Spring.GetMyTeamID()
end
function widget:PlayerChanged(playerID)
CheckIfSpectator()
myTeamID = Spring.GetMyTeamID()
end
function widget:PlayerAdded(playerID)
CheckIfSpectator()
myTeamID = Spring.GetMyTeamID()
end
function widget:PlayerRemoved(playerID)
CheckIfSpectator()
myTeamID = Spring.GetMyTeamID()
end
function widget:TeamDied(teamID)
CheckIfSpectator()
myTeamID = Spring.GetMyTeamID()
end
function widget:TeamChanged(teamID)
CheckIfSpectator()
myTeamID = Spring.GetMyTeamID()
end
local selection = {}
local on = false
local ontype = "none"
local keyPressedTime = 0
function widget:KeyPress(key, mods, isRepeat)
if triggerKeysAux[key] then
if key == keysAux.plus then
rad = math.min(3000, rad+100)
end
if key == keysAux.minus then
rad = math.max(100, rad-100)
end
end
if triggerKeys[key] then
if keyPressedTime == 0 then
keyPressedTime = Spring.GetTimer()
end
local timeOk = Spring.DiffTimers(Spring.GetTimer(), keyPressedTime) >= keyHoldTime
if timeOk then
on = true
ontype = tostring(classByKeys[key])
end
end
end
function widget:KeyRelease(key) -- Called whenever user stops pressing a key.
if triggerKeys[key] then
keyPressedTime = 0
local _, _, _, shiftKey = Spring.GetModKeyState()
if #selection > 0 then
Spring.SelectUnitArray(selection, shiftKey)
end
selection = {}
on = false
ontype = "none"
end
end
local x, y, z
local unitsPos
function widget:Update()
if on then
local mouseX, mouseY = Spring.GetMouseState()
local desc, pos = Spring.TraceScreenRay(mouseX, mouseY, true)
if desc ~= nil then
x, y, z = pos[1], pos[2], pos[3]
selection = {}
for _, uID in ipairs(Spring.GetUnitsInCylinder(x, z, rad, myTeamID)) do
if unitTypes[ontype][UnitDefs[Spring.GetUnitDefID(uID)].name] then
selection[#selection + 1] = uID
end
end
unitsPos = {}
for _, uID in ipairs(selection) do
if Spring.ValidUnitID(uID) then
local ux, uy, uz = Spring.GetUnitPosition(uID)
unitsPos[uID] = {
ux = ux,
uy = uy,
uz = uz,
}
end
end
else
x = nil
end
end
end
function widget:DrawWorld() -- this is used for openGL stuff.
if on and x then
gl.PushMatrix() --This is the start of an openGL function.
gl.LineStipple(true)
gl.LineWidth(2.0)
gl.Color(color[ontype][1], color[ontype][2], color[ontype][3], 1)
gl.DrawGroundCircle(x, y, z, rad, 40) -- draws a simple circle.
gl.Translate(x, y, z)
gl.Billboard()
gl.Text("Selecting " .. ontype, 30, -25, 36, "v") -- Displays text. First value is the string, second is a modifier for x (in this case it's x-25), third is a modifier for y, fourth is the size, then last is a modifier for the text itself. "v" means vertical align.
gl.Color(1, 1, 1, 1) -- we have to reset what we did here.
gl.LineWidth(1.0)
gl.LineStipple(false)
gl.PopMatrix() -- end of function. Have to use this with after a push!
for _, uID in ipairs(selection) do
gl.PushMatrix()
gl.LineWidth(3.0)
gl.Color(color[ontype][1], color[ontype][2], color[ontype][3] ,1)
gl.DrawGroundCircle(unitsPos[uID].ux, unitsPos[uID].uy, unitsPos[uID].uz, 40, 40)
gl.Color(1, 1, 1, 1)
gl.PopMatrix()
end
end
end