83 lines
2.6 KiB
Lua
83 lines
2.6 KiB
Lua
--[[
|
|
Copyright (c) 2009, Hendrik "Nevcairiel" Leppkes < h.leppkes at gmail dot com >
|
|
All rights reserved.
|
|
]]
|
|
|
|
if not HasMultiCastActionBar then return end
|
|
|
|
local classMask = UnitClassMask("player")
|
|
|
|
-- CoA: Enum.ClassMask only knows vanilla classes (SHAMAN/HERO); custom classes
|
|
-- (e.g. Witchdoctor) won't match. EnumUtil/Enum.ClassMask may also be nil on
|
|
-- this client. Guard both: if the mask API is unavailable OR the player's class
|
|
-- isn't in the vanilla set, fall through to the MultiCastActionBarFrame check —
|
|
-- if the engine created the bar for this player we wrap it regardless of class.
|
|
local _vanillaMask = EnumUtil and Enum and Enum.ClassMask
|
|
and EnumUtil.CombineMasks(Enum.ClassMask.SHAMAN, Enum.ClassMask.HERO)
|
|
if _vanillaMask and not bit.contains(_vanillaMask, classMask)
|
|
and not MultiCastActionBarFrame then
|
|
return
|
|
end
|
|
|
|
-- fetch upvalues
|
|
local L = LibStub("AceLocale-3.0"):GetLocale("Bartender4")
|
|
local Bar = Bartender4.Bar.prototype
|
|
|
|
local defaults = { profile = Bartender4:Merge({
|
|
enabled = true,
|
|
}, Bartender4.Bar.defaults) }
|
|
|
|
-- register module
|
|
local MultiCastMod = Bartender4:NewModule("MultiCast")
|
|
|
|
-- create prototype information
|
|
local MultiCastBar = setmetatable({}, {__index = Bar})
|
|
|
|
local function OnShowMultiCastActionBar()
|
|
if MultiCastMod:IsEnabled() then
|
|
MultiCastMod:ApplyConfig()
|
|
end
|
|
end
|
|
|
|
function MultiCastMod:OnInitialize()
|
|
hooksecurefunc("ShowMultiCastActionBar", OnShowMultiCastActionBar)
|
|
self.db = Bartender4.db:RegisterNamespace("MultiCast", defaults)
|
|
self:SetEnabledState(self.db.profile.enabled)
|
|
end
|
|
|
|
function MultiCastMod:OnEnable()
|
|
if not self.bar then
|
|
self.bar = setmetatable(Bartender4.Bar:Create("MultiCast", self.db.profile, L["Totem Bar"]), {__index = MultiCastBar})
|
|
self.bar.content = MultiCastActionBarFrame
|
|
self.bar.content:SetScript("OnShow", nil)
|
|
self.bar.content:SetScript("OnHide", nil)
|
|
self.bar.content:SetScript("OnUpdate", nil)
|
|
self.bar.content.ignoreFramePositionManager = true
|
|
|
|
self.bar.content:SetParent(self.bar)
|
|
self.bar.content:Show()
|
|
self.bar.content:SetFrameLevel(self.bar:GetFrameLevel() + 1)
|
|
end
|
|
self.bar:Enable()
|
|
self:ToggleOptions()
|
|
self:ApplyConfig()
|
|
end
|
|
|
|
function MultiCastMod:ApplyConfig()
|
|
if not self:IsEnabled() then return end
|
|
self.bar:ApplyConfig(self.db.profile)
|
|
end
|
|
|
|
function MultiCastBar:ApplyConfig(config)
|
|
Bar.ApplyConfig(self, config)
|
|
|
|
self:PerformLayout()
|
|
end
|
|
|
|
function MultiCastBar:PerformLayout()
|
|
self:SetSize(230, 40)
|
|
local bar = self.content
|
|
bar:ClearAllPoints()
|
|
bar:SetPoint("TOPLEFT", self, "TOPLEFT", 3, 1)
|
|
end
|