-
Notifications
You must be signed in to change notification settings - Fork 48
/
Core.lua
929 lines (883 loc) · 31.4 KB
/
Core.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
-- LOCALS
local addonName, mod = ...
local frame = CreateFrame("Frame", "CappingFrame", UIParent)
local L = mod.L
local format, type = string.format, type
local db, core
local zoneIds = {}
local activeBars = { }
frame.bars = activeBars
-- LIBRARIES
local candy = LibStub("LibCandyBar-3.0")
local media = LibStub("LibSharedMedia-3.0")
-- API
do
local API = {}
local public = {}
do
local BarOnClick
do
local function ReportBar(bar, channel)
if not activeBars[bar] then return end
if channel == "INSTANCE_CHAT" and not IsInGroup(2) then channel = "RAID" end -- LE_PARTY_CATEGORY_INSTANCE = 2
local custom = bar:Get("capping:customchat")
if not custom then
local colorid = bar:Get("capping:colorid")
local faction = colorid == "colorHorde" and _G.FACTION_HORDE or colorid == "colorAlliance" and _G.FACTION_ALLIANCE or ""
local timeLeft = bar.candyBarDuration:GetText()
if not timeLeft:find("[:%.]") then timeLeft = "0:"..timeLeft end
SendChatMessage(format("Capping: %s - %s %s", bar:GetLabel(), timeLeft, faction == "" and faction or "("..faction..")"), channel)
else
local msg = custom(bar)
if msg then
SendChatMessage(format("Capping: %s", msg), channel)
end
end
end
function BarOnClick(bar)
if IsShiftKeyDown() and db.profile.barOnShift ~= "NONE" then
ReportBar(bar, db.profile.barOnShift)
elseif IsControlKeyDown() and db.profile.barOnControl ~= "NONE" then
ReportBar(bar, db.profile.barOnControl)
elseif IsAltKeyDown() and db.profile.barOnAlt ~= "NONE" then
ReportBar(bar, db.profile.barOnAlt)
end
end
end
local RearrangeBars
do
-- Ripped from BigWigs bar sorter
local function barSorter(a, b)
local idA = a:Get("capping:priority")
local idB = b:Get("capping:priority")
if idA and not idB then
return true
elseif idB and not idA then
return
else
return a.remaining < b.remaining
end
end
RearrangeBars = function()
local tmp = {}
for bar in next, activeBars do
tmp[#tmp + 1] = bar
end
table.sort(tmp, barSorter)
local lastBar = nil
local up = db.profile.growUp
for i = 1, #tmp do
local bar = tmp[i]
local spacing = db.profile.spacing
bar:ClearAllPoints()
if up then
if lastBar then -- Growing from a bar
bar:SetPoint("BOTTOMLEFT", lastBar, "TOPLEFT", 0, spacing)
bar:SetPoint("BOTTOMRIGHT", lastBar, "TOPRIGHT", 0, spacing)
else -- Growing from the anchor
bar:SetPoint("BOTTOM", frame, "TOP")
end
lastBar = bar
else
if lastBar then -- Growing from a bar
bar:SetPoint("TOPLEFT", lastBar, "BOTTOMLEFT", 0, -spacing)
bar:SetPoint("TOPRIGHT", lastBar, "BOTTOMRIGHT", 0, -spacing)
else -- Growing from the anchor
bar:SetPoint("TOP", frame, "BOTTOM")
end
lastBar = bar
end
end
end
frame.RearrangeBars = RearrangeBars
end
function API:StartBar(name, remaining, icon, colorid, priority, maxBarTime)
self:StopBar(name)
local bar = candy:New(media:Fetch("statusbar", db.profile.barTexture), db.profile.width, db.profile.height)
activeBars[bar] = true
bar:Set("capping:colorid", colorid)
if priority then
bar:Set("capping:priority", priority)
end
bar:SetParent(frame)
bar:SetLabel(name)
bar.candyBarLabel:SetJustifyH(db.profile.alignText)
bar.candyBarDuration:SetJustifyH(db.profile.alignTime)
bar:SetDuration(remaining)
bar:SetColor(unpack(db.profile[colorid]))
bar.candyBarBackground:SetVertexColor(unpack(db.profile.colorBarBackground))
bar:SetTextColor(unpack(db.profile.colorText))
if db.profile.icon then
if type(icon) == "table" then
bar:SetIcon(icon[1], icon[2], icon[3], icon[4], icon[5])
else
bar:SetIcon(icon)
end
bar:SetIconPosition(db.profile.alignIcon)
end
bar:SetTimeVisibility(db.profile.timeText)
bar:SetFill(db.profile.fill)
local flags = nil
if db.profile.monochrome and db.profile.outline ~= "NONE" then
flags = "MONOCHROME," .. db.profile.outline
elseif db.profile.monochrome then
flags = "MONOCHROME"
elseif db.profile.outline ~= "NONE" then
flags = db.profile.outline
end
bar.candyBarLabel:SetFont(media:Fetch("font", db.profile.font), db.profile.fontSize, flags)
bar.candyBarDuration:SetFont(media:Fetch("font", db.profile.font), db.profile.fontSize, flags)
bar:SetScript("OnMouseUp", BarOnClick)
if db.profile.barOnShift ~= "NONE" or db.profile.barOnControl ~= "NONE" or db.profile.barOnAlt ~= "NONE" then
bar:EnableMouse(true)
else
bar:EnableMouse(false)
end
bar:Start(maxBarTime)
RearrangeBars()
return bar
end
public.StartBar = API.StartBar
function API:StopBar(text)
local dirty = nil
for bar in next, activeBars do
if bar:GetLabel() == text then
bar:Stop()
dirty = true
end
end
if dirty then RearrangeBars() end
end
public.StopBar = API.StopBar
CappingAPI = public
candy.RegisterCallback(API, "LibCandyBar_Stop", function(_, bar)
if activeBars[bar] then
activeBars[bar] = nil
RearrangeBars()
end
end)
end
function API:StopAllBars()
for bar in next, activeBars do
bar:Stop()
end
end
function API:GetBar(text)
for bar in next, activeBars do
if bar:GetLabel() == text then
return bar
end
end
end
do
local eventMap = {}
frame:SetScript("OnEvent", function(_, event, ...)
for k,v in next, eventMap[event] do
if type(v) == "function" then
v(...)
else
k[v](k, ...)
end
end
end)
function API:RegisterEvent(event, func)
if not eventMap[event] then eventMap[event] = {} end
eventMap[event][self] = func or event
frame:RegisterEvent(event)
end
function API:UnregisterEvent(event)
if not eventMap[event] then return end
eventMap[event][self] = nil
if not next(eventMap[event]) then
frame:UnregisterEvent(event)
eventMap[event] = nil
end
end
end
function API:RegisterZone(id)
zoneIds[id] = self
end
local Timer = C_Timer.After
function API:Timer(duration, func)
Timer(duration, func)
end
do
local unitTable1 = {
"target", "targettarget",
"mouseover", "mouseovertarget",
"focus", "focustarget",
"nameplate1", "nameplate2", "nameplate3", "nameplate4", "nameplate5", "nameplate6", "nameplate7", "nameplate8", "nameplate9", "nameplate10",
"nameplate11", "nameplate12", "nameplate13", "nameplate14", "nameplate15", "nameplate16", "nameplate17", "nameplate18", "nameplate19", "nameplate20",
"nameplate21", "nameplate22", "nameplate23", "nameplate24", "nameplate25", "nameplate26", "nameplate27", "nameplate28", "nameplate29", "nameplate30",
"nameplate31", "nameplate32", "nameplate33", "nameplate34", "nameplate35", "nameplate36", "nameplate37", "nameplate38", "nameplate39", "nameplate40",
}
local unitTable2 = {
"nameplate1target", "nameplate2target", "nameplate3target", "nameplate4target", "nameplate5target",
"nameplate6target", "nameplate7target", "nameplate8target", "nameplate9target", "nameplate10target",
"nameplate11target", "nameplate12target", "nameplate13target", "nameplate14target", "nameplate15target",
"nameplate16target", "nameplate17target", "nameplate18target", "nameplate19target", "nameplate20target",
"nameplate21target", "nameplate22target", "nameplate23target", "nameplate24target", "nameplate25target",
"nameplate26target", "nameplate27target", "nameplate28target", "nameplate29target", "nameplate30target",
"nameplate31target", "nameplate32target", "nameplate33target", "nameplate34target", "nameplate35target",
"nameplate36target", "nameplate37target", "nameplate38target", "nameplate39target", "nameplate40target",
}
local unitTable3 = {
"raid1target", "raid2target", "raid3target", "raid4target", "raid5target",
"raid6target", "raid7target", "raid8target", "raid9target", "raid10target",
"raid11target", "raid12target", "raid13target", "raid14target", "raid15target",
"raid16target", "raid17target", "raid18target", "raid19target", "raid20target",
"raid21target", "raid22target", "raid23target", "raid24target", "raid25target",
"raid26target", "raid27target", "raid28target", "raid29target", "raid30target",
"raid31target", "raid32target", "raid33target", "raid34target", "raid35target",
"raid36target", "raid37target", "raid38target", "raid39target", "raid40target"
}
local collection, reset, blocked, started = {}, {}, {}, false
local count1, count2, count3 = #unitTable1, #unitTable2, #unitTable3
local UnitGUID, strsplit = UnitGUID, strsplit
local UnitHealth, UnitHealthMax = UnitHealth, UnitHealthMax
local SendAddonMessage = C_ChatInfo.SendAddonMessage
local curMod = nil
local function parse2()
if started then
for i = 1, count2 do
local unit = unitTable2[i]
local guid = UnitGUID(unit)
if guid then
local _, _, _, _, _, strid = strsplit("-", guid)
if strid and collection[strid] and not blocked[strid] then
local maxHP = UnitHealthMax(unit)
if maxHP > 0 then
blocked[strid] = true
local hp = UnitHealth(unit) / maxHP * 100
SendAddonMessage("Capping", format("%s:%.1f", strid, hp), "INSTANCE_CHAT")
end
end
end
end
end
end
local function parse3()
if started then
for i = 1, count3 do
local unit = unitTable3[i]
local guid = UnitGUID(unit)
if guid then
local _, _, _, _, _, strid = strsplit("-", guid)
if strid and collection[strid] and not blocked[strid] then
local maxHP = UnitHealthMax(unit)
if maxHP > 0 then
blocked[strid] = true
local hp = UnitHealth(unit) / maxHP * 100
SendAddonMessage("Capping", format("%s:%.1f", strid, hp), "INSTANCE_CHAT")
end
end
end
end
end
end
local function HealthScan()
if started then
Timer(1, HealthScan)
Timer(0.01, parse2) -- Break up parsing
Timer(0.02, parse3)
for id, counter in next, reset do
reset[id] = counter + 1
if counter > 20 then
local tbl = collection[id]:Get("capping:hpdata")
collection[id]:Stop()
reset[id] = nil
collection[id] = tbl
end
end
for k in next, blocked do
blocked[k] = nil
end
for i = 1, count1 do
local unit = unitTable1[i]
local guid = UnitGUID(unit)
if guid then
local _, _, _, _, _, strid = strsplit("-", guid)
if strid and collection[strid] and not blocked[strid] then
local maxHP = UnitHealthMax(unit)
if maxHP > 0 then
blocked[strid] = true
local hp = UnitHealth(unit) / maxHP * 100
SendAddonMessage("Capping", format("%s:%.1f", strid, hp), "INSTANCE_CHAT")
end
end
end
end
end
end
local function HealthUpdate(prefix, msg, channel)
if prefix == "Capping" and channel == "INSTANCE_CHAT" then
local strid, strhp = strsplit(":", msg)
local hp = tonumber(strhp)
if strid and hp and collection[strid] and hp <= 100 and hp >= 0 and (hp < 0) ~= (hp >= 0) then -- Check hp is 0-100 and isn't NaN
if collection[strid].candyBarBar then
if hp < 100 then
reset[strid] = 0
end
collection[strid].candyBarBar:SetValue(hp)
collection[strid].candyBarDuration:SetFormattedText("%.1f%%", hp)
elseif hp < 100 then
local tbl = collection[strid]
local bar = curMod:StartBar(tbl[1], 100, tbl[3], tbl[4], true)
bar:Pause()
bar.candyBarBar:SetValue(hp)
bar.candyBarDuration:SetFormattedText("%.1f%%", hp)
bar:Set("capping:customchat", function(candyBar)
if tbl[1] ~= tbl[2] then
return tbl[2] .."/".. tbl[1] .." - ".. candyBar.candyBarDuration:GetText()
else
return tbl[1] .." - ".. candyBar.candyBarDuration:GetText()
end
end)
bar:Set("capping:hpdata", tbl)
reset[strid] = 0
collection[strid] = bar
end
end
end
end
function API:SetupHealthCheck(npcId, npcName, englishName, icon, color)
curMod = self
collection[npcId] = {npcName, englishName, icon, color}
if not started then
started = true
C_ChatInfo.RegisterAddonMessagePrefix("Capping")
core:RegisterEvent("CHAT_MSG_ADDON", HealthUpdate)
Timer(1, HealthScan)
end
end
function API:StopHealthCheck()
started = false
collection, reset, blocked = {}, {}, {}
core:UnregisterEvent("CHAT_MSG_ADDON")
end
end
do
local prevText = ""
local prevTime, prevAScore, prevHScore, prevAIncrease, prevHIncrease = 0, 0, 0, 0, 0
local timeBetweenEachTick, prevTick, prevTimeToWin = 0, 0, 0
local maxscore, ascore, hscore, aIncrease, hIncrease = 0, 0, 0, 0, 0
local aRemain, hRemain, aTicksToWin, hTicksToWin = 0, 0, 0, 0
local curMod = nil
local function UpdatePredictor()
if aIncrease ~= prevAIncrease or hIncrease ~= prevHIncrease or timeBetweenEachTick ~= prevTick then
if aIncrease > 60 or hIncrease > 60 or aIncrease < 0 or hIncrease < 0 then -- Scores can reduce in DG
curMod:StopBar(prevText) -- >60 increase means captured a flag/cart in EotS/DG
prevAIncrease, prevHIncrease = -1, -1
return
end
prevAIncrease, prevHIncrease, prevTick = aIncrease, hIncrease, timeBetweenEachTick
if hTicksToWin < aTicksToWin then -- Horde is winning
local timeToWin = hTicksToWin * timeBetweenEachTick
local finalAScore = ascore + (hTicksToWin * aIncrease)
local txt = format(L.finalScore, finalAScore, maxscore)
if txt ~= prevText or timeToWin ~= prevTimeToWin then
prevTimeToWin = timeToWin
curMod:StopBar(prevText)
curMod:StartBar(txt, timeToWin-0.5, 132485, "colorHorde") -- 132485 = Interface/Icons/INV_BannerPVP_01
prevText = txt
end
elseif aTicksToWin < hTicksToWin then -- Alliance is winning
local timeToWin = aTicksToWin * timeBetweenEachTick
local finalHScore = hscore + (aTicksToWin * hIncrease)
local txt = format(L.finalScore, maxscore, finalHScore)
if txt ~= prevText or timeToWin ~= prevTimeToWin then
prevTimeToWin = timeToWin
curMod:StopBar(prevText)
curMod:StartBar(txt, timeToWin-0.5, 132486, "colorAlliance") -- 132486 = Interface/Icons/INV_BannerPVP_02
prevText = txt
end
end
end
end
local GetDoubleStatusBarWidgetVisualizationInfo = C_UIWidgetManager.GetDoubleStatusBarWidgetVisualizationInfo
local ceil, floor = math.ceil, math.floor
local function ScorePredictor(widgetInfo)
if widgetInfo and (widgetInfo.widgetID == 1671 or widgetInfo.widgetID == 2074) then -- The 1671 widget is used for all BGs with score predictors, but DG uses 2074
local dataTbl = GetDoubleStatusBarWidgetVisualizationInfo(widgetInfo.widgetID)
if not dataTbl or not dataTbl.leftBarMax then return end
if prevTime == 0 then
prevTime = GetTime()
prevAScore, prevHScore = dataTbl.leftBarValue, dataTbl.rightBarValue
return
end
local t = GetTime()
local elapsed = t - prevTime
prevTime = t
if elapsed > 0.5 then
-- If there's only 1 update, it could be either alliance or horde, so we update both stats in this one
maxscore = dataTbl.leftBarMax -- Total
ascore = dataTbl.leftBarValue -- Alliance Bar
hscore = dataTbl.rightBarValue -- Horde Bar
aIncrease = ascore - prevAScore
hIncrease = hscore - prevHScore
aRemain = maxscore - ascore
hRemain = maxscore - hscore
-- Always round ticks upwards. 1.2 ticks will always be 2 ticks to end.
-- If ticks are 0 (no bases) then set to a random huge number (10,000)
aTicksToWin = ceil(aIncrease == 0 and 10000 or aRemain / aIncrease)
hTicksToWin = ceil(hIncrease == 0 and 10000 or hRemain / hIncrease)
-- Round to the closest time
timeBetweenEachTick = elapsed % 1 >= 0.5 and ceil(elapsed) or floor(elapsed)
prevAScore, prevHScore = ascore, hscore
Timer(0.5, UpdatePredictor)
else
-- If elapsed < 0.5 then the event fired twice because both alliance and horde have bases.
-- 1st update = alliance, 2nd update = horde
-- If only one faction has bases, the event only fires once.
-- Unfortunately we need to wait for the 2nd event to fire (the horde update) to know the true horde stats.
-- In this one where we have 2 updates, we overwrite the horde stats from the 1st update.
hscore = dataTbl.rightBarValue -- Horde Bar
hIncrease = hscore - prevHScore
hRemain = maxscore - hscore
-- Always round ticks upwards. 1.2 ticks will always be 2 ticks to end.
-- If ticks are 0 (no bases) then set to a random huge number (10,000)
hTicksToWin = ceil(hIncrease == 0 and 10000 or hRemain / hIncrease)
prevHScore = hscore
end
end
end
function API:StartScoreEstimator()
prevText = ""
curMod = self
prevTime, prevAScore, prevHScore, prevAIncrease, prevHIncrease = 0, 0, 0, 0, 0
timeBetweenEachTick, prevTick, prevTimeToWin = 0, 0, 0
maxscore, ascore, hscore, aIncrease, hIncrease = 0, 0, 0, 0, 0
aRemain, hRemain, aTicksToWin, hTicksToWin = 0, 0, 0, 0
self:RegisterEvent("UPDATE_UI_WIDGET", ScorePredictor)
end
function API:StopScoreEstimator()
self:UnregisterEvent("UPDATE_UI_WIDGET")
end
end
do
local GetPOITextureCoords = C_Minimap.GetPOITextureCoords
-- Easy world map icon checker
--local start = function(self) self:StartMoving() end
--local stop = function(self) self:StopMovingOrSizing() end
--local frames = {}
--do
-- local f = CreateFrame("Frame", nil, UIParent)
-- f:SetPoint("CENTER")
-- f:SetSize(24,24)
-- f:EnableMouse(true)
-- f:SetMovable(true)
-- f:RegisterForDrag("LeftButton")
-- f:SetScript("OnDragStart", start)
-- f:SetScript("OnDragStop", stop)
-- frames[1] = f
-- local tx = f:CreateTexture()
-- tx:SetAllPoints(f)
-- tx:SetTexture(136441) -- Interface\\Minimap\\POIIcons
-- tx:SetTexCoord(GetPOITextureCoords(1))
-- local n = f:CreateFontString(nil, "OVERLAY", "GameFontNormalLarge")
-- n:SetPoint("BOTTOM", f, "TOP")
-- n:SetText(1)
--end
--for i = 2, 250 do
-- local f = CreateFrame("Frame", nil, UIParent)
-- f:SetPoint("LEFT", frames[i-1], "RIGHT", 10, 0)
-- f:SetSize(24,24)
-- f:EnableMouse(true)
-- f:SetMovable(true)
-- f:RegisterForDrag("LeftButton")
-- f:SetScript("OnDragStart", start)
-- f:SetScript("OnDragStop", stop)
-- frames[i] = f
-- local tx = f:CreateTexture()
-- tx:SetAllPoints(f)
-- tx:SetTexture(136441) -- Interface\\Minimap\\POIIcons
-- tx:SetTexCoord(GetPOITextureCoords(i))
-- local n = f:CreateFontString(nil, "OVERLAY", "GameFontNormalLarge")
-- n:SetPoint("BOTTOM", f, "TOP")
-- n:SetText(i)
--end
local iconDataConflict = {
-- Graveyard
[4] = "colorAlliance",
[14] = "colorHorde",
-- Tower
[9] = "colorAlliance",
[12] = "colorHorde",
-- Mine/Stone
[17] = "colorAlliance",
[19] = "colorHorde",
-- Lumber/Wood
[22] = "colorAlliance",
[24] = "colorHorde",
-- Blacksmith/Anvil
[27] = "colorAlliance",
[29] = "colorHorde",
-- Farm/House
[32] = "colorAlliance",
[34] = "colorHorde",
-- Stables/Horse
[37] = "colorAlliance",
[39] = "colorHorde",
-- Workshop/Tent
[137] = "colorAlliance",
[139] = "colorHorde",
-- Hangar/Mushroom
[142] = "colorAlliance",
[144] = "colorHorde",
-- Docks/Anchor
[147] = "colorAlliance",
[149] = "colorHorde",
-- Oil/Refinery
[152] = "colorAlliance",
[154] = "colorHorde",
-- Market
[208] = "colorAlliance",
[209] = "colorHorde",
-- Ruins
[213] = "colorAlliance",
[214] = "colorHorde",
-- Shrine
[218] = "colorAlliance",
[219] = "colorHorde",
}
local atlasColors = nil
local capTime = 0
local curMapID = 0
local curMod = nil
local path = {136441}
local GetIconData = function(icon)
path[2], path[3], path[4], path[5] = GetPOITextureCoords(icon)
return path
end
local landmarkCache = {}
local GetAreaPOIForMap = C_AreaPoiInfo.GetAreaPOIForMap
local GetAreaPOIInfo = C_AreaPoiInfo.GetAreaPOIInfo
local GetAtlasInfo = C_Texture.GetAtlasInfo
local GetSpellName = C_Spell and C_Spell.GetSpellName or GetSpellInfo
local function UpdatePOI()
local pois = GetAreaPOIForMap(curMapID)
for i = 1, #pois do
local tbl = GetAreaPOIInfo(curMapID, pois[i])
local name, icon, atlasName, areaPoiID = tbl.name, tbl.textureIndex, tbl.atlasName, tbl.areaPoiID
if icon then
if landmarkCache[name] ~= icon then
landmarkCache[name] = icon
if iconDataConflict[icon] then
local bar = curMod:StartBar(name, capTime, GetIconData(icon), iconDataConflict[icon])
bar:Set("capping:poiid", areaPoiID)
if icon == 137 or icon == 139 then -- Workshop in IoC
curMod:StopBar((GetSpellName(56661))) -- Build Siege Engine
end
else
curMod:StopBar(name)
if icon == 136 or icon == 138 then -- Workshop in IoC
curMod:StartBar(GetSpellName(56661), 181, 252187, icon == 136 and "colorAlliance" or "colorHorde") -- Build Siege Engine, 252187 = ability_vehicle_siegeengineram
elseif icon == 2 or icon == 3 or icon == 151 or icon == 153 or icon == 18 or icon == 20 then
-- Horde mine, Alliance mine, Alliance Refinery, Horde Refinery, Alliance Quarry, Horde Quarry
local _, _, _, id = UnitPosition("player")
if id == 30 or id == 628 or id == 2197 then -- Alterac Valley, IoC, Korrak's Revenge (WoW 15th)
local bar = curMod:StartBar(name, 3600, GetIconData(icon), (icon == 3 or icon == 151 or icon == 18) and "colorAlliance" or "colorHorde", true) -- Paused bar for mine status
bar:Pause()
bar:SetTimeVisibility(false)
bar:Set("capping:customchat", function() end)
end
end
end
end
elseif atlasName then
local atlasTbl = GetAtlasInfo(atlasName)
if landmarkCache[name] ~= atlasName then
--print(name, atlasName)
landmarkCache[name] = atlasName
if atlasColors[atlasName] then
local bar = curMod:StartBar(
name,
capTime,
{ -- Begin Icon Texture
atlasTbl.file,
atlasTbl.leftTexCoord,
atlasTbl.rightTexCoord,
atlasTbl.topTexCoord,
atlasTbl.bottomTexCoord,
}, -- End Icon Texture
atlasColors[atlasName] -- Color
)
bar:Set("capping:poiid", areaPoiID)
--if atlasName == WORKSHOPHORDE or atlasName == WORKSHOPALLIANCE then -- Workshop in IoC
-- curMod:StopBar((GetSpellName(56661))) -- Build Siege Engine
--end
else
curMod:StopBar(name)
--if icon == 136 or icon == 138 then -- Workshop in IoC
-- curMod:StartBar(GetSpellName(56661), 181, 252187, icon == 136 and "colorAlliance" or "colorHorde") -- Build Siege Engine, 252187 = ability_vehicle_siegeengineram
--elseif icon == 2 or icon == 3 or icon == 151 or icon == 153 or icon == 18 or icon == 20 then
-- -- Horde mine, Alliance mine, Alliance Refinery, Horde Refinery, Alliance Quarry, Horde Quarry
-- local _, _, _, id = UnitPosition("player")
-- if id == 30 or id == 628 then -- Alterac Valley, IoC
-- local bar = curMod:StartBar(name, 3600, GetIconData(icon), (icon == 3 or icon == 151 or icon == 18) and "colorAlliance" or "colorHorde", true) -- Paused bar for mine status
-- bar:Pause()
-- bar:SetTimeVisibility(false)
-- bar:Set("capping:customchat", function() end)
-- end
--end
end
end
end
end
end
function API:StartFlagCaptures(bgcaptime, uiMapID, colors)
atlasColors = colors
capTime = bgcaptime -- cap time
curMapID = uiMapID -- current map
landmarkCache = {}
curMod = self
local pois = GetAreaPOIForMap(uiMapID)
for i = 1, #pois do
local tbl = GetAreaPOIInfo(uiMapID, pois[i])
local icon = tbl.textureIndex
local atlasName = tbl.atlasName
if icon then
landmarkCache[tbl.name] = icon
if icon == 2 or icon == 3 or icon == 151 or icon == 153 or icon == 18 or icon == 20 then
-- Horde mine, Alliance mine, Alliance Refinery, Horde Refinery, Alliance Quarry, Horde Quarry
local _, _, _, id = UnitPosition("player")
if id == 30 or id == 628 or id == 2197 then -- Alterac Valley, IoC, Korrak's Revenge (WoW 15th)
local bar = self:StartBar(tbl.name, 3600, GetIconData(icon), (icon == 3 or icon == 151 or icon == 18) and "colorAlliance" or "colorHorde", true) -- Paused bar for mine status
bar:Pause()
bar:SetTimeVisibility(false)
bar:Set("capping:customchat", function() end)
end
end
elseif atlasName then
--local atlasTbl = GetAtlasInfo(atlasName)
landmarkCache[tbl.name] = atlasName
-- This can stay commented out until the day IoC/AV is converted to atlasNames
--if atlasName == 2 or atlasName == 3 or atlasName == 151 or atlasName == 153 or atlasName == 18 or atlasName == 20 then
-- -- Horde mine, Alliance mine, Alliance Refinery, Horde Refinery, Alliance Quarry, Horde Quarry
-- local _, _, _, id = UnitPosition("player")
-- if id == 30 or id == 628 then -- Alterac Valley, IoC
-- local bar = self:StartBar(tbl.name, 3600, GetIconData(icon), (icon == 3 or icon == 151 or icon == 18) and "colorAlliance" or "colorHorde", true) -- Paused bar for mine status
-- bar:Pause()
-- bar:SetTimeVisibility(false)
-- bar:Set("capping:customchat", function() end)
-- end
--end
end
end
self:RegisterEvent("AREA_POIS_UPDATED", UpdatePOI)
end
function API:StopFlagCaptures()
self:UnregisterEvent("AREA_POIS_UPDATED")
end
function API:RestoreFlagCaptures(uiMapID, inProgressDataTbl, maxBarTime)
local pois = GetAreaPOIForMap(uiMapID)
for i = 1, #pois do
local tbl = GetAreaPOIInfo(uiMapID, pois[i])
local name, icon, areaPoiID = tbl.name, tbl.textureIndex, tbl.areaPoiID
local timer = inProgressDataTbl[areaPoiID]
if timer and iconDataConflict[icon] then
self:StartBar(name, timer, GetIconData(icon), iconDataConflict[icon], nil, maxBarTime)
end
end
end
end
do
local GetOptions = C_GossipInfo.GetOptions
local SelectOption = C_GossipInfo.SelectOption
function API:GetGossipNumOptions()
local gossipOptions = GetOptions()
return #gossipOptions
end
function API:GetGossipID(id)
local gossipOptions = GetOptions()
for i = 1, #gossipOptions do
local gossipTable = gossipOptions[i]
if gossipTable.gossipOptionID == id then
return true
end
end
end
function API:SelectGossipID(id)
SelectOption(id)
end
end
do
local GetAvailableQuests = C_GossipInfo.GetAvailableQuests
local SelectAvailableQuest = C_GossipInfo.SelectAvailableQuest
function API:GetGossipAvailableQuestID(id)
local gossipOptions = GetAvailableQuests()
for i = 1, #gossipOptions do
local gossipTable = gossipOptions[i]
if gossipTable.questID == id then
return true
end
end
end
function API:SelectGossipAvailableQuestID(id)
SelectAvailableQuest(id)
end
end
function mod:NewMod()
local t = {}
for k,v in next, API do
t[k] = v
end
return t, L, frame
end
end
-- CORE
core = mod:NewMod()
function core:ADDON_LOADED(addon)
if addon == addonName then
self:UnregisterEvent("ADDON_LOADED")
-- saved variables database setup
local defaults = {
profile = {
lock = false,
position = {"CENTER", "CENTER", 0, 0},
fontSize = 10,
barTexture = "Blizzard Raid Bar",
outline = "NONE",
monochrome = false,
font = media:GetDefault("font"),
width = 200,
height = 20,
icon = true,
timeText = true,
fill = false,
growUp = false,
spacing = 0,
alignText = "LEFT",
alignTime = "RIGHT",
alignIcon = "LEFT",
colorText = {1,1,1,1},
colorAlliance = {0,0,1,1},
colorHorde = {1,0,0,1},
colorQueue = {0.6,0.6,0.6,1},
colorOther = {1,1,0,1},
colorBarBackground = {0,0,0,0.75},
queueBars = true,
useMasterForQueue = true,
barOnShift = "SAY",
barOnControl = "INSTANCE_CHAT",
barOnAlt = "NONE",
autoTurnIn = true,
},
}
db = LibStub("AceDB-3.0"):New("CappingSettings", defaults, true)
frame.db = db
do
local rl = function() ReloadUI() end
db.RegisterCallback(self, "OnProfileChanged", rl)
db.RegisterCallback(self, "OnProfileCopied", rl)
db.RegisterCallback(self, "OnProfileReset", rl)
end
frame:ClearAllPoints()
frame:SetPoint(db.profile.position[1], UIParent, db.profile.position[2], db.profile.position[3], db.profile.position[4])
local bg = frame:CreateTexture()
bg:SetAllPoints(frame)
bg:SetColorTexture(0, 1, 0, 0.3)
frame.bg = bg
local header = frame:CreateFontString(nil, "OVERLAY", "TextStatusBarText")
header:SetAllPoints(frame)
header:SetText(addon)
frame.header = header
if db.profile.lock then
frame:EnableMouse(false)
frame:SetMovable(false)
frame.bg:Hide()
frame.header:Hide()
end
-- Fix flag carriers for some people
C_CVar.SetCVar("showArenaEnemyCastbar", "1")
C_CVar.SetCVar("showArenaEnemyFrames", "1")
C_CVar.SetCVar("showArenaEnemyPets", "1")
self:RegisterEvent("PLAYER_ENTERING_WORLD")
end
end
core:RegisterEvent("ADDON_LOADED")
do
local loc = GetLocale()
local needsLocale = {
esMX = "Spanish MX",
itIT = "Italian",
koKR = "Korean",
zhTW = "zhTW",
}
if needsLocale[loc] then
function core:LOADING_SCREEN_DISABLED()
self:UnregisterEvent("LOADING_SCREEN_DISABLED")
self:Timer(0, function() -- Timers aren't fully functional until 1 frame after loading is done
self:Timer(15, function()
print("|cFF33FF99Capping|r is missing locale for", needsLocale[loc], "and needs your help! Please visit the project page on GitHub for more info.")
end)
end)
end
core:RegisterEvent("LOADING_SCREEN_DISABLED")
end
end
do
local prevZone = 0
local GetInstanceInfo = GetInstanceInfo
function core:PLAYER_ENTERING_WORLD()
local _, _, _, _, _, _, _, id = GetInstanceInfo()
if zoneIds[id] then
prevZone = id
self:RegisterEvent("PLAYER_LEAVING_WORLD")
zoneIds[id]:EnterZone(id)
end
end
function core:PLAYER_LEAVING_WORLD()
self:UnregisterEvent("PLAYER_LEAVING_WORLD")
self:StopAllBars()
zoneIds[prevZone]:ExitZone()
end
end
function core:Test(locale)
core:StartBar(locale.queueBars, 100, 236396, "colorQueue") -- Interface/Icons/Achievement_BG_winWSG
core:StartBar(locale.otherBars, 75, 1582141, "colorOther") -- Interface/Icons/Achievement_PVP_Legion03
core:StartBar(locale.allianceBars, 45, 132486, "colorAlliance") -- Interface/Icons/INV_BannerPVP_02
core:StartBar(locale.hordeBars, 25, 132485, "colorHorde") -- Interface/Icons/INV_BannerPVP_01
end
frame.Test = core.Test
-- OPTIONS
do
frame:SetPoint("CENTER", UIParent, "CENTER")
frame:SetWidth(180)
frame:SetHeight(15)
frame:SetMovable(true)
frame:EnableMouse(true)
frame:RegisterForDrag("LeftButton")
frame:SetClampedToScreen(true)
frame:Show()
local tooltip = CreateFrame("GameTooltip", "CappingTooltip", UIParent, "GameTooltipTemplate")
frame:SetScript("OnEnter", function(f)
tooltip:ClearLines()
tooltip:SetOwner(f, db.profile.growUp and "ANCHOR_TOP" or "ANCHOR_BOTTOM")
tooltip:AddLine(L.anchorTooltip, 0.2, 1, 0.2, 1)
tooltip:AddLine(L.anchorTooltipNote, 1, 1, 1, 1)
tooltip:Show()
end)
frame:SetScript("OnLeave", function() tooltip:Hide() end)
frame:SetScript("OnDragStart", function(f) f:StartMoving() end)
frame:SetScript("OnDragStop", function(f)
f:StopMovingOrSizing()
local a, _, b, c, d = f:GetPoint()
db.profile.position[1] = a
db.profile.position[2] = b
db.profile.position[3] = c
db.profile.position[4] = d
end)
local function openOpts()
C_AddOns.EnableAddOn("Capping_Options") -- Make sure it wasn't left disabled for whatever reason
C_AddOns.LoadAddOn("Capping_Options")
LibStub("AceConfigDialog-3.0"):Open(addonName)
end
SlashCmdList.Capping = openOpts
SLASH_Capping1 = "/capping"
frame:SetScript("OnMouseUp", function(_, btn)
if btn == "RightButton" then
openOpts()
end
end)
end