File choir.lua changed (mode: 100644) (index 8ccf7b6..b49810f) |
... |
... |
local function createRaidGroupFrame(raidFrame, groupNumber, unitSetOverride) |
726 |
726 |
return groupFrame |
return groupFrame |
727 |
727 |
end |
end |
728 |
728 |
|
|
729 |
|
local function createRaidFrameToggleHandler(raidFrame, spoilerHolder) |
|
|
729 |
|
local function createRaidFrame(rootFrame, spoilerHolder) |
|
730 |
|
assert (rootFrame ~= nil) |
|
731 |
|
assert (spoilerHolder ~= nil) |
|
732 |
|
|
|
733 |
|
local maxPartySize = 5 |
|
734 |
|
local maxSubgroupQuantity = 8 |
|
735 |
|
|
|
736 |
|
local buttonWidth = 48 |
|
737 |
|
local buttonHeight = 24 + 12 + 8 |
|
738 |
|
local padding = 2 |
|
739 |
|
|
|
740 |
|
local labelWidth = 60 |
|
741 |
|
local raidFrame = CreateFrame('FRAME', 'ChoirRaidFrame', rootFrame) |
|
742 |
|
raidFrame:SetSize(labelWidth + (padding + buttonWidth) * maxPartySize, |
|
743 |
|
(padding + buttonHeight) * (maxSubgroupQuantity + 1)) |
|
744 |
|
raidFrame:SetPoint('TOPLEFT', 0, -144) |
|
745 |
|
|
|
746 |
|
--[[ TODO Add any debuff indicator ]]-- |
|
747 |
|
local j = 0 |
|
748 |
|
while (j < maxSubgroupQuantity) do |
|
749 |
|
j = j + 1 |
|
750 |
|
local groupFrame = createRaidGroupFrame(raidFrame, j) |
|
751 |
|
groupFrame:SetPoint('BOTTOMLEFT', 0, (j - 1) * (buttonHeight + padding)) |
|
752 |
|
end |
|
753 |
|
|
|
754 |
|
--[[ NOTE Appearance of the party frame is conditional, only shown outside of raid. |
|
755 |
|
-- Therefore corner case code is implemented. ]]-- |
|
756 |
|
local partyUnitSet = {'player', 'party1', 'party2', 'party3', 'party4'} |
|
757 |
|
local playerPartyFrame = createRaidGroupFrame(raidFrame, maxSubgroupQuantity + 1, partyUnitSet) |
|
758 |
|
playerPartyFrame:SetPoint('BOTTOMLEFT', 0, (maxSubgroupQuantity + 1) * (buttonHeight + padding)) |
|
759 |
|
playerPartyFrame:SetScript('OnEvent', partyFrameEventProcessor) |
|
760 |
|
|
|
761 |
|
--[[ WARNING For some bizzare reason, possibly related to concurrency, |
|
762 |
|
-- the raid toggling initialization __must__ be called here, |
|
763 |
|
-- and not from another function for modularization. |
|
764 |
|
-- This is probably an indication of a larger problem and |
|
765 |
|
-- the lack of understanding of how exactly secure handlers work. |
|
766 |
|
-- However, this approach does solve the problem that caused |
|
767 |
|
-- the frames to behave unexpectedly and even crash the client. |
|
768 |
|
]]-- |
730 |
769 |
--[[ Given any spoiler is shown, then hide the raid frame. ]]-- |
--[[ Given any spoiler is shown, then hide the raid frame. ]]-- |
731 |
770 |
--[[ Given all spoilers are hidden, show the raid frame. ]]-- |
--[[ Given all spoilers are hidden, show the raid frame. ]]-- |
732 |
771 |
local spoilerList = {spoilerHolder:GetChildren()} |
local spoilerList = {spoilerHolder:GetChildren()} |
|
... |
... |
local function createRaidFrameToggleHandler(raidFrame, spoilerHolder) |
763 |
802 |
end |
end |
764 |
803 |
]=]) |
]=]) |
765 |
804 |
end |
end |
766 |
|
end |
|
767 |
|
|
|
768 |
|
local function createRaidFrame(rootFrame, spoilerHolder) |
|
769 |
|
assert (rootFrame ~= nil) |
|
770 |
|
assert (spoilerHolder ~= nil) |
|
771 |
|
|
|
772 |
|
local maxPartySize = 5 |
|
773 |
|
local maxSubgroupQuantity = 8 |
|
774 |
|
|
|
775 |
|
local buttonWidth = 48 |
|
776 |
|
local buttonHeight = 24 + 12 + 8 |
|
777 |
|
local padding = 2 |
|
778 |
|
|
|
779 |
|
local labelWidth = 60 |
|
780 |
|
local raidFrame = CreateFrame('FRAME', 'ChoirRaidFrame', rootFrame) |
|
781 |
|
raidFrame:SetSize(labelWidth + (padding + buttonWidth) * maxPartySize, |
|
782 |
|
(padding + buttonHeight) * (maxSubgroupQuantity + 1)) |
|
783 |
|
raidFrame:SetPoint('TOPLEFT', 0, -144) |
|
784 |
|
|
|
785 |
|
--[[ TODO Add any debuff indicator ]]-- |
|
786 |
|
local j = 0 |
|
787 |
|
while (j < maxSubgroupQuantity) do |
|
788 |
|
j = j + 1 |
|
789 |
|
local groupFrame = createRaidGroupFrame(raidFrame, j) |
|
790 |
|
groupFrame:SetPoint('BOTTOMLEFT', 0, (j - 1) * (buttonHeight + padding)) |
|
791 |
|
end |
|
792 |
|
|
|
793 |
|
--[[ NOTE Appearance of the party frame is conditional, only shown outside of raid. |
|
794 |
|
-- Therefore corner case code is implemented. ]]-- |
|
795 |
|
local partyUnitSet = {'player', 'party1', 'party2', 'party3', 'party4'} |
|
796 |
|
local playerPartyFrame = createRaidGroupFrame(raidFrame, maxSubgroupQuantity + 1, partyUnitSet) |
|
797 |
|
playerPartyFrame:SetPoint('BOTTOMLEFT', 0, (maxSubgroupQuantity + 1) * (buttonHeight + padding)) |
|
798 |
|
playerPartyFrame:SetScript('OnEvent', partyFrameEventProcessor) |
|
799 |
|
|
|
800 |
|
createRaidFrameToggleHandler(rootFrame, spoilerHolder) |
|
801 |
805 |
|
|
802 |
806 |
return raidFrame |
return raidFrame |
803 |
807 |
end |
end |