initial commit
This commit is contained in:
30
Modules/DataTexts/Strength.lua
Normal file
30
Modules/DataTexts/Strength.lua
Normal file
@@ -0,0 +1,30 @@
|
||||
local E, L, V, P, G = unpack(select(2, ...))
|
||||
local DT = E:GetModule('DataTexts')
|
||||
|
||||
local strjoin = strjoin
|
||||
local UnitStat = UnitStat
|
||||
local ITEM_MOD_STRENGTH_SHORT = ITEM_MOD_STRENGTH_SHORT
|
||||
local LE_UNIT_STAT_STRENGTH = LE_UNIT_STAT_STRENGTH
|
||||
local STAT_CATEGORY_ATTRIBUTES = STAT_CATEGORY_ATTRIBUTES
|
||||
|
||||
local displayString, lastPanel = ''
|
||||
|
||||
local function OnEvent(self)
|
||||
if E.global.datatexts.settings.Strength.NoLabel then
|
||||
self.text:SetFormattedText(displayString, UnitStat("player", LE_UNIT_STAT_STRENGTH))
|
||||
else
|
||||
self.text:SetFormattedText(displayString, E.global.datatexts.settings.Strength.Label ~= '' and E.global.datatexts.settings.Strength.Label or ITEM_MOD_STRENGTH_SHORT..': ', UnitStat("player", LE_UNIT_STAT_STRENGTH))
|
||||
end
|
||||
|
||||
lastPanel = self
|
||||
end
|
||||
|
||||
local function ValueColorUpdate(hex)
|
||||
displayString = strjoin('', E.global.datatexts.settings.Strength.NoLabel and '' or '%s', hex, '%d|r')
|
||||
|
||||
if lastPanel then OnEvent(lastPanel) end
|
||||
end
|
||||
|
||||
E.valueColorUpdateFuncs[ValueColorUpdate] = true
|
||||
|
||||
DT:RegisterDatatext('Strength', STAT_CATEGORY_ATTRIBUTES, { "UNIT_STATS", "UNIT_AURA", "ACTIVE_TALENT_GROUP_CHANGED", "PLAYER_TALENT_UPDATE" }, OnEvent, nil, nil, nil, nil, ITEM_MOD_STRENGTH_SHORT, nil, ValueColorUpdate)
|
||||
Reference in New Issue
Block a user