File daybreak.lua changed (mode: 100644) (index 4e11256..3ad6162) |
... |
... |
local function getEstimatedBattlegroundRole(unitDesignation) |
41 |
41 |
elseif 3 == i then |
elseif 3 == i then |
42 |
42 |
roleDesignation = 'DAMAGER' |
roleDesignation = 'DAMAGER' |
43 |
43 |
end |
end |
|
44 |
|
elseif 'PRIEST' == classDesignation then |
|
45 |
|
if 1 == i then |
|
46 |
|
roleDesignation = 'HEALER' |
|
47 |
|
elseif 2 == i then |
|
48 |
|
roleDesignation = 'HEALER' |
|
49 |
|
elseif 3 == i then |
|
50 |
|
roleDesignation = 'DAMAGER' |
|
51 |
|
end |
|
52 |
|
elseif 'WARRIOR' == classDesignation then |
|
53 |
|
if 1 == i then |
|
54 |
|
roleDesignation = 'DAMAGER' |
|
55 |
|
elseif 2 == i then |
|
56 |
|
roleDesignation = 'DAMAGER' |
|
57 |
|
elseif 3 == i then |
|
58 |
|
roleDesignation = 'TANK' |
|
59 |
|
end |
|
60 |
|
elseif 'WARLOCK' == classDesignation then |
|
61 |
|
if 1 == i then |
|
62 |
|
roleDesignation = 'DAMAGER' |
|
63 |
|
elseif 2 == i then |
|
64 |
|
roleDesignation = 'DAMAGER' |
|
65 |
|
elseif 3 == i then |
|
66 |
|
roleDesignation = 'DAMAGER' |
|
67 |
|
end |
44 |
68 |
end |
end |
45 |
69 |
|
|
46 |
70 |
assert (roleDesignation ~= nil) |
assert (roleDesignation ~= nil) |
|
... |
... |
end |
394 |
418 |
local function initHolyPower(rootFrame) |
local function initHolyPower(rootFrame) |
395 |
419 |
assert (rootFrame ~= nil) |
assert (rootFrame ~= nil) |
396 |
420 |
|
|
|
421 |
|
local _, c = UnitClass('player') |
|
422 |
|
if 'PALADIN' ~= c then |
|
423 |
|
return |
|
424 |
|
end |
|
425 |
|
|
397 |
426 |
local hpf = createHolyPowerIndicator('DaybreakHolyPowerPlayerFrame', rootFrame, 'player') |
local hpf = createHolyPowerIndicator('DaybreakHolyPowerPlayerFrame', rootFrame, 'player') |
398 |
427 |
hpf:SetPoint('CENTER', 0, 0) |
hpf:SetPoint('CENTER', 0, 0) |
399 |
428 |
hpf:SetPoint('BOTTOM', 0, 0) |
hpf:SetPoint('BOTTOM', 0, 0) |
|
... |
... |
local function applyUpdate(button, updateDurationSec) |
676 |
705 |
assert (string.len(unitDesignation) >= 2) |
assert (string.len(unitDesignation) >= 2) |
677 |
706 |
assert (string.len(unitDesignation) <= 256) |
assert (string.len(unitDesignation) <= 256) |
678 |
707 |
|
|
679 |
|
local _, _, _, _, _, _, expirationInstance = UnitBuff(unitDesignation, auraName) |
|
|
708 |
|
local _, _, _, _, _, duration, expirationInstance = UnitBuff(unitDesignation, auraName) |
680 |
709 |
if nil == expirationInstance then |
if nil == expirationInstance then |
681 |
710 |
return |
return |
682 |
711 |
end |
end |
683 |
712 |
local now = GetTime() |
local now = GetTime() |
684 |
713 |
local remainingDuration = math.max(0, math.ceil(expirationInstance - now)) |
local remainingDuration = math.max(0, math.ceil(expirationInstance - now)) |
|
714 |
|
local isDurationUnlimited = (remainingDuration or 0) == 0 and (duration or 0) == 0 |
|
715 |
|
if isDurationUnlimited then |
|
716 |
|
remainingDuration = nil |
|
717 |
|
end |
685 |
718 |
button:SetText(remainingDuration) |
button:SetText(remainingDuration) |
686 |
719 |
end |
end |
687 |
720 |
|
|
|
... |
... |
local function createButton(column, row, localizedSpellName, buttonName, parentF |
779 |
812 |
end |
end |
780 |
813 |
|
|
781 |
814 |
local function initDaybreak(rootFrame) |
local function initDaybreak(rootFrame) |
|
815 |
|
--[[ Paladin ]]-- |
782 |
816 |
--[[ General ]]-- |
--[[ General ]]-- |
783 |
817 |
createButton(0, 0, 'Crusader', 'DaybreakButton01', rootFrame) |
createButton(0, 0, 'Crusader', 'DaybreakButton01', rootFrame) |
784 |
818 |
createButton(0, 1, 'Divine Plea', 'DaybreakButton02', rootFrame) |
createButton(0, 1, 'Divine Plea', 'DaybreakButton02', rootFrame) |
|
... |
... |
local function initDaybreak(rootFrame) |
811 |
845 |
--[[ Retribution ]]-- |
--[[ Retribution ]]-- |
812 |
846 |
createButton(10, 1, 'Inquisition', 'DaybreakButton22', rootFrame) |
createButton(10, 1, 'Inquisition', 'DaybreakButton22', rootFrame) |
813 |
847 |
|
|
|
848 |
|
--[[ Priest ]]-- |
|
849 |
|
local _, classDesignation = UnitClass('player') |
|
850 |
|
if 'PRIEST' == classDesignation then |
|
851 |
|
createButton(0, 0, 'Chakra: Chastise', 'DaybreakChakraChastiseButton', rootFrame) |
|
852 |
|
createButton(0, 0, 'Chakra: Sanctuary', 'DaybreakChakraSanctuaryButton', rootFrame) |
|
853 |
|
createButton(0, 0, 'Chakra: Serenity', 'DaybreakChakraSerenityButton', rootFrame) |
|
854 |
|
createButton(0, 1, 'Chakra', 'DaybreakChakraButton', rootFrame) |
|
855 |
|
--[[ Holy ]]-- |
|
856 |
|
createButton(1, 1, 'Surge of Light', 'DaybreakSurgeOfLightButton', rootFrame) |
|
857 |
|
createButton(1, 2, 'Serendipity', 'DaybreakSerendipityButton', rootFrame) |
|
858 |
|
createButton(1, 3, 'Guardian Spirit', 'DaybreakGuardianSpiritButton', rootFrame) |
|
859 |
|
|
|
860 |
|
--[[ Priest general ]]-- |
|
861 |
|
createButton(9, 0, 'Inspiration', 'DaybreakInspirationButton', rootFrame) |
|
862 |
|
createButton(9, 1, 'Renew', 'DaybreakRenewButton', rootFrame) |
|
863 |
|
createButton(9, 2, 'Power Word: Shield', 'DaybreakPowerWordShieldButton', rootFrame) |
|
864 |
|
end |
|
865 |
|
|
814 |
866 |
--[[ Hide native spell proc indicators that flash in the middle of the screen ]]-- |
--[[ Hide native spell proc indicators that flash in the middle of the screen ]]-- |
815 |
867 |
SetCVar("displaySpellActivationOverlays", false) |
SetCVar("displaySpellActivationOverlays", false) |
816 |
868 |
end |
end |