-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTargettingAI_Felon.lua
284 lines (254 loc) · 8.31 KB
/
TargettingAI_Felon.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
function widget:GetInfo()
return {
name = "TargettingAI_Felon",
desc = "attempt to make Felon not fire Razors, solars and most high hp assaults without order. Meant to be used with return fire state. Version 1.00",
author = "terve886",
date = "2019",
license = "PD", -- should be compatible with Spring
layer = 11,
enabled = true
}
end
local pi = math.pi
local sin = math.sin
local cos = math.cos
local atan = math.atan
local sqrt = math.sqrt
local UPDATE_FRAME=4
local FelonStack = {}
local GetUnitMaxRange = Spring.GetUnitMaxRange
local GetUnitPosition = Spring.GetUnitPosition
local GetMyAllyTeamID = Spring.GetMyAllyTeamID
local GiveOrderToUnit = Spring.GiveOrderToUnit
local GetGroundHeight = Spring.GetGroundHeight
local GetUnitsInSphere = Spring.GetUnitsInSphere
local GetUnitsInCylinder = Spring.GetUnitsInCylinder
local GetUnitAllyTeam = Spring.GetUnitAllyTeam
local GetUnitNearestEnemy = Spring.GetUnitNearestEnemy
local GetUnitIsDead = Spring.GetUnitIsDead
local GetMyTeamID = Spring.GetMyTeamID
local GetUnitDefID = Spring.GetUnitDefID
local GetUnitShieldState = Spring.GetUnitShieldState
local GetTeamUnits = Spring.GetTeamUnits
local GetUnitArmored = Spring.GetUnitArmored
local GetUnitStates = Spring.GetUnitStates
local ENEMY_DETECT_BUFFER = 4
local Echo = Spring.Echo
local Felon_NAME = "shieldfelon"
local Solar_NAME = "energysolar"
local Razor_NAME = "turretaalaser"
local Minotaur_NAME = "tankassault"
local Cyclops_NAME = "tankheavyassault"
local Dirtbag_NAME = "shieldscout"
local Halbert_NAME = "hoverassault"
local Jack_NAME = "jumpassault"
local GetSpecState = Spring.GetSpectatingState
local CMD_UNIT_SET_TARGET = 34923
local CMD_UNIT_CANCEL_TARGET = 34924
local CMD_STOP = CMD.STOP
local CMD_ATTACK = CMD.ATTACK
local CMD_REMOVE = CMD.REMOVE
local FelonController = {
unitID,
pos,
allyTeamID = GetMyAllyTeamID(),
range,
damage,
forceTarget,
new = function(self, unitID)
--Echo("FelonController added:" .. unitID)
self = deepcopy(self)
self.unitID = unitID
self.range = GetUnitMaxRange(self.unitID)
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("FelonController removed:" .. self.unitID)
GiveOrderToUnit(self.unitID,CMD_STOP, {}, {""},1)
return nil
end,
setForceTarget = function(self, param)
self.forceTarget = param[1]
end,
isEnemyInRange = function (self)
local units = GetUnitsInCylinder(self.pos[1], self.pos[3], self.range+ENEMY_DETECT_BUFFER)
local target = nil
for i=1, #units do
if not (GetUnitAllyTeam(units[i]) == self.allyTeamID) then
enemyPosition = {GetUnitPosition(units[i])}
if(enemyPosition[2]>-30)then
if (units[i]==self.forceTarget and GetUnitIsDead(units[i]) == false)then
GiveOrderToUnit(self.unitID,CMD_UNIT_SET_TARGET, units[i], 0)
return true
end
DefID = GetUnitDefID(units[i])
if not(DefID == nil)then
local hasArmor = GetUnitArmored(units[i])
if (GetUnitIsDead(units[i]) == false)then
local hasArmor = GetUnitArmored(units[i])
if not(UnitDefs[DefID].name == Solar_NAME
or UnitDefs[DefID].name == Dirtbag_NAME
or UnitDefs[DefID].name == Minotaur_NAME
or UnitDefs[DefID].name == Cyclops_NAME
or (UnitDefs[DefID].name == Halbert_NAME and hasArmor)
or UnitDefs[DefID].name == Razor_NAME and hasArmor) then
if (target == nil) then
target = units[i]
end
if (UnitDefs[GetUnitDefID(target)].metalCost > UnitDefs[DefID].metalCost)then
target = units[i]
end
end
end
end
end
end
end
if (target == nil) then
GiveOrderToUnit(self.unitID,CMD_UNIT_CANCEL_TARGET, 0, 0)
return false
else
GiveOrderToUnit(self.unitID,CMD_UNIT_SET_TARGET, target, 0)
return true
end
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
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)
if(GetUnitStates(self.unitID).firestate==1)then
self.pos = {GetUnitPosition(self.unitID)}
if(self:isEnemyInRange())then
return
end
self:isShieldInEffectiveRange()
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:UnitCommand(unitID, unitDefID, unitTeam, cmdID, cmdParams, cmdOpts, cmdTag)
if (UnitDefs[unitDefID].name == Felon_NAME and cmdID == CMD_ATTACK and #cmdParams == 1) then
if (FelonStack[unitID])then
FelonStack[unitID]:setForceTarget(cmdParams)
end
end
end
function widget:UnitFinished(unitID, unitDefID, unitTeam)
if (UnitDefs[unitDefID].name==Felon_NAME)
and (unitTeam==GetMyTeamID()) then
FelonStack[unitID] = FelonController:new(unitID);
end
end
function widget:UnitDestroyed(unitID)
if not (FelonStack[unitID]==nil) then
FelonStack[unitID]=FelonStack[unitID]:unset();
end
end
function widget:GameFrame(n)
--if (n%UPDATE_FRAME==0) then
for _,Felon in pairs(FelonStack) do
Felon: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
-- 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==Felon_NAME) then
if (FelonStack[units[i]]==nil) then
FelonStack[units[i]]=FelonController:new(units[i])
end
end
end
end
function widget:PlayerChanged (playerID)
DisableForSpec()
end