List of commits:
Subject Hash Author Date (UTC)
feat: Color indicator after unit combat status cf42abb180bc02da2aeedd8bccda693a167017c8 Vladyslav Bondarenko 2021-01-22 09:01:53
feat: Improve power indicator appearance fcd41d0a2cb7234c00f26ed2f0dc5c1183397d52 Vladyslav Bondarenko 2021-01-22 07:10:55
feat: Reduce update load 76a011715619c33caed714fec4161e53ecb1512c Vladyslav Bondarenko 2021-01-16 19:47:37
feat: Track more relevant effects f5f8803fa3cb59b43e144d9e53ea50fafcc23008 Vladyslav Bondarenko 2021-01-16 12:40:07
fix: Code base maintainance Add documentation and sanitise some arguments. 52e74dfb3f9fce8617ed4d4c63105966bb388daa Vladyslav Bondarenko 2021-01-12 13:07:49
fix: Typo The error did not affect performance. 216d3738bf4ef2de6be1361b7e2b57a6a7387f71 Vladyslav Bondarenko 2021-01-12 01:28:45
feat!: Show indicators correctly while in combat 0b6bf32b2a6ad2537b8cba766384e2d7f4b053d5 Vladyslav Bondarenko 2021-01-11 23:35:19
Initial commit 447e6a5ac2cc64f0f818663ba08681615327b19a Vladyslav Bondarenko 2021-01-11 20:26:55
Commit cf42abb180bc02da2aeedd8bccda693a167017c8 - feat: Color indicator after unit combat status
Author: Vladyslav Bondarenko
Author date (UTC): 2021-01-22 09:01
Committer name: Vladyslav Bondarenko
Committer date (UTC): 2021-01-22 09:01
Parent(s): a2b75fa59007ac7d3885cf2b6e752e35095172be
Signer:
Signing key:
Signing status: N
Tree: 7b847243f2d7723b64c3cf99df9e5a5f9b082ac2
File Lines added Lines deleted
daybreak.lua 34 13
daybreak.toc 1 1
File daybreak.lua changed (mode: 100644) (index 774ed4e..647b419)
... ... local function acceptUnitAura(button, eventCategory)
114 114 end end
115 115 end end
116 116
117 local function getIndicatorTable(holyPowerIndicatorFrame)
118 assert (holyPowerIndicatorFrame ~= nil)
119
120 local t = holyPowerIndicatorFrame.children
121 assert (t ~= nil)
122 assert ('table' == type(t))
123 assert (#t >= 1)
124 assert (#t <= 256)
125
126 return t
127 end
128
129 --[[--
130 Access constant default indicator color.
131 @function getHolyPowerIndicatorColor
132 @return red green blue
133 ]]
134 local function getHolyPowerIndicatorColor()
135 return 153 / 255, 0 / 255, 102 / 255
136 end
137
138 local function getHolyPowerIndicatorDecayColor()
139 return 102 / 255, 51 / 255, 102 / 255
140 end
141
117 142 --[[-- --[[--
118 143 Process UNIT_POWER event for holy power indicator. Process UNIT_POWER event for holy power indicator.
119 144 @function acceptUnitPower @function acceptUnitPower
 
... ... local function acceptUnitPower(self)
129 154 assert (string.len(unitDesignation) <= 256) assert (string.len(unitDesignation) <= 256)
130 155
131 156 --[[ Assume the table is sorted appropriately ]]-- --[[ Assume the table is sorted appropriately ]]--
132 local t = self.children
157 local t = getIndicatorTable(self)
133 158 assert (t ~= nil) assert (t ~= nil)
134 assert ('table' == type(t))
135 assert (#t >= 1)
136 assert (#t <= 256)
137 159
138 160 local maxQuantity = getMaxHolyPower() local maxQuantity = getMaxHolyPower()
139 161 assert (maxQuantity ~= nil) assert (maxQuantity ~= nil)
 
... ... local function acceptUnitPower(self)
148 170
149 171 --[[ Display the indicators according to the current unit state ]]-- --[[ Display the indicators according to the current unit state ]]--
150 172 local i = 0 local i = 0
173 local combatFlag = UnitAffectingCombat(unitDesignation)
174 local r, g, b
175 if combatFlag then
176 r, g, b = getHolyPowerIndicatorColor()
177 else
178 r, g, b = getHolyPowerIndicatorDecayColor()
179 end
151 180 while (i < hppq) do while (i < hppq) do
152 181 i = i + 1 i = i + 1
153 182 local p = t[i] local p = t[i]
154 183 assert (p ~= nil) assert (p ~= nil)
155 184 p:Show() p:Show()
185 p:SetTexture(r, g, b)
156 186 end end
157 187
158 188 while (i < maxQuantity) do while (i < maxQuantity) do
 
... ... local function acceptUnitPower(self)
163 193 end end
164 194 end end
165 195
166 --[[--
167 Access constant default indicator color.
168 @function getHolyPowerIndicatorColor
169 @return red green blue
170 ]]
171 local function getHolyPowerIndicatorColor()
172 return 153 / 255, 0 / 255, 102 / 255
173 end
174
175 196 --[[-- --[[--
176 197 Produce frame that tracks and displays given unit holy power. Produce frame that tracks and displays given unit holy power.
177 198 The new frame possesses custom attribute "unit". The new frame possesses custom attribute "unit".
File daybreak.toc changed (mode: 100644) (index 9f7138f..318b38d)
1 1 ##Interface: 40300 ##Interface: 40300
2 2 ##Title: Daybreak ##Title: Daybreak
3 ##Version: 0.0.6-SNAPSHOT
3 ##Version: 0.0.7-SNAPSHOT
4 4 ##Notes: Add paladin player buff indicator ##Notes: Add paladin player buff indicator
5 5 daybreak.xml daybreak.xml
6 6 daybreak.lua daybreak.lua
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