mirror of
https://github.com/brues-code/pfUI.git
synced 2026-09-22 15:46:56 +00:00
229 lines
5.9 KiB
Lua
229 lines
5.9 KiB
Lua
-- load pfUI environment
|
|
setfenv(1, pfUI:GetEnvironment())
|
|
|
|
--[[ librange ]]--
|
|
-- A pfUI library that detects and caches distance to units.
|
|
--
|
|
-- librange:UnitInSpellRange(unit)
|
|
-- Returns `1` if the unit is within a 40y range
|
|
--
|
|
|
|
-- return instantly when another librange is already active
|
|
if pfUI.api.librange then return end
|
|
|
|
local _, class = UnitClass("player")
|
|
local librange = CreateFrame("Frame", "pfRangecheck", UIParent)
|
|
|
|
-- table of 40y spells per class
|
|
local spells = {
|
|
["PALADIN"] = {
|
|
"Interface\\Icons\\Spell_Holy_FlashHeal",
|
|
"Interface\\Icons\\Spell_Holy_HolyBolt",
|
|
},
|
|
["PRIEST"] = {
|
|
"Interface\\Icons\\Spell_Holy_FlashHeal",
|
|
"Interface\\Icons\\Spell_Holy_LesserHeal",
|
|
"Interface\\Icons\\Spell_Holy_Heal",
|
|
"Interface\\Icons\\Spell_Holy_GreaterHeal",
|
|
"Interface\\Icons\\Spell_Holy_Renew",
|
|
},
|
|
["DRUID"] = {
|
|
"Interface\\Icons\\Spell_Nature_HealingTouch",
|
|
"Interface\\Icons\\Spell_Nature_ResistNature",
|
|
"Interface\\Icons\\Spell_Nature_Rejuvenation",
|
|
},
|
|
["SHAMAN"] = {
|
|
"Interface\\Icons\\Spell_Nature_MagicImmunity",
|
|
"Interface\\Icons\\Spell_Nature_HealingWaveLesser",
|
|
"Interface\\Icons\\Spell_Nature_HealingWaveGreater",
|
|
},
|
|
}
|
|
|
|
-- use native IsSpellInRange checker for tbc and skip
|
|
-- the whole targeting approach that is required for vanilla
|
|
if pfUI.expansion == "tbc" then
|
|
local spell
|
|
librange:RegisterEvent("LEARNED_SPELL_IN_TAB")
|
|
librange:RegisterEvent("PLAYER_ENTERING_WORLD")
|
|
librange:SetScript("OnEvent", function()
|
|
-- abort on non healing classes
|
|
if not spells[class] then return end
|
|
|
|
for i = 1, GetNumSpellTabs() do
|
|
local _, _, offset, num = GetSpellTabInfo(i)
|
|
for id = offset + 1, offset + num do
|
|
local name, rank = GetSpellName(id, BOOKTYPE_SPELL)
|
|
local texture = GetSpellTexture(name)
|
|
|
|
for _, tex in pairs(spells[class]) do
|
|
if tex == texture then
|
|
spell = name
|
|
return
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end)
|
|
|
|
function librange:UnitInSpellRange(unit)
|
|
if not spell then return nil end
|
|
return IsSpellInRange(spell, unit) == 1 and true or nil
|
|
end
|
|
|
|
-- add librange to pfUI API
|
|
pfUI.api.librange = librange
|
|
return
|
|
end
|
|
|
|
-- units that should be scanned
|
|
local units = {}
|
|
table.insert(units, "pet")
|
|
for i=1,4 do table.insert(units, "party" .. i) end
|
|
for i=1,4 do table.insert(units, "partypet" .. i) end
|
|
for i=1,40 do table.insert(units, "raid" .. i) end
|
|
for i=1,40 do table.insert(units, "raidpet" .. i) end
|
|
local numunits = table.getn(units)
|
|
|
|
-- cache for unit relations
|
|
local unitcache = {}
|
|
|
|
-- actual unit-range table
|
|
local unitdata = { }
|
|
|
|
librange.id = 1
|
|
|
|
librange:Hide()
|
|
librange:RegisterEvent("ACTIONBAR_SLOT_CHANGED")
|
|
librange:RegisterEvent("PLAYER_ENTERING_WORLD")
|
|
librange:RegisterEvent("PLAYER_ENTER_COMBAT")
|
|
librange:RegisterEvent("PLAYER_LEAVE_COMBAT")
|
|
librange:SetScript("OnEvent", function()
|
|
-- disable range checking activities
|
|
if pfUI_config.unitframes.rangecheck == "0" or not spells[class] then
|
|
this:Hide()
|
|
return
|
|
end
|
|
|
|
this.interval = tonumber(C.unitframes.rangechecki)/numunits
|
|
|
|
if event == "ACTIONBAR_SLOT_CHANGED" or event == "PLAYER_ENTERING_WORLD" then
|
|
librange.slot = this:GetRangeSlot()
|
|
this:Show()
|
|
elseif event == "PLAYER_ENTER_COMBAT" then
|
|
this.lastattack = GetTime()
|
|
this:Hide()
|
|
elseif event == "PLAYER_LEAVE_COMBAT" then
|
|
if not this:ReAttack() then
|
|
this:Show()
|
|
end
|
|
end
|
|
end)
|
|
|
|
librange:SetScript("OnUpdate", function()
|
|
if ( this.tick or 1) > GetTime() then
|
|
return
|
|
else
|
|
this.tick = GetTime() + this.interval
|
|
end
|
|
|
|
-- skip invalid units
|
|
while not this:NeedRangeScan(units[this.id]) and this.id <= numunits do
|
|
this.id = this.id + 1
|
|
end
|
|
|
|
if this.id <= numunits and librange.slot then
|
|
local unit = units[this.id]
|
|
if not UnitIsUnit("target", unit) then
|
|
-- suspend for various conditions
|
|
if pfUI.loot and pfUI.loot:IsShown() then return nil end
|
|
if LootFrame and LootFrame:IsShown() then return nil end
|
|
if InspectFrame and InspectFrame:IsShown() then return nil end
|
|
if TradeFrame and TradeFrame:IsShown() then return nil end
|
|
if PlayerFrame and PlayerFrame.inCombat then return nil end
|
|
|
|
pfScanActive = true
|
|
TargetUnit(unit)
|
|
unitdata[unit] = IsActionInRange(librange.slot)
|
|
TargetLastTarget()
|
|
pfScanActive = false
|
|
this:ReAttack()
|
|
end
|
|
|
|
this.id = this.id + 1
|
|
else
|
|
this.id = 1
|
|
end
|
|
end)
|
|
|
|
function librange:ReAttack()
|
|
-- we accidentally broke the autoattack... restoring the old state
|
|
if this.lastattack and this.lastattack + this.interval > GetTime() and UnitCanAttack("player", "target") then
|
|
AttackTarget()
|
|
return true
|
|
else
|
|
return nil
|
|
end
|
|
end
|
|
|
|
function librange:NeedRangeScan(unit)
|
|
if not UnitExists(unit) then return nil end
|
|
if not UnitIsVisible(unit) then return nil end
|
|
if CheckInteractDistance(unit, 4) then return nil end
|
|
return true
|
|
end
|
|
|
|
function librange:GetRealUnit(unit)
|
|
if unitdata[unit] then return unit end
|
|
|
|
if unitcache[unit] then
|
|
if UnitIsUnit(unitcache[unit], unit) then
|
|
return unitcache[unit]
|
|
end
|
|
end
|
|
|
|
for id, realunit in pairs(units) do
|
|
if UnitIsUnit(realunit, unit) then
|
|
unitcache[unit] = realunit
|
|
return realunit
|
|
end
|
|
end
|
|
|
|
return unit
|
|
end
|
|
|
|
function librange:GetRangeSlot()
|
|
for i=1,120 do
|
|
local texture = GetActionTexture(i)
|
|
if texture and not GetMacroInfo(i) then
|
|
for _, check in pairs(spells[class]) do
|
|
if check == texture then
|
|
return i
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
return nil
|
|
end
|
|
|
|
function librange:UnitInSpellRange(unit)
|
|
if not librange.slot then return nil end
|
|
|
|
if UnitIsUnit("target", unit) then
|
|
return IsActionInRange(librange.slot) == 1 and 1 or nil
|
|
end
|
|
|
|
local unit = librange:GetRealUnit(unit)
|
|
|
|
if unitdata[unit] and unitdata[unit] == 1 then
|
|
return 1
|
|
elseif not unitdata[unit] then
|
|
return 1
|
|
else
|
|
return nil
|
|
end
|
|
end
|
|
|
|
-- add librange to pfUI API
|
|
pfUI.api.librange = librange
|