forked from fxpw/ElvUI_OptionsUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCooldown.lua
More file actions
317 lines (306 loc) · 9.54 KB
/
Copy pathCooldown.lua
File metadata and controls
317 lines (306 loc) · 9.54 KB
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
local E, _, V, P, G = unpack(ElvUI); --Import: Engine, Locales, PrivateDB, ProfileDB, GlobalDB
local C, L = unpack(select(2, ...))
local pairs = pairs
local function profile(db)
return (db == "global" and E.db.cooldown) or E.db[db].cooldown
end
local function private(db)
return (db == "global" and P.cooldown) or P[db].cooldown
end
local function group(order, db, label)
E.Options.args.cooldown.args[db] = {
order = order,
type = "group",
name = label,
get = function(info)
local t = (profile(db))[info[#info]]
local d = (private(db))[info[#info]]
return t.r, t.g, t.b, t.a, d.r, d.g, d.b
end,
set = function(info, r, g, b)
local t = (profile(db))[info[#info]]
t.r, t.g, t.b = r, g, b
E:UpdateCooldownSettings(db)
end,
args = {
header = {
order = 1,
type = "header",
name = label
},
reverse = {
order = 2,
type = "toggle",
name = L["Reverse Toggle"],
desc = L["Reverse Toggle will enable Cooldown Text on this module when the global setting is disabled and disable them when the global setting is enabled."],
get = function(info) return (profile(db))[info[#info]] end,
set = function(info, value) (profile(db))[info[#info]] = value; E:UpdateCooldownSettings(db) end
},
secondsGroup = {
order = 5,
type = "group",
name = L["Text Threshold"],
guiInline = true,
get = function(info) return (profile(db))[info[#info]] end,
set = function(info, value) (profile(db))[info[#info]] = value; E:UpdateCooldownSettings(db) end,
args = {
checkSeconds = {
order = 1,
type = "toggle",
name = L["Enable"],
desc = L["This will override the global cooldown settings."],
disabled = E.noop
},
threshold = {
order = 2,
type = "range",
name = L["Low Threshold"],
desc = L["Threshold before text turns red and is in decimal form. Set to -1 for it to never turn red"],
min = -1, max = 20, step = 1,
disabled = function() return not (profile(db)).override end,
get = function(info) return (profile(db))[info[#info]] end,
set = function(info, value) (profile(db))[info[#info]] = value; E:UpdateCooldownSettings(db) end,
},
mmssThreshold = {
order = 3,
type = "range",
name = L["MM:SS Threshold"],
desc = L["Threshold (in seconds) before text is shown in the MM:SS format. Set to -1 to never change to this format."],
min = -1, max = 10800, step = 1,
disabled = function() return not (profile(db)).checkSeconds end
},
hhmmThreshold = {
order = 4,
type = "range",
name = L["HH:MM Threshold"],
desc = L["Threshold (in minutes) before text is shown in the HH:MM format. Set to -1 to never change to this format."],
min = -1, max = 1440, step = 1,
disabled = function() return not (profile(db)).checkSeconds end
}
}
},
colorGroup = {
order = 10,
type = "group",
name = L["Color Override"],
guiInline = true,
args = {
override = {
order = 1,
type = "toggle",
name = L["Enable"],
desc = L["This will override the global cooldown settings."],
get = function(info) return (profile(db))[info[#info]] end,
set = function(info, value) (profile(db))[info[#info]] = value; E:UpdateCooldownSettings(db) end,
},
spacer1 = {
order = 2,
type = "description",
name = " "
},
expiringColor = {
order = 3,
type = "color",
name = L["Expiring"],
desc = L["Color when the text is about to expire"],
disabled = function() return not (profile(db)).override end,
},
secondsColor = {
order = 4,
type = "color",
name = L["Seconds"],
desc = L["Color when the text is in the seconds format."],
disabled = function() return not (profile(db)).override end,
},
minutesColor = {
order = 5,
type = "color",
name = L["Minutes"],
desc = L["Color when the text is in the minutes format."],
disabled = function() return not (profile(db)).override end,
},
hoursColor = {
order = 6,
type = "color",
name = L["Hours"],
desc = L["Color when the text is in the hours format."],
disabled = function() return not (profile(db)).override end,
},
daysColor = {
order = 7,
type = "color",
name = L["Days"],
desc = L["Color when the text is in the days format."],
disabled = function() return not (profile(db)).override end,
},
mmssColor = {
order = 8,
type = "color",
name = L["MM:SS"],
disabled = function() return not (profile(db)).override end,
},
hhmmColor = {
order = 9,
type = "color",
name = L["HH:MM"],
disabled = function() return not (profile(db)).override end,
},
spacer3 = {
order = 10,
type = "header",
name = L["Time Indicator Colors"]
},
useIndicatorColor = {
order = 11,
type = "toggle",
name = L["Use Indicator Color"],
get = function(info) return (profile(db))[info[#info]] end,
set = function(info, value) (profile(db))[info[#info]] = value; E:UpdateCooldownSettings(db) end,
disabled = function() return not (profile(db)).override end,
},
spacer4 = {
order = 12,
type = "description",
name = " "
},
expireIndicator = {
order = 13,
type = "color",
name = L["Expiring"],
desc = L["Color when the text is about to expire"],
disabled = function() return not (profile(db)).override end,
},
secondsIndicator = {
order = 14,
type = "color",
name = L["Seconds"],
desc = L["Color when the text is in the seconds format."],
disabled = function() return not (profile(db)).override end,
},
minutesIndicator = {
order = 15,
type = "color",
name = L["Minutes"],
desc = L["Color when the text is in the minutes format."],
disabled = function() return not (profile(db)).override end,
},
hoursIndicator = {
order = 16,
type = "color",
name = L["Hours"],
desc = L["Color when the text is in the hours format."],
disabled = function() return not (profile(db)).override end,
},
daysIndicator = {
order = 17,
type = "color",
name = L["Days"],
desc = L["Color when the text is in the days format."],
disabled = function() return not (profile(db)).override end,
},
hhmmColorIndicator = {
order = 18,
type = "color",
name = L["MM:SS"],
disabled = function() return not (profile(db)).override end,
},
mmssColorIndicator = {
order = 19,
type = "color",
name = L["HH:MM"],
disabled = function() return not (profile(db)).override end,
},
}
},
fontGroup = {
order = 20, -- keep this at the bottom
type = "group",
name = L["Fonts"],
guiInline = true,
get = function(info) return (profile(db)).fonts[info[#info]] end,
set = function(info, value) (profile(db)).fonts[info[#info]] = value; E:UpdateCooldownSettings(db) end,
disabled = function() return not (profile(db)).fonts.enable end,
args = {
enable = {
order = 1,
type = "toggle",
name = L["Enable"],
desc = L["This will override the global cooldown settings."],
disabled = E.noop
},
spacer1 = {
order = 2,
type = "description",
name = " "
},
fontSize = {
order = 3,
type = "range",
name = L["FONT_SIZE"],
min = 10, max = 32, step = 1
},
font = {
order = 4,
type = "select",
name = L["Font"],
dialogControl = "LSM30_Font",
values = AceGUIWidgetLSMlists.font
},
fontOutline = {
order = 5,
type = "select",
name = L["Font Outline"],
values = C.Values.FontFlags
}
}
}
}
}
if db == "global" then
-- clean up the main one
E.Options.args.cooldown.args[db].args.reverse = nil
E.Options.args.cooldown.args[db].args.secondsGroup.args.threshold.disabled = nil
E.Options.args.cooldown.args[db].args.colorGroup.args.override = nil
E.Options.args.cooldown.args[db].args.colorGroup.args.spacer1 = nil
-- remove disables
for _, x in pairs(E.Options.args.cooldown.args[db].args.colorGroup.args) do
if x.disabled then x.disabled = nil end
end
-- rename the tab
E.Options.args.cooldown.args[db].args.colorGroup.name = L["COLORS"]
else
E.Options.args.cooldown.args[db].args.colorGroup.args.spacer2 = nil
end
if db == "auras" or db == "nameplates" then
-- even though the top auras can support hiding the text don't allow this to be a setting to prevent confusion
E.Options.args.cooldown.args[db].args.reverse = nil
-- this is basically creates a second way to change font, we only really need one
E.Options.args.cooldown.args[db].args.fontGroup = nil
end
end
E.Options.args.cooldown = {
type = "group",
name = L["Cooldown Text"],
childGroups = "tab",
get = function(info) return E.db.cooldown[info[#info]] end,
set = function(info, value) E.db.cooldown[info[#info]] = value; E:UpdateCooldownSettings("global") end,
args = {
intro = {
order = 1,
type = "description",
name = L["COOLDOWN_DESC"],
},
enable = {
order = 2,
type = "toggle",
name = L["Enable"],
desc = L["Display cooldown text on anything with the cooldown spiral."]
}
}
}
group(5, "global", L["Global"])
group(6, "auras", L["BUFFOPTIONS_LABEL"])
group(7, "actionbar", L["ActionBars"])
group(8, "bags", L["Bags"])
group(9, "nameplates", L["NamePlates"])
group(10, "unitframe", L["UnitFrames"])