-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMethodAltManager.lua
1581 lines (1437 loc) · 49.9 KB
/
MethodAltManager.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 _, AltManager = ...
_G["AltManager"] = AltManager
-- Made by: Qooning - Tarren Mill <Method>, 2017-2018
local sizey = 220
local instances_y_add = 1
local items_y_add = 1
local currencies_y_add = 1
local xoffset = 0
local yoffset = 150
local alpha = 1
local addon = "MethodAltManager"
local numel = table.getn
local Aurora = _G.Aurora
local per_alt_x = 120
local min_x_size = 300
local min_level = 50
local name_label = "Name"
local mythic_done_label = "Highest M+ done"
local mythic_keystone_label = "Keystone"
local seals_owned_label = "Seals owned"
local seals_bought_label = "Seals obtained"
local azerite_label = "Heart of Azeroth"
local depleted_label = "Depleted"
local VERSION = "@project-version@"
local favoriteTier = EJ_GetNumTiers()
local function format_table_impl (table, out, indent, visited)
indent = indent or 2 -- indentation level for current table
visited = visited or {} -- visited tables, avoid infinite recursion
visited[table] = true -- mark current table as visited
out[#out+1] = format('%s {\n', tostring(table))
for k,v in pairs(table) do
out[#out+1] = format('%s%s = ', string.rep(' ',indent), tostring(k))
if type(v) == 'table' then
if visited[v] then
out[#out+1] = format('%s { already shown }\n', tostring(v))
else
format_table_impl (v, out, indent+2, visited)
end
else
out[#out+1] = format('%s\n', tostring(v))
end
end
out[#out+1] = format('%s},\n', string.rep(' ', indent-2))
end
function format_table(t)
local out = {}
format_table_impl(t, out)
return table.concat(out)
end
function print_table(table)
DEFAULT_CHAT_FRAME:AddMessage(format_table(table))
end
function tablelength(T)
local count = 0
for _ in pairs(T) do count = count + 1 end
return count
end
-- Mythic+ Dungeons
local dungeons = {}
local BfAWorldBosses = {
--[BossID] = QuestID
[2139] = 52181, -- T'zane
[2141] = 52169, -- Ji'arak
[2197] = 52157, -- Hailstone Construct
[2212] = 52848, -- The Lion's Roar (Horde)
[2199] = 52163, -- Azurethos, The Winged Typhoon
[2198] = 52166, -- Warbringer Yenajz
[2210] = 52196, -- Dunegorger Kraulok
[2213] = 52847, -- Doom's Howl (Alliance)
}
local raids = {}
SLASH_METHODALTMANAGER1 = "/mam"
SLASH_METHODALTMANAGER2 = "/alts"
local function spairs(t, order)
local keys = {}
for k in pairs(t) do keys[#keys+1] = k end
if order then
table.sort(keys, function(a,b) return order(t, a, b) end)
else
table.sort(keys)
end
local i = 0
return function()
i = i + 1
if keys[i] then
return keys[i], t[keys[i]]
end
end
end
function SlashCmdList.METHODALTMANAGER(cmd, editbox)
local rqst, arg = strsplit(' ', cmd)
if rqst == "help" then
print("Method Alt Manager help:")
print(" \"/alts purge\" to remove all stored data.")
print(" \"/alts remove name\" to remove characters by name.")
elseif rqst == "purge" then
AltManager:Purge()
elseif rqst == "remove" then
AltManager:RemoveCharactersByName(arg)
else
AltManager:ShowInterface()
end
end
do
local main_frame = CreateFrame("frame", "AltManagerFrame", UIParent)
AltManager.main_frame = main_frame
main_frame:SetFrameStrata("MEDIUM")
main_frame.background = main_frame:CreateTexture(nil, "BACKGROUND")
main_frame.background:SetAllPoints()
main_frame.background:SetDrawLayer("ARTWORK", 1)
main_frame.background:SetColorTexture(0, 0, 0, 0.5)
main_frame.scan_tooltip = CreateFrame('GameTooltip', 'DepletedTooltipScan', UIParent, 'GameTooltipTemplate')
-- Set frame position
main_frame:ClearAllPoints()
main_frame:SetPoint("CENTER", UIParent, "CENTER", xoffset, yoffset)
main_frame:RegisterEvent("ADDON_LOADED")
main_frame:RegisterEvent("PLAYER_LOGIN")
main_frame:RegisterEvent("QUEST_TURNED_IN")
main_frame:RegisterEvent("BAG_UPDATE_DELAYED")
main_frame:RegisterEvent("AZERITE_ITEM_EXPERIENCE_CHANGED")
main_frame:RegisterEvent("CHAT_MSG_CURRENCY")
main_frame:RegisterEvent("CURRENCY_DISPLAY_UPDATE")
main_frame:SetScript("OnEvent", function(self, ...)
local event, loaded = ...
if event == "ADDON_LOADED" then
if addon == loaded then
AltManager:OnLoad()
end
end
if event == "PLAYER_LOGIN" then
AltManager:OnLogin()
AltManager:MainOptionsInit()
AltManager:MAMO_CURR_INIT()
AltManager:MAMO_ITEMS_INIT()
end
if event == "AZERITE_ITEM_EXPERIENCE_CHANGED" then
local data = AltManager:CollectData()
AltManager:StoreData(data)
end
if (event == "BAG_UPDATE_DELAYED" or event == "QUEST_TURNED_IN" or event == "CHAT_MSG_CURRENCY" or event == "CURRENCY_DISPLAY_UPDATE") and (AltManager.addon_loaded and AltManager.player_ready) then
local data = AltManager:CollectData()
AltManager:StoreData(data)
end
end)
-- Show Frame
main_frame:Hide()
end
function AltManager:InitDB()
local t = {}
t.alts = 0
return t
end
-- because of guid...
function AltManager:OnLogin()
self:GenerateDungeonTable()
self.CurrencyTable = self:GenerateCurrencyTable()
self:ValidateSchema()
self:ValidateReset()
self:StoreData(self:CollectData())
local alts = MethodAltManagerDB.alts
AltManager:CreateMenu()
self.main_frame.background:SetAllPoints()
-- Create menus
AltManager:MakeTopBottomTextures(self.main_frame)
AltManager:MakeBorder(self.main_frame, 5)
self.player_ready = true
end
function AltManager:OnLoad()
self.main_frame:UnregisterEvent("ADDON_LOADED")
tinsert(UISpecialFrames,"AltManagerFrame")
MethodAltManagerDB = MethodAltManagerDB or self:InitDB()
C_MythicPlus.RequestRewards()
C_MythicPlus.RequestCurrentAffixes()
C_MythicPlus.RequestMapInfo()
for k,v in pairs(dungeons) do
-- request info in advance
C_MythicPlus.RequestMapInfo(k)
end
self.addon_loaded = true
end
function AltManager:CreateFontFrame(parent, x_size, height, relative_to, y_offset, label, justify, tooltip)
local f = CreateFrame("Button", nil, parent)
f:SetSize(x_size, height)
f:SetNormalFontObject(GameFontHighlightSmall)
f:SetText(label)
f:SetPoint("TOPLEFT", relative_to, "TOPLEFT", 0, y_offset)
f:GetFontString():SetJustifyH(justify)
f:GetFontString():SetJustifyV("CENTER")
f:SetPushedTextOffset(0, 0)
f:GetFontString():SetWidth(120)
f:GetFontString():SetHeight(20)
f:SetFrameLevel(parent:GetFrameLevel()+2)
if tooltip then
f:SetScript('OnEnter', tooltip)
f:SetScript('OnLeave', function(self)
GameTooltip:Hide()
end)
end
return f
end
function AltManager:ShowTooltip()
if MethodAltManagerDB.options and MethodAltManagerDB.options.tooltips and MethodAltManagerDB.options.tooltips.value then
return true
else
return false
end
end
function AltManager:Keyset()
local keyset = {}
if MethodAltManagerDB and MethodAltManagerDB.data then
for k in pairs(MethodAltManagerDB.data) do
table.insert(keyset, k)
end
end
return keyset
end
-- Use API to generate dungeons-table
function AltManager:GenerateDungeonTable()
local tempMapTable = {}
local emptyTable = true
local APITable = C_ChallengeMode.GetMapTable()
for _, k in pairs(APITable) do
local name = C_ChallengeMode.GetMapUIInfo(k)
local shortHand = name:gsub("(%a)([%w_']*)", "%1"):gsub("%s+", "")
table.insert(tempMapTable, k, shortHand)
emptyTable = false
end
if not emptyTable then
dungeons = tempMapTable
end
end
-- Use API to generate currency-table
function AltManager:GenerateCurrencyTable()
local tempCurrencyTable = {}
for i=1,10000 do
local currency = C_CurrencyInfo.GetCurrencyInfo(i)
if currency and currency.discovered then
tempCurrencyTable[i] = {
["label"] = currency.name,
["count"] = currency.quantity,
["earned"] = currency.quantityEarnedThisWeek,
["weekly"] = currency.maxWeeklyQuantity,
["total"] = currency.maxQuantity
}
end
end
return tempCurrencyTable
end
function filterCurrencies(curr)
local FilteredList = {}
local currency_list = MethodAltManagerDB.options.currencies
if (currency_list) then
for cid, cobj in pairs(currency_list) do
if(curr[cid]) then
FilteredList[cid] = {
["label"] = curr[cid].label,
["order"] = currency_list[cid]["order"],
["count"] = curr[cid].count,
["earned"] = curr[cid].earned,
["weekly"] = curr[cid].weekly,
["total"] = curr[cid].total
}
else
local name, currentAmount, texture, earnedThisWeek, weeklyMax, totalMax, isDiscovered, rarity = C_CurrencyInfo.GetCurrencyInfo(cid)
FilteredList[cid] = {
["label"] = name,
["order"] = currency_list[cid]["order"],
["count"] = nil,
["earned"] = nil,
["weekly"] = weeklyMax,
["total"] = totalMax
}
end
end
end
return FilteredList
end
function filterItems(items)
local FilteredList = {}
if (items) then
for cid, cobj in pairs(items) do
if(cobj.order and not (cobj.order == math.huge)) then
FilteredList[cid] = cobj
end
end
end
return FilteredList
end
function CopyItemTable(items)
local List = {}
if (items) then
for cid, cobj in pairs(items) do
List[cid] = {
["label"] = cobj.label
}
end
end
return List
end
function AltManager:GenerateRaidData()
-- Select the latest tier
EJ_SelectTier(favoriteTier)
local raidData = {}
if EJ_GetCurrentTier() == favoriteTier then
local raid = {}
local instanceIdx = 1
local bossIdx = 1
-- Get raid instance from latest tier
local instanceID, instanceName = EJ_GetInstanceByIndex(instanceIdx, true)
while instanceID do
raid["id"] = instanceID
raid["label"] = instanceName
raid["order"] = instanceIdx
raid["killed"] = nil
local _, _, bossID = EJ_GetEncounterInfoByIndex(bossIdx, instanceID)
while bossID do
bossIdx = bossIdx + 1
_, _, bossID = EJ_GetEncounterInfoByIndex(bossIdx, instanceID)
end
raid["bosses"] = bossIdx - 1
raid["data"] = function(alt_data, i) return self:MakeRaidString(alt_data.savedins, i) end
raidData[instanceID] = raid
raid = {}
bossIdx = 1
instanceIdx = instanceIdx + 1
instanceID, instanceName = EJ_GetInstanceByIndex(instanceIdx, true)
end
end
raids[favoriteTier] = raidData
end
function AltManager:ValidateSchema()
local db = MethodAltManagerDB
if not db then return end
if not db.data then return end
local keyset = {}
for k in pairs(db.data) do
table.insert(keyset, k)
end
for alt = 1, db.alts do
local schema_version = db.data[keyset[alt]].version
local char_table = db.data[keyset[alt]]
if not schema_version then
print('MethodAltManager - Old Character Schema found for '..char_table.name..'. Updating')
char_table.mplus = {
key = {
["dungeon"] = char_table.dungeon,
["level"] = char_table.level
},
highest_mplus = char_table.highest_mplus
}
char_table.dungeon = nil
char_table.level = nil
char_table.highest_mplus = nil
char_table.version = VERSION
end
end
end
function AltManager:ValidateReset()
local db = MethodAltManagerDB
if not db then return end
if not db.data then return end
local keyset = {}
for k in pairs(db.data) do
table.insert(keyset, k)
end
for alt = 1, db.alts do
local expiry = db.data[keyset[alt]].expires or 0
local char_table = db.data[keyset[alt]]
if time() > expiry then
-- reset this alt
char_table.seals_bought = 0
local reward = char_table.mplus.highest_mplus > 0
char_table.mplus = {
key = {
["dungeon"] = "Unknown",
["level"] = "?"
},
highest_mplus = 0,
reward = reward
}
char_table.expires = self:GetNextWeeklyResetTime()
char_table.savedins = {}
if not char_table.heart_of_azeroth then else
char_table.heart_of_azeroth.weekly = false
end
end
end
end
function AltManager:Purge()
MethodAltManagerDB = self:InitDB()
end
function AltManager:RemoveCharactersByName(name)
local db = MethodAltManagerDB
local indices = {}
for guid, data in pairs(db.data) do
if db.data[guid].name == name then
indices[#indices+1] = guid
end
end
db.alts = db.alts - #indices
for i = 1,#indices do
db.data[indices[i]] = nil
end
print("MAM - Found " .. (#indices) .. " characters by the name of " .. name)
self:DynamicUIReload()
end
function AltManager:StoreData(data)
if not self.addon_loaded then
return
end
-- This can happen shortly after logging in, the game doesn't know the characters guid yet
if not data or not data.guid then
return
end
if UnitLevel('player') < min_level then return end
local db = MethodAltManagerDB
local guid = data.guid
db.data = db.data or {}
db.options = db.options or {}
db.options.currencies = db.options.currencies or {}
db.options.items = db.options.items or {}
local update = false
for k, v in pairs(db.data) do
if k == guid then
update = true
end
end
if not update then
db.data[guid] = data
db.alts = db.alts + 1
else
db.data[guid] = data
end
end
function AltManager:StoreOptions(data)
if not AltManager.addon_loaded then
return
end
-- This can happen shortly after logging in, the game doesn't know the characters guid yet
if not data then
return
end
local db = MethodAltManagerDB
local curr = data.currencies
db.data = db.data or {}
db.options = db.options or {}
db.options.currencies = db.options.currencies or {}
db.options.currencies = curr
self:DynamicUIReload()
end
function AltManager:DynamicUIReload()
self.main_frame:Hide()
self:StoreData(self:CollectData())
self:CreateLabels()
self.main_frame:Show()
end
function AltManager:CollectData()
if UnitLevel('player') < min_level then return end
local name = UnitName('player')
local _, class = UnitClass('player')
local dungeon = nil
local expire = nil
local level = nil
local seals = nil
local seals_bought = nil
local mplus = { key = { } }
local highest_mplus = 0
local depleted = false
local items = nil
local guid = UnitGUID('player')
local mine_old = nil
local options = nil
if MethodAltManagerDB and MethodAltManagerDB.data then
mine_old = MethodAltManagerDB.data[guid]
end
if MethodAltManagerDB and MethodAltManagerDB.options then
options = MethodAltManagerDB.options
if options.items then
items = CopyItemTable(options.items)
end
end
C_MythicPlus.RequestRewards()
local l, cR, nR = C_MythicPlus.GetWeeklyChestRewardLevel()
if l and l > highest_mplus then
highest_mplus = l
end
local challengeMapID = C_MythicPlus.GetOwnedKeystoneChallengeMapID()
local reward = C_MythicPlus.IsWeeklyRewardAvailable()
dungeon = challengeMapID and C_ChallengeMode.GetMapUIInfo(challengeMapID) or "Unknown"
level = C_MythicPlus.GetOwnedKeystoneLevel() or '?'
-- find keystone
local keystone_found = false
for container=BACKPACK_CONTAINER, NUM_BAG_SLOTS do
local slots = GetContainerNumSlots(container)
for slot=1, slots do
local _, itemCount, _, _, _, _, slotLink, _, _, slotItemID = GetContainerItemInfo(container, slot)
--[[ if slotItemID == 158923 then
local itemString = slotLink:match("|Hkeystone:([0-9:]+)|h(%b[])|h")
local info = { strsplit(":", itemString) }
-- scan tooltip for depleted
self.main_frame.scan_tooltip:SetOwner(UIParent, 'ANCHOR_NONE')
self.main_frame.scan_tooltip:SetBagItem(container, slot)
local regions = self.main_frame.scan_tooltip:GetRegions()
for i = 1, self.main_frame.scan_tooltip:NumLines() do
local left = _G["DepletedTooltipScanTextLeft"..i]:GetText()
if string.find(left, depleted_label) then
depleted = true
end
end
self.main_frame.scan_tooltip:Hide()
dungeon = tonumber(info[2])
if not dungeon then print("MethodAltManager - Parse Failure, please let Qoning know that this happened.") end
level = tonumber(info[3])
if not level then print("MethodAltManager - Parse Failure, please let Qoning know that this happened.") end
expire = tonumber(info[4])
keystone_found = true
else ]]
if items and items[slotItemID] then
items[slotItemID].count = items[slotItemID].count or 0
items[slotItemID].count = items[slotItemID].count + itemCount
end
end
end
-- Heart of Azeroth Progress
local heart_of_azeroth = nil
local azeriteItemLocation = C_AzeriteItem.FindActiveAzeriteItem()
if (azeriteItemLocation) then
local xp, totalLevelXP = C_AzeriteItem.GetAzeriteItemXPInfo(azeriteItemLocation)
heart_of_azeroth = {
['lvl'] = C_AzeriteItem.GetPowerLevel(azeriteItemLocation),
['xp'] = xp,
['totalXP'] = totalLevelXP,
['weekly'] = C_QuestLog.IsQuestFlaggedCompleted(53435) or C_QuestLog.IsQuestFlaggedCompleted(53436),
}
end
-- Process currencies
self.CurrencyTable = self.CurrencyTable or self:GenerateCurrencyTable()
_, seals = C_CurrencyInfo.GetCurrencyInfo(1580)
seals_bought = 0
-- Seals - BfA
local gold_1 = C_QuestLog.IsQuestFlaggedCompleted(52834)
local gold_2 = C_QuestLog.IsQuestFlaggedCompleted(52838)
local resources_1 = C_QuestLog.IsQuestFlaggedCompleted(52837)
local resources_2 = C_QuestLog.IsQuestFlaggedCompleted(52840)
local marks_1 = C_QuestLog.IsQuestFlaggedCompleted(52835)
local marks_2 = C_QuestLog.IsQuestFlaggedCompleted(52839)
if gold_1 then seals_bought = seals_bought + 1 end
if gold_2 then seals_bought = seals_bought + 1 end
if resources_1 then seals_bought = seals_bought + 1 end
if resources_2 then seals_bought = seals_bought + 1 end
if marks_1 then seals_bought = seals_bought + 1 end
if marks_2 then seals_bought = seals_bought + 1 end
local saves = GetNumSavedInstances()
local char_table = {}
char_table.savedins = {}
for i = 1, saves do
local instance = {}
local name, iID, reset, difficultyID, _, _, instanceIDMostSig, isRaid, _, difficulty, bosses, killed_bosses = GetSavedInstanceInfo(i)
if isRaid and reset > 0 then
char_table.savedins[name] = char_table.savedins[name] or {}
char_table.savedins[name][difficultyID] = {
difficultyID,
difficulty,
bosses,
killed_bosses
}
end
end
-- Check BfA World bosses
local bfaworldtotal = 0
for cid, cobj in pairs(BfAWorldBosses) do
bfaworldtotal = C_QuestLog.IsQuestFlaggedCompleted(cobj) and bfaworldtotal+1 or bfaworldtotal
end
if (bfaworldtotal > 0) then
char_table.savedins["Azeroth"] = char_table.savedins[name] or {}
char_table.savedins["Azeroth"][4] = {
4,
"25 Player",
2,
bfaworldtotal,
}
end
local _, ilevel = GetAverageItemLevel()
-- store data into a table
char_table.guid = UnitGUID('player')
char_table.name = name
char_table.class = class
char_table.faction = UnitFactionGroup("player")
char_table.realm = GetRealmName()
char_table.ilevel = ilevel
char_table.seals = seals
char_table.seals_bought = seals_bought
char_table.mplus = {
key = {
dungeon = dungeon,
level = level
},
reward = reward,
highest_mplus = highest_mplus
}
char_table.heart_of_azeroth = heart_of_azeroth
char_table.items = items
char_table.currencies = self.CurrencyTable
char_table.expires = self:GetNextWeeklyResetTime()
char_table.version = VERSION
return char_table
end
function AltManager:PopulateStrings()
local font_height = 20
local db = MethodAltManagerDB
local keyset = {}
for k in pairs(db.data) do
table.insert(keyset, k)
end
self.main_frame.alt_columns = self.main_frame.alt_columns or {}
local alt = 0
for alt_guid, alt_data in spairs(db.data, function(t, a, b) return t[a].ilevel > t[b].ilevel end) do
alt = alt + 1
-- create the frame to which all the fontstrings anchor
local anchor_frame = self.main_frame.alt_columns[alt] or CreateFrame("Button", nil, self.main_frame)
if not self.main_frame.alt_columns[alt] then
self.main_frame.alt_columns[alt] = anchor_frame
end
anchor_frame:SetPoint("TOPLEFT", self.main_frame.label_column, "TOPRIGHT", per_alt_x * (alt-1), 0)
-- init table for fontstring storage
self.main_frame.alt_columns[alt].label_columns = self.main_frame.alt_columns[alt].label_columns or {}
local label_columns = self.main_frame.alt_columns[alt].label_columns
-- create / fill fontstrings
local i = 1
for column_iden, column in spairs(self.columns_table, function(t, a, b) return t[a].order < t[b].order end) do
-- only display data with values
if type(column.data) == "function" then
local current_row = label_columns[i] or self:CreateFontFrame(
self.main_frame,
per_alt_x,
column.font_height or font_height,
anchor_frame,
-(i - 1) * font_height,
column.data(alt_data, i),
"CENTER",
column.tooltip and column.tooltip(alt_data,i))
-- insert it into storage if just created
if not self.main_frame.alt_columns[alt].label_columns[i] then
self.main_frame.alt_columns[alt].label_columns[i] = current_row
end
if column.color then
local color = column.color(alt_data)
current_row:GetFontString():SetTextColor(color.r, color.g, color.b, 1)
end
current_row:SetText(column.data(alt_data, i))
if column.font then
current_row:GetFontString():SetFont(column.font, 8)
else
--current_row:GetFontString():SetFont("Fonts\\FRIZQT__.TTF", 14)
end
if column.justify then
current_row:GetFontString():SetJustifyV(column.justify)
end
i = i + 1
end
end
sizey = 20 * (i-1)
anchor_frame:SetSize(per_alt_x, sizey)
end
end
function AltManager:CreateMenu()
-- Close button
self.main_frame.closeButton = CreateFrame("Button", "CloseButton", self.main_frame, "UIPanelCloseButton")
if Aurora then Aurora.Skin.UIPanelCloseButton(self.main_frame.closeButton) end
self.main_frame.closeButton:ClearAllPoints()
self.main_frame.closeButton:SetFrameLevel(self.main_frame:GetFrameLevel() + 2)
self.main_frame.closeButton:SetPoint("BOTTOMRIGHT", self.main_frame, "TOPRIGHT",Aurora and -5 or -10, Aurora and 5 or -2)
self.main_frame.closeButton:SetScript("OnClick", function() AltManager:HideInterface() end)
-- Options button
self.main_frame.settingsButton = CreateFrame("Button", "SettingsButton", self.main_frame, "UIPanelButtonTemplate")
if Aurora then Aurora.Skin.UIPanelButtonTemplate(self.main_frame.settingsButton) end
self.main_frame.settingsButton:SetText('Conf')
self.main_frame.settingsButton:ClearAllPoints()
self.main_frame.settingsButton:SetFrameLevel(self.main_frame:GetFrameLevel() + 2)
self.main_frame.settingsButton:SetPoint("BOTTOMRIGHT", self.main_frame, "TOPRIGHT",Aurora and -50 or -50, Aurora and 5 or -2)
self.main_frame.settingsButton:SetScript("OnClick", function() InterfaceOptionsFrame_OpenToCategory(AltManager.MAMO_CURR) end)
local column_table = {
name = {
order = 1,
label = name_label,
data = function(alt_data) return alt_data.name end,
color = function(alt_data) return RAID_CLASS_COLORS[alt_data.class] end,
tooltip = function(alt_data)
return function(self)
if AltManager:ShowTooltip() then
GameTooltip:SetOwner(self, "ANCHOR_TOPLEFT")
if alt_data.realm then GameTooltip:AddLine("Realm: "..alt_data.realm, 0.2, 1, 0.6, 0.2, 1, 0.6) end
GameTooltip:Show()
end
end
end,
},
ilevel = {
order = 2,
data = function(alt_data) return string.format("%.2f", alt_data.ilevel or 0) end,
justify = "TOP",
font = "Fonts\\FRIZQT__.TTF",
},
hoalevel = {
order = 3,
label = azerite_label,
color = function(alt_data)
if not alt_data.heart_of_azeroth then return {r=255, g=0, b=0}
else
return alt_data.heart_of_azeroth.weekly and {r=0, g=255, b=0} or {r=255, g=0, b=0}
end
end,
data = function(alt_data)
if not alt_data.heart_of_azeroth then return "-"
else
return tostring(alt_data.heart_of_azeroth.lvl) .. " (" .. tostring(alt_data.heart_of_azeroth.xp/alt_data.heart_of_azeroth.totalXP*100):gsub('(%-?%d+)%.%d+','%1') .. "%)"
end
end,
tooltip = function(alt_data)
return function(self)
if AltManager:ShowTooltip() then
GameTooltip:SetOwner(self, "ANCHOR_TOPLEFT")
if alt_data.heart_of_azeroth then
GameTooltip:AddLine('Details:', nil, nil, nil, false)
GameTooltip:AddLine('XP: '..alt_data.heart_of_azeroth.xp..'/'..alt_data.heart_of_azeroth.totalXP, 0.2, 1, 0.6, 0.2, 1, 0.6)
GameTooltip:AddLine('Islands '.. (alt_data.heart_of_azeroth.weekly and '' or 'not')..' done', 0.2, 1, 0.6, 0.2, 1, 0.6)
else
GameTooltip:AddLine('No Heart Data Found', nil, nil, nil, false)
end
GameTooltip:Show()
end
end
end,
},
mplus = {
order = 4,
label = mythic_done_label,
data = function(alt_data) return tostring(alt_data.mplus.highest_mplus) end,
color = function(alt_data) return alt_data.mplus.reward and {r=230, g=128, b=0} or {r=255, g=255, b=255} end,
tooltip = function(alt_data)
return function(self)
if AltManager:ShowTooltip() then
GameTooltip:SetOwner(self, "ANCHOR_TOPLEFT")
if alt_data.mplus.reward then GameTooltip:AddLine('Weekly Chest available', 0.2, 1, 0.6, 0.2, 1, 0.6) end
GameTooltip:Show()
end
end
end,
},
keystone = {
order = 5,
label = mythic_keystone_label,
data = function(alt_data) return (dungeons[alt_data.mplus.key.dungeon] or alt_data.mplus.key.dungeon) .. " +" .. tostring(alt_data.mplus.key.level); end,
},
seals_owned = {
order = 6,
label = seals_owned_label,
data = function(alt_data) return tostring(alt_data.seals) end,
},
seals_bought = {
order = 7,
label = seals_bought_label,
data = function(alt_data) return tostring(alt_data.seals_bought) end,
},
items = {
order = 9,
data = "items",
items_function = function()
self.item_list = self.item_list or {}
self:CreateItemFrame()
end,
},
currencies = {
order = 9,
data = "currencies",
currency_function = function(currencies)
self.currency_list = self.currency_list or {}
self:CreateCurrencyFrame(currencies)
end,
tooltip = function(currency)
return function(self)
if AltManager:ShowTooltip() then
GameTooltip:SetOwner(self, "ANCHOR_TOPLEFT")
if currency.earned and currency.weekly then
GameTooltip:AddLine('Details:', nil, nil, nil, false)
GameTooltip:AddLine('Weekly: '..currency.earned..'/'..currency.weekly, 0.2, 1, 0.6, 0.2, 1, 0.6)
if currency.total > 0 then GameTooltip:AddLine('Max: '..currency.total, 0.2, 1, 0.6, 0.2, 1, 0.6) end
else
GameTooltip:AddLine('No Extra information currently saved', nil, nil, nil, false)
end
GameTooltip:Show()
end
end
end,
},
raid_unroll = {
order = 12,
data = "unroll",
name = "+ Instances",
unroll_function = function(button)
self.instances_unroll = self.instances_unroll or {}
self.instances_unroll.state = self.instances_unroll.state or "closed"
if self.instances_unroll.state == "closed" then
self:CreateUnrollFrame()
button:SetText("- Instances")
self.instances_unroll.state = "open"
else
-- do rollup
self.main_frame:SetSize(max((MethodAltManagerDB.alts + 1) * per_alt_x, min_x_size), self.main_frame.lowest_point + 60)
self.main_frame.background:SetAllPoints()
self.instances_unroll.unroll_frame:Hide()
button:SetText("+ Instances")
self.instances_unroll.state = "closed"
end
end
}
}
self.columns_table = column_table
self:CreateLabels(true)
end
function AltManager:CreateLabels(first_render)
-- create labels and unrolls
local currencies = (MethodAltManagerDB.options and MethodAltManagerDB.options.currencies) or nil
local items = (MethodAltManagerDB.options and MethodAltManagerDB.options.items) or nil
items = filterItems(items)
local font_height = 20
local label_column = self.main_frame.label_column or CreateFrame("Button", nil, self.main_frame)
if not self.main_frame.label_column then self.main_frame.label_column = label_column end
label_column:SetPoint("TOPLEFT", self.main_frame, "TOPLEFT", 4, -1)
local i = 1
for row_iden, row in spairs(self.columns_table, function(t, a, b) return t[a].order < t[b].order end) do
if row.label then
if first_render then
local label_row = self:CreateFontFrame(self.main_frame, per_alt_x, font_height, label_column, -(i-1)*font_height, row.label..":", "RIGHT")
end
self.main_frame.lowest_point = -(i-1)*font_height
end
if row.data == "unroll" then
self.main_frame.unroll_start = self.main_frame.lowest_point
-- create a button that will unroll it
self.unroll_button = self.unroll_button or CreateFrame("Button", nil, self.main_frame, "UIPanelButtonTemplate")
local unroll_button = self.unroll_button
unroll_button:SetText(row.name)
unroll_button:SetFrameLevel(self.main_frame:GetFrameLevel() + 2)
unroll_button:SetSize(unroll_button:GetTextWidth() + 20, 25)
unroll_button:SetPoint("TOPLEFT", self.currency_list.label_column, "BOTTOMLEFT", 10,-10)
if Aurora then Aurora.Skin.UIPanelButtonTemplate(unroll_button) end
unroll_button:SetScript("OnClick", function() row.unroll_function(unroll_button) end)
self.tierDropDown = self.tierDropDown or CreateFrame("Frame", nil, self.currency_list.label_column, "UIDropDownMenuTemplate")
local tierDropDown = self.tierDropDown
if Aurora then Aurora.Skin.UIDropDownMenuTemplate(tierDropDown) end
tierDropDown:SetPoint("LEFT", unroll_button, "RIGHT")
UIDropDownMenu_SetWidth(tierDropDown, 130) -- Use in place of dropDown:SetWidth
UIDropDownMenu_SetText(tierDropDown, EJ_GetTierInfo(favoriteTier))
UIDropDownMenu_Initialize(tierDropDown, AltManagerDropDown_Menu)
function tierDropDown:SetTier(newValue)
-- Change Encounter Journal to correct expansion
favoriteTier = newValue
EJ_SelectTier(newValue)
-- Set correct value to dropdown menu
UIDropDownMenu_SetText(tierDropDown, EJ_GetTierInfo(favoriteTier))
-- Close the entire menu
CloseDropDownMenus()
-- Update unroll
AltManager.instances_unroll = AltManager.instances_unroll or {}
AltManager.instances_unroll.state = "closed"
row.unroll_function(unroll_button)
end
i = i -1
end
if row.data == "items" then
if items then
self.main_frame.items_start = self.main_frame.lowest_point
row.items_function()
end
i = i -1
end
if row.data == "currencies" then
if currencies then
self.main_frame.currency_start = self.main_frame.lowest_point
row.currency_function(currencies)
end
i = i -1
end
i = i + 1
end