File daybreak.lua changed (mode: 100644) (index 49703d8..520ae9c) |
... |
... |
local function applyOverlayUpdate(button) |
41 |
41 |
assert (string.len(unitDesignation) >= 2) |
assert (string.len(unitDesignation) >= 2) |
42 |
42 |
assert (string.len(unitDesignation) <= 256) |
assert (string.len(unitDesignation) <= 256) |
43 |
43 |
|
|
44 |
|
local _, _, _, quantity, _, duration, expirationInstance = UnitBuff(unitDesignation, auraName) |
|
|
44 |
|
local filter = button.filter or 'HELPFUL' |
|
45 |
|
local _, _, _, quantity, _, duration, expirationInstance = UnitAura(unitDesignation, auraName, nil, filter) |
45 |
46 |
quantity = quantity or 0 |
quantity = quantity or 0 |
46 |
47 |
assert (quantity ~= nil) |
assert (quantity ~= nil) |
47 |
48 |
assert ('number' == type(quantity)) |
assert ('number' == type(quantity)) |
|
... |
... |
local function applyOverlayUpdate(button) |
54 |
55 |
local remainingDuration = math.max(0, math.ceil(expirationInstance - now)) |
local remainingDuration = math.max(0, math.ceil(expirationInstance - now)) |
55 |
56 |
local isDurationUnlimited = (remainingDuration or 0) == 0 and (duration or 0) == 0 |
local isDurationUnlimited = (remainingDuration or 0) == 0 and (duration or 0) == 0 |
56 |
57 |
local t |
local t |
57 |
|
if isDurationUnlimited then |
|
|
58 |
|
if isDurationUnlimited or remainingDuration > 60 then |
58 |
59 |
t = nil |
t = nil |
59 |
60 |
elseif quantity < 2 then |
elseif quantity < 2 then |
60 |
61 |
t = tostring(remainingDuration) |
t = tostring(remainingDuration) |
|
... |
... |
local function acceptOverlayUnitAura(button, eventCategory) |
120 |
121 |
assert (string.len(unitDesignation) >= 2) |
assert (string.len(unitDesignation) >= 2) |
121 |
122 |
assert (string.len(unitDesignation) <= 256) |
assert (string.len(unitDesignation) <= 256) |
122 |
123 |
|
|
123 |
|
local name, _, icon = UnitBuff(unitDesignation, auraName) |
|
|
124 |
|
local filter = button.filter or 'HELPFUL' |
|
125 |
|
local name, _, icon = UnitAura(unitDesignation, auraName, nil, filter) |
124 |
126 |
if name then |
if name then |
125 |
127 |
--[[ FIXME Apply graphics only once instead of every aura update ]]-- |
--[[ FIXME Apply graphics only once instead of every aura update ]]-- |
126 |
128 |
button:SetNormalTexture(icon) |
button:SetNormalTexture(icon) |
|
... |
... |
code line sorting. |
146 |
148 |
@tparam frame parentFrame |
@tparam frame parentFrame |
147 |
149 |
@treturn frame newly allocated button frame instance |
@treturn frame newly allocated button frame instance |
148 |
150 |
]] |
]] |
149 |
|
local function createButton(column, row, localizedSpellName, buttonName, parentFrame) |
|
|
151 |
|
local function createButton(column, row, localizedSpellName, buttonName, parentFrame, filter) |
150 |
152 |
assert (buttonName ~= nil) |
assert (buttonName ~= nil) |
151 |
153 |
assert ('string' == type(buttonName)) |
assert ('string' == type(buttonName)) |
152 |
154 |
assert (string.len(buttonName) >= 2) |
assert (string.len(buttonName) >= 2) |
|
... |
... |
local function createButton(column, row, localizedSpellName, buttonName, parentF |
177 |
179 |
|
|
178 |
180 |
button.spell = localizedSpellName |
button.spell = localizedSpellName |
179 |
181 |
button.unit = 'player' |
button.unit = 'player' |
|
182 |
|
button.filter = filter or 'HELPFUL' |
180 |
183 |
|
|
181 |
184 |
button:RegisterEvent('UNIT_AURA') |
button:RegisterEvent('UNIT_AURA') |
182 |
185 |
button:SetScript('OnEvent', acceptOverlayUnitAura) |
button:SetScript('OnEvent', acceptOverlayUnitAura) |
|
... |
... |
local function initPowerBar(rootFrame) |
604 |
607 |
return hpf |
return hpf |
605 |
608 |
end |
end |
606 |
609 |
|
|
|
610 |
|
--[[-- |
|
611 |
|
Lose control indicator. |
|
612 |
|
@section cyclone |
|
613 |
|
]] |
|
614 |
|
|
|
615 |
|
local function createCycloneButton(column, row, localizedSpellName, buttonDesignation, parentFrame) |
|
616 |
|
return createButton(column, row, localizedSpellName, buttonDesignation, parentFrame, 'HARMFUL') |
|
617 |
|
end |
|
618 |
|
|
|
619 |
|
--[[-- |
|
620 |
|
Initialize character lose control indicators. |
|
621 |
|
@function initCyclone |
|
622 |
|
@tparam frame rootFrame parent frame |
|
623 |
|
@treturn frame newly allocated frame |
|
624 |
|
]] |
|
625 |
|
local function initCyclone(rootFrame) |
|
626 |
|
--[[ Row: lose control category; column: debuff type (magic, poison, phys) ]]-- |
|
627 |
|
local p = CreateFrame('FRAME', 'DaybreakCycloneHeader', rootFrame) |
|
628 |
|
p:SetSize(32 * 4, 32 * 4) |
|
629 |
|
p:SetPoint('CENTER', 0, 0) |
|
630 |
|
|
|
631 |
|
--[[ Ass ]]-- |
|
632 |
|
createCycloneButton(2, 4, 'Cyclone', 'DaybreakCycloneCyclone', p) |
|
633 |
|
|
|
634 |
|
--[[ Stun ]]-- |
|
635 |
|
createCycloneButton(2, 1, 'Charge', 'DaybreakCycloneCharge', p) |
|
636 |
|
createCycloneButton(2, 1, 'Cheap Shot', 'DaybreakCycloneCheapShot', p) |
|
637 |
|
createCycloneButton(2, 1, 'Concussion Blow', 'DaybreakCycloneConcussionBlow', p) |
|
638 |
|
createCycloneButton(2, 1, 'Fire Blast', 'DaybreakCycloneFireBlast', p) |
|
639 |
|
createCycloneButton(2, 1, 'Gnaw', 'DaybreakCycloneGnaw', p) |
|
640 |
|
createCycloneButton(2, 1, 'Intercept', 'DaybreakCycloneIntercept', p) |
|
641 |
|
createCycloneButton(2, 1, 'Kidney Shot', 'DaybreakCycloneKidenyShot', p) |
|
642 |
|
createCycloneButton(2, 1, 'Shockwave', 'DaybreakCycloneShockwave', p) |
|
643 |
|
createCycloneButton(2, 1, 'Throwdown', 'DaybreakCycloneThrowdown', p) |
|
644 |
|
createCycloneButton(2, 4, 'Deep Freeze', 'DaybreakCycloneDeepFreeze', p) |
|
645 |
|
createCycloneButton(2, 4, 'Hammer of Justice', 'DaybreakCycloneHammerOfJustice', p) |
|
646 |
|
|
|
647 |
|
--[[ Disorient ]]-- |
|
648 |
|
createCycloneButton(1, 1, 'Blind', 'DaybreakCycloneBlind', p) |
|
649 |
|
createCycloneButton(1, 1, 'Gouge', 'DaybreakCycloneGouge', p) |
|
650 |
|
createCycloneButton(1, 1, 'Sap', 'DaybreakCycloneSap', p) |
|
651 |
|
createCycloneButton(1, 2, 'Hex', 'DaybreakCycloneHex', p) |
|
652 |
|
createCycloneButton(1, 4, 'Death Coil', 'DaybreakCycloneFear', p) |
|
653 |
|
createCycloneButton(1, 4, 'Dragon Breath', 'DaybreakCycloneDragonBreath', p) |
|
654 |
|
createCycloneButton(1, 4, 'Fear', 'DaybreakCycloneFear', p) |
|
655 |
|
createCycloneButton(1, 4, 'Feezing Trap', 'DaybreakCycloneFreezingTrap', p) |
|
656 |
|
createCycloneButton(1, 4, 'Holy Word: Chastise', 'DaybreakCycloneHolyWordChastise', p) |
|
657 |
|
createCycloneButton(1, 4, 'Howl of Terror', 'DaybreakCycloneFear', p) |
|
658 |
|
createCycloneButton(1, 4, 'Intimidating Shout', 'DaybreakCycloneIntimidatingShout', p) |
|
659 |
|
createCycloneButton(1, 4, 'Polymorph', 'DaybreakCycloneFear', p) |
|
660 |
|
createCycloneButton(1, 4, 'Ring of Frost', 'DaybreakCycloneRingOfFrost', p) |
|
661 |
|
|
|
662 |
|
--[[ Silence ]]-- |
|
663 |
|
createCycloneButton(1, 1, 'Gag Order', 'DaybreakCycloneGagOrder', p) |
|
664 |
|
createCycloneButton(1, 4, 'Counterspell', 'DaybreakCycloneCounterspell', p) |
|
665 |
|
createCycloneButton(1, 4, 'Silence', 'DaybreakCycloneSilence', p) |
|
666 |
|
createCycloneButton(1, 4, 'Spell Lock', 'DaybreakCycloneSpellLock', p) |
|
667 |
|
createCycloneButton(1, 4, 'Strangulate', 'DaybreakCycloneFear', p) |
|
668 |
|
|
|
669 |
|
--[[ Root ]]-- |
|
670 |
|
createCycloneButton(0, 4, 'Frost Nova', 'DaybreakCycloneFrostNova', p) |
|
671 |
|
createCycloneButton(0, 4, 'Entangling Roots', 'DaybreakCycloneEntanglingRoots', p) |
|
672 |
|
|
|
673 |
|
--[[ Slow ]]-- |
|
674 |
|
createCycloneButton(0, 1, 'Chains of Ice', 'DaybreakCycloneChainsOfIce', p) |
|
675 |
|
createCycloneButton(0, 1, 'Hamstring', 'DaybreakCycloneHamstring', p) |
|
676 |
|
createCycloneButton(0, 3, 'Crippling Poison', 'DaybreakCycloneCripplingPoison', p) |
|
677 |
|
createCycloneButton(0, 4, 'Cone of Cold', 'DaybreakCycloneConeOfCold', p) |
|
678 |
|
createCycloneButton(0, 4, 'Earthbind Totem', 'DaybreakCycloneEarthbindTotem', p) |
|
679 |
|
createCycloneButton(0, 4, 'Slow', 'DaybreakCycloneSlow', p) |
|
680 |
|
|
|
681 |
|
--[[ Healing reduction ]]-- |
|
682 |
|
createCycloneButton(3, 1, 'Aimed Shot', 'DaybreakCycloneAimedShot', p) |
|
683 |
|
createCycloneButton(3, 1, 'Mortal Strike', 'DaybreakCycloneMortalStrike', p) |
|
684 |
|
createCycloneButton(3, 1, 'Necrotic Strike', 'DaybreakCycloneNecroticStrike', p) |
|
685 |
|
createCycloneButton(3, 3, 'Wound Poison', 'DaybreakCycloneWoundPoison', p) |
|
686 |
|
createCycloneButton(3, 2, 'Curse of Tongues', 'DaybreakCycloneCurseOfTongues', p) |
|
687 |
|
end |
|
688 |
|
|
607 |
689 |
--[[-- |
--[[-- |
608 |
690 |
Beacon of light. |
Beacon of light. |
609 |
691 |
Add dedicated Beacon of Light indicator. |
Add dedicated Beacon of Light indicator. |
|
... |
... |
Initialize player Beacon of Light buff indicator. |
691 |
773 |
@treturn frame new frame that tracks the specific player buff |
@treturn frame new frame that tracks the specific player buff |
692 |
774 |
--]] |
--]] |
693 |
775 |
local function initBeacon(rootFrame) |
local function initBeacon(rootFrame) |
694 |
|
local beacon = createButton(10, 4, 'Beacon of Light', 'DaybreakOverlayPaladinBeaconOfLight', rootFrame) |
|
|
776 |
|
local beacon = createButton(11, 4, 'Beacon of Light', 'DaybreakOverlayPaladinBeaconOfLight', rootFrame) |
695 |
777 |
beacon:SetNormalTexture("Interface\\Icons\\Ability_Paladin_BeaconOfLight") |
beacon:SetNormalTexture("Interface\\Icons\\Ability_Paladin_BeaconOfLight") |
696 |
778 |
|
|
697 |
779 |
beacon:UnregisterAllEvents() |
beacon:UnregisterAllEvents() |
|
... |
... |
local function initDaybreak(rootFrame) |
892 |
974 |
createButton(0, 3, 'Avenging Wrath', 'DaybreakOverlayPaladinAvengingWrath', rootFrame) |
createButton(0, 3, 'Avenging Wrath', 'DaybreakOverlayPaladinAvengingWrath', rootFrame) |
893 |
975 |
createButton(0, 4, 'Guardian of Ancient Kings', 'DaybreakOverlayPaladinGuardianOfTheAncientKings', rootFrame) |
createButton(0, 4, 'Guardian of Ancient Kings', 'DaybreakOverlayPaladinGuardianOfTheAncientKings', rootFrame) |
894 |
976 |
|
|
|
977 |
|
createButton(11, 0, 'Concentration Aura', 'DaybreakOverlayPaladinConcentrationAura', rootFrame, 'PLAYER HELPFUL') |
|
978 |
|
createButton(11, 0, 'Crusader Aura', 'DaybreakOverlayPaladinCrusaderAura', rootFrame, 'PLAYER HELPFUL') |
|
979 |
|
createButton(11, 0, 'Devotion Aura', 'DaybreakOverlayPaladinDevotionAura', rootFrame, 'PLAYER HELPFUL') |
|
980 |
|
createButton(11, 0, 'Resistance Aura', 'DaybreakOverlayPaladinResistanceAura', rootFrame, 'PLAYER HELPFUL') |
|
981 |
|
createButton(11, 0, 'Retribution Aura', 'DaybreakOverlayPaladinRetributionAura', rootFrame, 'PLAYER HELPFUL') |
|
982 |
|
|
|
983 |
|
createButton(11, 1, 'Seal of Insight', 'DaybreakOverlayPaladinSealOfInsight', rootFrame, 'PLAYER HELPFUL') |
|
984 |
|
createButton(11, 1, 'Seal of Justice', 'DaybreakOverlayPaladinSealOfJustice', rootFrame, 'PLAYER HELPFUL') |
|
985 |
|
createButton(11, 1, 'Seal of Righteousness', 'DaybreakOverlayPaladinSealOfRighteousness', rootFrame, 'PLAYER HELPFUL') |
|
986 |
|
createButton(11, 1, 'Seal of Truth', 'DaybreakOverlayPaladinSealOfTruth', rootFrame, 'PLAYER HELPFUL') |
|
987 |
|
|
|
988 |
|
createButton(11, 2, 'Blessing of Might', 'DaybreakOverlayPaladinBlessingOfMight', rootFrame, 'PLAYER HELPFUL') |
|
989 |
|
createButton(11, 2, 'Blessing of Kings', 'DaybreakOverlayPaladinBlessingOfKings', rootFrame, 'PLAYER HELPFUL') |
|
990 |
|
|
895 |
991 |
--[[ Effects that may be applied by other players place on the right side ]]-- |
--[[ Effects that may be applied by other players place on the right side ]]-- |
896 |
992 |
createButton(9, 0, 'Hand of Freedom', 'DaybreakOverlayPaladinHandOfFreedom', rootFrame) |
createButton(9, 0, 'Hand of Freedom', 'DaybreakOverlayPaladinHandOfFreedom', rootFrame) |
897 |
993 |
createButton(9, 1, 'Hand of Sacrifice', 'DaybreakOverlayPaladinHandOfSacrifice', rootFrame) |
createButton(9, 1, 'Hand of Sacrifice', 'DaybreakOverlayPaladinHandOfSacrifice', rootFrame) |
|
... |
... |
local function init(rootFrame) |
937 |
1033 |
rootFrame:SetPoint('CENTER', UIParent, |
rootFrame:SetPoint('CENTER', UIParent, |
938 |
1034 |
'CENTER', 0, 0) |
'CENTER', 0, 0) |
939 |
1035 |
|
|
|
1036 |
|
initCyclone(rootFrame) |
940 |
1037 |
initBeacon(rootFrame) |
initBeacon(rootFrame) |
941 |
1038 |
initBlessedLife(rootFrame) |
initBlessedLife(rootFrame) |
942 |
1039 |
initDaybreak(rootFrame) |
initDaybreak(rootFrame) |