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 |