-
-
Notifications
You must be signed in to change notification settings - Fork 86
/
ability_item_usage_puck.lua
230 lines (224 loc) · 6.94 KB
/
ability_item_usage_puck.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
local utility = require(GetScriptDirectory() .. "/utility")
local ability_item_usage_generic = require(GetScriptDirectory() .. "/ability_item_usage_generic")
local fun1 = require(GetScriptDirectory() .. "/util/AbilityAbstraction")
local npcBot = GetBot()
if npcBot == nil or npcBot:IsIllusion() then
return
end
if npcBot:IsIllusion() then
return
end
local AbilityNames, Abilities, Talents = fun1:InitAbility()
local AbilityToLevelUp = {
AbilityNames[1],
AbilityNames[3],
AbilityNames[1],
AbilityNames[2],
AbilityNames[1],
AbilityNames[5],
AbilityNames[1],
AbilityNames[3],
AbilityNames[2],
"talent",
AbilityNames[2],
AbilityNames[5],
AbilityNames[2],
AbilityNames[3],
"talent",
AbilityNames[3],
"nil",
AbilityNames[5],
"nil",
"talent",
"nil",
"nil",
"nil",
"nil",
"talent",
}
local TalentTree = {
function()
return Talents[2]
end,
function()
return Talents[3]
end,
function()
return Talents[6]
end,
function()
return Talents[8]
end,
}
utility.CheckAbilityBuild(AbilityToLevelUp)
function BuybackUsageThink()
ability_item_usage_generic.BuybackUsageThink();
end
function CourierUsageThink()
ability_item_usage_generic.CourierUsageThink();
end
function AbilityLevelUpThink()
ability_item_usage_generic.AbilityLevelUpThink2(AbilityToLevelUp, TalentTree)
end
--------------------------------------
-- Ability Usage Thinking
--------------------------------------
local cast = {}
cast.Desire = {}
cast.Target = {}
cast.Type = {}
local CanCast = {}
CanCast[1] = fun1.NormalCanCastFunction
CanCast[2] = fun1.NormalCanCastFunction
CanCast[3] = function(t)
return not fun1:IsInvulnerable(t) or not fun1:ShouldNotBeAttacked(t)
end
CanCast[4] = function()
return true
end
CanCast[5] = fun1.NormalCanCastFunction
local level
local attackRange
local health
local maxHealth
local healthPercent
local mana
local maxMana
local manaPercent
local netWorth
local allEnemies
local enemies
local enemyCount
local friends
local friendCount
local enemyCreeps
local friendCreeps
local neutralCreeps
local tower
local illusoryOrbCastLocation
local illusoryOrbMaxTravelDistance
local illusoryOrbRemainingTime
local isPhaseShifting
local Consider = {}
local function GetIllusoryOrb()
return fun1:First(GetLinearProjectiles(), function(t)
return t.ability and t.ability:GetName() == "puck_illusory_orb" and t.caster == npcBot
end)
end
local illusoryOrb = GetIllusoryOrb()
Consider[1] = function()
local ability = Abilities[1]
if not ability:IsFullyCastable() then
return 0
end
local abilityLevel = ability:GetLevel()
local castRange = ability:GetCastRange()
local castPoint = ability:GetCastPoint()
local manaCost = ability:GetManaCost()
local duration = ability:GetDuration()
local damage = ability:GetDamage()
local forbiddenCreeps = fun1:Filter(enemyCreeps, function(t)
return t:GetHealth() > t:GetActualIncomingDamage(damage, DAMAGE_TYPE_MAGICAL) and
(
t:GetHealth() <=
t:GetActualIncomingDamage(damage, DAMAGE_TYPE_MAGICAL) +
fun1:AttackOnceDamage(npcBot, t) * (0.9 + #enemyCreeps * 0.1) or GetUnitToUnitDistance(tower, t) <= 700)
end)
if #friendCreeps == 0 then
forbiddenCreeps = {}
end
if fun1:NotRetreating(npcBot) then
do
local target = fun1:GetTargetIfGood(npcBot)
if target then
coroutine.yield(BOT_ACTION_DESIRE_HIGH, target:GetLocation())
end
end
do
local target = fun1:GetTargetIfBad(npcBot)
if target then
if mana >= 650 then
coroutine.yield(BOT_ACTION_DESIRE_MODERATE, target:GetLocation())
end
end
end
end
if fun1:IsFarmingOrPushing(npcBot) then
if #enemyCreeps > 3 and #forbiddenCreeps == 0 and mana > 0.6 * maxMana + manaCost then
coroutine.yield(BOT_ACTION_DESIRE_MODERATE, enemyCreeps[2]:GetLocation())
end
elseif fun1:IsRetreating(npcBot) then
coroutine.yield(BOT_ACTION_DESIRE_HIGH, fun1:GetAncientLocation(npcBot))
end
return 0
end
local phaseShiftStartTime
local phaseShiftRemainingTime
local phaseShiftReasons = {}
Consider[3] = function()
local ability = Abilities[3]
if not ability:IsFullyCastable() then
return 0
end
if fun1:HasSeverelyDisableProjectiles(npcBot) then
table.insert(phaseShiftReasons, "projectiles")
return BOT_ACTION_DESIRE_HIGH
end
return 0
end
fun1:AutoModifyConsiderFunction(npcBot, Consider, Abilities)
function AbilityUsageThink()
isPhaseShifting = npcBot:HasModifier "modifier_puck_phase_shift"
if phaseShiftRemainingTime then
phaseShiftRemainingTime = phaseShiftRemainingTime - fun1:GetDeltaTime()
end
if npcBot:IsUsingAbility() or npcBot:IsSilenced() then
return
end
if npcBot:IsChanneling() then
if isPhaseShifting then
local reason = phaseShiftReasons.reason
if reason == "projectiles" then
if #npcBot:GetIncomingTrackingProjectiles() == 0 then
npcBot:Action_ClearActions(false)
return
end
end
else
phaseShiftReasons = {}
end
end
level = npcBot:GetLevel()
attackRange = npcBot:GetAttackRange()
health = npcBot:GetHealth()
maxHealth = npcBot:GetMaxHealth()
healthPercent = fun1:GetHealthPercent(npcBot)
mana = npcBot:GetMana()
maxMana = npcBot:GetMaxMana()
manaPercent = fun1:GetManaPercent(npcBot)
netWorth = npcBot:GetNetWorth()
allEnemies = fun1:GetNearbyHeroes(npcBot, 1200)
enemies = allEnemies:Filter(function(t)
return fun1:MayNotBeIllusion(npcBot, t)
end)
enemyCount = fun1:GetEnemyHeroNumber(npcBot, enemies)
friends = fun1:GetNearbyNonIllusionHeroes(npcBot, 1500, true)
friendCount = fun1:GetEnemyHeroNumber(npcBot, friends)
enemyCreeps = fun1:GetNearbyAttackableCreeps(npcBot, 900)
friendCreeps = fun1:GetNearbyAttackableCreeps(npcBot, npcBot:GetAttackRange() + 150, false)
neutralCreeps = npcBot:GetNearbyNeutralCreeps(900)
tower = fun1:GetLaningTower(npcBot)
cast = ability_item_usage_generic.ConsiderAbility(Abilities, Consider)
local abilityIndex, target, castType = ability_item_usage_generic.UseAbility(Abilities, cast)
if abilityIndex == 1 then
illusoryOrbCastLocation = npcBot:GetLocation()
illusoryOrbMaxTravelDistance = Abilities[1]:GetSpecialValueInt("max_distance") - 50
illusoryOrbRemainingTime = illusoryOrbMaxTravelDistance / Abilities[1]:GetSpecialValueInt "orb_speed"
elseif abilityIndex == 3 then
phaseShiftStartTime = DotaTime()
phaseShiftRemainingTime = Abilities[3]:GetSpecialValueFloat "duration" - 0.08
end
end
function CourierUsageThink()
ability_item_usage_generic.CourierUsageThink()
end