File daybreak.lua changed (mode: 100644) (index a7643fe..49b6314) |
... |
... |
local function getDefaultButtonSize() |
19 |
19 |
return 28 |
return 28 |
20 |
20 |
end |
end |
21 |
21 |
|
|
|
22 |
|
local function formatNumber(n) |
|
23 |
|
if n > 1000 then |
|
24 |
|
n = math.floor(n / 1000) |
|
25 |
|
return tostring(n) .. 'K' |
|
26 |
|
else |
|
27 |
|
return tostring(n) |
|
28 |
|
end |
|
29 |
|
end |
|
30 |
|
|
22 |
31 |
--[[-- |
--[[-- |
23 |
32 |
Process timer tick to update remaining aura duration. |
Process timer tick to update remaining aura duration. |
24 |
33 |
The update employs artificial delay to hopefully reduce the memory cost of updates. |
The update employs artificial delay to hopefully reduce the memory cost of updates. |
|
... |
... |
local function applyOverlayUpdate(button) |
42 |
51 |
assert (string.len(unitDesignation) <= 256) |
assert (string.len(unitDesignation) <= 256) |
43 |
52 |
|
|
44 |
53 |
local filter = button.filter or 'HELPFUL' |
local filter = button.filter or 'HELPFUL' |
45 |
|
local _, _, _, quantity, _, duration, expirationInstance = UnitAura(unitDesignation, auraName, nil, filter) |
|
|
54 |
|
local _, _, _, quantity, _, duration, expirationInstance, |
|
55 |
|
_, _, _, _, _, _, absorbtionAmount = UnitAura(unitDesignation, auraName, nil, filter) |
46 |
56 |
quantity = quantity or 0 |
quantity = quantity or 0 |
47 |
57 |
assert (quantity ~= nil) |
assert (quantity ~= nil) |
48 |
58 |
assert ('number' == type(quantity)) |
assert ('number' == type(quantity)) |
|
... |
... |
local function applyOverlayUpdate(button) |
55 |
65 |
local remainingDuration = math.max(0, math.ceil(expirationInstance - now)) |
local remainingDuration = math.max(0, math.ceil(expirationInstance - now)) |
56 |
66 |
local isDurationUnlimited = (remainingDuration or 0) == 0 and (duration or 0) == 0 |
local isDurationUnlimited = (remainingDuration or 0) == 0 and (duration or 0) == 0 |
57 |
67 |
local t |
local t |
58 |
|
if isDurationUnlimited or remainingDuration > 60 then |
|
|
68 |
|
if button.isAbsorbtionTracker and absorbtionAmount > 0 then |
|
69 |
|
t = formatNumber(absorbtionAmount) |
|
70 |
|
elseif isDurationUnlimited or remainingDuration > 60 then |
59 |
71 |
t = nil |
t = nil |
60 |
72 |
elseif quantity < 2 then |
elseif quantity < 2 then |
61 |
73 |
t = tostring(remainingDuration) |
t = tostring(remainingDuration) |
|
... |
... |
local function initSerendipity(rootFrame) |
1040 |
1052 |
--[[ Priest general ]]-- |
--[[ Priest general ]]-- |
1041 |
1053 |
createButton(9, 0, 'Inspiration', 'DaybreakOverlayPriestInspiration', rootFrame) |
createButton(9, 0, 'Inspiration', 'DaybreakOverlayPriestInspiration', rootFrame) |
1042 |
1054 |
createButton(9, 1, 'Renew', 'DaybreakOverlayPriestRenew', rootFrame) |
createButton(9, 1, 'Renew', 'DaybreakOverlayPriestRenew', rootFrame) |
1043 |
|
createButton(9, 2, 'Power Word: Shield', 'DaybreakOverlayPriestPowerWordShield', rootFrame) |
|
|
1055 |
|
local ill = createButton(9, 2, 'Power Word: Shield', 'DaybreakOverlayPriestPowerWordShield', rootFrame) |
|
1056 |
|
ill.isAbsorbtionTracker = true |
1044 |
1057 |
createButton(10, 2, 'Body and Soul', 'DaybreakOverlayPriestBodyAndSoul', rootFrame) |
createButton(10, 2, 'Body and Soul', 'DaybreakOverlayPriestBodyAndSoul', rootFrame) |
1045 |
1058 |
|
|
1046 |
1059 |
--[[ 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 ]]-- |
|
... |
... |
local function initDaybreak(rootFrame) |
1108 |
1121 |
createButton(9, 2, 'Hand of Protection', 'DaybreakOverlayPaladinHandOfProtection', rootFrame) |
createButton(9, 2, 'Hand of Protection', 'DaybreakOverlayPaladinHandOfProtection', rootFrame) |
1109 |
1122 |
createButton(9, 3, 'Divine Sacrifice', 'DaybreakOverlayPaladinDivineSacrifice', rootFrame) |
createButton(9, 3, 'Divine Sacrifice', 'DaybreakOverlayPaladinDivineSacrifice', rootFrame) |
1110 |
1123 |
createButton(9, 4, 'Aura Mastery', 'DaybreakOverlayPaladinAuraMastery', rootFrame) |
createButton(9, 4, 'Aura Mastery', 'DaybreakOverlayPaladinAuraMastery', rootFrame) |
1111 |
|
createButton(10, 0, 'Illuminated Healing', 'DaybreakOverlayPaladinIlluminatedHealing', rootFrame) |
|
|
1124 |
|
local ill =createButton(10, 0, 'Illuminated Healing', 'DaybreakOverlayPaladinIlluminatedHealing', rootFrame) |
|
1125 |
|
ill.isAbsorbtionTracker = true |
1112 |
1126 |
createButton(10, 1, 'Conviction', 'DaybreakOverlayPaladinConviction', rootFrame) |
createButton(10, 1, 'Conviction', 'DaybreakOverlayPaladinConviction', rootFrame) |
1113 |
1127 |
createButton(10, 2, 'Power Torrent', 'DaybreakOverlayPaladinPowerTorrent', rootFrame) |
createButton(10, 2, 'Power Torrent', 'DaybreakOverlayPaladinPowerTorrent', rootFrame) |
1114 |
1128 |
createButton(10, 3, 'Surge of Dominance', 'DaybreakOverlayPaladinSurgeOfDominance', rootFrame) |
createButton(10, 3, 'Surge of Dominance', 'DaybreakOverlayPaladinSurgeOfDominance', rootFrame) |