List of commits:
Subject Hash Author Date (UTC)
feat: Prototype decay indicator f16a16c34d25fd71ad74347da09c0f410a7768cf Vladyslav Bondarenko 2021-01-25 22:26:52
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 f16a16c34d25fd71ad74347da09c0f410a7768cf - feat: Prototype decay indicator
Player holy power decay out of comat is rendered. However it is flawed.
Preserve progress and fix issues in the future.
Author: Vladyslav Bondarenko
Author date (UTC): 2021-01-25 22:26
Committer name: Vladyslav Bondarenko
Committer date (UTC): 2021-01-25 22:26
Parent(s): cf42abb180bc02da2aeedd8bccda693a167017c8
Signer:
Signing key:
Signing status: N
Tree: 179701fc20f61003076dc1a55fadf3794c221598
File Lines added Lines deleted
daybreak.lua 30 4
daybreak.toc 1 1
File daybreak.lua changed (mode: 100644) (index 647b419..df29dbd)
... ... local function acceptUnitPower(self)
169 169 assert (hppq <= maxQuantity) assert (hppq <= maxQuantity)
170 170
171 171 --[[ Display the indicators according to the current unit state ]]-- --[[ Display the indicators according to the current unit state ]]--
172 local i = 0
173 local combatFlag = UnitAffectingCombat(unitDesignation)
174 local r, g, b
172 local combatFlag = 1 == UnitAffectingCombat(unitDesignation) or false
173
174 local prevCombatFlag = self.combatFlag or false
175 local unitLeftCombat = not combatFlag and prevCombatFlag
176 if unitLeftCombat then
177 self.decayInstance = GetTime()
178 end
179 local prevUnitPower = self.unitPower or 0
180 local powerDecayed = not combatFlag and prevUnitPower ~= hppq and hppq > 0
181 if powerDecayed then
182 self.decayInstance = GetTime()
183 end
184 self.unitPower = hppq
185 self.combatFlag = combatFlag
186
187 local r, g, b, a
175 188 if combatFlag then if combatFlag then
176 189 r, g, b = getHolyPowerIndicatorColor() r, g, b = getHolyPowerIndicatorColor()
190 a = 255 / 255
191 self.combatInstance = GetTime()
192 self.decayInstance = 0
177 193 else else
178 194 r, g, b = getHolyPowerIndicatorDecayColor() r, g, b = getHolyPowerIndicatorDecayColor()
195 local decayInstance = self.decayInstance or 0
196 local decayCooldown = 10
197 local decayDuration = math.min(GetTime() - decayInstance, decayCooldown)
198 a = math.min(math.max(0.3, (decayCooldown - decayDuration) / decayCooldown), 1)
179 199 end end
200
201 local i = 0
180 202 while (i < hppq) do while (i < hppq) do
181 203 i = i + 1 i = i + 1
182 204 local p = t[i] local p = t[i]
183 205 assert (p ~= nil) assert (p ~= nil)
184 206 p:Show() p:Show()
185 p:SetTexture(r, g, b)
207 p:SetTexture(r, g, b, 255 / 255)
208 end
209 local q = t[hppq]
210 if q then
211 q:SetTexture(r, g, b, a)
186 212 end end
187 213
188 214 while (i < maxQuantity) do while (i < maxQuantity) do
File daybreak.toc changed (mode: 100644) (index 318b38d..2d1f083)
1 1 ##Interface: 40300 ##Interface: 40300
2 2 ##Title: Daybreak ##Title: Daybreak
3 ##Version: 0.0.7-SNAPSHOT
3 ##Version: 0.0.8-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