525 lines
17 KiB
Lua
525 lines
17 KiB
Lua
local E, L, V, P, G = unpack(select(2, ...)) --Import: Engine, Locales, PrivateDB, ProfileDB, GlobalDB
|
|
local RB = E:GetModule("ReminderBuffs")
|
|
local LSM = E.Libs.LSM
|
|
|
|
--Lua functions
|
|
local ipairs, unpack = ipairs, unpack
|
|
--WoW API / Variables
|
|
local CooldownFrame_SetTimer = CooldownFrame_SetTimer
|
|
local CreateFrame = CreateFrame
|
|
local GetSpellInfo = GetSpellInfo
|
|
local GetTime = GetTime
|
|
local UnitAura = UnitAura
|
|
|
|
RB.Spell1Buffs = {
|
|
67016, -- Flask of the North (SP)
|
|
67017, -- Flask of the North (AP)
|
|
67018, -- Flask of the North (STR)
|
|
53755, -- Flask of the Frost Wyrm
|
|
53758, -- Flask of Stoneblood
|
|
53760, -- Flask of Endless Rage
|
|
54212, -- Flask of Pure Mojo
|
|
53752, -- Lesser Flask of Toughness (50 Resilience)
|
|
17627, -- Flask of Distilled Wisdom
|
|
|
|
33721, -- Spellpower Elixir
|
|
53746, -- Wrath Elixir
|
|
28497, -- Elixir of Mighty Agility
|
|
53748, -- Elixir of Mighty Strength
|
|
60346, -- Elixir of Lightning Speed
|
|
60344, -- Elixir of Expertise
|
|
60341, -- Elixir of Deadly Strikes
|
|
60345, -- Elixir of Armor Piercing
|
|
60340, -- Elixir of Accuracy
|
|
53749, -- Guru's Elixir
|
|
|
|
60343, -- Elixir of Mighty Defense
|
|
53751, -- Elixir of Mighty Fortitude
|
|
53764, -- Elixir of Mighty Mageblood
|
|
60347, -- Elixir of Mighty Thoughts
|
|
53763, -- Elixir of Protection
|
|
53747, -- Elixir of Spirit
|
|
|
|
968451, -- Distilled Flask of Unrelenting Power (60)
|
|
968439, -- Distilled Flask of the Warsong (60)
|
|
968448, -- Distilled Flask of the Unyielding (60)
|
|
968442, -- Dilluted Flask of the Kirin Tor (60)
|
|
968460, -- Distilled Flask of the Executioner (60)
|
|
968457, -- Distilled Flask of Shattering Thunder (60)
|
|
968454, -- Distilled Flask of Savage Assault (60)
|
|
968436, -- Distilled Flask of Manifesting Power (60)
|
|
968463, -- Distilled Flask of Deep Meditation (60)
|
|
968445, -- Distilled Flask of Butchery (60)
|
|
968466, -- Distilled Flask of Adept Striking (60)
|
|
|
|
968452, -- Concentrated Flask of Unrelenting Power (60)
|
|
968440, -- Concentrated Flask of the Warsong (60)
|
|
968449, -- Concentrated Flask of the Unyielding (60)
|
|
968443, -- Concentrated Flask of the Kirin Tor (60)
|
|
968461, -- Concentrated Flask of the Executioner (60)
|
|
968458, -- Concentrated Flask of Shattering Thunder (60)
|
|
968455, -- Concentrated Flask of Savage Assault (60)
|
|
968437, -- Concentrated Flask of Manifesting Power (60)
|
|
968464, -- Concentrated Flask of Deep Meditation (60)
|
|
968446, -- Concentrated Flask of Butchery (60)
|
|
968467, -- Concentrated Flask of Adept Striking (60)
|
|
|
|
1968451, -- Impure Flask of Unrelenting Power (70)
|
|
1968439, -- Impure Flask of the Warsong (70)
|
|
1968448, -- Impure Flask of Unyielding (70)
|
|
1968442, -- Impure Flask of the Kirin Tor (70)
|
|
1968460, -- Impure Flask of Executioner (70)
|
|
1968457, -- Impure Flask of Shattering Thunder (70)
|
|
1968454, -- Impure Flask of Savage Assault (70)
|
|
1968436, -- Impure Flask of Manifesting Power (70)
|
|
1968463, -- Impure Flask of Deep Meditation (70)
|
|
1968445, -- Impure Flask of Butchery (70)
|
|
1968466, -- Impure Flask of Adept Striking (70)
|
|
|
|
1968452, -- Pure Flask of Unrelenting Power (70)
|
|
1968440, -- Pure Flask of the Warsong (70)
|
|
1968449, -- Pure Flask of Unyielding (70)
|
|
1968443, -- Pure Flask of the Kirin Tor (70)
|
|
1968461, -- Pure Flask of Executioner (70)
|
|
1968458, -- Pure Flask of Shattering Thunder (70)
|
|
1968455, -- Pure Flask of Savage Assault (70)
|
|
1968437, -- Pure Flask of Manifesting Power (70)
|
|
1968464, -- Pure Flask of Deep Meditation (70)
|
|
1968446, -- Pure Flask of Butchery (70)
|
|
1968467, -- Pure Flask of Adept Striking (70)
|
|
}
|
|
|
|
RB.Spell2Buffs = {
|
|
57325, -- 80 AP
|
|
57327, -- 46 SP
|
|
57329, -- 40 Critical Strike Rating
|
|
57332, -- 40 Haste Rating
|
|
57334, -- 20 MP5
|
|
57356, -- 40 Expertise Rating
|
|
57358, -- 40 ARP
|
|
57360, -- 40 Hit Rating
|
|
57363, -- Tracking Humanoids
|
|
57365, -- 40 Spirit
|
|
57367, -- 40 AGI
|
|
57371, -- 40 STR
|
|
57373, -- Tracking Beasts
|
|
57399, -- 80 AP, 46 SP
|
|
59230, -- 40 Dodge Rating
|
|
65247, -- 20 STR
|
|
|
|
968220, -- Well Fed - Fused Wizard Wontons
|
|
968166, -- Well Fed - Fused Air Fried Chops
|
|
968160, -- Well Fed - Fused Charred Steak
|
|
968214, -- Well Fed - Fused Chunky Stew
|
|
968157, -- Well Fed - Fused Living Soup
|
|
968169, -- Well Fed - Fused Rock's Stew
|
|
968190, -- Well Fed - Fused Seared Chops
|
|
968187, -- Well Fed - Fused Seared Wontons
|
|
968163, -- Well Fed - Fused Steamed Wontons
|
|
968223, -- Well Fed - Fused Wizard Soup
|
|
|
|
968221, -- Well Fed - Imbued Wizard Wontons
|
|
968259, -- Well Fed - Fused Mana Imbued Roast
|
|
968167, -- Well Fed - Imbued Air Fried Chops
|
|
968272, -- Well Fed - Imbued Blackened Roast
|
|
968161, -- Well Fed - Imbued Charred Steak
|
|
968215, -- Well Fed - Imbued Chunky Stew
|
|
968173, -- Well Fed - Imbued Clear-Cut Chops
|
|
968179, -- Well Fed - Imbued Clear-Cut Steak
|
|
968212, -- Well Fed - Imbued Duck Stew
|
|
968233, -- Well Fed - Imbued Hearty Air Fried Chops
|
|
968236, -- Well Fed - Imbued Hearty Charred Steak
|
|
968239, -- Well Fed - Imbued Hearty Steamed Wontons
|
|
968158, -- Well Fed - Imbued Living Soup
|
|
968170, -- Well Fed - Imbued Rock's Stew
|
|
968200, -- Well Fed - Imbued Savory Steak
|
|
968188, -- Well Fed - Imbued Seared Wontons
|
|
968218, -- Well Fed - Imbued Simmered Stew
|
|
968263, -- Well Fed - Imbued Sizzling Roast
|
|
968164, -- Well Fed - Imbued Steamed Wontons
|
|
968266, -- Well Fed - Imbued Wild Roast
|
|
968269, -- Well Fed - Imbued Winter Roast
|
|
968224, -- Well Fed - Imbued Wizard Soup
|
|
|
|
1968166, -- Well Fed - Tasty Air Fried Chops
|
|
1968160, -- Well Fed - Tasty Charred Steak
|
|
1968214, -- Well Fed - Tasty Chunky Stew
|
|
1968178, -- Well Fed - Tasty Clear-Cut Steak
|
|
1968172, -- Well Fed - Tasty Clear-Cut Chops
|
|
1968211, -- Well Fed - Tasty Duck Stew
|
|
1968238, -- Well Fed - Tasty Hearty Steamed Wontons
|
|
1968169, -- Well Fed - Tasty Rock's Stew
|
|
1968196, -- Well Fed - Tasty Savory Chops
|
|
1968199, -- Well Fed - Tasty Savory Steak
|
|
1968187, -- Well Fed - Tasty Seared Wontons
|
|
1968217, -- Well Fed - Tasty Simmered Stew
|
|
1968163, -- Well Fed - Tasty Steamed Wontons
|
|
1968223, -- Well Fed - Tasty Wizard Soup
|
|
1968220, -- Well Fed - Tasty Wizard Wontons
|
|
|
|
1968167, -- Well Fed - Delicious Air Fried Chops
|
|
1968272, -- Well Fed - Delicious Blackened Roast
|
|
1968161, -- Well Fed - Delicious Charred Steak
|
|
1968215, -- Well Fed - Delicious Chunky Stew
|
|
1968173, -- Well Fed - Delicious Clear-Cut Chops
|
|
1968179, -- Well Fed - Delicious Clear-Cut Steak
|
|
1968176, -- Well Fed - Delicious Clear-Cut Wontons
|
|
1968212, -- Well Fed - Delicious Duck Stew
|
|
1968233, -- Well Fed - Delicious Hearty Air Fried Chops
|
|
1968236, -- Well Fed - Delicious Hearty Charred Steak
|
|
1968239, -- Well Fed - Delicious Hearty Steamed Wontons
|
|
1968158, -- Well Fed - Delicious Living Soup
|
|
1968260, -- Well Fed - Delicious Mana Charged Roast
|
|
1968170, -- Well Fed - Delicious Rock's Stew
|
|
1968197, -- Well Fed - Delicious Savory Chops
|
|
1968200, -- Well Fed - Delicious Savory Steak
|
|
1968194, -- Well Fed - Delicious Savory Stew
|
|
1968203, -- Well Fed - Delicious Savory Wontons
|
|
1968188, -- Well Fed - Delicious Seared Wontons
|
|
1968218, -- Well Fed - Delicious Simmered Stew
|
|
1968263, -- Well Fed - Delicious Sizzling Roast
|
|
1968164, -- Well Fed - Delicious Steamed Wontons
|
|
1968266, -- Well Fed - Delicious Wild Roast
|
|
1968269, -- Well Fed - Delicious Winter Roast
|
|
1968224, -- Well Fed - Delicious Wizard Soup
|
|
1968221, -- Well Fed - Delicious Wizard Wontons
|
|
}
|
|
|
|
RB.Spell3Buffs = {
|
|
72588, -- Gift of the Wild
|
|
48469, -- Mark of the Wild
|
|
}
|
|
|
|
RB.Spell4Buffs = {
|
|
25898, -- Greater Blessing of Kings
|
|
20217, -- Blessing of Kings
|
|
72586, -- Blessing of Forgotten Kings
|
|
}
|
|
|
|
RB.Spell5Buffs = {
|
|
48162, -- Prayer of Fortitude
|
|
48161, -- Power Word: Fortitude
|
|
72590, -- Fortitude
|
|
}
|
|
|
|
RB.Spell6Buffs = {
|
|
20911, -- Blessing of Sanctuary
|
|
25899, -- Greater Blessing of Sanctuary
|
|
}
|
|
|
|
RB.CasterSpell7Buffs = {
|
|
61316, -- Dalaran Brilliance
|
|
43002, -- Arcane Brilliance
|
|
42995, -- Arcane Intellect
|
|
30706, -- Totem of Wrath
|
|
8227, -- Flametongue Totem
|
|
47236, -- Demonic Pact
|
|
54424, -- Fel Intelligence
|
|
}
|
|
|
|
RB.AttackSpell7Buffs = {
|
|
48934, -- Greater Blessing of Might
|
|
48932, -- Blessing of Might
|
|
47436, -- Battle Shout
|
|
25527, -- Strength of Earth Totem
|
|
}
|
|
|
|
RB.Spell8Buffs = {
|
|
6307, -- Blood Pact
|
|
469, -- Commanding Shout
|
|
}
|
|
|
|
-- Concentration / Thorns
|
|
RB.CasterSpell9Buffs = {
|
|
19746, -- Concentration Aura
|
|
}
|
|
RB.AttackSpell9Buffs = {
|
|
467, -- Thorns
|
|
7294, -- Retribution Aura
|
|
25506, -- Stoneskin Totem
|
|
465, -- Devotion Aura
|
|
}
|
|
|
|
-- Mana regen
|
|
RB.Spell10Buffs = {
|
|
48938, -- Greater Blessing of Wisdom
|
|
48936, -- Blessing of Wisdom
|
|
58777, -- Mana Spring
|
|
}
|
|
|
|
-- Crit % Increase
|
|
RB.CasterSpell11Buffs = {
|
|
51471, -- Elemental Oath
|
|
24907, -- Moonkin Aura
|
|
}
|
|
RB.AttackSpell11Buffs = {
|
|
17007, -- Leader of the Pack
|
|
29801, -- Rampage
|
|
}
|
|
|
|
-- Haste % Increase
|
|
RB.CasterSpell12Buffs = {
|
|
50172, -- Moonkin's Presence
|
|
2895, -- Wrath of Air
|
|
853648, -- Swift Retribution
|
|
}
|
|
RB.AttackSpell12Buffs = {
|
|
8512, -- Windfury Totem
|
|
}
|
|
RB.HunterSpell12Buffs = {
|
|
61316, -- Dalaran Brilliance
|
|
43002, -- Arcane Brilliance
|
|
42995, -- Arcane Intellect
|
|
30706, -- Totem of Wrath
|
|
8227, -- Flametongue Totem
|
|
47236, -- Demonic Pact
|
|
}
|
|
|
|
-- Spirit Buff
|
|
RB.CasterSpell13Buffs = {
|
|
14752, -- Divine Spirit
|
|
27681, -- Prayer of Spirit
|
|
}
|
|
-- Percent AP
|
|
RB.AttackSpell13Buffs = {
|
|
19506, -- Trueshot Aura
|
|
30802, -- Unleashed Rage
|
|
53137, -- Abomination's Might
|
|
}
|
|
|
|
-- Percent Damage
|
|
RB.Spell14Buffs = {
|
|
31579, -- Arcane Empowerment
|
|
31869, -- Sanctified Retribution
|
|
34455, -- Ferocious Inspiration
|
|
}
|
|
|
|
function RB:CheckFilterForActiveBuff(filter)
|
|
for _, spell in ipairs(filter) do
|
|
local spellName = GetSpellInfo(spell)
|
|
local name, _, texture, _, _, duration, expirationTime = UnitAura("player", spellName)
|
|
|
|
if name then
|
|
return texture, duration, expirationTime
|
|
end
|
|
end
|
|
end
|
|
|
|
function RB:UpdateReminderTime(elapsed)
|
|
self.expiration = self.expiration - elapsed
|
|
|
|
if self.nextUpdate > 0 then
|
|
self.nextUpdate = self.nextUpdate - elapsed
|
|
return
|
|
end
|
|
|
|
if self.expiration <= 0 then
|
|
self.timer:SetText("")
|
|
self:SetScript("OnUpdate", nil)
|
|
return
|
|
end
|
|
|
|
local value, id, nextUpdate, remainder = E:GetTimeInfo(self.expiration, 4)
|
|
self.nextUpdate = nextUpdate
|
|
|
|
local style = E.TimeFormats[id]
|
|
if style then
|
|
self.timer:SetFormattedText(style[1], value, remainder)
|
|
end
|
|
end
|
|
|
|
function RB:UpdateReminder(event, unit)
|
|
if event == "UNIT_AURA" and unit ~= "player" then return end
|
|
local wide = E.db.general.reminder.wide
|
|
for i = 1, wide and 14 or 7 do
|
|
local texture, duration, expirationTime = self:CheckFilterForActiveBuff(self["Spell"..i.."Buffs"])
|
|
local button = self.frame[i]
|
|
|
|
if texture then
|
|
button.t:SetTexture(texture)
|
|
|
|
if (duration == 0 and expirationTime == 0) or E.db.general.reminder.durations ~= true then
|
|
button.t:SetAlpha(E.db.general.reminder.reverse and 1 or 0.3)
|
|
button:SetScript("OnUpdate", nil)
|
|
button.timer:SetText(nil)
|
|
CooldownFrame_SetTimer(button.cd, 0, 0, 0)
|
|
else
|
|
button.expiration = expirationTime - GetTime()
|
|
button.nextUpdate = 0
|
|
button.t:SetAlpha(1)
|
|
CooldownFrame_SetTimer(button.cd, expirationTime - duration, duration, 1)
|
|
button.cd:SetReverse(E.db.general.reminder.reverse)
|
|
button:SetScript("OnUpdate", self.UpdateReminderTime)
|
|
end
|
|
else
|
|
CooldownFrame_SetTimer(button.cd, 0, 0, 0)
|
|
button.t:SetAlpha(E.db.general.reminder.reverse and 0.3 or 1)
|
|
button:SetScript("OnUpdate", nil)
|
|
button.timer:SetText(nil)
|
|
button.t:SetTexture(self.DefaultIcons[i])
|
|
end
|
|
end
|
|
end
|
|
|
|
function RB:CreateButton()
|
|
local button = CreateFrame("Button", nil, ElvUI_ReminderBuffs)
|
|
button:SetTemplate("Default")
|
|
|
|
button.t = button:CreateTexture(nil, "OVERLAY")
|
|
button.t:SetTexCoord(unpack(E.TexCoords))
|
|
button.t:SetInside()
|
|
button.t:SetTexture("Interface\\Icons\\INV_Misc_QuestionMark")
|
|
|
|
button.cd = CreateFrame("Cooldown", nil, button, "CooldownFrameTemplate")
|
|
button.cd:SetInside()
|
|
button.cd.noOCC = true
|
|
button.cd.noCooldownCount = true
|
|
|
|
button.timer = button.cd:CreateFontString(nil, "OVERLAY")
|
|
button.timer:SetPoint("CENTER")
|
|
|
|
return button
|
|
end
|
|
|
|
function RB:EnableRB()
|
|
ElvUI_ReminderBuffs:Show()
|
|
self:RegisterEvent("UNIT_AURA", "UpdateReminder")
|
|
self:RegisterEvent("ACTIVE_TALENT_GROUP_CHANGED", "UpdateReminder")
|
|
self:RegisterEvent("CHARACTER_POINTS_CHANGED", "UpdateReminder")
|
|
E.RegisterCallback(self, "RoleChanged", "UpdateSettings")
|
|
self:UpdateReminder()
|
|
end
|
|
|
|
function RB:DisableRB()
|
|
ElvUI_ReminderBuffs:Hide()
|
|
self:UnregisterEvent("UNIT_AURA")
|
|
self:UnregisterEvent("ACTIVE_TALENT_GROUP_CHANGED")
|
|
self:UnregisterEvent("CHARACTER_POINTS_CHANGED")
|
|
E.UnregisterCallback(self, "RoleChanged", "UpdateSettings")
|
|
end
|
|
|
|
function RB:UpdateSettings(isCallback)
|
|
local frame = self.frame
|
|
local wide = E.db.general.reminder.wide
|
|
frame:Width(E.RBRWidth * (wide and 2 or 1))
|
|
|
|
self:UpdateDefaultIcons()
|
|
|
|
for i = 1, 14 do
|
|
local button = frame[i]
|
|
button:ClearAllPoints()
|
|
button:SetWidth(E.RBRWidth)
|
|
button:SetHeight(E.RBRWidth)
|
|
|
|
if i == 1 then
|
|
button:SetPoint("TOPLEFT", ElvUI_ReminderBuffs, "TOPLEFT", 0, -1)
|
|
elseif i == 8 then
|
|
button:SetPoint("TOPRIGHT", ElvUI_ReminderBuffs, "TOPRIGHT", 0, -1)
|
|
else
|
|
button:Point("TOP", frame[i - 1], "BOTTOM", 0, E.Border - E.Spacing*3)
|
|
end
|
|
if E.db.general.reminder.durations then
|
|
button.cd:SetAlpha(1)
|
|
else
|
|
button.cd:SetAlpha(0)
|
|
end
|
|
|
|
button.timer:FontTemplate(LSM:Fetch("font", E.db.general.reminder.font), E.db.general.reminder.fontSize, E.db.general.reminder.fontOutline)
|
|
|
|
if not wide and i > 7 then
|
|
button:Hide()
|
|
elseif wide and i > 7 then
|
|
button:Show()
|
|
end
|
|
end
|
|
|
|
if not isCallback then
|
|
if E.db.general.reminder.enable then
|
|
RB:EnableRB()
|
|
else
|
|
RB:DisableRB()
|
|
end
|
|
else
|
|
self:UpdateReminder()
|
|
end
|
|
end
|
|
|
|
function RB:UpdatePosition()
|
|
Minimap:ClearAllPoints()
|
|
ElvConfigToggle:ClearAllPoints()
|
|
ElvUI_ReminderBuffs:ClearAllPoints()
|
|
if E.db.general.reminder.position == "LEFT" then
|
|
Minimap:Point("TOPRIGHT", MMHolder, "TOPRIGHT", -E.Border, -E.Border)
|
|
ElvConfigToggle:SetPoint("TOPRIGHT", LeftMiniPanel, "TOPLEFT", E.Border - E.Spacing*3, 0)
|
|
ElvConfigToggle:SetPoint("BOTTOMRIGHT", LeftMiniPanel, "BOTTOMLEFT", E.Border - E.Spacing*3, 0)
|
|
ElvUI_ReminderBuffs:SetPoint("TOPRIGHT", Minimap.backdrop, "TOPLEFT", E.Border - E.Spacing*3, 0)
|
|
ElvUI_ReminderBuffs:SetPoint("BOTTOMRIGHT", Minimap.backdrop, "BOTTOMLEFT", E.Border - E.Spacing*3, 0)
|
|
else
|
|
Minimap:Point("TOPLEFT", MMHolder, "TOPLEFT", E.Border, -E.Border)
|
|
ElvConfigToggle:SetPoint("TOPLEFT", RightMiniPanel, "TOPRIGHT", -E.Border + E.Spacing*3, 0)
|
|
ElvConfigToggle:SetPoint("BOTTOMLEFT", RightMiniPanel, "BOTTOMRIGHT", -E.Border + E.Spacing*3, 0)
|
|
ElvUI_ReminderBuffs:SetPoint("TOPLEFT", Minimap.backdrop, "TOPRIGHT", -E.Border + E.Spacing*3, 0)
|
|
ElvUI_ReminderBuffs:SetPoint("BOTTOMLEFT", Minimap.backdrop, "BOTTOMRIGHT", -E.Border + E.Spacing*3, 0)
|
|
end
|
|
end
|
|
|
|
function RB:UpdateDefaultIcons()
|
|
local isCaster = E.private.general.reminder.classtype == "Caster"
|
|
local isRanged = E.private.general.reminder.classtype == "Ranged"
|
|
self.DefaultIcons = {
|
|
[1] = "Interface\\Icons\\INV_Potion_97",
|
|
[2] = "Interface\\Icons\\Spell_Misc_Food",
|
|
[3] = "Interface\\Icons\\Spell_Nature_Regeneration",
|
|
[4] = "Interface\\Icons\\Spell_Magic_GreaterBlessingofKings",
|
|
[5] = "Interface\\Icons\\Spell_Holy_WordFortitude",
|
|
[6] = "Interface\\Icons\\spell_nature_lightningshield",
|
|
[7] = (isCaster and "Interface\\Icons\\Spell_Holy_MagicalSentry") or "Interface\\Icons\\spell_holy_fistofjustice",
|
|
[8] = "Interface\\Icons\\ability_warrior_rallyingcry",
|
|
[9] = (isCaster and "Interface\\Icons\\spell_holy_mindsooth") or "Interface\\Icons\\spell_holy_devotionaura",
|
|
[10] = "Interface\\Icons\\Spell_Holy_GreaterBlessingofWisdom",
|
|
[11] = (isCaster and "Interface\\Icons\\spell_nature_moonglow") or "Interface\\Icons\\spell_nature_unyeildingstamina",
|
|
[12] = (isCaster and "Interface\\Icons\\spell_nature_forceofnature") or (isRanged and "Interface\\Icons\\Spell_Holy_MagicalSentry") or "Interface\\Icons\\spell_nature_windfury",
|
|
[13] = (isCaster and "Interface\\Icons\\spell_holy_prayerofspirit") or "Interface\\Icons\\ability_trueshot",
|
|
[14] = "Interface\\Icons\\spell_nature_starfall",
|
|
}
|
|
|
|
self.Spell7Buffs = isCaster and self.CasterSpell7Buffs or self.AttackSpell7Buffs
|
|
|
|
self.Spell9Buffs = isCaster and self.CasterSpell9Buffs or self.AttackSpell9Buffs
|
|
|
|
self.Spell11Buffs = isCaster and self.CasterSpell11Buffs or self.AttackSpell11Buffs
|
|
self.Spell12Buffs = isCaster and self.CasterSpell12Buffs or isRanged and self.HunterSpell12Buffs or self.AttackSpell12Buffs
|
|
self.Spell13Buffs = isCaster and self.CasterSpell13Buffs or self.AttackSpell13Buffs
|
|
end
|
|
|
|
function RB:Initialize()
|
|
if not E.private.general.minimap.enable then return end
|
|
local wide = E.db.general.reminder.wide
|
|
|
|
self.db = E.db.general.reminder
|
|
|
|
local frame = CreateFrame("Frame", "ElvUI_ReminderBuffs", Minimap)
|
|
frame:Width(E.RBRWidth)
|
|
if E.db.general.reminder.position == "LEFT" then
|
|
frame:Point("TOPRIGHT", Minimap.backdrop, "TOPLEFT", E.Border - E.Spacing*3, 0)
|
|
frame:Point("BOTTOMRIGHT", Minimap.backdrop, "BOTTOMLEFT", E.Border - E.Spacing*3, 0)
|
|
else
|
|
frame:Point("TOPLEFT", Minimap.backdrop, "TOPRIGHT", -E.Border + E.Spacing*3, 0)
|
|
frame:Point("BOTTOMLEFT", Minimap.backdrop, "BOTTOMRIGHT", -E.Border + E.Spacing*3, 0)
|
|
end
|
|
self.frame = frame
|
|
|
|
for i = 1, 14 do
|
|
frame[i] = self:CreateButton()
|
|
frame[i]:SetID(i)
|
|
end
|
|
|
|
self:UpdateSettings()
|
|
end
|
|
|
|
local function InitializeCallback()
|
|
RB:Initialize()
|
|
end
|
|
|
|
E:RegisterModule(RB:GetName(), InitializeCallback)
|