You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.4 KiB

local Druid = {}
ShadowUF:RegisterModule(Druid, "druidBar", ShadowUF.L["Druid mana bar"], true, "DRUID")
function Druid:OnEnable(frame)
frame.druidBar = frame.druidBar or ShadowUF.Units:CreateBar(frame)
frame:RegisterUnitEvent("UNIT_DISPLAYPOWER", self, "PowerChanged")
frame:RegisterUpdateFunc(self, "PowerChanged")
frame:RegisterUpdateFunc(self, "Update")
end
function Druid:OnDisable(frame)
frame:UnregisterAll(self)
end
function Druid:OnLayoutApplied(frame)
if( not frame.visibility.druidBar ) then return end
local color = ShadowUF.db.profile.powerColors.MANA
frame:SetBarColor("druidBar", color.r, color.g, color.b)
end
function Druid:PowerChanged(frame)
local visible = UnitPowerType(frame.unit) ~= ADDITIONAL_POWER_BAR_INDEX and not frame.inVehicle
local type = visible and "RegisterUnitEvent" or "UnregisterSingleEvent"
frame[type](frame, "UNIT_POWER_FREQUENT", self, "Update")
frame[type](frame, "UNIT_MAXPOWER", self, "Update")
ShadowUF.Layout:SetBarVisibility(frame, "druidBar", visible)
if( visible ) then self:Update(frame) end
end
function Druid:Update(frame, event, unit, powerType)
if( powerType and powerType ~= "MANA" ) then return end
frame.druidBar:SetMinMaxValues(0, UnitPowerMax(frame.unit, Enum.PowerType.Mana))
frame.druidBar:SetValue(UnitIsDeadOrGhost(frame.unit) and 0 or not UnitIsConnected(frame.unit) and 0 or UnitPower(frame.unit, Enum.PowerType.Mana))
end