-
Notifications
You must be signed in to change notification settings - Fork 25
/
NxOptions.lua
6757 lines (6453 loc) · 201 KB
/
NxOptions.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
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---------------------------------------------------------------------------------------
-- NxOptions - Options
-- Copyright 2007-2012 Carbon Based Creations, LLC
---------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------
-- Carbonite - Addon for World of Warcraft(tm)
-- Copyright 2007-2012 Carbon Based Creations, LLC
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
---------------------------------------------------------------------------------------
-------------------------------------------------------------------------------
-- Tables
local AceConfig = LibStub("AceConfig-3.0")
local AceConfigReg = LibStub("AceConfigRegistry-3.0")
local AceConfigDialog = LibStub("AceConfigDialog-3.0")
local L = LibStub("AceLocale-3.0"):GetLocale("Carbonite")
local modular_config = {}
local profiles
local function profilesConfig()
if not profiles then
profiles = {
type = "group",
name = L["Profiles"],
childGroups = "tab",
args = {
main = {
type = "group",
name = L["Main"],
order = 1,
args = {},
},
},
}
end
profiles.args.main.args.profiles = LibStub("AceDBOptions-3.0"):GetOptionsTable(Nx.db)
return profiles
end
function Nx.Opts:AddToProfileMenu(ProfileName,ProfileOrder,ProfileDB)
if not profiles then
return
end
profiles.args[ProfileName] = {
type = "group",
name = ProfileName,
order = ProfileOrder,
args = {},
}
profiles.args[ProfileName].args.profiles = LibStub("AceDBOptions-3.0"):GetOptionsTable(ProfileDB)
end
local config
local function mainConfig()
if not config then
config = {
type = "group",
name = "Carbonite",
args = {
main = {
order = 1,
type = "group",
name = L["Main Options"],
args = {
title = {
type = "description",
name = L["\nCarbonite is a full featured, powerful map addon providing a versitile easy to use google style map which either can replace or work with the current blizzard maps.\n\nThrough modules it can also be expanded to do even more to help make your game easier."] ..
"\n\n\n|cff9999ff" .. L["Release Version"] .. ": |cffd700ff" .. Nx.VERMAJOR .. "." .. (Nx.VERMINOR*10) .. " Build " .. Nx.BUILD .. "\n" ..
"|cff9999ff" .. L["Maintained by"] .. ": |cffd700ffThe Community.\n" ..
"|cff9999ff" .. L["Website"] .. ": |cffd700ffhttp://www.wowinterface.com/downloads/info12965-Carbonite.html\n"..
"\n"..
"|cd700ffff" .. L["For support, please visit the forums for Carbonite on WoW Interface."] .. "\n"..
"|cd700ffff" .. L["Special thanks to"] .. ": \n\n"..
"|cff9999ff" .. L["Cirax for Carbonite2 Logo"] .. "\n" ..
"|cff9999ff" .. L["ircdirk & atl77 for Quest Database updates"] .. "\n" ..
"|cff9999ff" .. L["nelegalno for many cleanups, api fixes"] .. "\n" ..
"|cff9999ff" .. L["Naharis for quest watchlist fixes"] .. "\n" ..
"|cff9999ff" .. L["JimJoBlue for guide location updates"] .. "\n" ..
"|cff9999ff" .. L["Localization Efforts By:"] .. "\n" ..
"|cff9999ff" .. L["frFR - powerstrk"] .. "\n" ..
"|cff9999ff" .. L["deDE - atl77 & samyonair"] .. "\n" ..
"|cff9999ff" .. L["itIT - ThorwaldOdin"] .. "\n" ..
"|cff9999ff" .. L["ruRU - NotDead"] .. "\n" ..
"|cff9999ff" .. L["zhCN - Raka-loah"] .. "\n" ..
"|cff9999ff" .. L["zhTW - kc305chen"] .. "\n",
},
},
},
},
}
for k, v in pairs(modular_config) do
config.args[k] = (type(v) == "function") and v() or v
end
end
return config
end
local battlegrounds
local function BGConfig()
if not battlegrounds then
battlegrounds = {
type = "group",
name = L["Battlegrounds"],
args = {
bgstats = {
type = "toggle",
name = L["Show Battleground Stats"],
width = "full",
desc = L["Turns on or off displaying your battleground k/d and honor gained in chat during a match."],
get = function()
return Nx.db.profile.Battleground.ShowStats
end,
set = function()
Nx.db.profile.Battleground.ShowStats = not Nx.db.profile.Battleground.ShowStats
end,
},
},
}
end
return battlegrounds
end
local general
local function generalOptions()
if not general then
general = {
type = "group",
name = L["General Options"],
args = {
loginMsg = {
order = 1,
type = "toggle",
width = "full",
name = L["Show Login Message"],
desc = L["When Enabled, displays the Carbonite loading messages in chat."],
get = function()
return Nx.db.profile.General.LoginHideVer
end,
set = function()
Nx.db.profile.General.LoginHideVer = not Nx.db.profile.General.LoginHideVer
end,
},
loginWin = {
order = 2,
type = "toggle",
width = "full",
name = L["Show Login Graphic"],
desc = L["When Enabled, displays the Carbonite graphic during initialization."] .. "\n",
get = function()
return Nx.db.profile.General.TitleOff
end,
set = function()
Nx.db.profile.General.TitleOff = not Nx.db.profile.General.TitleOff
end,
},
loginSnd = {
order = 3,
type = "toggle",
width = "full",
name = L["Play Login Sound"],
desc = L["When Enabled, plays a sound when Carbonite is loaded."],
get = function()
return Nx.db.profile.General.TitleSoundOn
end,
set = function()
Nx.db.profile.General.TitleSoundOn = not Nx.db.profile.General.TitleSoundOn
end,
},
spacer1 = {
order = 4,
type = "description",
name = "\n",
},
chatWindow = {
order = 5,
type = "select",
name = L["Default Chat Channel"],
desc = L["Allows selection of which chat window to display Carbonite messages"],
get = function()
local vals = Nx.Opts:CalcChoices("Chat")
for a,b in pairs(vals) do
if (b == Nx.db.profile.General.ChatMsgFrm) then
return a
end
end
return ""
end,
set = function(info, name)
local vals = Nx.Opts:CalcChoices("Chat")
Nx.db.profile.General.ChatMsgFrm = vals[name]
Nx.Opts:NXCmdUIChange()
end,
values = function()
return Nx.Opts:CalcChoices("Chat")
end,
},
spacer2 = {
order = 6,
type = "description",
name = "\n",
},
maxCamera = {
order = 7,
type = "toggle",
width = "full",
name = L["Force Max Camera Distance"] .. "\n",
desc = L["When enabled, sets the max camera distance higher then Blizzards options normally allows."],
get = function()
return Nx.db.profile.General.CameraForceMaxDist
end,
set = function()
Nx.db.profile.General.CameraForceMaxDist = not Nx.db.profile.General.CameraForceMaxDist
Nx.Opts:NXCmdCamForceMaxDist()
end,
},
hideGriff = {
order = 8,
type = "toggle",
width = "full",
name = L["Hide Action Bar Gryphon Graphics"],
desc = L["Attempts to hide the two gryphons on your action bar."],
get = function()
return Nx.db.profile.General.GryphonsHide
end,
set = function()
Nx.db.profile.General.GryphonsHide = not Nx.db.profile.General.GryphonsHide
Nx.Opts:NXCmdGryphonsUpdate()
end,
},
},
}
end
return general
end
local map
local function mapConfig ()
if not map then
map = {
type = "group",
name = L["Map Options"],
childGroups = "tab",
args = {
mainMap = {
order = 1,
type = "group",
name = L["Map Options"],
args = {
maxMap = {
order = 1,
type = "toggle",
width = "full",
name = L["Use Carbonite Map instead of Blizzards (Alt-M will open world map)"] .. "\n",
desc = L["When enabled, pressing 'M' will maximize the carbonite map instead of opening the world map."],
get = function()
return Nx.db.profile.Map.MaxOverride
end,
set = function()
Nx.db.profile.Map.MaxOverride = not Nx.db.profile.Map.MaxOverride
end,
},
Compatibility = {
order = 2,
type = "toggle",
width = "full",
name = L["Enable Combat Compatibility Mode"],
desc = L["When Enabled, Carbonite will performe combat checks before any map/window functions. This eliminates other UI's from causing protected mode errors."],
get = function()
return Nx.db.profile.Map.Compatibility
end,
set = function()
Nx.db.profile.Map.Compatibility = not Nx.db.profile.Map.Compatibility
end,
},
hidecombat = {
order = 3,
type = "toggle",
width = "full",
name = L["Hide Map In Combat"],
desc = L["If large map is open when you enter combat attempts to hide it."],
get = function()
return Nx.db.profile.Map.HideCombat
end,
set = function()
Nx.db.profile.Map.HideCombat = not Nx.db.profile.Map.HideCombat
end,
},
centerMap = {
order = 4,
type = "toggle",
width = "full",
name = L["Center map when maximizing"] .. "\n",
desc = L["When enabled, the map will center on your current zone when you maximize it"],
get = function()
return Nx.db.profile.Map.MaxCenter
end,
set = function()
Nx.db.profile.Map.MaxCenter = not Nx.db.profile.Map.MaxCenter
end,
},
mouseIgnore = {
order = 5,
type = "toggle",
width = "full",
name = L["Ignore mouse on map except when ALT is pressed"] .. "\n",
desc = L["When enabled, the small game map will ignore all mouse clicks unless the ALT key is held down."],
get = function()
return Nx.db.profile.Map.MouseIgnore
end,
set = function()
Nx.db.profile.Map.MouseIgnore = not Nx.db.profile.Map.MouseIgnore
end,
},
maxMouseIgnore = {
order = 6,
type = "toggle",
width = "full",
name = L["Ignore mouse on full-sized map except when ALT is pressed"] .. "\n",
desc = L["When enabled, the full size map will ignore all mouse clicks unless the ALT key is held down."],
get = function()
return Nx.db.profile.Map.MaxMouseIgnore
end,
set = function()
Nx.db.profile.Map.MaxMouseIgnore = not Nx.db.profile.Map.MaxMouseIgnore
end,
},
--[[ Doesn't work for now.
ownMap = {
order = 7,
type = "toggle",
width = "full",
name = L["Move Worldmap Data into Maximized Map"] .. "\n",
desc = L["When enabled, Carbonite will attempt to move anything drawn on your world map onto the Maximized Map."],
get = function()
return Nx.db.profile.Map.WOwn
end,
set = function()
Nx.db.profile.Map.WOwn = not Nx.db.profile.Map.WOwn
end,
},
]]--
restoreMap = {
order = 7,
type = "toggle",
width = "full",
name = L["Close Map instead of minimize"] .. "\n",
desc = L["When enabled, pressing either 'M' or ESC will close the maximized map instead of switching back to small map."],
get = function()
return Nx.db.profile.Map.MaxRestoreHide
end,
set = function()
Nx.db.profile.Map.MaxRestoreHide = not Nx.db.profile.Map.MaxRestoreHide
end,
},
mapUpdate = {
order = 7,
type = "range",
name = L["Map update rate"],
desc = L["sets map update refresh rate"],
min = 0,
max = .25,
step = .01,
bigStep = .01,
get = function()
return Nx.db.profile.Map.mapUpdate
end,
set = function(info,value)
Nx.db.profile.Map.mapUpdate = value
end,
},
mZGVUpdateGoto = {
order = 7,
type = "toggle",
width = "full",
name = L["Use GoTo waypoints with Zygor Guides"] .. "\n",
desc = L["When enabled Carbonite will follow Zygor Guides steps and set Goto waypoints on the map."],
get = function()
return Nx.db.profile.Map.ZGVUpdateGoto
end,
set = function()
Nx.db.profile.Map.ZGVUpdateGoto = not Nx.db.profile.Map.ZGVUpdateGoto
end,
},
spacer1 = {
order = 8,
type = "description",
name = "\n",
},
showPals = {
order = 9,
type = "toggle",
name = L["Show Friends/Guildmates in Cities"],
width = "full",
desc = L["When enabled, will attempt to draw a marker on the map for friends & guildmates positions."],
get = function()
return Nx.db.profile.Map.ShowPalsInCities
end,
set = function()
Nx.db.profile.Map.ShowPalsInCities = not Nx.db.profile.Map.ShowPalsInCities
end,
},
showOthers = {
order = 10,
type = "toggle",
width = "full",
name = L["Show Other people in Cities"],
desc = L["When enabled, will attempt to draw a marker on the map for other Carbonite users."],
get = function()
return Nx.db.profile.Map.ShowOthersInCities
end,
set = function()
Nx.db.profile.Map.ShowOthersInCities = not Nx.db.profile.Map.ShowOthersInCities
end,
},
showOthersZ = {
order = 11,
type = "toggle",
width = "full",
name = L["Show Other people In Zone"],
desc = L["When enabled, will attempt to draw a marker on the map for other Carbonite users."],
get = function()
return Nx.db.profile.Map.ShowOthersInZone
end,
set = function()
Nx.db.profile.Map.ShowOthersInZone = not Nx.db.profile.Map.ShowOthersInZone
end,
},
spacer2 = {
order = 12,
type = "description",
name = "\n",
},
restoreScale = {
order = 13,
type = "toggle",
name = L["Restore map scale after track"],
width = "full",
desc = L["When enabled, restores your previous map scale when tracking is cleared."],
get = function()
return Nx.db.profile.Map.RestoreScaleAfterTrack
end,
set = function()
Nx.db.profile.Map.RestoreScaleAfterTrack = not Nx.db.profile.Map.RestoreScaleAfterTrack
end,
},
useRoute = {
order = 14,
type = "toggle",
name = L["Use Travel Routing"],
width = "full",
desc = L["When enabled, attempts to route your travel when destination is in another zone."],
get = function()
return Nx.db.profile.Map.RouteUse
end,
set = function()
Nx.db.profile.Map.RouteUse = not Nx.db.profile.Map.RouteUse
end,
},
spacer3 = {
order = 15,
type = "description",
name = "\n",
},
showTrail = {
order = 16,
type = "toggle",
name = L["Show Movement Trail"],
width = "full",
desc = L["When enabled, draws a trail on the map to show your movements."],
get = function()
return Nx.db.profile.Map.ShowTrail
end,
set = function()
Nx.db.profile.Map.ShowTrail = not Nx.db.profile.Map.ShowTrail
end,
},
trailDist = {
order = 17,
type = "range",
name = L["Movement trail distance"],
desc = L["sets the distance of movement between the trail marks"],
min = .1,
max = 20,
step = .1,
bigStep = .1,
get = function()
return Nx.db.profile.Map.TrailDist
end,
set = function(info,value)
Nx.db.profile.Map.TrailDist = value
end,
},
trailCnt = {
order = 18,
type = "range",
name = L["Movement dot count"],
desc = L["sets the number of movement dots to draw on the map"],
min = 0,
max = 1000,
step = 10,
bigStep = 10,
get = function()
return Nx.db.profile.Map.TrailCnt
end,
set = function(info,value)
Nx.db.profile.Map.TrailCnt = value
end,
},
trailTime = {
order = 19,
type = "range",
name = L["Movement trail fade time"],
desc = L["sets the time trail marks last on the map (in seconds)"],
min = 0,
max = 1000,
step = 10,
bigStep = 10,
get = function()
return Nx.db.profile.Map.TrailTime
end,
set = function(info,value)
Nx.db.profile.Map.TrailTime = value
end,
},
spacer4 = {
order = 20,
type = "description",
name = "\n",
},
showToolBar = {
order = 21,
type = "toggle",
name = L["Show Map Toolbar"],
width = "full",
desc = L["When enabled, shows the quickbutton toolbar on the map."],
get = function()
return Nx.db.profile.Map.ShowToolBar
end,
set = function()
Nx.db.profile.Map.ShowToolBar = not Nx.db.profile.Map.ShowToolBar
Nx.Opts:NXCmdMapToolBarUpdate()
end,
},
TooltipAnchor = {
order = 22,
type = "select",
name = " " .. L["Map Tooltip Anchor"],
desc = L["Sets the anchor point for tooltips on the map"],
get = function()
local vals = Nx.Opts:CalcChoices("Anchor0")
for a,b in pairs(vals) do
if (b == Nx.db.profile.Map.LocTipAnchor) then
return a
end
end
return ""
end,
set = function(info, name)
local vals = Nx.Opts:CalcChoices("Anchor0")
Nx.db.profile.Map.LocTipAnchor = vals[name]
end,
values = function()
return Nx.Opts:CalcChoices("Anchor0")
end,
},
TooltipAnchorRel = {
order = 23,
type = "select",
name = " " .. L["Map Tooltip Anchor To Map"],
desc = L["Sets the secondary anchor point for tooltips on the map"],
get = function()
local vals = Nx.Opts:CalcChoices("Anchor0")
for a,b in pairs(vals) do
if (b == Nx.db.profile.Map.LocTipAnchorRel) then
return a
end
end
return ""
end,
set = function(info, name)
local vals = Nx.Opts:CalcChoices("Anchor0")
Nx.db.profile.Map.LocTipAnchorRel = vals[name]
end,
values = function()
return Nx.Opts:CalcChoices("Anchor0")
end,
},
TopToolTip = {
order = 24,
type = "toggle",
name = L["Show All Tooltips Above Map"],
width = "full",
desc = L["When enabled, makes sure the map tooltips are always on the top layer."],
get = function()
return Nx.db.profile.Map.TopTooltip
end,
set = function()
Nx.db.profile.Map.TopTooltip = not Nx.db.profile.Map.TopTooltip
end,
},
showTitleName = {
order = 25,
type = "toggle",
name = L["Show Map Name"],
desc = L["When enabled, shows current map zone name in the titlebar."],
get = function()
return Nx.db.profile.Map.ShowTitleName
end,
set = function()
Nx.db.profile.Map.ShowTitleName = not Nx.db.profile.Map.ShowTitleName
end,
},
showTitleXY = {
order = 26,
type = "toggle",
name = L["Show Coordinates"],
desc = L["When enabled, Shows your current coordinates in the titlebar."],
get = function()
return Nx.db.profile.Map.ShowTitleXY
end,
set = function()
Nx.db.profile.Map.ShowTitleXY = not Nx.db.profile.Map.ShowTitleXY
end,
},
showTitleSpeed = {
order = 27,
type = "toggle",
name = L["Show Speed"],
desc = L["When enabled, Shows your current movement speed in the titlebar."],
get = function()
return Nx.db.profile.Map.ShowTitleSpeed
end,
set = function()
Nx.db.profile.Map.ShowTitleSpeed = not Nx.db.profile.Map.ShowTitleSpeed
end,
},
showTitle2 = {
order = 28,
type = "toggle",
name = L["Show Second Title Line"],
width = "full",
desc = L["When enabled, Shows a second line of info in the titlebar with PVP & subzone info. (REQUIRES RELOAD)"],
get = function()
return Nx.db.profile.Map.ShowTitle2
end,
set = function()
Nx.db.profile.Map.ShowTitle2 = not Nx.db.profile.Map.ShowTitle2
Nx.Opts.NXCmdReload()
end,
},
spacer5 = {
order = 29,
type = "description",
name = "\n",
},
showPOI = {
order = 30,
type = "toggle",
name = L["Show Map POI"],
width = "full",
desc = L["When enabled, shows Points of Interest on the map."],
get = function()
return Nx.db.profile.Map.ShowPOI
end,
set = function()
Nx.db.profile.Map.ShowPOI = not Nx.db.profile.Map.ShowPOI
end,
},
spacer6 = {
order = 31,
type = "description",
name = "\n",
},
plyrArrowSize = {
order = 32,
type = "range",
name = L["Player Arrow Size"],
width = "double",
desc = L["Sets the size of the player arrow on the map"],
min = 10,
max = 100,
step = 1,
bigStep = 1,
get = function()
return Nx.db.profile.Map.PlyrArrowSize
end,
set = function(info,value)
Nx.db.profile.Map.PlyrArrowSize = value
end,
},
iconScaleMin = {
order = 33,
type = "range",
width = "double",
name = L["Icon Scale Min"],
desc = L["Sets the smallest size for icons on the map while zooming (-1 disabled any size changes)"],
min = -1,
max = 50,
step = 1,
bigStep = 1,
get = function()
return Nx.db.profile.Map.IconScaleMin
end,
set = function(info,value)
Nx.db.profile.Map.IconScaleMin = value
end,
},
mapLineThick = {
order = 34,
type = "range",
width = "double",
name = L["Map Health Bar Thickness"],
desc = L["Sets the thickness of the health bar (0 disables)"],
min = 0,
max = 10,
step = 1,
bigStep = 1,
get = function()
return Nx.db.profile.Map.LineThick
end,
set = function(info,value)
Nx.db.profile.Map.LineThick = value
end,
},
zoneDrawCnt = {
order = 35,
type = "range",
width = "double",
name = L["Maximum Zones To Draw At Once"],
desc = L["Sets the number of zones you can display at once on the map"],
min = 1,
max = 20,
step = 1,
bigStep = 1,
get = function()
return Nx.db.profile.Map.ZoneDrawCnt
end,
set = function(info,value)
Nx.db.profile.Map.ZoneDrawCnt = value
end,
},
detailSize = {
order = 36,
type = "range",
name = L["Detail Graphics Visible Area"],
width = "double",
desc = L["Sets the area size available when zoomed into satellite mode on the map (REQUIRES RELOAD)"],
min = 2,
max = 40,
step = 1,
bigStep = 1,
get = function()
return Nx.db.profile.Map.DetailSize
end,
set = function(info,value)
Nx.db.profile.Map.DetailSize = value
Nx.Opts.NXCmdReload()
end,
},
spacer7 = {
order = 37,
type = "description",
name = "\n",
},
header = {
order = 38,
type = "header",
name = L["Map Mouse Button Binds"],
},
ButLAlt = {
order = 39,
type = "select",
name = " " .. L["Alt Left Click"],
desc = L["Sets the action performed when left clicking holding ALT"],
get = function()
local vals = Nx.Opts:CalcChoices("MapFunc")
for a,b in pairs(vals) do
if (b == Nx.db.profile.Map.ButLAlt) then
return a
end
end
return ""
end,
set = function(info, name)
local vals = Nx.Opts:CalcChoices("MapFunc")
Nx.db.profile.Map.ButLAlt = vals[name]
end,
values = function()
return Nx.Opts:CalcChoices("MapFunc")
end,
},
ButLCtrl = {
order = 40,
type = "select",
name = " " .. L["Ctrl Left Click"],
desc = L["Sets the action performed when left clicking holding CTRL"],
get = function()
local vals = Nx.Opts:CalcChoices("MapFunc")
for a,b in pairs(vals) do
if (b == Nx.db.profile.Map.ButLCtrl) then
return a
end
end
return ""
end,
set = function(info, name)
local vals = Nx.Opts:CalcChoices("MapFunc")
Nx.db.profile.Map.ButLCtrl = vals[name]
end,
values = function()
return Nx.Opts:CalcChoices("MapFunc")
end,
},
ButM = {
order = 41,
type = "select",
name = " " .. L["Middle Click"],
desc = L["Sets the action performed when clicking your middle mouse button"],
get = function()
local vals = Nx.Opts:CalcChoices("MapFunc")
for a,b in pairs(vals) do
if (b == Nx.db.profile.Map.ButM) then
return a
end
end
return ""
end,
set = function(info, name)
local vals = Nx.Opts:CalcChoices("MapFunc")
Nx.db.profile.Map.ButM = vals[name]
end,
values = function()
return Nx.Opts:CalcChoices("MapFunc")
end,
},
ButMAlt = {
order = 42,
type = "select",
name = " " .. L["Alt Middle Click"],
desc = L["Sets the action performed when middle clicking holding ALT"],
get = function()
local vals = Nx.Opts:CalcChoices("MapFunc")
for a,b in pairs(vals) do
if (b == Nx.db.profile.Map.ButMAlt) then
return a
end
end
return ""
end,
set = function(info, name)
local vals = Nx.Opts:CalcChoices("MapFunc")
Nx.db.profile.Map.ButMAlt = vals[name]
end,
values = function()
return Nx.Opts:CalcChoices("MapFunc")
end,
},
ButMCtrl = {
order = 43,
type = "select",
name = " " .. L["Ctrl Middle Click"],
desc = L["Sets the action performed when middle clicking holding CTRL"],
get = function()
local vals = Nx.Opts:CalcChoices("MapFunc")
for a,b in pairs(vals) do
if (b == Nx.db.profile.Map.ButMCtrl) then
return a
end
end
return ""
end,
set = function(info, name)
local vals = Nx.Opts:CalcChoices("MapFunc")
Nx.db.profile.Map.ButMCtrl = vals[name]
end,
values = function()
return Nx.Opts:CalcChoices("MapFunc")
end,
},
ButR = {
order = 44,
type = "select",
name = " " .. L["Right Click"],
desc = L["Sets the action performed when right clicking the map"],
get = function()
local vals = Nx.Opts:CalcChoices("MapFunc")
for a,b in pairs(vals) do
if (b == Nx.db.profile.Map.ButR) then
return a
end
end
return ""
end,
set = function(info, name)
local vals = Nx.Opts:CalcChoices("MapFunc")
Nx.db.profile.Map.ButR = vals[name]
end,
values = function()
return Nx.Opts:CalcChoices("MapFunc")
end,
},
ButRAlt = {
order = 45,
type = "select",
name = " " .. L["Alt Right Click"],
desc = L["Sets the action performed when Right clicking holding ALT"],
get = function()
local vals = Nx.Opts:CalcChoices("MapFunc")
for a,b in pairs(vals) do
if (b == Nx.db.profile.Map.ButRAlt) then
return a
end
end
return ""
end,
set = function(info, name)
local vals = Nx.Opts:CalcChoices("MapFunc")
Nx.db.profile.Map.ButRAlt = vals[name]
end,
values = function()
return Nx.Opts:CalcChoices("MapFunc")
end,
},
ButRCtrl = {
order = 46,
type = "select",
name = " " .. L["Ctrl Right Click"],
desc = L["Sets the action performed when right clicking holding CTRL"],
get = function()
local vals = Nx.Opts:CalcChoices("MapFunc")
for a,b in pairs(vals) do
if (b == Nx.db.profile.Map.ButRCtrl) then
return a
end
end
return ""
end,
set = function(info, name)
local vals = Nx.Opts:CalcChoices("MapFunc")
Nx.db.profile.Map.ButRCtrl = vals[name]
end,
values = function()
return Nx.Opts:CalcChoices("MapFunc")
end,
},
But4 = {
order = 47,
type = "select",
name = " " .. L["Button 4 Click"],
desc = L["Sets the action performed when clicking mouse button 4"],
get = function()
local vals = Nx.Opts:CalcChoices("MapFunc")
for a,b in pairs(vals) do
if (b == Nx.db.profile.Map.But4) then
return a
end
end
return ""
end,
set = function(info, name)
local vals = Nx.Opts:CalcChoices("MapFunc")
Nx.db.profile.Map.But4 = vals[name]
end,
values = function()
return Nx.Opts:CalcChoices("MapFunc")
end,
},
But4Alt = {
order = 48,
type = "select",
name = " " .. L["Alt Button 4 Click"],
desc = L["Sets the action performed when pressing mouse 4 while holding ALT"],
get = function()
local vals = Nx.Opts:CalcChoices("MapFunc")
for a,b in pairs(vals) do
if (b == Nx.db.profile.Map.But4Alt) then
return a
end
end
return ""