File choir.lua changed (mode: 100644) (index fd2a30b..a38c727) |
... |
... |
local function createGroup(rootFrame, groupNumber, unitTable) |
631 |
631 |
return spoiler |
return spoiler |
632 |
632 |
end |
end |
633 |
633 |
|
|
|
634 |
|
local function arrangeEveryRaidGroupFrame(raidFrame) |
|
635 |
|
assert (raidFrame ~= nil) |
|
636 |
|
|
|
637 |
|
local i = 0 |
|
638 |
|
local t = {raidFrame:GetChildren()} |
|
639 |
|
local y = 0 |
|
640 |
|
local padding = 0 |
|
641 |
|
while (i < #t) do |
|
642 |
|
i = i + 1 |
|
643 |
|
local raidGroupFrame = t[i] |
|
644 |
|
if raidGroupFrame and raidGroupFrame:IsShown() then |
|
645 |
|
raidGroupFrame:SetPoint('BOTTOMLEFT', 0, y) |
|
646 |
|
y = raidGroupFrame:GetHeight() + padding |
|
647 |
|
end |
|
648 |
|
end |
|
649 |
|
end |
|
650 |
|
|
634 |
651 |
local function raidGroupEventProcessor(groupFrame) |
local function raidGroupEventProcessor(groupFrame) |
635 |
652 |
assert (groupFrame ~= nil) |
assert (groupFrame ~= nil) |
636 |
653 |
|
|
|
... |
... |
local function createRaidGroupFrame(raidFrame, groupNumber, unitSetOverride) |
765 |
782 |
return groupFrame |
return groupFrame |
766 |
783 |
end |
end |
767 |
784 |
|
|
|
785 |
|
local function raidFrameEventProcessor(raidFrame) |
|
786 |
|
arrangeEveryRaidGroupFrame(raidFrame) |
|
787 |
|
end |
|
788 |
|
|
768 |
789 |
local function createRaidFrame(rootFrame, spoilerHolder) |
local function createRaidFrame(rootFrame, spoilerHolder) |
769 |
790 |
assert (rootFrame ~= nil) |
assert (rootFrame ~= nil) |
770 |
791 |
assert (spoilerHolder ~= nil) |
assert (spoilerHolder ~= nil) |
|
... |
... |
local function createRaidFrame(rootFrame, spoilerHolder) |
779 |
800 |
local labelWidth = 60 |
local labelWidth = 60 |
780 |
801 |
local raidFrame = CreateFrame('FRAME', 'ChoirRaidFrame', rootFrame) |
local raidFrame = CreateFrame('FRAME', 'ChoirRaidFrame', rootFrame) |
781 |
802 |
raidFrame:SetSize(labelWidth + (padding + buttonWidth) * maxPartySize, |
raidFrame:SetSize(labelWidth + (padding + buttonWidth) * maxPartySize, |
782 |
|
(padding + buttonHeight) * (maxSubgroupQuantity + 1)) |
|
|
803 |
|
(padding + buttonHeight) * (maxSubgroupQuantity / 2)) |
783 |
804 |
raidFrame:SetPoint('TOPLEFT', 0, -64) |
raidFrame:SetPoint('TOPLEFT', 0, -64) |
784 |
805 |
|
|
785 |
806 |
--[[ TODO Add any debuff indicator ]]-- |
--[[ TODO Add any debuff indicator ]]-- |
786 |
807 |
local j = 0 |
local j = 0 |
787 |
808 |
while (j < maxSubgroupQuantity) do |
while (j < maxSubgroupQuantity) do |
788 |
809 |
j = j + 1 |
j = j + 1 |
789 |
|
local groupFrame = createRaidGroupFrame(raidFrame, j) |
|
790 |
|
groupFrame:SetPoint('BOTTOMLEFT', 0, (j - 1) * (buttonHeight + padding)) |
|
|
810 |
|
createRaidGroupFrame(raidFrame, j) |
791 |
811 |
end |
end |
792 |
812 |
|
|
793 |
813 |
--[[ NOTE Appearance of the party frame is conditional, only shown outside of raid. |
--[[ NOTE Appearance of the party frame is conditional, only shown outside of raid. |
794 |
814 |
-- Therefore corner case code is implemented. ]]-- |
-- Therefore corner case code is implemented. ]]-- |
795 |
815 |
local partyUnitSet = {'player', 'party1', 'party2', 'party3', 'party4'} |
local partyUnitSet = {'player', 'party1', 'party2', 'party3', 'party4'} |
796 |
816 |
local playerPartyFrame = createRaidGroupFrame(raidFrame, maxSubgroupQuantity + 1, partyUnitSet) |
local playerPartyFrame = createRaidGroupFrame(raidFrame, maxSubgroupQuantity + 1, partyUnitSet) |
797 |
|
playerPartyFrame:SetPoint('BOTTOMLEFT', 0, (maxSubgroupQuantity + 1) * (buttonHeight + padding)) |
|
798 |
817 |
playerPartyFrame:SetScript('OnEvent', partyFrameEventProcessor) |
playerPartyFrame:SetScript('OnEvent', partyFrameEventProcessor) |
799 |
818 |
|
|
|
819 |
|
raidFrame:RegisterEvent('PARTY_CONVERTED_TO_RAID') |
|
820 |
|
raidFrame:RegisterEvent('PARTY_MEMBERS_CHANGED') |
|
821 |
|
raidFrame:RegisterEvent('RAID_ROSTER_UPDATE') |
|
822 |
|
raidFrame:SetScript('OnEvent', raidFrameEventProcessor) |
|
823 |
|
arrangeEveryRaidGroupFrame(raidFrame) |
|
824 |
|
|
800 |
825 |
--[[ WARNING For some bizzare reason, possibly related to concurrency, |
--[[ WARNING For some bizzare reason, possibly related to concurrency, |
801 |
826 |
-- the raid toggling initialization __must__ be called here, |
-- the raid toggling initialization __must__ be called here, |
802 |
827 |
-- and not from another function for modularization. |
-- and not from another function for modularization. |