-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRuneConfig.lua
923 lines (878 loc) · 25 KB
/
RuneConfig.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
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
if not MagicRunes then return end -- not a DK
local L = LibStub("AceLocale-3.0"):GetLocale("MagicRunes", false)
-- upvalues
local PI = math.pi
local ipairs = ipairs
local pairs = pairs
local tonumber = tonumber
local tostring = tostring
local unpack = unpack
local mod = MagicRunes
local LibStub = LibStub
local R = LibStub("AceConfigRegistry-3.0")
local AC = LibStub("AceConfig-3.0")
local ACD = LibStub("AceConfigDialog-3.0")
local DBOpt = LibStub("AceDBOptions-3.0")
local LDBIcon = LibStub("LibDBIcon-1.0", true)
local AceGUIWidgetLSMlists = AceGUIWidgetLSMlists
local media = LibStub("LibSharedMedia-3.0")
local db, bars, runebars
local defaultColors = {
Blood = { 1, 0, 0, 1 },
Unholy = { 0, 0.7, 0, 1 },
Frost = { 0, 0.5, 1, 1 },
Death = { 0.8, 0, 0.9, 1 },
Runic = { 0, 0.82, 1, 1 },
BLOODPLAGUE = { 0, 0.7, 0, 1 },
FROSTFEVER = { 0, 0.5, 1, 1 },
Background = { 0.3, 0,3, 0.3, 0.5 },
Label = { 1, 1, 1, 1 },
Timer = { 1, 1, 1, 1 },
}
local runeValues = {
L["Blood #1"], L["Blood #2"],
L["Unholy #1"], L["Unholy #2"],
L["Frost #1"], L["Frost #2"],
}
local options = {
general = {
type = "group",
name = "General",
get = "GetGlobalOption",
handler = mod,
order = 1,
args = {
showRemaining = {
type = "toggle",
name = L["Show remaining time"],
desc = L["Instead showing the time elapsed on the cooldown, show the time remaining. This means that the bars will shrink as the cooldown lowers instead of grow."],
width = "full",
set = function(_,val) db.showRemaining = val mod:UpdateRemainingTimes() end
},
minimapIcon = {
type = "toggle",
name = L["Enable minimap icon"],
desc = L["Show an icon to open the config at the Minimap"],
get = function() return not db.minimapIcon.hide end,
set = function(info, value) db.minimapIcon.hide = not value; LDBIcon[value and "Show" or "Hide"](LDBIcon, "MagicRunes") end,
disabled = function() return not LDBIcon end,
},
locked = {
type = "toggle",
name = L["Lock bar positions"],
width = "full",
set = function() mod:ToggleLocked() end,
},
hideBlizzardFrame = {
type = "toggle",
name = L["Hide the Blizzard rune frame"],
width = "full",
set = "HandleBlizzardRuneFrame",
},
growup = {
type = "toggle",
name = L["Reverse growth direction"],
desc = L["Reverse the order in which bars are added relative to the anchor."],
width = "full",
set = function(_, val) db.growup = val bars:ReverseGrowth(val) end,
},
hideAnchor = {
type = "toggle",
name = L["Hide anchor when bars are locked."],
width = "full",
set = function()
db.hideAnchor = not db.hideAnchor
if db.locked and db.hideAnchor then
bars:HideAnchor()
else
bars:ShowAnchor()
end
mod:info("The anchor will be %s when the bars are locked.", db.hideAnchor and "hidden" or "shown")
end,
},
sound = {
type = 'select',
dialogControl = 'LSM30_Sound',
name = L["Alert sound effect"],
desc = L["The sound effect to play when the sound alert trigger occurs."],
values = AceGUIWidgetLSMlists.sound,
set = "SetSoundFile",
disabled = function() return db.soundOccasion == 1 end,
order = 100,
},
soundOccasion = {
type = "select",
name = L["Alert sound trigger"],
desc = L["When to play the alert sound: On GCD => play when the remaining cooldown of a run goes below the global cooldown. On readiness => play when a rune becomes ready for use."],
values = {
L["Never"], L["On GCD"], L["On readiness"]
},
set = function(_,val) db.soundOccasion = val end,
order = 90,
},
preset = {
type = "select",
name = L["Load preset"],
desc = L["Presets are primarily here to give you a few ideas on how you can configure the bars. Note that the presets do now change font, texture or color options. The global scale is also not changed."],
values = "GetPresetList",
order = 0,
set = function(_, preset)
if db.preset ~= preset then
db.preset = preset
for var,val in pairs(mod.presets[preset].data) do
db[var] = val
end
mod:ApplyProfile()
mod:NotifyChange()
end
end
}
},
},
colors = {
type = "group",
name = L["Colors"],
order = 9,
handler = mod,
set = "SetColorOpt",
get = "GetColorOpt",
args = {
Blood = {
type = "color",
name = L["Blood"],
desc = L["Color used for blood rune bars."],
hasAlpha = true,
order = 1,
},
Unholy = {
type = "color",
name = L["Unholy"],
desc = L["Color used for unholy rune bars."],
hasAlpha = true,
order = 2,
},
Frost = {
type = "color",
name = L["Frost"],
desc = L["Color used for frost rune bars."],
hasAlpha = true,
order = 3,
},
Death = {
type = "color",
name = L["Death"],
desc = L["Color used for death rune bars."],
hasAlpha = true,
order = 4,
},
Runic = {
type = "color",
name = L["Runic"],
desc = L["Color used for the runic power bar."],
hasAlpha = true,
order = 5,
},
BLOODPLAGUE = {
type = "color",
name = function() return mod.spellCache.BLOODPLAGUE.name end,
desc = L["Color used for the Blood Plague bar."],
hasAlpha = true,
order = 5,
},
FROSTFEVER = {
type = "color",
name = function() return mod.spellCache.FROSTFEVER.name end,
desc = L["Color used for the Frost Fever bar."],
hasAlpha = true,
order = 5,
},
Label = {
type = "color",
name = L["Label"],
desc = L["Color used for the text label."],
hasAlpha = true,
order = 6,
},
Timer = {
type = "color",
name = L["Timer"],
desc = L["Color used for the timer text."],
hasAlpha = true,
order = 6,
},
Background = {
type = "color",
name = L["Background"],
desc = L["Color used for background texture."],
hasAlpha = true,
order = 10,
},
},
},
deco = {
type = "group",
name = L["Decoration and Effects"],
handler = mod,
get = "GetGlobalOption",
args = {
showLabel = {
type = "toggle",
name = L["Show labels"],
desc = L["Show labels on the bars indicating the rune type. Note the timer cannot be shown on the icon while labels are enabled."],
set = function(_,val) db.showLabel = val mod:UpdateLabels() end,
order = 10,
},
showTimer = {
type = "toggle",
name = L["Show timer"],
set = function(_,val) db.showTimer = val mod:UpdateLabels() end,
order = 20,
},
secondsOnly = {
type = "toggle",
name = L["Seconds only"],
desc = L["Normally the time is shown with one decimal place when the remaining cooldown is less than the global cooldown. If this toggled on, only seconds will be shown."],
set = function(_,val) db.secondsOnly = val mod:UpdateLabels() end,
disabled = function() return not db.showTimer end,
order = 24,
},
timerOnIcon = {
type = "toggle",
name = L["Show timer on icon"],
desc = L["Show the countdown timer on top of the icon instead of on the bar. This option is only available when labels are hidden."],
set = function(_,val) db.timerOnIcon = val mod:UpdateLabels() end,
disabled = function() return db.showLabel or not (db.showTimer and db.showIcon) end,
order = 25
},
showIcon = {
type = "toggle",
name = L["Show icons"],
set = function(_,val) db.showIcon = val mod:UpdateIcons() end,
order = 30
},
animateIcons = {
type = "toggle",
name = L["Animate icons"],
desc = L["If enabled, the icons will move with the bar. If the bar texture is hidden, you'll get a display simply showing the cooldown using icons."],
set = function(_, val) db.animateIcons = val mod:SetOrientation() end,
order = 35,
disabled = function() return not db.showIcon end
},
showSpark = {
type = "toggle",
name = L["Show spark"],
desc = L["Toggle whether or not to show the spark on active bars."],
set = function(_,val) db.showSpark = val mod:SetOrientation() end,
order = 38,
disabled = function() return db.animateIcons end
},
runeSet = {
type = "select",
name = L["Rune Icon Set"],
values = mod:GetRuneSetList(),
set = function(_,val) db.runeSet = val mod:UpdateBarIcons() end,
order = 39
},
flashMode = {
type = "select",
name = L["Flash mode"],
desc = L["Type of flashing to use to indicate imminent readiness."],
values = {
L["None"],
L["Color Flash"],
L["Alpha Flash"]
},
set = function(_,val) db.flashMode = val mod:SetFlashTimer() end,
order = 40,
},
flashTimes = {
type = "range",
name = L["Number of flashes"],
desc = L["Number of times to flash bars when the remaining is less than the GCD. Set to zero to disable flashing."],
min = 1, max = 10, step = 1,
set = "SetFlashTimer",
hidden = function() return db.flashMode == 1 end,
order = 50,
},
readyFlash = {
type = "toggle",
name = L["Flash when ready"],
desc = L["When a rune cooldown is finish, flash the bar as an extra notification source."],
set = "SetReadyFlashOpt",
order = 60,
},
readyFlashDuration = {
type = "range",
name = L["Ready flash duration"],
desc = L["The time in seconds that the bar should flash when a rune becomes ready."],
set = "SetReadyFlashOpt",
min = 0.01, max = 2.5, step = 0.001,
disabled = function() return not db.readyFlash end,
order = 70,
},
},
},
alpha = {
type = "group",
name = L["Alpha Settings"],
handler = mod,
get = "GetGlobalOption",
args = {
alphaOOC = {
type = "range",
name = L["Out of combat alpha"],
desc = L["Alpha level for ready runes when out of combat."],
width = "full",
min = 0, max = 1, step = 0.01,
set = "SetGlobalOption",
order = 100,
},
alphaReady = {
type = "range",
name = L["In-Combat ready rune alpha"],
desc = L["Alpha level of ready runes when in combat."],
width = "full",
min = 0, max = 1, step = 0.01,
set = "SetGlobalOption",
order = 110,
},
alphaGCD = {
type = "range",
name = L["In-GCD active rune alpha"],
desc = L["Alpha level of active runes when the remaining cooldown is shorter the global cooldown."],
width = "full",
min = 0, max = 1, step = 0.01,
set = "SetGlobalOption",
order = 120,
},
alphaActive = {
type = "range",
name = L["Out-of-GCD active rune alpha"],
desc = L["Alpha level of active runes when the remaining cooldown is longer than the global cooldown."],
width = "full",
min = 0, max = 1, step = 0.01,
set = "SetGlobalOption",
order = 130,
},
fadeAlpha = {
type = "toggle",
name = L["Fade alpha level of active runes"],
desc = L["Fade alpha level between the in GCD and out of GCD alpha level. This can be used to make the rune cooldown displays become incrementally more visible as the cooldown decreases."],
width = "full",
set = "SetGlobalOption",
order = 140,
},
fadeAlphaGCD = {
type = "toggle",
name = L["Fade alpha from gcd to ready"],
desc = L["Fade the alpha level between the GCD level and the ready level. This option is ignored if the alpha flash notification is enabled."],
width = "full",
set = "SetGlobalOption",
disabled = function() return db.flashMode == 3 end,
order = 145,
}
}
},
sizing = {
type = "group",
name = L["Bar Layout"],
order = 4,
handler = mod,
get = "GetGlobalOption",
args = {
length = {
type = "range",
name = L["Length"],
width = "full",
min = 20, max = 500, step = 0.01,
set = function(_,val) db.length = val mod:SetSize() end,
order = 1
},
thickness = {
type = "range",
name = L["Thickness"],
width = "full",
min = 1, max = 150, step = 0.01,
set = function(_,val) db.thickness = val mod:SetSize() end,
order = 2
},
spacing = {
type = "range",
name = L["Spacing"],
width = "full",
min = -30, max = 30, step = 0.01,
set = function(_,val) db.spacing = val bars:SetSpacing(val) end,
order = 3
},
scale = {
type = "range",
name = L["Overall Scale"],
width = "full",
min = 0.01, max = 5, step = 0.01,
set = function(_,val) db.scale = val bars:SetScale(val) end,
order = 4
},
iconScale = {
type = "range",
name = L["Icon Scale"],
width = "full",
min = 0.01, max = 50, step = 0.01,
set = function(_,val) db.iconScale = val mod:SetIconScale(val) end,
order = 4
},
orientation = {
type = "select",
name = L["Orientation"],
values = {
"Horizontal, Left",
"Vertical, Bottom",
"Horizontal, Right",
"Vertical, Top"
},
set = function(_,val) db.orientation = val mod:SetOrientation(val) end,
order = 5,
},
sortMethod = {
type = "select",
name = L["Sort Method"],
set = function(_,val) db.sortMethod = val bars:SetSortFunction(mod.sortFunctions[val]) bars:SortBars() end,
values = {
"Rune Order",
"Rune Type, Time",
"Rune Type, Reverse Time",
"Time, Rune Type",
"Reverse Time, Rune Type",
},
order = 50
},
reverseSort = {
type = "toggle",
name = L["Reverse Sorting"],
set = function(_,val) db.reverseSort = val bars:SortBars() end,
order = 60
},
},
},
looks = {
type = "group",
name = L["Font and Texture"],
order = 3,
handler = mod,
get = "GetGlobalOption",
args = {
texture = {
type = 'select',
dialogControl = 'LSM30_Statusbar',
name = L["Texture"],
desc = L["The texture used for active bars."],
values = AceGUIWidgetLSMlists.statusbar,
set = function(_,val) db.texture = val mod:SetTexture() end,
order = 3
},
bgtexture = {
type = 'select',
dialogControl = 'LSM30_Statusbar',
name = L["Background Texture"],
desc = L["The background texture for the bars. ."],
values = AceGUIWidgetLSMlists.statusbar,
set = function(_,val) db.bgtexture = val mod:SetTexture() end,
order = 4
},
font = {
type = 'select',
dialogControl = 'LSM30_Font',
name = L["Font"],
desc = L["Font used on the bars"],
values = AceGUIWidgetLSMlists.font,
set = function(_,key) db.font = key mod:SetFont() end,
order = 2,
},
fontsize = {
order = 1,
type = "range",
width="full",
name = L["Font size"],
min = 1, max = 30, step = 0.01,
set = function(_,val) db.fontsize = val mod:SetFont() end,
order = 1
},
},
},
runebar = {
type = "group",
name = L["Bar #"],
args = {
runeid = {
type = "select",
name = L["Rune #"],
values = runeValues,
hidden = "NotBarTypeRuneBar",
order = 20,
},
title = {
type = "input",
name = L["Label"],
desc = L["Label used on horizontal bars"],
hidden = "BarTypeRuneBar",
order = 25,
},
shorttitle = {
type = "input",
name = L["Short Label"],
desc = L["Label used for vertical bars"],
hidden = "BarTypeRuneBar",
order = 28,
},
sortValue = {
type = "range",
min = -5, max = 10, step = 0.1,
width ="full",
name = L["Sorting Weight"],
desc = L["The weight used when sorting this bar. A value less than 1 means it's sorted before rune bars. A value above 6 means it's sorted after the rune bars."],
hidden = "BarTypeRuneBar",
order = 35,
},
hide = {
type = "toggle",
name = L["Hide bar"],
desc = L["Toggle visibility of this bar."],
order = 40,
},
},
},
bars = {
type = "group",
name = L["Bar Configuration"],
handler = mod,
set = "SetBarOption",
get = "GetBarOption",
args = {
newbar = {
type = "execute",
name = L["Add a new bar"],
desc = L["Create a new bar."],
func = "AddNewBar",
hidden = true
}
}
}
}
mod.options = options
function mod:AddNewBar()
db.bars[#db.bars+1] = {
type = mod.RUNE_BAR,
runeid = 1,
runes = 1,
icon = mod:GetRuneIcon(1)
}
mod:CreateBars()
mod:SetupBarOptions(true)
end
function mod:BarTypeRuneBar(info)
return db.bars[tonumber(info[#info-1])].type == mod.RUNE_BAR
end
function mod:NotBarTypeComboBar(info)
return db.bars[tonumber(info[#info-1])].type ~= mod.COMBO_BAR
end
function mod:NotBarTypeRuneBar(info)
return db.bars[tonumber(info[#info-1])].type ~= mod.RUNE_BAR
end
function mod:NotBarTypeRunicBar(info)
return db.bars[tonumber(info[#info-1])].type ~= mod.RUNIC_BAR
end
function mod:NotBarTypeDotBar(info)
return db.bars[tonumber(info[#info-1])].type ~= mod.DOT_BAR
end
function mod:GetBarOption(info)
local var = info[#info]
local id = tonumber(info[#info-1])
return db.bars[id][var]
end
function mod:SetBarOption(info, val)
local var = info[#info]
local id = tonumber(info[#info-1])
local data = db.bars[id]
-- If using the default icon, change it when we modify the type
if var == "runes" and (not data.icon or data.icon == "" or data.icon == mod:GetRuneIcon(data.runes)) then
data.icon = mod:GetRuneIcon(val)
end
data[var] = val
mod:CreateBars()
mod:SortAllBars()
mod.UpdateBars()
end
do
local configPanes = {}
function mod:OptReg(optname, tbl, dispname, cmd, ownSection)
local regtable
if dispname then
optname = "Magic Runes "..optname
AC:RegisterOptionsTable(optname, tbl, cmd)
if not cmd then
if ownSection then
regtable = ACD:AddToBlizOptions(optname, L["Magic Runes"].." "..dispname)
else
regtable = ACD:AddToBlizOptions(optname, dispname, L["Magic Runes"])
end
end
else
AC:RegisterOptionsTable(optname, tbl, cmd)
if not cmd then
regtable = ACD:AddToBlizOptions(optname, L["Magic Runes"])
end
end
configPanes[#configPanes+1] = optname
return regtable
end
function mod:NotifyChange()
for _,name in ipairs(configPanes) do
R:NotifyChange(name)
end
end
end
function mod:SetupBarOptions(reload)
local args = options.bars.args
for id in pairs(args) do
if id ~= "newbar" then
args[id] = nil
end
end
if db.bars then
for id,data in ipairs(db.bars) do
local bar = {}
bar.order = id
for key,val in pairs(options.runebar) do
bar[key] = val
end
if data.type == mod.RUNE_BAR then
bar.name = runeValues[data.runeid]
elseif bar.type == mod.RUNIC_BAR then
bar.name = L["Runic bar"]
else
bar.name = data.title
end
args[tostring(id)] = bar
end
end
if reload then
R:NotifyChange("Magic Runes: Bar Configuration")
else
mod:OptReg(": Bar Configuration", options.bars, L["Bar Configuration"])
end
end
function mod:SetupOptions()
options.profile = DBOpt:GetOptionsTable(self.db)
mod.main = mod:OptReg("Magic Runes", options.general)
mod:OptReg(": Bar Alpha", options.alpha, L["Alpha Levels"])
mod:OptReg(": Bar Colors", options.colors, L["Colors"])
mod:OptReg(": Bar Decorations", options.deco, L["Decorations"])
mod:OptReg(": Bar Layout", options.sizing, L["Layout and Sorting"])
mod:OptReg(": Font & Texture", options.looks, L["Font & Texture"])
mod.text = mod:OptReg(": Profiles", options.profile, L["Profiles"])
mod:SetupBarOptions()
mod:OptReg("Magic Runes CmdLine", {
name = "Command Line",
type = "group",
args = {
config = {
type = "execute",
name = L["Show configuration dialog"],
func = function() mod:ToggleConfigDialog() end,
dialogHidden = true
},
}
}, nil, { "magrune", "magicrunes" })
end
function mod:UpdateLocalVariables()
db = mod.db.profile
bars = mod.bars
runebars = mod.runebars
end
function mod:SetIconScale(val)
for _,bar in pairs(runebars) do
if bar then
bar.icon:SetWidth(db.thickness * val)
bar.icon:SetHeight(db.thickness * val)
end
end
end
function mod:SetTexture()
bars:SetTexture(media:Fetch("statusbar", db.texture))
for _,bar in pairs(runebars) do
if bar then bar.bgtexture:SetTexture(media:Fetch("statusbar", db.bgtexture)) end
end
end
function mod:SetFont()
bars:SetFont(media:Fetch("font", db.font), db.fontsize)
end
function mod:UpdateIcons()
for id, data in ipairs(db.bars) do
local bar = runebars[id]
if bar then
if db.showIcon and db.animateIcons then
bar.spark:SetAlpha(0)
else
bar.spark:SetAlpha(1)
end
if db.showIcon then
bar:ShowIcon()
else
bar:HideIcon()
end
end
end
end
function mod:UpdateLabels()
for id, data in ipairs(db.bars) do
local bar = runebars[id]
if bar then
if db.showLabel then bar:ShowLabel() else bar:HideLabel() end
if db.showTimer then
bar:ShowTimerLabel()
if db.timerOnIcon and not db.showLabel then
bar.timerLabel:ClearAllPoints()
bar.timerLabel:SetPoint("CENTER", bar.icon, "CENTER")
else
bar:UpdateOrientationLayout()
end
else
bar:HideTimerLabel()
end
end
end
end
function mod:RefreshBarColors()
local bg = db.colors.Background
for id,bar in pairs(runebars) do
if bar then
local bdb = db.bars[id]
if bdb.type == mod.RUNE_BAR then
local name, _, _, color = mod:GetRuneInfo(bdb.runeid)
mod:SetBarColor(bar, color)
end
bar:SetBackgroundColor(bg[1], bg[2], bg[3], bg[4])
bar.label:SetTextColor(unpack(db.colors.Label))
bar.timerLabel:SetTextColor(unpack(db.colors.Timer))
end
end
end
function mod:SetColorOpt(arg, r, g, b, a)
local color = arg[#arg]
db.colors[color][1] = r
db.colors[color][2] = g
db.colors[color][3] = b
db.colors[color][4] = a
mod:RefreshBarColors()
end
function mod:GetColorOpt(arg)
return unpack(db.colors[arg[#arg]])
end
function mod:SetReadyFlashOpt(info, val)
db[info[#info]] = val
mod._readyFlash2 = db.readyFlashDuration/2
end
function mod:SetDefaultColors()
-- Populate default colors
if not db.colors then
db.colors = defaultColors
else
-- We just re-added this with a new default color
if db.colors.SCARLETFEVER then
db.colors.SCARLETFEVER = nil
end
if db.colors.UNHOLYBLIGHT then
db.colors.UNHOLYBLIGHT = nil
end
for color, val in pairs(defaultColors) do
if not db.colors[color] then
db.colors[color] = val
end
end
end
end
function mod:SetBarLabel(id, data)
if data.type == mod.RUNE_BAR then
runebars[id]:SetLabel(mod:GetRuneInfo(data.runeid))
else
if mod._vertical then
runebars[id]:SetLabel(data.shorttitle)
else
runebars[id]:SetLabel(data.title)
end
end
end
function mod:SetOrientation(orientation)
if not orientation then orientation = db.orientation end
bars:SetOrientation(orientation)
mod._vertical = (orientation == 2 or orientation == 4)
for id,data in ipairs(db.bars) do
local bar = runebars[id]
if bar then
if db.showIcon and db.animateIcons then
bar.icon:ClearAllPoints()
bar.icon:SetPoint("CENTER", bar.spark)
bar.spark:SetAlpha(0)
else
bar.spark:SetAlpha(db.showSpark and 1 or 0)
end
mod:SetBarLabel(id, data)
end
end
mod:SetIconScale(db.iconScale)
mod:UpdateLabels()
end
function mod:SetSize()
bars:SetThickness(db.thickness)
bars:SetLength(db.length)
bars:SortBars()
mod:SetIconScale(db.iconScale)
end
-- Set up the default rune 1 to 6 bars
function mod:SetDefaultBars()
local bars = db.bars or {}
if not db.bars then
for id = 1,6 do
bars[#bars+1] = {
type = 2,
runeid = id,
}
end
db.bars = bars
end
if not bars[7] then
-- make sure we got the runic bar
bars[7] = { type = mod.RUNIC_BAR, title = L["Runic"], shorttitle = "R" }
end
if not bars[9] then
-- make sure we got the dot bars
bars[8] = { type = mod.DOT_BAR, title = mod.spellCache.BLOODPLAGUE.name, shorttitle = "BP", spell = "BLOODPLAGUE" }
bars[9] = { type = mod.DOT_BAR, title = mod.spellCache.FROSTFEVER.name, shorttitle = "FF", spell = "FROSTFEVER" }
end
if bars[10] then
-- Removing Scarlet Fever and Unholy Blight, no longer in use.
bars[10] = nil
bars[11] = nil
end
-- Not sure why these aren't configured correctly.
if not bars[7].type then
bars[7].type = mod.RUNIC_BAR;
bars[8].type = mod.DOT_BAR;
bars[9].type = mod.DOT_BAR;
end
mod:SetupBarOptions(true)
end
function mod:SetFlashTimer(_, val)
if val then db.flashTimes = val end
if db.flashTimes and db.flashTimes > 0 and db.flashMode == 3 then
mod.flashTimer = db.flashTimes * 2 * PI
else
mod.flashTimer = nil
end
mod:RefreshBarColors()
end
function mod:SetSoundFile(_,val)
if val then
db.sound = val
end
mod.soundFile = media:Fetch("sound", db.sound)
end