forked from PeachBlossomWine/HealBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHB_Offense.lua
198 lines (174 loc) · 7.29 KB
/
HB_Offense.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
--==============================================================================
--[[
Author: Ragnarok.Lorand
HealBot offense handling functions
--]]
--==============================================================================
local offense = {
immunities=lor_settings.load('data/mob_immunities.lua'),
assist={active = false, engage = false, nolock = false, sametarget = false,},
moblist={active = false, mobs=S{}, debuffs={},},
debuffs={}, ignored={}, mobs={},
dispel={active = true, mobs={}, ignored=S{},},
debuffing_active = true,
debuffing_battle_target = false
}
function offense.register_assistee(assistee_name, job_name_flag)
if job_name_flag then
if utils.getPlayerNameFromJob(assistee_name) then
offense.register_assistee(utils.getPlayerNameFromJob(assistee_name), false)
else
atc('Unable to find JOB target: '..assistee_name:upper())
end
return
end
local pname = utils.getPlayerName(assistee_name)
if (pname ~= nil) then
offense.assist.name = pname
offense.assist.active = true
atcf('Now assisting %s.', pname)
else
atcf(123,'Error: Invalid name provided as an assist target: %s', assistee_name)
end
end
function offense.assistee_and_target()
if offense.assist.active and (offense.assist.name ~= nil) then
local partner = windower.ffxi.get_mob_by_name(offense.assist.name)
if partner then
local targ = windower.ffxi.get_mob_by_index(partner.target_index)
if (targ ~= nil) and targ.is_npc then
return partner, targ
end
end
end
return nil
end
function offense.cleanup()
local mob_ids = table.keys(offense.mobs)
if mob_ids then
for _,id in pairs(mob_ids) do
local mob = windower.ffxi.get_mob_by_id(id)
if mob == nil or mob.hpp == 0 then
offense.mobs[id] = nil
end
end
end
if offense.dispel.mobs then
offense.dispel.mobs = {}
end
end
function offense.maintain_debuff(spell, cancel, mob_debuff_list_flag)
local nspell = utils.normalize_action(spell, 'spells')
if not nspell then
atcfs(123, '[offense.maintain_debuff] Invalid spell: %s', spell)
return
end
local debuff_id = spell_debuff_idmap[nspell.id]
if debuff_id == nil then
atcfs(123, 'Unable to find debuff for spell: %s', spell)
return
end
local debuff = res.buffs[debuff_id]
if cancel then
if mob_debuff_list_flag then
offense.moblist.debuffs[debuff.id] = nil
else
offense.debuffs[debuff.id] = nil
end
else
if mob_debuff_list_flag then
offense.moblist.debuffs[debuff.id] = {spell = nspell, res = debuff}
else
offense.debuffs[debuff.id] = {spell = nspell, res = debuff}
end
end
local msg = cancel and 'no longer ' or ''
if mob_debuff_list_flag then
atcf('Will %smaintain debuff on moblist: %s', msg, nspell.en)
else
atcf('Will %smaintain debuff on mobs: %s', msg, nspell.en)
end
end
function offense.normalized_mob(mob)
if istable(mob) then
return mob
elseif isnum(mob) then
return windower.ffxi.get_mob_by_id(mob)
end
return mob
end
function offense.register_immunity(mob, debuff)
offense.immunities[mob.name] = S(offense.immunities[mob.name]) or S{}
offense.immunities[mob.name]:add(debuff.id)
offense.immunities:save()
end
function offense.registerMob(mob, forget)
mob = offense.normalized_mob(mob)
if not mob then return end
if forget then
offense.mobs[mob.id] = nil
atcd(('Forgetting mob: %s [%s]'):format(mob.name, mob.id))
else
if offense.mobs[mob.id] ~= nil then
atcd(('Attempted to register already known mob: %s[%s]'):format(mob.name, mob.id))
else
atcd(('Registering new mob: %s[%s]'):format(mob.name, mob.id))
end
offense.mobs[mob.id] = offense.mobs[mob.id] or {}
end
end
function offense.getDebuffQueue(player, target, mob_debuff_list_flag)
local dbq = ActionQueue.new()
if offense.debuffing_active then
offense.mobs[target.id] = offense.mobs[target.id] or {}
if mob_debuff_list_flag and next(offense.moblist.debuffs) then -- Use alternative debuff list for moblist
for id,debuff in pairs(offense.moblist.debuffs) do
if offense.mobs[target.id][id] == nil then
if not (offense.immunities[target.name] and offense.immunities[target.name][id]) then
dbq:enqueue('debuff_mob', debuff.spell, target.name, debuff.res, (' (%s)'):format(debuff.spell.en))
end
end
end
else
for id,debuff in pairs(offense.debuffs) do
if offense.mobs[target.id][id] == nil then
if not (offense.immunities[target.name] and offense.immunities[target.name][id]) then
dbq:enqueue('debuff_mob', debuff.spell, target.name, debuff.res, (' (%s)'):format(debuff.spell.en))
end
end
end
end
end
return dbq:getQueue()
end
function offense.getDispelQueue(player, target)
local dbq = ActionQueue.new()
if offense.dispel.active and (S{'RDM','BRD'}:contains(player.main_job) or S{'RDM'}:contains(player.sub_job)) then
if offense.dispel.mobs[target.id] then
for debuff,_ in pairs(offense.dispel.mobs[target.id]) do
if debuff ~= nil then
if not offense.dispel.ignored:contains(target.name) then
if player.main_job == 'BRD' and healer:can_use(res.spells[462]) then
dbq:enqueue('spells', res.spells[462], target.name, res.spells[462], ' Magic Finale')
elseif (player.main_job == 'RDM' or player.sub_job == 'RDM') and not (player.main_job == 'BRD') and healer:can_use(res.spells[260]) then
dbq:enqueue('spells', res.spells[260], target.name, res.spells[260], ' Dispel')
end
end
end
end
end
end
return dbq:getQueue()
end
return offense
--==============================================================================
--[[
Copyright © 2016, Lorand
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* Neither the name of ffxiHealer nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Lorand BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
--]]
--==============================================================================