-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSweepAttackScorcher.lua
366 lines (321 loc) · 9.85 KB
/
SweepAttackScorcher.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
function widget:GetInfo()
return {
name = "SweepAttackScorcher",
desc = "attempt to make Scorcher sweep area with flame to search for stealthy units. Version 1,00",
author = "terve886",
date = "2019",
license = "PD", -- should be compatible with Spring
layer = 11,
handler = true, --for adding customCommand into UI
enabled = true
}
end
local UPDATE_FRAME=10
local SweeperStack = {}
local GetUnitHeading = Spring.GetUnitHeading
local GetUnitMaxRange = Spring.GetUnitMaxRange
local GetUnitPosition = Spring.GetUnitPosition
local GiveOrderToUnit = Spring.GiveOrderToUnit
local GetGroundHeight = Spring.GetGroundHeight
local GetUnitsInSphere = Spring.GetUnitsInSphere
local GetMyAllyTeamID = Spring.GetMyAllyTeamID
local GetUnitAllyTeam = Spring.GetUnitAllyTeam
local GetUnitIsDead = Spring.GetUnitIsDead
local GetMyTeamID = Spring.GetMyTeamID
local GetUnitDefID = Spring.GetUnitDefID
local GetUnitShieldState = Spring.GetUnitShieldState
local GetTeamUnits = Spring.GetTeamUnits
local GetUnitStates = Spring.GetUnitStates
local GetUnitNearestEnemy = Spring.GetUnitNearestEnemy
local Echo = Spring.Echo
local Scorcher_NAME = "vehraid"
local ENEMY_DETECT_BUFFER = 40
local GetSpecState = Spring.GetSpectatingState
local pi = math.pi
local FULL_CIRCLE_RADIANT = 2 * pi
local HEADING_TO_RAD = (pi*2/65536 )
local CMD_UNIT_SET_TARGET = 34923
local CMD_UNIT_CANCEL_TARGET = 34924
local CMD_STOP = CMD.STOP
local CMD_MOVE = CMD.MOVE
local selectedSweepers = nil
local atan = math.atan
local sin = math.sin
local cos = math.cos
local sqrt = math.sqrt
local CMD_TOGGLE_SWEEP = 19990
local ScorcherUnitDefID = UnitDefNames["vehraid"].id
local cmdSweep = {
id = CMD_TOGGLE_SWEEP,
type = CMDTYPE.ICON,
tooltip = 'Makes Scorcher sweep the area before it with attacks to search for stealthed units.',
action = 'oneclickwep',
params = { },
texture = 'unitpics/weaponmod_autoflechette.png',
pos = {CMD_ONOFF,CMD_REPEAT,CMD_MOVE_STATE,CMD_FIRE_STATE, CMD_RETREAT},
}
local SweeperController = {
unitID,
pos,
allyTeamID = GetMyAllyTeamID(),
range,
rotation = 0,
toggle = false,
enemyNear = false,
damage,
new = function(self, unitID)
--Echo("SweeperController added:" .. unitID)
self = deepcopy(self)
self.unitID = unitID
self.range = (GetUnitMaxRange(self.unitID)-15)
self.pos = {GetUnitPosition(self.unitID)}
local unitDefID = GetUnitDefID(self.unitID)
local weaponDefID = UnitDefs[unitDefID].weapons[1].weaponDef
local wd = WeaponDefs[weaponDefID]
self.damage = wd.damages[4]
return self
end,
unset = function(self)
--Echo("SweeperController removed:" .. self.unitID)
GiveOrderToUnit(self.unitID,CMD_STOP, {}, {""},1)
return nil
end,
isEnemyInRange = function (self)
local enemyUnitID = GetUnitNearestEnemy(self.unitID, self.range+ENEMY_DETECT_BUFFER, false)
if (enemyUnitID and GetUnitIsDead(enemyUnitID) == false) then
if (self.enemyNear == false)then
GiveOrderToUnit(self.unitID,CMD_UNIT_CANCEL_TARGET, 0, 0)
self.enemyNear = true
end
return true
end
self.enemyNear = false
return false
end,
getToggleState = function(self)
return self.toggle
end,
toggleOn = function (self)
self.toggle = true
end,
toggleOff = function (self)
self.toggle = false
GiveOrderToUnit(self.unitID,CMD_UNIT_CANCEL_TARGET, 0, 0)
end,
sweep = function(self)
local heading = GetUnitHeading(self.unitID)*HEADING_TO_RAD
if (self.rotation > 3) then
self.rotation = -3
end
local targetPosRelative = {
sin(heading+0.1*self.rotation)*(self.range),
nil,
cos(heading+0.1*self.rotation)*(self.range),
}
self.rotation = self.rotation+1
local targetPosAbsolute = {
targetPosRelative[1]+self.pos[1],
nil,
targetPosRelative[3]+self.pos[3],
}
targetPosAbsolute[2]= GetGroundHeight(targetPosAbsolute[1],targetPosAbsolute[3])
GiveOrderToUnit(self.unitID,CMD_UNIT_SET_TARGET, {targetPosAbsolute[1], targetPosAbsolute[2], targetPosAbsolute[3]}, 0)
end,
isEnemyInRange2 = function (self)
local enemyUnitID = GetUnitNearestEnemy(self.unitID, self.range+22, false)
if (enemyUnitID and GetUnitIsDead(enemyUnitID) == false) then
if (self.enemyNear == false)then
GiveOrderToUnit(self.unitID,CMD_UNIT_CANCEL_TARGET, 0, 0)
self.enemyNear = true
end
return true
end
self.enemyNear = false
return false
end,
isShieldInEffectiveRange = function (self)
closestShieldID = nil
closestShieldDistance = nil
local units = GetUnitsInSphere(self.pos[1], self.pos[2], self.pos[3], self.range+320)
for i=1, #units do
if not(GetUnitAllyTeam(units[i]) == self.allyTeamID) then
DefID = GetUnitDefID(units[i])
if not(DefID == nil)then
if (GetUnitIsDead(units[i]) == false and UnitDefs[DefID].hasShield == true) then
local shieldHealth = {GetUnitShieldState(units[i])}
if (shieldHealth[2] and self.damage <= shieldHealth[2])then
local enemyPositionX, enemyPositionY, enemyPositionZ = GetUnitPosition(units[i])
local targetShieldRadius
if (UnitDefs[DefID].weapons[2] == nil)then
targetShieldRadius = WeaponDefs[UnitDefs[DefID].weapons[1].weaponDef].shieldRadius
else
targetShieldRadius = WeaponDefs[UnitDefs[DefID].weapons[2].weaponDef].shieldRadius
end
enemyShieldDistance = distance(self.pos[1], enemyPositionX, self.pos[3], enemyPositionZ)-targetShieldRadius
if not(closestShieldDistance)then
closestShieldDistance = enemyShieldDistance
closestShieldID = units[i]
closestShieldRadius = targetShieldRadius
rotation = atan((self.pos[1]-enemyPositionX)/(self.pos[3]-enemyPositionZ))
end
if (enemyShieldDistance < closestShieldDistance and enemyShieldDistance > 20) then
closestShieldDistance = enemyShieldDistance
closestShieldID = units[i]
closestShieldRadius = targetShieldRadius
rotation = atan((self.pos[1]-enemyPositionX)/(self.pos[3]-enemyPositionZ))
end
end
end
end
end
end
if(closestShieldID ~= nil)then
local enemyPositionX, enemyPositionY, enemyPositionZ = GetUnitPosition(closestShieldID)
local targetPosRelative={
sin(rotation) * (closestShieldRadius-14),
nil,
cos(rotation) * (closestShieldRadius-14),
}
local targetPosAbsolute = {}
if (self.pos[3]<=enemyPositionZ) then
targetPosAbsolute = {
enemyPositionX-targetPosRelative[1],
nil,
enemyPositionZ-targetPosRelative[3],
}
else
targetPosAbsolute = {
enemyPositionX+targetPosRelative[1],
nil,
enemyPositionZ+targetPosRelative[3],
}
end
targetPosAbsolute[2]= GetGroundHeight(targetPosAbsolute[1],targetPosAbsolute[3])
GiveOrderToUnit(self.unitID,CMD_UNIT_SET_TARGET, {targetPosAbsolute[1], targetPosAbsolute[2], targetPosAbsolute[3]}, 0)
else
GiveOrderToUnit(self.unitID,CMD_UNIT_CANCEL_TARGET, 0, 0)
end
end,
handle=function(self)
self.pos = {GetUnitPosition(self.unitID)}
if(self.toggle) then
if(self:isEnemyInRange()) then
return
end
self:sweep()
else
if(GetUnitStates(self.unitID).firestate~=0)then
if(self:isEnemyInRange2()) then
return
end
self:isShieldInEffectiveRange()
end
end
end
}
function distance ( x1, y1, x2, y2 )
local dx = (x1 - x2)
local dy = (y1 - y2)
return sqrt ( dx * dx + dy * dy )
end
function widget:UnitFinished(unitID, unitDefID, unitTeam)
if (UnitDefs[unitDefID].name==Scorcher_NAME)
and (unitTeam==GetMyTeamID()) then
SweeperStack[unitID] = SweeperController:new(unitID);
end
end
function widget:UnitDestroyed(unitID)
if not (SweeperStack[unitID]==nil) then
SweeperStack[unitID]=SweeperStack[unitID]:unset();
end
end
function widget:GameFrame(n)
if (n%UPDATE_FRAME==0) then
for _,sweeper in pairs(SweeperStack) do
sweeper:handle()
end
end
end
function deepcopy(orig)
local orig_type = type(orig)
local copy
if orig_type == 'table' then
copy = {}
for orig_key, orig_value in next, orig, nil do
copy[deepcopy(orig_key)] = deepcopy(orig_value)
end
setmetatable(copy, deepcopy(getmetatable(orig)))
else
copy = orig
end
return copy
end
--- COMMAND HANDLING
function widget:CommandNotify(cmdID, params, options)
if selectedSweepers ~= nil then
if (cmdID == CMD_TOGGLE_SWEEP)then
local toggleStateGot = false
local toggleState
for i=1, #selectedSweepers do
if (SweeperStack[selectedSweepers[i]])then
if (toggleStateGot == false)then
toggleState = SweeperStack[selectedSweepers[i]]:getToggleState()
toggleStateGot = true
end
if (toggleState) then
SweeperStack[selectedSweepers[i]]:toggleOff()
else
SweeperStack[selectedSweepers[i]]:toggleOn()
end
end
end
return true
end
end
end
function widget:SelectionChanged(selectedUnits)
selectedSweepers = filterSweepers(selectedUnits)
end
function filterSweepers(units)
local filtered = {}
local n = 0
for i = 1, #units do
local unitID = units[i]
if (ScorcherUnitDefID == GetUnitDefID(unitID)) then
n = n + 1
filtered[n] = unitID
end
end
if n == 0 then
return nil
else
return filtered
end
end
function widget:CommandsChanged()
if selectedSweepers then
local customCommands = widgetHandler.customCommands
customCommands[#customCommands+1] = cmdSweep
end
end
-- The rest of the code is there to disable the widget for spectators
local function DisableForSpec()
if GetSpecState() then
widgetHandler:RemoveWidget()
end
end
function widget:Initialize()
DisableForSpec()
local units = GetTeamUnits(Spring.GetMyTeamID())
for i=1, #units do
DefID = GetUnitDefID(units[i])
if (UnitDefs[DefID].name==Scorcher_NAME) then
if (SweeperStack[units[i]]==nil) then
SweeperStack[units[i]]=SweeperController:new(units[i])
end
end
end
end
function widget:PlayerChanged (playerID)
DisableForSpec()
end