forked from BigWigsMods/BigWigs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLoader.lua
1442 lines (1319 loc) · 49.9 KB
/
Loader.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
local L = BigWigsAPI:GetLocale("BigWigs")
local mod, public = {}, {}
local bwFrame = CreateFrame("Frame")
-----------------------------------------------------------------------
-- Generate our version variables
--
local BIGWIGS_VERSION = 75
local BIGWIGS_RELEASE_STRING = ""
local versionQueryString, versionResponseString = "Q^%d^%s", "V^%d^%s"
do
-- START: MAGIC PACKAGER VOODOO VERSION STUFF
local REPO = "REPO"
local ALPHA = "ALPHA"
local RELEASE = "RELEASE"
local releaseType = RELEASE
local myGitHash = "@project-abbreviated-hash@" -- The ZIP packager will replace this with the Git hash.
local releaseString = ""
--@alpha@
-- The following code will only be present in alpha ZIPs.
releaseType = ALPHA
--@end-alpha@
-- If we find "@" then we're running from Git directly.
if myGitHash:find("@", nil, true) then
myGitHash = "repo"
releaseType = REPO
end
if releaseType == REPO then
releaseString = L.sourceCheckout:format(BIGWIGS_VERSION)
elseif releaseType == RELEASE then
releaseString = L.officialRelease:format(BIGWIGS_VERSION, myGitHash)
elseif releaseType == ALPHA then
releaseString = L.alphaRelease:format(BIGWIGS_VERSION, myGitHash)
end
BIGWIGS_RELEASE_STRING = releaseString
-- Format is "V:version-hash"
versionQueryString = versionQueryString:format(BIGWIGS_VERSION, myGitHash)
versionResponseString = versionResponseString:format(BIGWIGS_VERSION, myGitHash)
-- END: MAGIC PACKAGER VOODOO VERSION STUFF
end
-----------------------------------------------------------------------
-- Locals
--
local ldb = nil
local tooltipFunctions = {}
local next, tonumber, strsplit = next, tonumber, strsplit
local SendAddonMessage, Ambiguate, CTimerAfter, CTimerNewTicker = SendAddonMessage, Ambiguate, C_Timer.After, C_Timer.NewTicker
local IsInInstance, GetCurrentMapAreaID, SetMapToCurrentZone = IsInInstance, GetCurrentMapAreaID, SetMapToCurrentZone
local GetAreaMapInfo, GetInstanceInfo, GetPlayerMapAreaID = GetAreaMapInfo, GetInstanceInfo, GetPlayerMapAreaID
-- Try to grab unhooked copies of critical funcs (hooked by some crappy addons)
public.GetCurrentMapAreaID = GetCurrentMapAreaID
public.GetPlayerMapAreaID = GetPlayerMapAreaID
public.SetMapToCurrentZone = SetMapToCurrentZone
public.GetAreaMapInfo = GetAreaMapInfo
public.GetCurrentMapDungeonLevel = GetCurrentMapDungeonLevel
public.GetInstanceInfo = GetInstanceInfo
public.SendAddonMessage = SendAddonMessage
public.SendChatMessage = SendChatMessage
public.CTimerAfter = CTimerAfter
public.CTimerNewTicker = CTimerNewTicker
-- Version
local usersHash = {}
local usersVersion = {}
local usersDBM = {}
local highestFoundVersion = BIGWIGS_VERSION
-- Loading
local loadOnCoreEnabled = {} -- BigWigs modulepacks that should load when a hostile zone is entered or the core is manually enabled, this would be the default plugins Bars, Messages etc
local loadOnZone = {} -- BigWigs modulepack that should load on a specific zone
local loadOnSlash = {} -- BigWigs modulepacks that can load from a chat command
local menus = {} -- contains the menus for BigWigs, once the core is loaded they will get injected
local enableZones = {} -- contains the zones in which BigWigs will enable
local disabledZones -- contains the zones in which BigWigs will enable, but the user has disabled the addon
local worldBosses = {} -- contains the list of world bosses per zone that should enable the core
local fakeZones = { -- Fake zones used as GUI menus
[-466]=true, -- Outland
[-862]=true, -- Pandaria
[-962]=true, -- Draenor
[-1007]=true, -- Broken Isles
[1716]=true, -- Broken Shore Mage Tower
}
do
local c = "BigWigs_Classic"
local bc = "BigWigs_BurningCrusade"
local wotlk = "BigWigs_WrathOfTheLichKing"
local cata = "BigWigs_Cataclysm"
local mop = "BigWigs_MistsOfPandaria"
local wod = "BigWigs_WarlordsOfDraenor"
local l = "BigWigs_Legion"
local lw_c = "LittleWigs_Classic"
local lw_bc = "LittleWigs_BurningCrusade"
local lw_wotlk = "LittleWigs_WrathOfTheLichKing"
local lw_cata = "LittleWigs_Cataclysm"
local lw_mop = "LittleWigs_MistsOfPandaria"
local lw_wod = "LittleWigs_WarlordsOfDraenor"
local lw_l = "LittleWigs_Legion"
public.zoneTbl = {
--[[ BigWigs: Classic ]]--
[409] = c, -- Molten Core
[469] = c, -- Blackwing Lair
[509] = c, -- Ruins of Ahn'Qiraj
[531] = c, -- Ahn'Qiraj Temple
--[[ BigWigs: The Burning Crusade ]]--
[-466] = bc, -- Outland (Fake Menu)
[565] = bc, -- Gruul's Lair
[532] = bc, -- Karazhan
[548] = bc, -- Coilfang: Serpentshrine Cavern
[550] = bc, -- Tempest Keep
[544] = bc, -- Magtheridon's Lair
[534] = bc, -- The Battle for Mount Hyjal
[564] = bc, -- Black Temple
--[[ BigWigs: Wrath of the Lich King ]]--
[533] = wotlk, -- Naxxramas
[616] = wotlk, -- The Eye of Eternity
[603] = wotlk, -- Ulduar
[624] = wotlk, -- Vault of Archavon
[649] = wotlk, -- Trial of the Crusader
[724] = wotlk, -- The Ruby Sanctum
[631] = wotlk, -- Icecrown Citadel
[615] = wotlk, -- The Obsidian Sanctum
[249] = wotlk, -- Onyxia's Lair
--[[ BigWigs: Cataclysm ]]--
[671] = cata, -- The Bastion of Twilight
[669] = cata, -- Blackwing Descent
[754] = cata, -- Throne of the Four Winds
[757] = cata, -- Baradin Hold
[720] = cata, -- Firelands
[967] = cata, -- Dragon Soul
--[[ BigWigs: Mists of Pandaria ]]--
[-862] = mop, -- Pandaria (Fake Menu)
[1009] = mop, -- Heart of Fear
[996] = mop, -- Terrace of Endless Spring
[1008] = mop, -- Mogu'shan Vaults
[1098] = mop, -- Throne of Thunder
[1136] = mop, -- Siege of Orgrimmar
--[[ BigWigs: Warlords of Draenor ]]--
[-962] = wod, -- Draenor (Fake Menu)
[1228] = wod, -- Highmaul
[1205] = wod, -- Blackrock Foundry
[1448] = wod, -- Hellfire Citadel
--[[ BigWigs: Legion ]]--
[-1007] = l, -- Broken Isles (Fake Menu)
[1520] = l, -- The Emerald Nightmare
[1648] = l, -- Trial of Valor
[1530] = l, -- The Nighthold
[1676] = l, -- Tomb of Sargeras
[1712] = l, -- Antorus, the Burning Throne
[1779] = l, -- Invasion Points
--[[ LittleWigs: Classic ]]--
[36] = lw_c, -- Deadmines
--[[ LittleWigs: The Burning Crusade ]]--
[540] = lw_bc, -- Hellfire Citadel: The Shattered Halls
[542] = lw_bc, -- Hellfire Citadel: The Blood Furnace
[543] = lw_bc, -- Hellfire Citadel: Ramparts
[546] = lw_bc, -- Coilfang: The Underbog
[545] = lw_bc, -- Coilfang: The Steamvault
[547] = lw_bc, -- Coilfang: The Slave Pens
[553] = lw_bc, -- Tempest Keep: The Botanica
[554] = lw_bc, -- Tempest Keep: The Mechanar
[552] = lw_bc, -- Tempest Keep: The Arcatraz
[556] = lw_bc, -- Auchindoun: Sethekk Halls
[555] = lw_bc, -- Auchindoun: Shadow Labyrinth
[557] = lw_bc, -- Auchindoun: Mana-Tombs
[558] = lw_bc, -- Auchindoun: Auchenai Crypts
[269] = lw_bc, -- Opening of the Dark Portal
[560] = lw_bc, -- The Escape from Durnholde
[585] = lw_bc, -- Magister's Terrace
--[[ LittleWigs: Wrath of the Lich King ]]--
[576] = lw_wotlk, -- The Nexus
[578] = lw_wotlk, -- The Oculus
[608] = lw_wotlk, -- Violet Hold
[595] = lw_wotlk, -- The Culling of Stratholme
[619] = lw_wotlk, -- Ahn'kahet: The Old Kingdom
[604] = lw_wotlk, -- Gundrak
[574] = lw_wotlk, -- Utgarde Keep
[575] = lw_wotlk, -- Utgarde Pinnacle
[602] = lw_wotlk, -- Halls of Lightning
[601] = lw_wotlk, -- Azjol-Nerub
[658] = lw_wotlk, -- Pit of Saron
[599] = lw_wotlk, -- Halls of Stone
[600] = lw_wotlk, -- Drak'Tharon Keep
[650] = lw_wotlk, -- Trial of the Champion
[668] = lw_wotlk, -- Halls of Reflection
[632] = lw_wotlk, -- The Forge of Souls
--[[ LittleWigs: Cataclysm ]]--
[643] = lw_cata, -- Throne of the Tides
[755] = lw_cata, -- Lost City of the Tol'vir
[725] = lw_cata, -- The Stonecore
[938] = lw_cata, -- End Time
[657] = lw_cata, -- The Vortex Pinnacle
[670] = lw_cata, -- Grim Batol
--[[ LittleWigs: Mists of Pandaria ]]--
[959] = lw_mop, -- Shado-Pan Monastery
[960] = lw_mop, -- Temple of the Jade Serpent
[994] = lw_mop, -- Mogu'shan Palace
[1001] = lw_mop, -- Scarlet Halls
[1112] = lw_mop, -- Pursuing the Black Harvest
[1004] = lw_mop, -- Scarlet Monastery
--[[ LittleWigs: Warlords of Draenor ]]--
[1209] = lw_wod, -- Skyreach
[1176] = lw_wod, -- Shadowmoon Burial Grounds
[1208] = lw_wod, -- Grimrail Depot
[1279] = lw_wod, -- The Everbloom
[1195] = lw_wod, -- Iron Docks
[1182] = lw_wod, -- Auchindoun
[1175] = lw_wod, -- Bloodmaul Slag Mines
[1358] = lw_wod, -- Upper Blackrock Spire
--[[ LittleWigs: Legion ]]--
[1716] = lw_l, -- Broken Shore Mage Tower (Fake Menu)
[1544] = lw_l, -- Assault on Violet Hold
[1677] = lw_l, -- Cathedral of Eternal Night
[1571] = lw_l, -- Court of Stars
[1651] = lw_l, -- Return to Karazhan
[1501] = lw_l, -- Black Rook Hold
[1516] = lw_l, -- The Arcway
[1466] = lw_l, -- Darkheart Thicket
[1458] = lw_l, -- Neltharion's Lair
[1456] = lw_l, -- Eye of Azshara
[1492] = lw_l, -- Maw of Souls
[1477] = lw_l, -- Halls of Valor
[1493] = lw_l, -- Vault of the Wardens
[1753] = lw_l, -- Seat of the Triumvirate
}
public.zoneTblWorld = {
[-473] = -466, [-465] = -466, -- Outland
[-807] = -862, [-809] = -862, [-928] = -862, [-929] = -862, [-951] = -862, -- Pandaria
[-948] = -962, [-949] = -962, [-945] = -962, -- Draenor
[-1015] = -1007, [-1017] = -1007, [-1018] = -1007, [-1024] = -1007, [-1033] = -1007, -- Broken Isles
}
end
-- GLOBALS: _G, ADDON_LOAD_FAILED, BigWigs, BigWigs3DB, BigWigs3IconDB, BigWigsLoader, BigWigsOptions, ChatFrame_ImportAllListsToHash, ChatTypeInfo, CreateFrame, CUSTOM_CLASS_COLORS, DEFAULT_CHAT_FRAME, error
-- GLOBALS: GetAddOnEnableState, GetAddOnInfo, GetAddOnMetadata, GetLocale, GetNumGroupMembers, GetRealmName, GetSpecialization, GetSpecializationRole, GetTime, GRAY_FONT_COLOR, hash_SlashCmdList, InCombatLockdown
-- GLOBALS: IsAddOnLoaded, IsAltKeyDown, IsControlKeyDown, IsEncounterInProgress, IsInGroup, IsInRaid, IsLoggedIn, IsPartyLFG, IsSpellKnown, LFGDungeonReadyPopup
-- GLOBALS: LibStub, LoadAddOn, message, PlaySound, print, RAID_CLASS_COLORS, RaidNotice_AddMessage, RaidWarningFrame, RegisterAddonMessagePrefix, RolePollPopup, select, StopSound
-- GLOBALS: tostring, tremove, type, UnitAffectingCombat, UnitClass, UnitGroupRolesAssigned, UnitIsConnected, UnitIsDeadOrGhost, UnitName, UnitSetRole, unpack, SLASH_BigWigs1, SLASH_BigWigs2
-- GLOBALS: SLASH_BigWigsVersion1, wipe
-----------------------------------------------------------------------
-- Utility
--
local function IsAddOnEnabled(addon)
local character = UnitName("player")
return GetAddOnEnableState(character, addon) > 0
end
local function sysprint(msg)
print("|cFF33FF99BigWigs|r: "..msg)
end
local function load(obj, index)
if obj then return true end
if loadOnSlash[index] then
if not IsAddOnLoaded(index) then -- Check if we need remove our slash handler stub.
for _, slash in next, loadOnSlash[index] do
hash_SlashCmdList[slash] = nil
end
end
loadOnSlash[index] = nil
end
local loaded, reason = LoadAddOn(index)
if not loaded then
sysprint(ADDON_LOAD_FAILED:format(GetAddOnInfo(index), _G["ADDON_"..reason]))
end
return loaded
end
local function loadAddons(tbl)
if not tbl then return end
for _, index in next, tbl do
if not IsAddOnLoaded(index) and load(nil, index) then
local name = GetAddOnInfo(index)
public:SendMessage("BigWigs_ModulePackLoaded", name)
end
end
tbl = nil
end
local function loadZone(zone)
if not zone then return end
loadAddons(loadOnZone[zone])
end
local function loadAndEnableCore()
local loaded = load(BigWigs, "BigWigs_Core")
if not BigWigs then return end
loadAddons(loadOnCoreEnabled)
BigWigs:Enable()
return loaded
end
local function loadCoreAndOpenOptions()
loadAndEnableCore()
load(BigWigsOptions, "BigWigs_Options")
if BigWigsOptions then
BigWigsOptions:Open()
end
end
-----------------------------------------------------------------------
-- Version listing functions
--
tooltipFunctions[#tooltipFunctions+1] = function(tt)
local add, i = nil, 0
for _, version in next, usersVersion do
i = i + 1
if version < highestFoundVersion then
add = true
break
end
end
if not add and i ~= GetNumGroupMembers() then
add = true
end
if add then
tt:AddLine(L.oldVersionsInGroup, 1, 0, 0, 1)
end
end
-----------------------------------------------------------------------
-- Loader initialization
--
do
local reqFuncAddons = {
BigWigs_Core = true,
BigWigs_Options = true,
BigWigs_Plugins = true,
}
local loadOnZoneAddons = {} -- Will contain all names of addons with an X-BigWigs-LoadOn-ZoneId directive
local loadOnInstanceAddons = {} -- Will contain all names of addons with an X-BigWigs-LoadOn-InstanceId directive
local loadOnWorldBoss = {} -- Addons that should load when targetting a specific mob
local extraMenus = {} -- Addons that contain extra zone menus to appear in the GUI
local noMenus = {} -- Addons that contain zones that shouldn't create a menu
local blockedMenus = {} -- Zones that shouldn't create a menu
for i = 1, GetNumAddOns() do
local name = GetAddOnInfo(i)
if IsAddOnEnabled(i) then
local meta = GetAddOnMetadata(i, "X-BigWigs-LoadOn-CoreEnabled")
if meta then
loadOnCoreEnabled[#loadOnCoreEnabled + 1] = i
end
meta = GetAddOnMetadata(i, "X-BigWigs-LoadOn-ZoneId")
if meta then
loadOnZoneAddons[#loadOnZoneAddons + 1] = i
end
meta = GetAddOnMetadata(i, "X-BigWigs-LoadOn-InstanceId")
if meta then
loadOnInstanceAddons[#loadOnInstanceAddons + 1] = i
end
meta = GetAddOnMetadata(i, "X-BigWigs-ExtraMenu")
if meta then
extraMenus[#extraMenus + 1] = i
end
meta = GetAddOnMetadata(i, "X-BigWigs-NoMenu")
if meta then
noMenus[#noMenus + 1] = i
end
meta = GetAddOnMetadata(i, "X-BigWigs-LoadOn-WorldBoss")
if meta then
loadOnWorldBoss[#loadOnWorldBoss + 1] = i
end
meta = GetAddOnMetadata(i, "X-BigWigs-LoadOn-Slash")
if meta then
loadOnSlash[i] = {}
local tbl = {strsplit(",", meta)}
for j=1, #tbl do
local slash = tbl[j]:trim():upper()
_G["SLASH_"..slash..1] = slash
SlashCmdList[slash] = function(text)
if name:find("BigWigs", nil, true) then
-- Attempting to be smart. Only load core & config if it's a BW plugin.
loadAndEnableCore()
load(BigWigsOptions, "BigWigs_Options")
end
if load(nil, i) then -- Load the addon/plugin
-- Call the slash command again, which should have been set by the addon.
-- Authors, do NOT delay setting it in OnInitialize/OnEnable/etc.
ChatFrame_ImportAllListsToHash()
local func = hash_SlashCmdList[slash]
if func then
func(text)
else
-- Addon didn't register the slash command for whatever reason, print the default invalid slash message.
local info = ChatTypeInfo["SYSTEM"]
DEFAULT_CHAT_FRAME:AddMessage(HELP_TEXT_SIMPLE, info.r, info.g, info.b, info.id)
end
end
end
loadOnSlash[i][j] = slash
end
end
elseif reqFuncAddons[name] then
sysprint(L.coreAddonDisabled:format(name))
else
--[[ DEPRECATED ]]--
local meta = GetAddOnMetadata(i, "X-BigWigs-LoadOn-ZoneId")
if meta then -- Disabled content
for j = 1, select("#", strsplit(",", meta)) do
local rawId = select(j, strsplit(",", meta))
local id = tonumber(rawId:trim())
if id and id > 0 then
local instanceId = GetAreaMapInfo(id) -- convert map id to instance id
if public.zoneTbl[instanceId] then
if not disabledZones then disabledZones = {} end
disabledZones[instanceId] = name
end
end
end
end
--
meta = GetAddOnMetadata(i, "X-BigWigs-LoadOn-InstanceId")
if meta then -- Disabled content
for j = 1, select("#", strsplit(",", meta)) do
local rawId = select(j, strsplit(",", meta))
local id = tonumber(rawId:trim())
if id and id > 0 then
if public.zoneTbl[id] then
if not disabledZones then disabledZones = {} end
disabledZones[id] = name
end
end
end
end
end
if next(loadOnSlash) then
ChatFrame_ImportAllListsToHash() -- Add our slashes to the hash.
end
end
--[[ DEPRECATED ]]--
local function iterateZones(addon, ...)
for i = 1, select("#", ...) do
local rawZone = select(i, ...)
local zone = tonumber(rawZone:trim())
if zone then
-- register the zone for enabling.
local instanceId = fakeZones[zone] and zone or GetAreaMapInfo(zone)
if instanceId then -- Protect live client from beta client ids
enableZones[instanceId] = true
if not loadOnZone[instanceId] then loadOnZone[instanceId] = {} end
loadOnZone[instanceId][#loadOnZone[instanceId] + 1] = addon
if not menus[instanceId] and not blockedMenus[instanceId] then menus[instanceId] = true end
end
else
local name = GetAddOnInfo(addon)
sysprint(("The zone ID %q from the addon %q was not parsable."):format(tostring(rawZone), name))
end
end
end
--
local function iterateInstanceIds(addon, ...)
for i = 1, select("#", ...) do
local rawId = select(i, ...)
local id = tonumber(rawId:trim())
if id then
local instanceName = GetRealZoneText(id)
-- register the instance id for enabling.
if instanceName and instanceName ~= "" then -- Protect live client from beta client ids
enableZones[id] = true
if not loadOnZone[id] then loadOnZone[id] = {} end
loadOnZone[id][#loadOnZone[id] + 1] = addon
if not menus[id] and not blockedMenus[id] then menus[id] = true end
end
else
local name = GetAddOnInfo(addon)
sysprint(("The instance ID %q from the addon %q was not parsable."):format(tostring(rawId), name))
end
end
end
local currentZone = nil
local function iterateWorldBosses(addon, ...)
for i = 1, select("#", ...) do
local rawZoneOrBoss = select(i, ...)
local zoneOrBoss = tonumber(rawZoneOrBoss:trim())
if zoneOrBoss then
if not currentZone then
currentZone = zoneOrBoss
-- register the zone for enabling.
enableZones[currentZone] = "world"
if not loadOnZone[currentZone] then loadOnZone[currentZone] = {} end
loadOnZone[currentZone][#loadOnZone[currentZone] + 1] = addon
else
worldBosses[zoneOrBoss] = currentZone
currentZone = nil
end
else
local name = GetAddOnInfo(addon)
sysprint(("The zone ID %q from the addon %q was not parsable."):format(tostring(rawZoneOrBoss), name))
end
end
end
local function addExtraMenus(addon, ...)
for i = 1, select("#", ...) do
local rawMenu = select(i, ...)
local id = tonumber(rawMenu:trim())
if id then
local name = id < 0 and GetMapNameByID(-id) or GetRealZoneText(id)
if name and name ~= "" then -- Protect live client from beta client ids
if not loadOnZone[id] then loadOnZone[id] = {} end
loadOnZone[id][#loadOnZone[id] + 1] = addon
if not menus[id] then menus[id] = true end
end
else
local name = GetAddOnInfo(addon)
sysprint(("The extra menu ID %q from the addon %q was not parsable."):format(tostring(rawMenu), name))
end
end
end
local function blockMenus(addon, ...)
for i = 1, select("#", ...) do
local rawMenu = select(i, ...)
local id = tonumber(rawMenu:trim())
if id then
local name = id < 0 and GetMapNameByID(-id) or GetRealZoneText(id)
if name and name ~= "" and not blockedMenus[id] then -- Protect live client from beta client ids
blockedMenus[id] = true
end
else
local name = GetAddOnInfo(addon)
sysprint(("The block menu ID %q from the addon %q was not parsable."):format(tostring(rawMenu), name))
end
end
end
for i = 1, #extraMenus do
local index = extraMenus[i]
local data = GetAddOnMetadata(index, "X-BigWigs-ExtraMenu")
if data then
addExtraMenus(index, strsplit(",", data))
end
end
for i = 1, #noMenus do
local index = noMenus[i]
local data = GetAddOnMetadata(index, "X-BigWigs-NoMenu")
if data then
blockMenus(index, strsplit(",", data))
end
end
--[[ DEPRECATED ]]--
for i = 1, #loadOnZoneAddons do
local index = loadOnZoneAddons[i]
local zones = GetAddOnMetadata(index, "X-BigWigs-LoadOn-ZoneId")
if zones then
iterateZones(index, strsplit(",", zones))
end
end
--
for i = 1, #loadOnInstanceAddons do
local index = loadOnInstanceAddons[i]
local instancesIds = GetAddOnMetadata(index, "X-BigWigs-LoadOn-InstanceId")
if instancesIds then
iterateInstanceIds(index, strsplit(",", instancesIds))
end
end
for _, index in next, loadOnWorldBoss do
local zones = GetAddOnMetadata(index, "X-BigWigs-LoadOn-WorldBoss")
if zones then
iterateWorldBosses(index, strsplit(",", zones))
end
end
end
function mod:ADDON_LOADED(addon)
if addon ~= "BigWigs" then return end
bwFrame:RegisterEvent("ZONE_CHANGED_NEW_AREA")
bwFrame:RegisterEvent("RAID_INSTANCE_WELCOME")
bwFrame:RegisterEvent("GROUP_ROSTER_UPDATE")
bwFrame:RegisterEvent("LFG_PROPOSAL_SHOW")
-- Role Updating
bwFrame:RegisterEvent("ACTIVE_TALENT_GROUP_CHANGED")
RolePollPopup:UnregisterEvent("ROLE_POLL_BEGIN")
bwFrame:RegisterEvent("CHAT_MSG_ADDON")
RegisterAddonMessagePrefix("BigWigs")
RegisterAddonMessagePrefix("D4") -- DBM
local icon = LibStub("LibDBIcon-1.0", true)
if icon and ldb then
if not BigWigs3IconDB then BigWigs3IconDB = {} end
icon:Register("BigWigs", ldb, BigWigs3IconDB)
end
if BigWigs3DB then
-- Somewhat ugly, but saves loading AceDB with the loader instead of with the core
if BigWigs3DB.profileKeys and BigWigs3DB.profiles then
local name = UnitName("player")
local realm = GetRealmName()
if name and realm and BigWigs3DB.profileKeys[name.." - "..realm] then
local key = BigWigs3DB.profiles[BigWigs3DB.profileKeys[name.." - "..realm]]
if key then
self.isFakingDBM = key.fakeDBMVersion
self.isShowingZoneMessages = key.showZoneMessages
end
if BigWigs3DB.namespaces and BigWigs3DB.namespaces.BigWigs_Plugins_Sounds and BigWigs3DB.namespaces.BigWigs_Plugins_Sounds.profiles and BigWigs3DB.namespaces.BigWigs_Plugins_Sounds.profiles[BigWigs3DB.profileKeys[name.." - "..realm]] then
self.isSoundOn = BigWigs3DB.namespaces.BigWigs_Plugins_Sounds.profiles[BigWigs3DB.profileKeys[name.." - "..realm]].sound
end
end
end
-- Cleanup function.
-- TODO: look into having a way for our boss modules not to create a table when no options are changed.
if BigWigs3DB.namespaces then
for k,v in next, BigWigs3DB.namespaces do
if k:find("BigWigs_Bosses_", nil, true) and not next(v) then
BigWigs3DB.namespaces[k] = nil
end
end
end
if not BigWigs3DB.discord or BigWigs3DB.discord < 15 then
BigWigs3DB.discord = (BigWigs3DB.discord or 0) + 1
CTimerAfter(11, function() sysprint("We are now on Discord: https://discord.gg/jGveg85") end)
end
end
self:BigWigs_CoreOptionToggled(nil, "fakeDBMVersion", self.isFakingDBM)
if self.isSoundOn ~= false then -- Only if sounds are enabled
local num = tonumber(GetCVar("Sound_NumChannels")) or 0
if num < 64 then
SetCVar("Sound_NumChannels", 64) -- Blizzard keeps screwing with addon sound priority so we force this minimum
end
end
bwFrame:UnregisterEvent("ADDON_LOADED")
self.ADDON_LOADED = nil
end
-- We can't do our addon loading in ADDON_LOADED as the target addons may be registering that
-- which would break that event for those addons. Use this event instead.
function mod:UPDATE_FLOATING_CHAT_WINDOWS()
bwFrame:UnregisterEvent("UPDATE_FLOATING_CHAT_WINDOWS")
self.UPDATE_FLOATING_CHAT_WINDOWS = nil
self:GROUP_ROSTER_UPDATE()
self:ZONE_CHANGED_NEW_AREA()
-- Break timer restoration
if BigWigs3DB and BigWigs3DB.breakTime then
loadAndEnableCore()
end
end
-- Various temporary printing stuff
do
local old = {
BigWigs_Ulduar = "BigWigs_WrathOfTheLichKing",
BigWigs_TheEye = "BigWigs_BurningCrusade",
BigWigs_Sunwell = "BigWigs_BurningCrusade",
BigWigs_SSC = "BigWigs_BurningCrusade",
BigWigs_Outland = "BigWigs_BurningCrusade",
BigWigs_Northrend = "BigWigs_WrathOfTheLichKing",
BigWigs_Naxxramas = "BigWigs_WrathOfTheLichKing",
BigWigs_MC = "BigWigs_Classic",
BigWigs_Karazhan = "BigWigs_BurningCrusade",
BigWigs_Hyjal = "BigWigs_BurningCrusade",
BigWigs_Coliseum = "BigWigs_WrathOfTheLichKing",
BigWigs_Citadel = "BigWigs_WrathOfTheLichKing",
BigWigs_LK_Valkyr_Marker = "BigWigs_WrathOfTheLichKing",
BigWigs_BWL = "BigWigs_Classic",
BigWigs_BlackTemple = "BigWigs_BurningCrusade",
BigWigs_AQ20 = "BigWigs_Classic",
BigWigs_AQ40 = "BigWigs_Classic",
BigWigs_Baradin = "BigWigs_Cataclysm",
BigWigs_Bastion = "BigWigs_Cataclysm",
BigWigs_Blackwing = "BigWigs_Cataclysm",
BigWigs_DragonSoul = "BigWigs_Cataclysm",
BigWigs_Firelands = "BigWigs_Cataclysm",
BigWigs_Throne = "BigWigs_Cataclysm",
bigwigs_zonozzicons = "BigWigs_Cataclysm",
BigWigs_EndlessSpring = "BigWigs_MistsOfPandaria",
BigWigs_HeartOfFear = "BigWigs_MistsOfPandaria",
BigWigs_Mogushan = "BigWigs_MistsOfPandaria",
BigWigs_Pandaria = "BigWigs_MistsOfPandaria",
BigWigs_SiegeOfOrgrimmar = "BigWigs_MistsOfPandaria",
BigWigs_ThroneOfThunder = "BigWigs_MistsOfPandaria",
BigWigs_Draenor = "BigWigs_WarlordsOfDraenor",
BigWigs_Highmaul = "BigWigs_WarlordsOfDraenor",
BigWigs_BlackrockFoundry = "BigWigs_WarlordsOfDraenor",
BigWigs_HellfireCitadel = "BigWigs_WarlordsOfDraenor",
LittleWigs_ShadoPanMonastery = "LittleWigs",
LittleWigs_ScarletHalls = "LittleWigs",
LittleWigs_ScarletMonastery = "LittleWigs",
LittleWigs_MogushanPalace = "LittleWigs",
LittleWigs_TempleOfTheJadeSerpent = "LittleWigs",
LittleWigs_TBC = "LittleWigs",
LittleWigs_Auchindoun = "LittleWigs",
LittleWigs_Coilfang = "LittleWigs",
LittleWigs_CoT = "LittleWigs",
LittleWigs_HellfireCitadel = "LittleWigs",
LittleWigs_MagistersTerrace = "LittleWigs",
LittleWigs_TempestKeep = "LittleWigs",
LittleWigs_LK = "LittleWigs",
LittleWigs_Coldarra = "LittleWigs",
LittleWigs_Dalaran = "LittleWigs",
LittleWigs_Dragonblight = "LittleWigs",
LittleWigs_Frozen_Halls = "LittleWigs",
LittleWigs_Howling_Fjord = "LittleWigs",
LittleWigs_Icecrown = "LittleWigs",
LittleWigs_Stratholme = "LittleWigs",
LittleWigs_Storm_Peaks = "LittleWigs",
["LittleWigs_Zul'Drak"] = "LittleWigs",
LittleWigs_Cataclysm = "LittleWigs",
BigWigs_TayakIcons = "BigWigs",
BigWigs_PizzaBar = "BigWigs",
BigWigs_ShaIcons = "BigWigs",
BigWigs_LeiShi_Marker = "BigWigs",
BigWigs_NoPluginWarnings = "BigWigs",
LFG_ProposalTime = "BigWigs",
CourtOfStarsGossipHelper = "LittleWigs",
BigWigs_DispelResist = "",
BigWigs_Voice_HeroesOfTheStorm = "BigWigs_Countdown_HeroesOfTheStorm",
BigWigs_Voice_Overwatch = "BigWigs_Countdown_Overwatch",
}
local delayedMessages = {}
-- Try to teach people not to force load our modules.
for i = 1, GetNumAddOns() do
local name = GetAddOnInfo(i)
if IsAddOnEnabled(i) and not IsAddOnLoadOnDemand(i) then
for j = 1, select("#", GetAddOnOptionalDependencies(i)) do
local meta = select(j, GetAddOnOptionalDependencies(i))
if meta and (meta == "BigWigs_Core" or meta == "BigWigs_Plugins" or meta == "BigWigs_Options") then
delayedMessages[#delayedMessages+1] = "The addon '|cffffff00"..name.."|r' is forcing BigWigs to load prematurely, notify the BigWigs authors!"
end
end
for j = 1, select("#", GetAddOnDependencies(i)) do
local meta = select(j, GetAddOnDependencies(i))
if meta and (meta == "BigWigs_Core" or meta == "BigWigs_Plugins" or meta == "BigWigs_Options") then
delayedMessages[#delayedMessages+1] = "The addon '|cffffff00"..name.."|r' is forcing BigWigs to load prematurely, notify the BigWigs authors!"
end
end
end
if old[name] then
delayedMessages[#delayedMessages+1] = L.removeAddon:format(name, old[name])
message(L.removeAddon:format(name, old[name]))
end
end
local L = GetLocale()
if L == "ptBR" then
delayedMessages[#delayedMessages+1] = "BigWigs is missing translations for Brazilian Portugese (ptBR). Can you help? Ask us on Discord for more info."
elseif L == "itIT" then
delayedMessages[#delayedMessages+1] = "BigWigs is missing translations for Italian (itIT). Can you help? Ask us on Discord for more info."
elseif L == "esES" or L == "esMX" then
delayedMessages[#delayedMessages+1] = "BigWigs is missing translations for Spanish (esES). Can you help? Ask us on Discord for more info."
end
CTimerAfter(11, function()
--local _, _, _, _, month, _, year = GetAchievementInfo(10043) -- Mythic Archimonde
--if year == 15 and month < 10 then
-- sysprint("We're looking for an end-game raider to join our GitHub developer team: goo.gl/aajTfo")
--end
for _, msg in next, delayedMessages do
sysprint(msg)
end
delayedMessages = nil
end)
end
-----------------------------------------------------------------------
-- Callback handler
--
do
local callbackMap = {}
function public:RegisterMessage(msg, func)
-- XXX temp friendly error via geterrorhandler
if self == public then geterrorhandler()(".RegisterMessage(addon, message, function) attempted to register a function to BigWigsLoader, you might be using : instead of . to register the callback.") end
if type(msg) ~= "string" then error(":RegisterMessage(message, function) attempted to register invalid message, must be a string!") end
local funcType = type(func)
if funcType == "string" then
if not self[func] then error((":RegisterMessage(message, function) attempted to register the function '%s' but it doesn't exist!"):format(func)) end
elseif funcType == "nil" then
if not self[msg] then error((":RegisterMessage(message, function) attempted to register the function '%s' but it doesn't exist!"):format(msg)) end
elseif funcType ~= "function" then
error(":RegisterMessage(message, function) attempted to register an invalid function!")
end
if not callbackMap[msg] then callbackMap[msg] = {} end
callbackMap[msg][self] = func or msg
end
function public:UnregisterMessage(msg)
if type(msg) ~= "string" then error(":UnregisterMessage(message) attempted to unregister an invalid message, must be a string!") end
if not callbackMap[msg] then return end
callbackMap[msg][self] = nil
if not next(callbackMap[msg]) then
callbackMap[msg] = nil
end
end
function public:SendMessage(msg, ...)
if callbackMap[msg] then
for k,v in next, callbackMap[msg] do
if type(v) == "function" then
v(msg, ...)
else
k[v](k, msg, ...)
end
end
end
end
local function UnregisterAllMessages(_, module)
for k,v in next, callbackMap do
for j in next, v do
if j == module then
public.UnregisterMessage(module, k)
end
end
end
end
public.RegisterMessage(mod, "BigWigs_OnBossDisable", UnregisterAllMessages)
public.RegisterMessage(mod, "BigWigs_OnBossReboot", UnregisterAllMessages)
public.RegisterMessage(mod, "BigWigs_OnPluginDisable", UnregisterAllMessages)
end
-----------------------------------------------------------------------
-- DBM version collection & faking
--
do
-- This is a crapfest mainly because DBM's actual handling of versions is a crapfest, I'll try explain how this works...
local DBMdotRevision = "16781" -- The changing version of the local client, changes with every alpha revision using an SVN keyword.
local DBMdotDisplayVersion = "7.3.5" -- "N.N.N" for a release and "N.N.N alpha" for the alpha duration. Unless they fuck up their release and leave the alpha text in it.
local DBMdotReleaseRevision = DBMdotRevision -- This is manually changed by them every release, they use it to track the highest release version, a new DBM release is the only time it will change.
local timer, prevUpgradedUser = nil, nil
local function sendMsg()
if IsInGroup() then
SendAddonMessage("D4", "V\t"..DBMdotRevision.."\t"..DBMdotReleaseRevision.."\t"..DBMdotDisplayVersion.."\t"..GetLocale().."\t".."true", IsInGroup(2) and "INSTANCE_CHAT" or "RAID") -- LE_PARTY_CATEGORY_INSTANCE = 2
end
timer, prevUpgradedUser = nil, nil
end
function mod:DBM_VersionCheck(prefix, sender, revision, releaseRevision, displayVersion)
if prefix == "H" and (BigWigs and BigWigs.db.profile.fakeDBMVersion or self.isFakingDBM) then
if timer then timer:Cancel() end
timer = CTimerNewTicker(3.3, sendMsg, 1)
elseif prefix == "V" then
usersDBM[sender] = displayVersion
if BigWigs and BigWigs.db.profile.fakeDBMVersion or self.isFakingDBM then
-- If there are people with newer versions than us, suddenly we've upgraded!
local rev, dotRev = tonumber(revision), tonumber(DBMdotRevision)
if rev and displayVersion and rev ~= 99999 and rev > dotRev and not displayVersion:find("alpha", nil, true) then -- Failsafes
if not prevUpgradedUser then
prevUpgradedUser = sender
elseif prevUpgradedUser ~= sender then
DBMdotRevision = revision -- Update our local rev with the highest possible rev found.
DBMdotReleaseRevision = releaseRevision -- Update our release rev with the highest found, this should be the same for alpha users and latest release users.
DBMdotDisplayVersion = displayVersion -- Update to the latest display version.
-- Re-send the addon message.
if timer then timer:Cancel() end
timer = CTimerNewTicker(1, sendMsg, 1)
end
end
end
end
end
function mod:BigWigs_CoreOptionToggled(_, key, value)
if key == "fakeDBMVersion" and value and IsInGroup() then
self:DBM_VersionCheck("H") -- Send addon message if feature is being turned on inside a raid/group.
end
end
public.RegisterMessage(mod, "BigWigs_CoreOptionToggled")
end
-----------------------------------------------------------------------
-- Events
--
bwFrame:SetScript("OnEvent", function(_, event, ...)
mod[event](mod, ...)
end)
bwFrame:RegisterEvent("ADDON_LOADED")
bwFrame:RegisterEvent("UPDATE_FLOATING_CHAT_WINDOWS")
do
-- Role Updating
local prev = 0
function mod:PLAYER_REGEN_ENABLED()
bwFrame:UnregisterEvent("PLAYER_REGEN_ENABLED")
self:ACTIVE_TALENT_GROUP_CHANGED() -- Force role check
end
function mod:ACTIVE_TALENT_GROUP_CHANGED()
if IsInGroup() then
if IsPartyLFG() then return end
local tree = GetSpecialization()
if not tree then return end -- No spec selected
local role = GetSpecializationRole(tree)
if role and UnitGroupRolesAssigned("player") ~= role then
if InCombatLockdown() or UnitAffectingCombat("player") then
bwFrame:RegisterEvent("PLAYER_REGEN_ENABLED")
return
end
-- ACTIVE_TALENT_GROUP_CHANGED fires twice when changing spec, leaving the talent tree, and entering the new tree. We throttle this to prevent a double role chat message.
-- It should only fire once when joining a group (triggered from GROUP_ROSTER_UPDATE)
-- This will fail when logging in/reloading in a group because GetSpecializationRole is nil since WoW v7 when GROUP_ROSTER_UPDATE fires
-- However, your role seems to be saved internally and preserved, so is this really an issue?
local t = GetTime()
if (t-prev) > 2 then
prev = t
UnitSetRole("player", role)
end
end
end
end
end
-- Merged LFG_ProposalTime addon by Freebaser
do
local prev
function mod:LFG_PROPOSAL_SHOW()
if not prev then
local timerBar = CreateFrame("StatusBar", nil, LFGDungeonReadyPopup)
timerBar:SetPoint("TOP", LFGDungeonReadyPopup, "BOTTOM", 0, -5)
local tex = timerBar:CreateTexture()
tex:SetTexture(137012) -- Interface\\TargetingFrame\\UI-StatusBar
timerBar:SetStatusBarTexture(tex)
timerBar:SetSize(190, 9)
timerBar:SetStatusBarColor(1, 0.1, 0)
timerBar:SetMinMaxValues(0, 40)
timerBar:Show()
local bg = timerBar:CreateTexture(nil, "BACKGROUND")
bg:SetAllPoints(timerBar)
bg:SetColorTexture(0, 0, 0, 0.7)
local spark = timerBar:CreateTexture(nil, "OVERLAY")
spark:SetTexture(130877) -- Interface\\CastingBar\\UI-CastingBar-Spark
spark:SetSize(32, 32)
spark:SetBlendMode("ADD")
spark:SetPoint("LEFT", tex, "RIGHT", -15, 0)
local border = timerBar:CreateTexture(nil, "OVERLAY")
border:SetTexture(130874) -- Interface\\CastingBar\\UI-CastingBar-Border
border:SetSize(256, 64)
border:SetPoint("TOP", timerBar, 0, 28)
timerBar.text = timerBar:CreateFontString(nil, "OVERLAY", "GameFontHighlight")
timerBar.text:SetPoint("CENTER", timerBar, "CENTER")
self.LFG_PROPOSAL_SHOW = function()
prev = GetTime() + 40
-- Play in Master for those that have SFX off or very low.
-- Using false as third arg to avoid the "only one of each sound at a time" throttle.
-- Only play via the "Master" channel if we have sounds turned on
if (BigWigs and BigWigs:GetPlugin("Sounds") and BigWigs:GetPlugin("Sounds").db.profile.sound) or self.isSoundOn ~= false then
local _, id = PlaySound(8960, "Master", false) -- SOUNDKIT.READY_CHECK
if id then
StopSound(id-1) -- Should work most of the time to stop the blizz sound
end
end
end
self:LFG_PROPOSAL_SHOW()
timerBar:SetScript("OnUpdate", function(f)
local timeLeft = prev - GetTime()
if timeLeft > 0 then
f:SetValue(timeLeft)
f.text:SetFormattedText("BigWigs: %.1f", timeLeft)
end
end)