-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScorpionAndDanteSelfDefenceAI.lua
199 lines (175 loc) · 6.23 KB
/
ScorpionAndDanteSelfDefenceAI.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
function widget:GetInfo()
return {
name = "ScorpionAndDanteSelfDefenceAI",
desc = "attempt to make Scorpion use Stun barrage against high threat targets or when low on health. Version 0,97",
author = "terve886",
date = "2019",
license = "PD", -- should be compatible with Spring
layer = 10,
enabled = true
}
end
local UPDATE_FRAME=5
local currentFrame = 0
local StriderStack = {}
local GetUnitMaxRange = Spring.GetUnitMaxRange
local GetUnitPosition = Spring.GetUnitPosition
local GetMyAllyTeamID = Spring.GetMyAllyTeamID
local GiveOrderToUnit = Spring.GiveOrderToUnit
local Ultimatum_NAME = "striderantiheavy"
local Scorpion_NAME = "striderscorpion"
local Dante_NAME = "striderdante"
local GetUnitHealth = Spring.GetUnitHealth
local GetUnitWeaponState = Spring.GetUnitWeaponState
local GetUnitIsCloaked = Spring.GetUnitIsCloaked
local GetUnitStates = Spring.GetUnitStates
local GetUnitsInSphere = Spring.GetUnitsInSphere
local GetUnitAllyTeam = Spring.GetUnitAllyTeam
local GetUnitIsDead = Spring.GetUnitIsDead
local GetMyTeamID = Spring.GetMyTeamID
local GetUnitDefID = Spring.GetUnitDefID
local IsUnitSelected = Spring.IsUnitSelected
local GetTeamUnits = Spring.GetTeamUnits
local GetTeamResources = Spring.GetTeamResources
local MarkerAddPoint = Spring.MarkerAddPoint
local GetCommandQueue = Spring.GetCommandQueue
local team_id
local Echo = Spring.Echo
local CMD_STOP = CMD.STOP
local CMD_OPT_SHIFT = CMD.OPT_SHIFT
local CMD_INSERT = CMD.INSERT
local CMD_MOVE = CMD.MOVE
local CMD_ATTACK_MOVE_ID = 16
local CMD_Dgun = 105
local GetSpecState = Spring.GetSpectatingState
local ScorpionAndDanteSelfDefenceAI = {
unitID,
pos,
allyTeamID = GetMyAllyTeamID(),
range,
cooldownFrame,
reloadTime,
maxHealth,
new = function(self, unitID)
--Echo("ScorpionAndDanteSelfDefenceAI added:" .. unitID)
self = deepcopy(self)
self.unitID = unitID
self.range = GetUnitMaxRange(self.unitID)
self.pos = {GetUnitPosition(self.unitID)}
self.cooldownFrame = currentFrame+400
self.maxHealth = UnitDefs[GetUnitDefID(self.unitID)].health
local unitDefID = GetUnitDefID(self.unitID)
self.reloadTime = WeaponDefs[UnitDefs[unitDefID].weapons[3].weaponDef].reload
return self
end,
unset = function(self)
--Echo("ScorpionAndDanteSelfDefenceAI removed:" .. self.unitID)
GiveOrderToUnit(self.unitID,CMD_STOP, {}, {""},1)
return nil
end,
isThreatInRange = function (self)
if(GetUnitHealth(self.unitID)<self.maxHealth*0.3)then --is Health Critical?
if(GetUnitIsCloaked(self.unitID)==false and self.cooldownFrame<currentFrame and GetUnitWeaponState(self.unitID, 3, "reloadState") <= currentFrame)then --Health is critical
self.pos = {GetUnitPosition(self.unitID)}
local units = GetUnitsInSphere(self.pos[1], self.pos[2], self.pos[3], self.range+40)
for i=1, #units do
if not(GetUnitAllyTeam(units[i]) == self.allyTeamID) then
if (GetUnitIsDead(units[i]) == false) then
DefID = GetUnitDefID(units[i])
if not(DefID == nil)then
if(UnitDefs[DefID].metalCost >= 1500 and UnitDefs[DefID].isAirUnit==false)then
GiveOrderToUnit(self.unitID,CMD_INSERT, {0, CMD_Dgun, CMD_OPT_SHIFT, units[i]}, {"alt"})
self.cooldownFrame = currentFrame+40
return true
end
enemyposition = {GetUnitPosition(units[i])}
if (#GetUnitsInSphere(enemyposition[1],enemyposition[2],enemyposition[3], 180, self.allyTeamID)==0)then
GiveOrderToUnit(self.unitID,CMD_INSERT, {0, CMD_Dgun, CMD_OPT_SHIFT, units[i]}, {"alt"})
self.cooldownFrame = currentFrame+40
return true
end
end
end
end
end
end
else --Health is not critical
if(GetUnitIsCloaked(self.unitID)==false and self.cooldownFrame<currentFrame and GetUnitWeaponState(self.unitID, 3, "reloadState") <= currentFrame)then
self.pos = {GetUnitPosition(self.unitID)}
local units = GetUnitsInSphere(self.pos[1], self.pos[2], self.pos[3], self.range+40)
for i=1, #units do
if not(GetUnitAllyTeam(units[i]) == self.allyTeamID) then
if (GetUnitIsDead(units[i]) == false) then
DefID = GetUnitDefID(units[i])
if not(DefID == nil)then
if(UnitDefs[DefID].metalCost >= 1500 and UnitDefs[DefID].isAirUnit==false)then
GiveOrderToUnit(self.unitID,CMD_INSERT, {0, CMD_Dgun, CMD_OPT_SHIFT, units[i]}, {"alt"})
self.cooldownFrame = currentFrame+40
return true
end
end
end
end
end
end
end
return false
end
}
function widget:GameFrame(n)
currentFrame = n
for _,Strider in pairs(StriderStack) do
Strider:isThreatInRange()
end
end
function widget:UnitFinished(unitID, unitDefID, unitTeam)
if ((UnitDefs[unitDefID].name==Scorpion_NAME or UnitDefs[unitDefID].name==Dante_NAME) and unitTeam==GetMyTeamID()) then
StriderStack[unitID] = ScorpionAndDanteSelfDefenceAI:new(unitID);
end
end
function widget:UnitDestroyed(unitID)
if not (StriderStack[unitID]==nil) then
StriderStack[unitID]=StriderStack[unitID]:unset();
end
end
function widget:UnitDamaged(unitID, unitDefID, unitTeam, damage, paralyzer, weaponDefID, projectileID, attackerID, attackerDefID, attackerTeam)
if (StriderStack[unitID] and damage~=0)then
StriderStack[unitID].cooldownFrame=currentFrame+40
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()
team_id = Spring.GetMyTeamID()
local units = GetTeamUnits(Spring.GetMyTeamID())
for i=1, #units do
DefID = GetUnitDefID(units[i])
if (UnitDefs[DefID].name==Scorpion_NAME or UnitDefs[DefID].name==Dante_NAME) then
if (StriderStack[units[i]]==nil) then
StriderStack[units[i]]=ScorpionAndDanteSelfDefenceAI:new(units[i])
end
end
end
end
function widget:PlayerChanged (playerID)
DisableForSpec()
end