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". |