-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAddon.lua
228 lines (197 loc) · 6.67 KB
/
Addon.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
--[[--------------------------------------------------------------------
OPie Masque
Adds Masque skinning support to OPie.
Copyright 2013-2018 Phanx. All rights reserved.
https://github.com/Phanx/OPieMasque
----------------------------------------------------------------------]]
local SPECIAL_COLOR_ALPHA = 0.75
-- 0 = invisible, 1 = fully visible, lower it if your skin is ugly
------------------------------------------------------------------------
assert(OneRingLib and OneRingLib.ext and OneRingLib.ext.OPieUI, "OPie not found")
local Masque = LibStub("Masque", true)
assert(Masque, "Masque not found")
local id
local group
local buttons = {}
local prototype = {}
local STATE_USABLE, STATE_NOMANA, STATE_NORANGE, STATE_UNUSABLE = 0, 1, 2, 3
function prototype:SetIcon(texture)
self.Icon:SetTexture(texture)
end
function prototype:SetIconTexCoord(a, b, c, d, e, f, g, h)
if not a or not b or not c or not d then return end -- Broker plugins???
self.Icon:SetTexCoord(a, b, c, d, e, f, g, h)
end
function prototype:SetIconVertexColor(r, g, b)
if r == 0.5 and g == 0.5 and b == 0.5 then return end -- don't darken icons on cooldown
self.icon_r, self.icon_g, self.icon_b = r, g, b
if self.ustate == STATE_USABLE then
self.Icon:SetVertexColor(r, g, b)
end
end
function prototype:SetUsable(usable, usableCharge, cd, nomana, norange)
local state = usable and STATE_USABLE or (norange and STATE_NORANGE or (nomana and STATE_NOMANA or STATE_UNUSABLE))
if state == self.ustate then return end
self.ustate = state
if state == STATE_NORANGE then
self.Icon:SetVertexColor(0.8, 0.1, 0.1)
elseif state == STATE_NOMANA then
self.Icon:SetVertexColor(0.5, 0.5, 1)
elseif state == STATE_UNUSABLE and not cd then -- don't black it out while on cooldown
self.Icon:SetVertexColor(0.4, 0.4, 0.4)
else
self.Icon:SetVertexColor(self.icon_r or 1, self.icon_g or 1, self.icon_b or 1)
end
end
function prototype:SetDominantColor(r, g, b)
self.Border:SetShown(2.85 > (r + g + b)) -- don't override skin color if it's white
self.Border:SetVertexColor(r, g, b)
self.Border:SetAlpha(SPECIAL_COLOR_ALPHA)
for i = 1, #self.GlowTextures do
self.GlowTextures[i]:SetVertexColor(r, g, b)
end
end
function prototype:SetOverlayIcon(texture, w, h, ...) -- not entirely sure what this is for
if not texture then
self.OverlayIcon:Hide()
else
self.OverlayIcon:SetTexture(texture)
self.OverlayIcon:SetSize(w, h)
if ... then
self.OverlayIcon:SetTexCoord(...)
end
self.OverlayIcon:Show()
end
end
function prototype:SetCount(count)
self.Count:SetText(count or "")
end
local displaySubs = {
["ALT%-"] = "a",
["CTRL%-"] = "c",
["SHIFT%-"] = "s", -- fr, it: "m"
["BUTTON"] = "m", -- fr: souris, it: mouse
["MOUSEWHEEL"] = "w", -- fr: molette, it: rotellina
["NUMPAD"] = "n",
["PLUS"] = "+",
["MINUS"] = "-",
["MULTIPLY"] = "*",
["DIVIDE"] = "/",
["DECIMAL"] = ".",
}
function prototype:SetBinding(text)
if not text then
return self.HotKey:SetText("")
end
for k, v in pairs(displaySubs) do
text = gsub(text, k, v)
end
self.HotKey:SetText(text)
end
function prototype:SetCooldown(remain, duration, usable)
if duration and remain and duration > 0 and remain > 0 then
local start = GetTime() + remain - duration
-- TODO: detect and show loss of control ?
if usable then
-- show recharge time
self.Cooldown:SetDrawEdge(true)
self.Cooldown:SetDrawSwipe(false)
else
-- show cooldown time
self.Cooldown:SetDrawEdge(false)
self.Cooldown:SetDrawSwipe(true)
self.Cooldown:SetSwipeColor(0, 0, 0, 0.8)
end
self.Cooldown:SetCooldown(start, duration)
self.Cooldown:Show()
else
self.Cooldown:Hide()
end
end
function prototype:SetCooldownFormattedText(pattern, ...)
-- do nothing
end
function prototype:SetCooldownTextShown()
-- do nothing
end
function prototype:SetHighlighted(highlight)
self[highlight and "LockHighlight" or "UnlockHighlight"](self)
end
function prototype:SetActive(active)
self:SetChecked(active)
end
function prototype:SetOuterGlow(shown)
-- if shown then
-- print("GLOW!", self.Icon:GetTexture()) -- IS THIS EVEN USED?
-- end
for i = 1, #self.GlowTextures do
self.GlowTextures[i]:SetShown(shown)
end
end
function prototype:SetEquipState(inBags, isEquipped)
if isEquipped then
self.Flash:SetVertexColor(0.1, 0.9, 0.15)
self.Flash:Show()
elseif inBags then
self.Flash:SetVertexColor(1, 0.9, 0.2)
self.Flash:Show()
else
self.Flash:Hide()
end
end
local function Reskin()
for _, button in pairs(buttons) do
local r, g, b = button.GlowTextures[1]:GetVertexColor()
local _, _, _, a = button.Border:GetVertexColor()
button.Border:SetVertexColor(r, g, b, a)
end
end
local id = 0
local function CreateIndicator(name, parent, size, ghost)
id = id + 1
name = name or "OPieSliceButton"..id
parent = parent or UIParent
size = size or 36
local button = CreateFrame("CheckButton", name, parent, "ActionButtonTemplate")
button:SetSize(size, size)
button:EnableMouse(false)
button.Border = _G[name .. "Border"] -- highlight
button.Cooldown = _G[name .. "Cooldown"]
button.Count = _G[name .. "Count"]
button.Flash = _G[name .. "Flash"] -- inner glow / checked
button.HotKey = _G[name .. "HotKey"]
button.Icon = _G[name .. "Icon"]
button.NormalTexture = _G[name .. "NormalTexture"] -- border
-- Overlay icon (???)
button.OverlayIcon = button:CreateTexture(nil, "ARTWORK", 1)
button.OverlayIcon:SetPoint("BOTTOMLEFT", button, "BOTTOMLEFT", 4, 4)
-- Outer glow (doesn't seem to do anything?)
button.GlowTextures = {}
for i = 1, 4 do
local glow = button:CreateTexture(nil, "BACKGROUND", nil, -8)
glow:SetSize(size, size)
glow:SetTexture("Interface\\AddOns\\OPie\\gfx\\oglow")
glow:Hide()
button.GlowTextures[i] = glow
end
button.GlowTextures[1]:SetPoint("CENTER", button, "TOPLEFT")
button.GlowTextures[1]:SetTexCoord(0, 1, 0, 1)
button.GlowTextures[2]:SetPoint("CENTER", button, "TOPRIGHT")
button.GlowTextures[2]:SetTexCoord(1, 0, 0, 1)
button.GlowTextures[3]:SetPoint("CENTER", button, "BOTTOMRIGHT")
button.GlowTextures[3]:SetTexCoord(1, 0, 1, 0)
button.GlowTextures[4]:SetPoint("CENTER", button, "BOTTOMLEFT")
button.GlowTextures[4]:SetTexCoord(0, 1, 1, 0)
for k, v in pairs(prototype) do
button[k] = v
end
-- Let Masque skin it
if not group then
group = Masque:Group("OPie")
Masque:Register("OPie", Reskin)
end
group:AddButton(button)
tinsert(buttons, button)
return button
end
OneRingLib.ext.OPieUI:SetIndicatorConstructor(CreateIndicator)