initial commit
This commit is contained in:
55
Modules/DataTexts/CombatTime.lua
Normal file
55
Modules/DataTexts/CombatTime.lua
Normal file
@@ -0,0 +1,55 @@
|
||||
local E, L, V, P, G = unpack(select(2, ...)); --Import: Engine, Locales, PrivateDB, ProfileDB, GlobalDB
|
||||
local DT = E:GetModule('DataTexts')
|
||||
|
||||
local floor, format, strjoin = floor, format, strjoin
|
||||
local GetInstanceInfo = GetInstanceInfo
|
||||
local GetTime = GetTime
|
||||
|
||||
local displayString, lastPanel = ''
|
||||
local timerText, timer, startTime = L["Combat"], 0, 0
|
||||
|
||||
local function UpdateText()
|
||||
return format(E.global.datatexts.settings.Combat.TimeFull and '%02d:%02d:%02d' or '%02d:%02d', floor(timer/60), timer % 60, (timer - floor(timer)) * 100)
|
||||
end
|
||||
|
||||
local function OnUpdate(self)
|
||||
timer = GetTime() - startTime
|
||||
self.text:SetFormattedText(displayString, timerText, UpdateText())
|
||||
end
|
||||
|
||||
local function DelayOnUpdate(self, elapsed)
|
||||
startTime = startTime - elapsed
|
||||
if startTime <= 0 then
|
||||
timer, startTime = 0, GetTime()
|
||||
self:SetScript('OnUpdate', OnUpdate)
|
||||
end
|
||||
end
|
||||
|
||||
local function OnEvent(self, event, _, timeSeconds)
|
||||
local _, instanceType = GetInstanceInfo()
|
||||
local isInArena = instanceType == 'arena'
|
||||
|
||||
if event == 'START_TIMER' and isInArena then
|
||||
timerText, timer, startTime = L["Arena"], 0, timeSeconds
|
||||
self.text:SetFormattedText(displayString, timerText, '00:00:00')
|
||||
self:SetScript('OnUpdate', DelayOnUpdate)
|
||||
elseif event == 'PLAYER_REGEN_ENABLED' and not isInArena then
|
||||
self:SetScript('OnUpdate', nil)
|
||||
elseif event == 'PLAYER_REGEN_DISABLED' and not isInArena then
|
||||
timerText, timer, startTime = L["Combat"], 0, GetTime()
|
||||
self:SetScript('OnUpdate', OnUpdate)
|
||||
elseif not self.text:GetText() then
|
||||
self.text:SetFormattedText(displayString, timerText, 'N/A')
|
||||
end
|
||||
|
||||
lastPanel = self
|
||||
end
|
||||
|
||||
local function ValueColorUpdate(hex)
|
||||
displayString = strjoin('', '%s: ', hex, '%s|r')
|
||||
|
||||
if lastPanel then OnEvent(lastPanel) end
|
||||
end
|
||||
E.valueColorUpdateFuncs[ValueColorUpdate] = true
|
||||
|
||||
DT:RegisterDatatext('Combat', nil, {'START_TIMER', 'PLAYER_REGEN_DISABLED', 'PLAYER_REGEN_ENABLED'}, OnEvent, nil, nil, nil, nil, L["Combat/Arena Time"], nil, ValueColorUpdate)
|
||||
Reference in New Issue
Block a user