File daybreak.lua changed (mode: 100644) (index a2c4249..96da8bb) |
... |
... |
local function getArtworkTransparency(remainingDuration, duration) |
85 |
85 |
end |
end |
86 |
86 |
end |
end |
87 |
87 |
|
|
|
88 |
|
local function findFirstAura(unitDesignation, auraTable, optionalFilter) |
|
89 |
|
unitDesignation = unitDesignation or 'player' |
|
90 |
|
assert (unitDesignation ~= nil) |
|
91 |
|
assert ('string' == type(unitDesignation)) |
|
92 |
|
assert (string.len(unitDesignation) >= 2) |
|
93 |
|
assert (string.len(unitDesignation) <= 256) |
|
94 |
|
|
|
95 |
|
assert (auraTable ~= nil) |
|
96 |
|
assert ('table' == type(auraTable)) |
|
97 |
|
assert (#auraTable >= 2) |
|
98 |
|
|
|
99 |
|
local filter = optionalFilter or 'HELPFUL' |
|
100 |
|
assert (filter ~= nil) |
|
101 |
|
assert ('string' == type(filter)) |
|
102 |
|
assert (string.len(filter) >= 2) |
|
103 |
|
assert (string.len(filter) <= 256) |
|
104 |
|
|
|
105 |
|
local i = 0 |
|
106 |
|
local j = math.min(#auraTable, 256) |
|
107 |
|
while (i < j) do |
|
108 |
|
i = i + 1 |
|
109 |
|
local auraName = auraTable[i] |
|
110 |
|
if auraName ~= nil and |
|
111 |
|
'string' == type(auraName) and |
|
112 |
|
string.len(auraName) >= 2 then |
|
113 |
|
local n = UnitAura(unitDesignation, auraName, nil, filter) |
|
114 |
|
if n then |
|
115 |
|
return UnitAura(unitDesignation, auraName, nil, filter) |
|
116 |
|
end |
|
117 |
|
end |
|
118 |
|
end |
|
119 |
|
return nil |
|
120 |
|
end |
|
121 |
|
|
88 |
122 |
local function applyOverlayUpdateDelay(self, updateDurationSec) |
local function applyOverlayUpdateDelay(self, updateDurationSec) |
89 |
123 |
assert (self ~= nil) |
assert (self ~= nil) |
90 |
124 |
|
|
|
... |
... |
local function acceptOverlayUnitAura(button, eventCategory) |
268 |
302 |
button:SetScript('OnUpdate', overlayUpdateProcessorDuration) |
button:SetScript('OnUpdate', overlayUpdateProcessorDuration) |
269 |
303 |
elseif 2 == archetypeDesignation then |
elseif 2 == archetypeDesignation then |
270 |
304 |
button:SetScript('OnUpdate', overlayUpdateProcessorAbsorption) |
button:SetScript('OnUpdate', overlayUpdateProcessorAbsorption) |
|
305 |
|
elseif 3 == archetypeDesignation then |
|
306 |
|
button:SetScript('OnUpdate', overlayUpdateProcessorDuration) |
271 |
307 |
end |
end |
272 |
308 |
else |
else |
273 |
309 |
button:Hide() |
button:Hide() |
|
... |
... |
Lose control indicator. |
768 |
804 |
@section cyclone |
@section cyclone |
769 |
805 |
]] |
]] |
770 |
806 |
|
|
771 |
|
local function cycloneEventProcessor(self) |
|
|
807 |
|
local function cycloneEventProcessor(self, eventCategory) |
772 |
808 |
local unitDesignation = self.unit or 'player' |
local unitDesignation = self.unit or 'player' |
|
809 |
|
local filter = self.filter or 'HELPFUL' |
773 |
810 |
|
|
774 |
811 |
local auraTable = self.auraTable |
local auraTable = self.auraTable |
775 |
812 |
if not auraTable then |
if not auraTable then |
|
... |
... |
local function cycloneEventProcessor(self) |
777 |
814 |
elseif 'table' ~= type(auraTable) then |
elseif 'table' ~= type(auraTable) then |
778 |
815 |
return |
return |
779 |
816 |
end |
end |
780 |
|
local i = #auraTable |
|
781 |
|
local activeSpellName, activeSpellIcon |
|
782 |
|
local filter = self.filter or 'HARMFUL' |
|
783 |
|
while (i > 0) do |
|
784 |
|
local spellName = auraTable[i] |
|
785 |
|
if spellName ~= nil and 'string' == type(spellName) then |
|
786 |
|
local n, _, icon = UnitAura(unitDesignation, spellName, nil, filter) |
|
787 |
|
if n then |
|
788 |
|
activeSpellName = n |
|
789 |
|
activeSpellIcon = icon |
|
790 |
|
break |
|
791 |
|
end |
|
792 |
|
end |
|
793 |
|
i = i - 1 |
|
794 |
|
end |
|
|
817 |
|
local activeSpellName = findFirstAura(unitDesignation, auraTable, filter) |
795 |
818 |
if activeSpellName then |
if activeSpellName then |
796 |
819 |
self.spell = activeSpellName |
self.spell = activeSpellName |
797 |
|
self:SetNormalTexture(activeSpellIcon) |
|
798 |
|
self:SetScript('OnUpdate', overlayUpdateProcessorDuration) |
|
799 |
|
self:Show() |
|
800 |
|
else |
|
801 |
|
self.spell = nil |
|
802 |
|
self:SetNormalTexture(nil) |
|
803 |
|
self:SetScript('OnUpdate', nil) |
|
804 |
|
self:SetText(nil) |
|
805 |
|
self:Hide() |
|
806 |
820 |
end |
end |
|
821 |
|
acceptOverlayUnitAura(self, eventCategory) |
807 |
822 |
end |
end |
808 |
823 |
|
|
809 |
824 |
local function createCycloneButton(column, row, buttonDesignation, parentFrame, auraTable) |
local function createCycloneButton(column, row, buttonDesignation, parentFrame, auraTable) |
|
... |
... |
local function createCycloneButton(column, row, buttonDesignation, parentFrame, |
818 |
833 |
b.unit = 'player' |
b.unit = 'player' |
819 |
834 |
b.auraTable = auraTable |
b.auraTable = auraTable |
820 |
835 |
|
|
821 |
|
b:UnregisterAllEvents() |
|
822 |
836 |
b:SetScript('OnEvent', cycloneEventProcessor) |
b:SetScript('OnEvent', cycloneEventProcessor) |
823 |
837 |
b:RegisterEvent('UNIT_AURA') |
b:RegisterEvent('UNIT_AURA') |
824 |
838 |
|
|
|
... |
... |
local function initCyclone(rootFrame) |
916 |
930 |
'Dazed', |
'Dazed', |
917 |
931 |
'Daze', |
'Daze', |
918 |
932 |
'Hamstring', |
'Hamstring', |
|
933 |
|
'Claw Grasp', |
|
934 |
|
'Net', |
919 |
935 |
--[[ Environmental slow ]]-- |
--[[ Environmental slow ]]-- |
920 |
936 |
'Desecration', |
'Desecration', |
921 |
937 |
'Ice Trap', |
'Ice Trap', |