List of commits:
Subject Hash Author Date (UTC)
feat(choir): Adjust raid group frame position f99a54133a1761034baca93bfa8814c614191818 Vladyslav Bondarenko 2021-11-18 00:35:35
feat(choir): Add debuff buttons for raid fe66339420a9eb5e4823cc4fe45e0d97b2983073 Vladyslav Bondarenko 2021-11-17 00:55:54
feat(choir): Add texture to health bars ddaeb29d7ecfd95a98bcc85b3f4f7676c7ccd4d7 Vladyslav Bondarenko 2021-11-14 21:40:26
fix(choir)!: Obscure critical error 0f203b4d69f57240e97c66f1ab4510c6ac3e9276 Vladyslav Bondarenko 2021-11-11 12:52:02
feat(choir): Toggle button visibility given roster d193e7b5eb38cb3ac69d74eec1f96e00d90b6098 Vladyslav Bondarenko 2021-11-10 23:46:24
feat(choir)!: Add permanent raid frame 1839c35af4212c09038e972547d6b5893a9ce219 Vladyslav Bondarenko 2021-11-10 16:04:25
feat(choir)!: Employ Clearcasting subset feat 733c81538c3c965f07993fd7ddc482e724121b75 Vladyslav Bondarenko 2021-11-04 22:40:48
fix(choir): Improve shortcut binding keys eb636de6e3f7bada9f0064ffe4db1db3f6433f6c Vladyslav Bondarenko 2021-10-31 18:55:10
fix(choir): Improve choirBindingKey attribute handling 6c5c2214cc1809e5e5e59cd3672da3cca3f2701f Vladyslav Bondarenko 2021-10-31 13:23:24
feat(choir)!: Add spell shortcut prototype d34f22a6983ffc41122acb40d22e3cb29c208a3c Vladyslav Bondarenko 2021-10-31 12:39:39
feat(choir)!: Add spell effects on unit d581df9fce342709267a3221dead4d00b9d14319 Vladyslav Bondarenko 2021-10-31 10:49:19
feat(choir)!: Close spoiler by pressing Esc 22d7370011ac45d25a410a3f569183d0cc9fb232 Vladyslav Bondarenko 2021-10-29 16:10:08
feat(choir)!: Range indicator 931a0510b562986ec76dc22f329f4af4ed723cdf Vladyslav Bondarenko 2021-10-29 10:40:46
fix(choir)!: Health bar in combat a6622578dd5a1b4e4babf699a4cf1e4eb6bb70d6 Vladyslav Bondarenko 2021-10-28 07:42:57
feat(choir)!: Decorate unit buttons 4dc5ed44a9519b275f4256cfe4281110b7a94c9a Vladyslav Bondarenko 2021-10-25 21:20:56
feat(choir)!: Copy action bar binding 70ce056ffda7f12d913ce9a42b128ea257bdd0dc Vladyslav Bondarenko 2021-10-23 23:34:56
feat!: Initial commit 45c4e781e5ff0a69f8b0bea3a869e2384c7ca454 Vladyslav Bondarenko 2021-10-23 06:03:14
Commit f99a54133a1761034baca93bfa8814c614191818 - feat(choir): Adjust raid group frame position
Raid frame used to take too much space because it accounted for hidden
frames. That is not required. Render the raid frame to fit exactly how
many units are present in the group.
Author: Vladyslav Bondarenko
Author date (UTC): 2021-11-18 00:35
Committer name: Vladyslav Bondarenko
Committer date (UTC): 2021-11-18 00:35
Parent(s): fe66339420a9eb5e4823cc4fe45e0d97b2983073
Signer:
Signing key:
Signing status: N
Tree: 26a9dd7fe1c5c1f55d3378ad87bb86f54a4767b0
File Lines added Lines deleted
choir.lua 29 4
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.
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/vrtc/wowaddons

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/vrtc/wowaddons

Clone this repository using git:
git clone git://git.rocketgit.com/user/vrtc/wowaddons

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main