File clearcasting.lua changed (mode: 100644) (index 3aa2d46..5edec42) |
... |
... |
local function sortUnitAuraTable(a, b) |
163 |
163 |
return getAuraWeight(a) > getAuraWeight(b) |
return getAuraWeight(a) > getAuraWeight(b) |
164 |
164 |
end |
end |
165 |
165 |
|
|
|
166 |
|
local function requestUnitAuraIndexTable(unitDesignation, filterDescriptor) |
|
167 |
|
assert (unitDesignation ~= nil) |
|
168 |
|
assert ('string' == type(unitDesignation)) |
|
169 |
|
unitDesignation = strtrim(unitDesignation) |
|
170 |
|
assert (string.len(unitDesignation) >= 4) |
|
171 |
|
assert (string.len(unitDesignation) <= 64) |
|
172 |
|
|
|
173 |
|
assert (filterDescriptor ~= nil) |
|
174 |
|
assert ('string' == type(filterDescriptor)) |
|
175 |
|
filterDescriptor = strtrim(filterDescriptor) |
|
176 |
|
assert (string.len(filterDescriptor) >= 4) |
|
177 |
|
assert (string.len(filterDescriptor) <= 128) |
|
178 |
|
|
|
179 |
|
local e = {} |
|
180 |
|
|
|
181 |
|
local i = 0 |
|
182 |
|
local maxAuraQuantityPerUnit = 144 |
|
183 |
|
while (i < maxAuraQuantityPerUnit) do |
|
184 |
|
i = i + 1 |
|
185 |
|
local name = UnitAura(unitDesignation, i, filterDescriptor) |
|
186 |
|
if not name then |
|
187 |
|
break |
|
188 |
|
end |
|
189 |
|
e[i] = i |
|
190 |
|
end |
|
191 |
|
|
|
192 |
|
table.sort(e, function(a, b) |
|
193 |
|
local aw = getAuraWeight(UnitAura(unitDesignation, a, filterDescriptor)) |
|
194 |
|
local bw = getAuraWeight(UnitAura(unitDesignation, b, filterDescriptor)) |
|
195 |
|
return aw > bw |
|
196 |
|
end) |
|
197 |
|
|
|
198 |
|
assert (e ~= nil) |
|
199 |
|
assert ('table' == type(e)) |
|
200 |
|
return e |
|
201 |
|
end |
|
202 |
|
|
166 |
203 |
local function requestUnitAuraTable(unitDesignation, filterDescriptor) |
local function requestUnitAuraTable(unitDesignation, filterDescriptor) |
167 |
204 |
assert (unitDesignation ~= nil) |
assert (unitDesignation ~= nil) |
168 |
205 |
assert ('string' == type(unitDesignation)) |
assert ('string' == type(unitDesignation)) |
|
... |
... |
local function unapplySubsetButtonSpell(subsetButton, unitDesignation, filterDes |
283 |
320 |
subsetButton:Hide() |
subsetButton:Hide() |
284 |
321 |
end |
end |
285 |
322 |
|
|
286 |
|
local function applySubsetButtonSpell(subsetButton, unitDesignation, filterDescriptor, |
|
|
323 |
|
local function applySubsetButtonSpell(subsetButton, unitDesignation, filterDescriptor, unitAuraIndex, |
287 |
324 |
spellName, spellRank, pictureFile, stackQuantity, category, |
spellName, spellRank, pictureFile, stackQuantity, category, |
288 |
325 |
durationSec, expirationInstance, |
durationSec, expirationInstance, |
289 |
|
casterUnitDesignation, stealableFlag, consolidationFlag, spellId, unitAuraIndex) |
|
|
326 |
|
casterUnitDesignation, stealableFlag, consolidationFlag, spellId) |
290 |
327 |
assert (subsetButton ~= nil) |
assert (subsetButton ~= nil) |
291 |
328 |
assert (unitDesignation ~= nil) |
assert (unitDesignation ~= nil) |
292 |
329 |
assert (filterDescriptor ~= nil) |
assert (filterDescriptor ~= nil) |
|
... |
... |
return function(subsetFrame) |
348 |
385 |
assert (string.len(filterDescriptor) >= 4) |
assert (string.len(filterDescriptor) >= 4) |
349 |
386 |
assert (string.len(filterDescriptor) <= 128) |
assert (string.len(filterDescriptor) <= 128) |
350 |
387 |
|
|
351 |
|
local e = requestUnitAuraTable(unitDesignation, filterDescriptor) |
|
|
388 |
|
local e = requestUnitAuraIndexTable(unitDesignation, filterDescriptor) |
352 |
389 |
|
|
353 |
390 |
local i = 0 |
local i = 0 |
354 |
391 |
--[[local t = {subsetFrame:GetChildren()}]]-- |
--[[local t = {subsetFrame:GetChildren()}]]-- |
|
... |
... |
return function(subsetFrame) |
358 |
395 |
local b = t[i] |
local b = t[i] |
359 |
396 |
assert (b ~= nil) |
assert (b ~= nil) |
360 |
397 |
|
|
361 |
|
local auraTable = e[i] |
|
362 |
|
assert (auraTable ~= nil) |
|
|
398 |
|
local auraIndex = e[i] |
|
399 |
|
assert (auraIndex ~= nil) |
363 |
400 |
|
|
364 |
|
applySubsetButtonSpell(b, unitDesignation, filterDescriptor, unpackAuraTable(auraTable)) |
|
|
401 |
|
applySubsetButtonSpell(b, unitDesignation, filterDescriptor, auraIndex, |
|
402 |
|
UnitAura(unitDesignation, auraIndex, filterDescriptor)) |
365 |
403 |
end |
end |
366 |
404 |
|
|
367 |
405 |
local k = #e |
local k = #e |
|
... |
... |
local function createSubset(parentFrame, frameDesignation, unitDesignation, filt |
612 |
650 |
subsetFrame.filter = filterDescriptor |
subsetFrame.filter = filterDescriptor |
613 |
651 |
subsetFrame:RegisterEvent('PARTY_CONVERTED_TO_RAID') |
subsetFrame:RegisterEvent('PARTY_CONVERTED_TO_RAID') |
614 |
652 |
subsetFrame:RegisterEvent('PARTY_MEMBERS_CHANGED') |
subsetFrame:RegisterEvent('PARTY_MEMBERS_CHANGED') |
615 |
|
subsetFrame:RegisterEvent('PLAYER_FOCUS_CHANGED') |
|
|
653 |
|
--subsetFrame:RegisterEvent('PLAYER_FOCUS_CHANGED') |
616 |
654 |
subsetFrame:RegisterEvent('PLAYER_LOGIN') |
subsetFrame:RegisterEvent('PLAYER_LOGIN') |
617 |
|
subsetFrame:RegisterEvent('PLAYER_TARGET_CHANGED') |
|
618 |
|
subsetFrame:RegisterEvent('PLAYER_SPECIALIZATION_CHANGED') |
|
|
655 |
|
--subsetFrame:RegisterEvent('PLAYER_TARGET_CHANGED') |
|
656 |
|
--subsetFrame:RegisterEvent('PLAYER_SPECIALIZATION_CHANGED') |
619 |
657 |
subsetFrame:RegisterEvent('RAID_ROSTER_UPDATE') |
subsetFrame:RegisterEvent('RAID_ROSTER_UPDATE') |
620 |
658 |
subsetFrame:RegisterEvent('UNIT_AURA') |
subsetFrame:RegisterEvent('UNIT_AURA') |
621 |
|
subsetFrame:RegisterEvent('UNIT_HEALTH') |
|
622 |
|
subsetFrame:RegisterEvent('UPDATE_BATTLEFIELD_SCORE') |
|
|
659 |
|
--subsetFrame:RegisterEvent('UNIT_HEALTH') |
|
660 |
|
--subsetFrame:RegisterEvent('UPDATE_BATTLEFIELD_SCORE') |
623 |
661 |
local subsetEventProcessor = subsetEventProcessorFactory(t) |
local subsetEventProcessor = subsetEventProcessorFactory(t) |
624 |
662 |
subsetFrame:SetScript('OnEvent', subsetEventProcessor) |
subsetFrame:SetScript('OnEvent', subsetEventProcessor) |
625 |
663 |
subsetEventProcessor(subsetFrame) |
subsetEventProcessor(subsetFrame) |
|
... |
... |
local function initSpellActivationOverlay(rootFrame) |
649 |
687 |
targetHarmSubset:SetPoint('CENTER', rootFrame, |
targetHarmSubset:SetPoint('CENTER', rootFrame, |
650 |
688 |
'CENTER', 0, rootFrame:GetHeight() / 3 - targetHelpSubset:GetHeight() + 4) |
'CENTER', 0, rootFrame:GetHeight() / 3 - targetHelpSubset:GetHeight() + 4) |
651 |
689 |
|
|
|
690 |
|
helpSubset:RegisterEvent('PLAYER_SPECIALIZATION_CHANGED') |
|
691 |
|
targetHelpSubset:RegisterEvent('PLAYER_TARGET_CHANGED') |
|
692 |
|
targetHarmSubset:RegisterEvent('PLAYER_TARGET_CHANGED') |
652 |
693 |
return {helpSubset, harmSubset} |
return {helpSubset, harmSubset} |
653 |
694 |
end |
end |
654 |
695 |
|
|