Back to Home

ESO Lua File v101041

internalingame/tribute/tributemechanic_manager.lua

[◄ back to folders ]
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
ZO_TRIBUTE_MECHANIC_TILE_BACKDROP_ALPHA = 0.5
ZO_TRIBUTE_MECHANIC_TILE_PORTRAIT_UI_WIDTH = 48
ZO_TRIBUTE_MECHANIC_TILE_PORTRAIT_UI_HEIGHT = 64
ZO_TRIBUTE_MECHANIC_TILE_CONTAINER_UI_WIDTH = 70
ZO_TRIBUTE_MECHANIC_TILE_CONTAINER_UI_HEIGHT = ZO_TRIBUTE_MECHANIC_TILE_PORTRAIT_UI_HEIGHT
ZO_TRIBUTE_MECHANIC_TILE_BACKDROP_UI_HEIGHT = ZO_TRIBUTE_MECHANIC_TILE_CONTAINER_UI_HEIGHT + 6
ZO_TRIBUTE_MECHANIC_TILE_UI_HEIGHT = ZO_TRIBUTE_MECHANIC_TILE_BACKDROP_UI_HEIGHT + 8
ZO_TRIBUTE_MECHANIC_TILE_UI_WIDTH = 127
ZO_TRIBUTE_MECHANIC_PATRON_POPUP_ADDITIONAL_OFFSET_X = -47
ZO_TRIBUTE_MECHANIC_HISTORY_FADE_GRADIENT_HEIGHT = ZO_TRIBUTE_MECHANIC_TILE_UI_HEIGHT * 2
ZO_TRIBUTE_MECHANIC_HISTORY_HEADING_UI_WIDTH = ZO_TRIBUTE_MECHANIC_TILE_UI_WIDTH + 3
ZO_TRIBUTE_MECHANIC_CONTINUOUS_SCROLL_REGION_HEIGHT = ZO_TRIBUTE_MECHANIC_TILE_UI_HEIGHT
ZO_TRIBUTE_MECHANIC_CONTINUOUS_SCROLL_DISTANCE_PER_SECOND = ZO_TRIBUTE_MECHANIC_TILE_UI_HEIGHT * 4
local TRIBUTE_MECHANIC_TILE_PORTRAIT_DIMENSION_X = 256
local TRIBUTE_MECHANIC_TILE_PORTRAIT_DIMENSION_Y = 512
local TRIBUTE_MECHANIC_TILE_PORTRAIT_CROPPED_DIMENSION_X = 205
local TRIBUTE_MECHANIC_TILE_PORTRAIT_CROPPED_DIMENSION_Y = 274
local TRIBUTE_MECHANIC_TILE_PORTRAIT_CENTER_X = 128
local TRIBUTE_MECHANIC_TILE_PORTRAIT_CENTER_Y = 226
local TRIBUTE_MECHANIC_TILE_PORTRAIT_CENTER_X_COORD = TRIBUTE_MECHANIC_TILE_PORTRAIT_CENTER_X / TRIBUTE_MECHANIC_TILE_PORTRAIT_DIMENSION_X
local TRIBUTE_MECHANIC_TILE_PORTRAIT_CENTER_Y_COORD = TRIBUTE_MECHANIC_TILE_PORTRAIT_CENTER_Y / TRIBUTE_MECHANIC_TILE_PORTRAIT_DIMENSION_Y
local TRIBUTE_MECHANIC_TILE_PORTRAIT_HALF_X_COORD = TRIBUTE_MECHANIC_TILE_PORTRAIT_CROPPED_DIMENSION_X / TRIBUTE_MECHANIC_TILE_PORTRAIT_DIMENSION_X * 0.5
local TRIBUTE_MECHANIC_TILE_PORTRAIT_HALF_Y_COORD = TRIBUTE_MECHANIC_TILE_PORTRAIT_CROPPED_DIMENSION_Y / TRIBUTE_MECHANIC_TILE_PORTRAIT_DIMENSION_Y * 0.5
ZO_TRIBUTE_MECHANIC_TILE_PORTRAIT_BOTTOM_COORD = TRIBUTE_MECHANIC_TILE_PORTRAIT_CENTER_Y_COORD + TRIBUTE_MECHANIC_TILE_PORTRAIT_HALF_Y_COORD
ZO_TRIBUTE_MECHANIC_TILE_PORTRAIT_TOP_COORD = TRIBUTE_MECHANIC_TILE_PORTRAIT_CENTER_Y_COORD - TRIBUTE_MECHANIC_TILE_PORTRAIT_HALF_Y_COORD
ZO_TRIBUTE_MECHANIC_TILE_PORTRAIT_LEFT_COORD = TRIBUTE_MECHANIC_TILE_PORTRAIT_CENTER_X_COORD - TRIBUTE_MECHANIC_TILE_PORTRAIT_HALF_X_COORD
ZO_TRIBUTE_MECHANIC_TILE_PORTRAIT_RIGHT_COORD = TRIBUTE_MECHANIC_TILE_PORTRAIT_CENTER_X_COORD + TRIBUTE_MECHANIC_TILE_PORTRAIT_HALF_X_COORD
local PER_HISTORY_ENTRY_DELAY_MS = 375
local MECHANIC_TILE_ANIMATIONS =
{
    FOCUS_TILE =
    {
        durationMS = 150,
    },
    NEW_RESOLVED_TILE =
    {
        durationMS = 250,
    },
    NEW_UNRESOLVED_TILE =
    {
        durationMS = 250,
    },
    RESOLVE_TILE =
    {
        durationMS = 125,
    },
}
local g_BounceEase = ZO_GenerateCubicBezierEase(0.31, 1.2, 0.83, 1.1)
local QUEUE_MECHANIC_ENTRY_TYPE_CARD = 1
local QUEUE_MECHANIC_ENTRY_TYPE_PATRON = 2
----------------------------
-- ZO_TributeMechanicTile --
----------------------------
ZO_TributeMechanicTile = ZO_PooledObject:Subclass()
function ZO_TributeMechanicTile:Initialize(control)
    self.control = control
    self.timelines = {}
    self:Reset()
end
function ZO_TributeMechanicTile:InitializeControls()
    self.containerControl = self.control:GetNamedChild("Container")
    self.backdropTexture = self.control:GetNamedChild("Backdrop")
    self.mechanicControl = self.containerControl:GetNamedChild("Mechanic")
    self.mechanicFrameTexture = self.mechanicControl:GetNamedChild("Frame")
    self.mechanicTypeIconTexture = self.mechanicControl:GetNamedChild("TypeIcon")
    self.mechanicQuantityLabel = self.mechanicControl:GetNamedChild("Quantity")
    self.portraitTexture = self.containerControl:GetNamedChild("Portrait")
    self.portraitFrameTexture = self.portraitTexture:GetNamedChild("Frame")
end
function ZO_TributeMechanicTile:GetControl()
    return self.control
end
function ZO_TributeMechanicTile:GetControlDimensions()
    return self.control:GetDimensions()
end
function ZO_TributeMechanicTile:GetIconTextureFile()
    return GetTributeMechanicIconPath(self.mechanicType, self.param1, self.param2, self.param3)
end
function ZO_TributeMechanicTile:GetQuantity()
    return self.quantity
end
function ZO_TributeMechanicTile:SetQuantity(quantity)
    self.quantity = quantity
    local quantityString = quantity
    if quantity == 0 and not self.isResolved then
        quantityString = GetString(SI_TRIBUTE_MECHANIC_ANY_QUANTITY_SYMBOL)
    end
    self.mechanicQuantityLabel:SetText(quantityString)
end
function ZO_TributeMechanicTile:IsLocalPlayerOwner()
    return self.isLocalPlayerOwner
end
function ZO_TributeMechanicTile:SetPredecessorTileControl(control)
    self.predecessorTileControl = control
end
function ZO_TributeMechanicTile:PlayAnimation(animation, offsetMS, reversePlayback, retainAnimation)
    local timeline = self.timelines[animation]
    if not timeline then
        timeline = TRIBUTE_POOL_MANAGER:GetMechanicTileAnimationPool():AcquireObject(self, animation)
        self.timelines[animation] = timeline
    end
    local animationControl = timeline:GetFirstAnimation()
    local durationMS = animation.durationMS
    animationControl:SetDuration(durationMS)
    timeline:SetAllAnimationOffsets(offsetMS or 0)
    timeline.retainAnimation = retainAnimation
    timeline.reversePlayback = reversePlayback
    if reversePlayback then
        timeline:PlayBackward()
    else
        timeline:PlayForward()
    end
end
function ZO_TributeMechanicTile:ReleaseAnimation(animation)
    local timeline = self.timelines[animation]
    if timeline then
        self:ReleaseTimeline(animation, timeline)
    end
end
function ZO_TributeMechanicTile:ReleaseTimeline(animation, timeline)
    timeline.object = nil
    timeline:PlayInstantlyToStart()
    TRIBUTE_POOL_MANAGER:GetMechanicTileAnimationPool():ReleaseObject(timeline.key)
    self.timelines[animation] = nil
end
function ZO_TributeMechanicTile:ReleaseTimelines()
    for animation, timeline in pairs(self.timelines) do
        self:ReleaseTimeline(animation, timeline)
    end
end
function ZO_TributeMechanicTile:Reset()
    self.isResolved = nil
    self.mechanicIndex = nil
    self.mechanicType = nil
    self.param1 = nil
    self.param2 = nil
    self.param3 = nil
    self.triggerId = nil
    self.predecessorTileControl = nil
    self.quantity = nil
end
function ZO_TributeMechanicTile:Resolve(animationOffsetMS)
    self.isResolved = true
    self:PlayAnimation(MECHANIC_TILE_ANIMATIONS.RESOLVE_TILE, animationOffsetMS)
end
function ZO_TributeMechanicTile:SetPosition(offsetX, offsetY)
    local control = self.control
    if offsetX then
        local valid, point, relativeTo, relativePoint = control:GetAnchor(0)
        control:SetAnchor(point, relativeTo, relativePoint, offsetX, nil, ANCHOR_CONSTRAINS_X)
    end
    if offsetY then
        local valid, point, relativeTo, relativePoint = control:GetAnchor(1)
        control:SetAnchor(point, relativeTo, relativePoint, nil, offsetY, ANCHOR_CONSTRAINS_Y)
    end
end
function ZO_TributeMechanicTile:Show(animationOffsetMS, isResolved)
    if isResolved then
        self.isResolved = true
        self:PlayAnimation(MECHANIC_TILE_ANIMATIONS.NEW_RESOLVED_TILE, animationOffsetMS)
    else
        self:PlayAnimation(MECHANIC_TILE_ANIMATIONS.NEW_UNRESOLVED_TILE, animationOffsetMS)
    end
end
function ZO_TributeMechanicTile:OnCursorEnter()
    -- TODO Tribute: Consider highlighting the card instance on the table as well? Would require an exception for non-top-of-stack cards or a different state altogether.
end
function ZO_TributeMechanicTile:OnCursorExit()
end
function ZO_TributeMechanicTile:OnMouseEnter()
    if not IsInGamepadPreferredMode() then
        self:ShowPopupAndTooltip()
    end
end
function ZO_TributeMechanicTile:OnTimelineStop(timeline, completedPlaying)
    if timeline.object and not timeline.retainAnimation then
        if (not timeline.reversePlayback and completedPlaying) or (timeline.reversePlayback and not completedPlaying) then
            self.timelines[timeline] = nil
            TRIBUTE_POOL_MANAGER:GetMechanicTileAnimationPool():ReleaseObject(timeline.key)
        end
    end
end
function ZO_TributeMechanicTile:OnTimelineUpdate(timeline, progress)
    local animation = timeline.animation
    if animation == MECHANIC_TILE_ANIMATIONS.NEW_RESOLVED_TILE or animation == MECHANIC_TILE_ANIMATIONS.NEW_UNRESOLVED_TILE then
        local quadraticProgress = ZO_EaseOutQuadratic(progress)
        local control = self.control
        control:SetAlpha(quadraticProgress)
        local bouncedProgress = g_BounceEase(progress)
        local offsetX = zo_floor(ZO_TRIBUTE_MECHANIC_TILE_UI_WIDTH * bouncedProgress) - 15
        self:SetPosition(offsetX)
        if animation == MECHANIC_TILE_ANIMATIONS.NEW_UNRESOLVED_TILE then
            self.containerControl:SetScale(zo_lerp(0.2, 1.15, bouncedProgress))
            self:SetSaturation(progress)
        else
            self.containerControl:SetScale(zo_lerp(1.5, 1, bouncedProgress))
        end
        local predecessorControl = self.predecessorTileControl
        if predecessorControl then
            local predecessorProgress = zo_clamp(progress * 1.25, 0, 1)
            local offsetY = zo_floor(zo_lerp(0, ZO_TRIBUTE_MECHANIC_TILE_UI_HEIGHT, ZO_EaseOutQuadratic(predecessorProgress)))
            local CURRENT_OFFSET_X = nil
            predecessorControl.object:SetPosition(CURRENT_OFFSET_X, offsetY)
        end
    elseif animation == MECHANIC_TILE_ANIMATIONS.FOCUS_TILE then
        local minSaturation = self.isResolved and 0 or 1
        self:SetSaturation(zo_max(progress, minSaturation))
    elseif animation == MECHANIC_TILE_ANIMATIONS.RESOLVE_TILE then
        self:SetSaturation(1 - progress)
        local bouncedProgress = g_BounceEase(progress)
        self.containerControl:SetScale(zo_lerp(1.15, 1, bouncedProgress))
    end
end
--Functions that must be implemented by a child class
ZO_TributeMechanicTile.Setup = ZO_TributeMechanicTile:MUST_IMPLEMENT()
ZO_TributeMechanicTile.SetSaturation = ZO_TributeMechanicTile:MUST_IMPLEMENT()
ZO_TributeMechanicTile.ShowPopupAndTooltip = ZO_TributeMechanicTile:MUST_IMPLEMENT()
ZO_TributeMechanicTile.HidePopupAndTooltip = ZO_TributeMechanicTile:MUST_IMPLEMENT()
--------------------------------
-- ZO_TributeMechanicCardTile --
--------------------------------
ZO_TributeMechanicCardTile = ZO_TributeMechanicTile:Subclass()
function ZO_TributeMechanicCardTile:InitializeControls()
    ZO_TributeMechanicTile.InitializeControls(self)
    self.patronTexture = self.containerControl:GetNamedChild("Patron")
end
function ZO_TributeMechanicCardTile:GetCardAndPatronDef()
    local cardDefId, patronDefId = GetTributeCardInstanceDefIds(self.cardInstanceId)
    return cardDefId, patronDefId
end
function ZO_TributeMechanicCardTile:Reset()
    ZO_TributeMechanicTile.Reset(self)
    self.cardInstanceId = nil
    self.comboNumber = nil
    self.mechanicActivationSource = nil
end
-- Overridden from base
function ZO_TributeMechanicCardTile:Setup(parentControl, cardInstanceId, mechanicActivationSource, mechanicIndex, isLocalPlayerOwner, quantity, isResolved)
    self.cardInstanceId = cardInstanceId
    self.isLocalPlayerOwner = isLocalPlayerOwner
    self.mechanicIndex = mechanicIndex
    self.mechanicActivationSource = mechanicActivationSource
    self.isResolved = isResolved
    self:SetQuantity(quantity)
    local cardDefId, patronDefId = self:GetCardAndPatronDef()
    local cardData = ZO_TributeCardData:New(patronDefId, cardDefId)
    local patronData = cardData:GetPatronData()
    local unusedQuantity = nil
    self.mechanicType, unusedQuantity, self.comboNumber, self.param1, self.param2, self.param3, self.triggerId = cardData:GetMechanicInfo(self.mechanicActivationSource, self.mechanicIndex)
    local isOnTrigger = self.triggerId ~= 0
    local IS_SMALL = true
    local isSingleDigitContainer = quantity < 10
    local IS_POSITIVE = false
    local mechanicControlTemplate, mechanicFrameTextureName = ZO_GetTributeMechanicFrameInfo(IS_SMALL, isSingleDigitContainer, mechanicActivationSource, isOnTrigger, IS_POSITIVE)
    ApplyTemplateToControl(self.mechanicControl, mechanicControlTemplate)
    self.mechanicFrameTexture:SetTexture(mechanicFrameTextureName)
    self.mechanicTypeIconTexture:SetTexture(self:GetIconTextureFile())
    if isOnTrigger then
        self.patronTexture:SetHidden(true)
    else
        local suitAtlasImage, suitAtlasGlowImage = patronData:GetSuitAtlas(cardData:GetCardType())
        self.patronTexture:SetTexture(suitAtlasImage)
        self.patronTexture:SetHidden(false)
    end
    local portraitImage = cardData:GetPortrait()
    self.portraitTexture:SetTexture(portraitImage)
    self:SetSaturation(0)
    self.containerControl:SetScale(1)
    self.control:SetParent(parentControl)
    self.control:SetHidden(false)
end
-- Overridden from base
function ZO_TributeMechanicCardTile:SetSaturation(saturation)
    local quadraticEase = ZO_EaseInQuadratic(saturation)
    self.backdropTexture:SetAlpha(zo_lerp(0, 0.65, quadraticEase))
    local desaturation = zo_lerp(0.5, 0, quadraticEase)
    self.portraitFrameTexture:SetDesaturation(desaturation)
    self.mechanicFrameTexture:SetDesaturation(desaturation)
    self.mechanicTypeIconTexture:SetDesaturation(desaturation)
    self.patronTexture:SetDesaturation(desaturation)
    self.portraitTexture:SetDesaturation(desaturation)
end
-- Overridden from base
function ZO_TributeMechanicCardTile:ShowPopupAndTooltip()
    local isGamepadMode = TRIBUTE:IsInputStyleGamepad()
    local isMouseMode = TRIBUTE:IsInputStyleMouse()
    if not (isGamepadMode or isMouseMode) then
        return
    end
    local cardPopup = TRIBUTE_POOL_MANAGER:AcquireCardByInstanceId(self.cardInstanceId, TRIBUTE_MECHANIC_MANAGER:GetControl(), SPACE_INTERFACE)
    self.cardPopup = cardPopup
    local VERTICAL_MARGIN = 0
    local _, top = self.control:GetCenter()
    cardPopup:ShowAsPopup(ZO_TRIBUTE_MECHANIC_TILE_UI_WIDTH, top, ZO_TRIBUTE_CARD_POPUP_TYPE.MECHANIC)
    cardPopup:SetMechanicGlowHidden(self.mechanicActivationSource, self.mechanicIndex, false)
    if isMouseMode then
        local tooltipControl = ItemTooltip
        InitializeTooltip(tooltipControl, cardPopup:GetControl(), LEFT, HORIZONTAL_MARGIN, VERTICAL_MARGIN, RIGHT)
        tooltipControl:SetTributeCard(cardPopup:GetPatronDefId(), cardPopup:GetCardDefId())
        self.cardTooltipControlKeyboard = tooltipControl
    elseif isGamepadMode then
        local tooltipControl = ZO_TributeCardTooltip_Gamepad_GetControl()
        ZO_TributeCardTooltip_Gamepad_Show(cardPopup, LEFT, cardPopup:GetControl(), RIGHT, HORIZONTAL_MARGIN, VERTICAL_MARGIN)
        self.cardTooltipControlGamepad = tooltipControl
    end
    local OFFSET_MS = 0
    local FORWARD_PLAYBACK = false
    local RETAIN_ANIMATION = true
    self:PlayAnimation(MECHANIC_TILE_ANIMATIONS.FOCUS_TILE, OFFSET_MS, FORWARD_PLAYBACK, RETAIN_ANIMATION)
end
-- Overridden from base
function ZO_TributeMechanicCardTile:HidePopupAndTooltip()
    if self.cardPopup then
        self.cardPopup:ReleaseObject()
        self.cardPopup = nil
        local OFFSET_MS = 0
        local REVERSE_PLAYBACK = true
        self:PlayAnimation(MECHANIC_TILE_ANIMATIONS.FOCUS_TILE, OFFSET_MS, REVERSE_PLAYBACK)
    end
    if self.cardTooltipControlGamepad then
        self.cardTooltipControlGamepad = nil
    end
    if self.cardTooltipControlKeyboard then
        ClearTooltipImmediately(self.cardTooltipControlKeyboard)
        self.cardTooltipControlKeyboard = nil
    end
end
----------------------------------
-- ZO_TributeMechanicPatronTile --
----------------------------------
ZO_TributeMechanicPatronTile = ZO_TributeMechanicTile:Subclass()
function ZO_TributeMechanicPatronTile:Reset()
    ZO_TributeMechanicTile.Reset(self)
    self.patronDraftId = nil
    self.isPassive = nil
    self.favorState = nil
end
-- Overridden from base
function ZO_TributeMechanicPatronTile:Setup(parentControl, patronDraftId, favorState, isPassive, mechanicIndex, isLocalPlayerOwner, quantity, isResolved)
    self.patronDraftId = patronDraftId
    self.isLocalPlayerOwner = isLocalPlayerOwner
    self.isPassive = isPassive
    self.mechanicIndex = mechanicIndex
    self.favorState = favorState
    self.isResolved = isResolved
    self:SetQuantity(quantity)
    local patronStalls = TRIBUTE:GetPatronStalls()
    local patronData = patronStalls[patronDraftId]:GetDataSource()
    local unusedQuantity = nil
    if isPassive then
        self.mechanicType, unusedQuantity, self.param1, self.param2, self.param3, self.triggerId = patronData:GetPassiveMechanicInfo(self.favorState, self.mechanicIndex)
    else
        self.mechanicType, unusedQuantity, self.param1, self.param2, self.param3 = patronData:GetMechanicInfo(self.favorState, self.mechanicIndex)
        self.triggerId = 0
    end
    --Reuse the card mechanic templates since they look the same
    local IS_SMALL = true
    local isSingleDigitContainer = quantity < 10
    local isOnTrigger = self.triggerId ~= 0
    local IS_POSITIVE = false
    local mechanicControlTemplate, mechanicFrameTextureName = ZO_GetTributeMechanicFrameInfo(IS_SMALL, isSingleDigitContainer, TRIBUTE_MECHANIC_ACTIVATION_SOURCE_ACTIVATION, isOnTrigger, IS_POSITIVE)
    ApplyTemplateToControl(self.mechanicControl, mechanicControlTemplate)
    self.mechanicFrameTexture:SetTexture(mechanicFrameTextureName)
    self.mechanicTypeIconTexture:SetTexture(self:GetIconTextureFile())
    local portraitImage = patronData:GetPatronSmallIcon()
    self.portraitTexture:SetTexture(portraitImage)
    self:SetSaturation(0)
    self.containerControl:SetScale(1)
    self.control:SetParent(parentControl)
    self.control:SetHidden(false)
end
-- Overridden from base
function ZO_TributeMechanicPatronTile:SetSaturation(saturation)
    local quadraticEase = ZO_EaseInQuadratic(saturation)
    self.backdropTexture:SetAlpha(zo_lerp(0, 0.65, quadraticEase))
    local desaturation = zo_lerp(0.5, 0, quadraticEase)
    self.portraitFrameTexture:SetDesaturation(desaturation)
    self.mechanicFrameTexture:SetDesaturation(desaturation)
    self.mechanicTypeIconTexture:SetDesaturation(desaturation)
    self.portraitTexture:SetDesaturation(desaturation)
end
-- Overridden from base
function ZO_TributeMechanicPatronTile:ShowPopupAndTooltip()
    local patronStalls = TRIBUTE:GetPatronStalls()
    local patronData = patronStalls[self.patronDraftId]:GetDataSource()
    local isGamepadMode = TRIBUTE:IsInputStyleGamepad()
    local isMouseMode = TRIBUTE:IsInputStyleMouse()
    if not (isGamepadMode or isMouseMode) then
        return
    end
    local patronPopup = TRIBUTE_MECHANIC_MANAGER:GetPatronPopup()
    self.patronPopup = patronPopup
    local VERTICAL_MARGIN = 0
    local _, top = self.control:GetCenter()
    self.patronPopup:SetAnchor(LEFT, GuiRoot, TOPLEFT, ZO_TRIBUTE_MECHANIC_TILE_UI_WIDTH + ZO_TRIBUTE_MECHANIC_PATRON_POPUP_ADDITIONAL_OFFSET_X, top)
    self.patronPopup:SetTexture(patronData:GetPatronLargeIcon())
    self.patronPopup:SetHidden(false)
    if isMouseMode then
        local HORIZONTAL_MARGIN = -48
        local tooltipControl = ItemTooltip
        InitializeTooltip(tooltipControl, self.patronPopup, LEFT, HORIZONTAL_MARGIN, VERTICAL_MARGIN, RIGHT)
        tooltipControl:SetTributePatronWithFavorState(patronData:GetId(), self.favorState)
        self.patronTooltipControlKeyboard = tooltipControl
    elseif isGamepadMode then
        local tooltipControl = ZO_TributePatronTooltip_Gamepad_GetControl()
        local SUPPRESS_NOT_COLLECTIBLE_WARNING = true
        local HORIZONTAL_MARGIN = -24
        local optionalArgs =
        {
            overrideFavorState = self.favorState,
            suppressNotCollectibleWarning = SUPPRESS_NOT_COLLECTIBLE_WARNING,
        }
        ZO_TributePatronTooltip_Gamepad_Show(patronData, optionalArgs, LEFT, self.patronPopup, RIGHT, HORIZONTAL_MARGIN, VERTICAL_MARGIN)
        self.patronTooltipControlGamepad = tooltipControl
    end
    local OFFSET_MS = 0
    local FORWARD_PLAYBACK = false
    local RETAIN_ANIMATION = true
    self:PlayAnimation(MECHANIC_TILE_ANIMATIONS.FOCUS_TILE, OFFSET_MS, FORWARD_PLAYBACK, RETAIN_ANIMATION)
end
-- Overridden from base
function ZO_TributeMechanicPatronTile:HidePopupAndTooltip()
    if self.patronPopup then
        self.patronPopup:SetHidden(true)
        self.patronPopup = nil
        local OFFSET_MS = 0
        local REVERSE_PLAYBACK = true
        self:PlayAnimation(MECHANIC_TILE_ANIMATIONS.FOCUS_TILE, OFFSET_MS, REVERSE_PLAYBACK)
    end
    if self.patronTooltipControlGamepad then
        self.patronTooltipControlGamepad = nil
    end
    if self.patronTooltipControlKeyboard then
        ClearTooltipImmediately(self.patronTooltipControlKeyboard)
        self.patronTooltipControlKeyboard = nil
    end
end
--------------------------------
-- Tribute Triggered Mechanic --
--------------------------------
ZO_TributeTriggeredMechanic = ZO_InitializingObject:Subclass()
function ZO_TributeTriggeredMechanic:Initialize(mechanicIndex, quantity, isResolved)
    self.mechanicIndex = mechanicIndex
    self.isPresenting = false
    self.isResolved = isResolved
    self.quantity = quantity
end
function ZO_TributeTriggeredMechanic:GetQuantity()
    return self.quantity
end
function ZO_TributeTriggeredMechanic:SetQuantity(quantity)
    self.quantity = quantity
end
function ZO_TributeTriggeredMechanic:IsPresenting()
    return self.isPresenting
end
function ZO_TributeTriggeredMechanic:SetIsPresenting(isPresenting)
    self.isPresenting = isPresenting
end
function ZO_TributeTriggeredMechanic:IsResolved()
    return self.isResolved
end
function ZO_TributeTriggeredMechanic:SetIsResolved(isResolved)
    self.isResolved = isResolved
end
function ZO_TributeTriggeredMechanic:GetMechanicIndex()
    return self.mechanicIndex
end
ZO_TributeTriggeredMechanic.Equals = ZO_TributeTriggeredMechanic:MUST_IMPLEMENT()
-------------------------------------
-- Tribute Triggered Card Mechanic --
-------------------------------------
ZO_TributeTriggeredCardMechanic = ZO_TributeTriggeredMechanic:Subclass()
function ZO_TributeTriggeredCardMechanic:Initialize(mechanicActivationSource, mechanicIndex, quantity, isResolved)
    ZO_TributeTriggeredMechanic.Initialize(self, mechanicIndex, quantity, isResolved)
    self.mechanicActivationSource = mechanicActivationSource
end
function ZO_TributeTriggeredCardMechanic:Equals(mechanicActivationSource, mechanicIndex)
    return self.mechanicActivationSource == mechanicActivationSource and self.mechanicIndex == mechanicIndex
end
function ZO_TributeTriggeredCardMechanic:GetMechanicActivationSourceAndIndex()
    return self.mechanicActivationSource, self.mechanicIndex
end
---------------------------------------
-- Tribute Triggered Patron Mechanic --
---------------------------------------
ZO_TributeTriggeredPatronMechanic = ZO_TributeTriggeredMechanic:Subclass()
function ZO_TributeTriggeredPatronMechanic:Initialize(favorState, isPassive, mechanicIndex, quantity, isResolved)
    ZO_TributeTriggeredMechanic.Initialize(self, mechanicIndex, quantity, isResolved)
    self.favorState = favorState
    self.isPassive = isPassive
end
function ZO_TributeTriggeredPatronMechanic:Equals(favorState, isPassive, mechanicIndex)
    return self.favorState == favorState and self.isPassive == isPassive and self.mechanicIndex == mechanicIndex
end
function ZO_TributeTriggeredPatronMechanic:IsPassive()
    return self.isPassive
end
function ZO_TributeTriggeredPatronMechanic:GetFavorState()
    return self.favorState
end
----------------------------------
-- Tribute Mechanic Queue Entry --
----------------------------------
ZO_TributeMechanicQueueEntry = ZO_InitializingObject:Subclass()
function ZO_TributeMechanicQueueEntry:Initialize(isLocalPlayerOwner)
    self.isLocalPlayerOwner = isLocalPlayerOwner
    self.triggeredMechanics = {}
end
function ZO_TributeMechanicQueueEntry:AddTriggeredMechanic(triggeredMechanic)
    table.insert(self.triggeredMechanics, triggeredMechanic)
end
function ZO_TributeMechanicQueueEntry:GetTriggeredMechanics()
    return self.triggeredMechanics
end
function ZO_TributeMechanicQueueEntry:IsLocalPlayerOwner()
    return self.isLocalPlayerOwner
end
function ZO_TributeMechanicQueueEntry:IsPresenting()
    return self.isPresenting
end
function ZO_TributeMechanicQueueEntry:SetIsPresenting(isPresenting)
    self.isPresenting = isPresenting
end
ZO_TributeMechanicQueueEntry.GetEntryType = ZO_TributeMechanicQueueEntry:MUST_IMPLEMENT()
ZO_TributeMechanicQueueEntry.FindTriggeredMechanic = ZO_TributeMechanicQueueEntry:MUST_IMPLEMENT()
---------------------------------------
-- Tribute Card Mechanic Queue Entry --
---------------------------------------
ZO_TributeCardMechanicQueueEntry = ZO_TributeMechanicQueueEntry:Subclass()
function ZO_TributeCardMechanicQueueEntry:Initialize(cardInstanceId, isLocalPlayerOwner)
    ZO_TributeMechanicQueueEntry.Initialize(self, isLocalPlayerOwner)
    self.cardInstanceId = cardInstanceId
    self.cardDefId, self.patronDefId = GetTributeCardInstanceDefIds(cardInstanceId)
end
function ZO_TributeCardMechanicQueueEntry:FindTriggeredMechanic(mechanicActivationSource, mechanicIndex)
    for _, triggeredMechanic in ipairs(self.triggeredMechanics) do
        if triggeredMechanic:Equals(mechanicActivationSource, mechanicIndex) then
            return triggeredMechanic
        end
    end
    return nil
end
function ZO_TributeCardMechanicQueueEntry:GetCardInstanceId()
    return self.cardInstanceId
end
function ZO_TributeCardMechanicQueueEntry:GetCardDefId()
    return self.cardDefId
end
function ZO_TributeCardMechanicQueueEntry:GetPatronDefId()
    return self.patronDefId
end
function ZO_TributeCardMechanicQueueEntry:GetEntryType()
    return QUEUE_MECHANIC_ENTRY_TYPE_CARD
end
-----------------------------------------
-- Tribute Patron Mechanic Queue Entry --
-----------------------------------------
ZO_TributePatronMechanicQueueEntry = ZO_TributeMechanicQueueEntry:Subclass()
function ZO_TributePatronMechanicQueueEntry:Initialize(patronDraftId, isLocalPlayerOwner)
    ZO_TributeMechanicQueueEntry.Initialize(self, isLocalPlayerOwner)
    self.patronDraftId = patronDraftId
end
function ZO_TributePatronMechanicQueueEntry:FindTriggeredMechanic(favorState, isPassive, mechanicIndex)
    for _, triggeredMechanic in ipairs(self.triggeredMechanics) do
        if triggeredMechanic:Equals(favorState, isPassive, mechanicIndex) then
            return triggeredMechanic
        end
    end
    return nil
end
function ZO_TributePatronMechanicQueueEntry:GetPatronDraftId()
    return self.patronDraftId
end
function ZO_TributePatronMechanicQueueEntry:GetEntryType()
    return QUEUE_MECHANIC_ENTRY_TYPE_PATRON
end
------------------------------
-- Tribute Mechanic Manager --
------------------------------
ZO_TributeMechanic_Manager = ZO_InitializingCallbackObject:Subclass()
function ZO_TributeMechanic_Manager:AddTileObject(tileObject, isResolved)
    local tileControl = tileObject:GetControl()
    table.insert(self.history, tileObject)
    tileControl:ClearAnchors()
    tileControl:SetAnchor(LEFT, nil, nil, -tileControl:GetWidth(), nil, ANCHOR_CONSTRAINS_X)
    tileControl:SetAnchor(CENTER, self.scrollChildControl, TOP, nil, ZO_TRIBUTE_MECHANIC_TILE_UI_HEIGHT * 0.5 + 10, ANCHOR_CONSTRAINS_Y)
    tileControl:SetScale(1)
    if self.headAnchorControl then
        self.headAnchorControl:SetAnchor(CENTER, tileControl, CENTER, nil, nil, ANCHOR_CONSTRAINS_Y)
        tileObject:SetPredecessorTileControl(self.headAnchorControl)
    end
    self.headAnchorControl = tileControl
    local NO_ANIMATION_OFFSET_MS = 0
    tileObject:Show(NO_ANIMATION_OFFSET_MS, isResolved)
    if self:CanScrollToTop() then
        self:ScrollToTop()
    end
    self:SetHeadingHidden(false)
    self:SetLastMechanicTile(tileObject)
end
function ZO_TributeMechanic_Manager:AddCardMechanicHistory(cardInstanceId, mechanicActivationSource, mechanicIndex, isLocalPlayerOwner, quantity, isResolved)
    local controlPool = isLocalPlayerOwner and TRIBUTE_POOL_MANAGER:GetMechanicCardTilePlayerPool() or TRIBUTE_POOL_MANAGER:GetMechanicCardTileOpponentPool()
    local tileObject = controlPool:AcquireObject(self.scrollChildControl, cardInstanceId, mechanicActivationSource, mechanicIndex, isLocalPlayerOwner, quantity, isResolved)
    
    self:AddTileObject(tileObject, isResolved)
    if mechanicActivationSource == TRIBUTE_MECHANIC_ACTIVATION_SOURCE_COMBO then
        PlaySound(SOUNDS.TRIBUTE_COMBO_TRIGGERED)
    elseif mechanicActivationSource == TRIBUTE_MECHANIC_ACTIVATION_SOURCE_ACTIVATION then
        PlaySound(SOUNDS.TRIBUTE_TRIGGER_TRIGGERED)
    end
    return tileObject
end
function ZO_TributeMechanic_Manager:AddPatronMechanicHistory(patronDraftId, favorState, isPassive, mechanicIndex, isLocalPlayerOwner, quantity, isResolved)
    local controlPool = isLocalPlayerOwner and TRIBUTE_POOL_MANAGER:GetMechanicPatronTilePlayerPool() or TRIBUTE_POOL_MANAGER:GetMechanicPatronTileOpponentPool()
    local tileObject = controlPool:AcquireObject(self.scrollChildControl, patronDraftId, favorState, isPassive, mechanicIndex, isLocalPlayerOwner, quantity, isResolved)
    self:AddTileObject(tileObject, isResolved)
    if isPassive then
        PlaySound(SOUNDS.TRIBUTE_PATRON_PASSIVE_TRIGGERED)
    else
        internalassert(false, "A new sound hook needs to be added for non passive patron mechanics")
    end
    return tileObject
end
do
    local LOWER_VERTICAL_SCROLL_MARGIN = 20
    function ZO_TributeMechanic_Manager:AdjustVerticalScrollOffset(offset)
        local _, currentVerticalOffset = self.scrollControl:GetScrollOffsets()
        local _, currentHeight = self.scrollControl:GetScrollExtents()
        -- Include a small margin for the lower vertical scroll boundary
        -- to allow the bottommost tile to fully scroll into view.
        local scrollMargin = 0
        if currentHeight > 0 then
            scrollMargin = LOWER_VERTICAL_SCROLL_MARGIN
        end
        local maxHeight = zo_max(0, currentHeight + scrollMargin)
        local newVerticalOffset = zo_clamp(currentVerticalOffset + offset, 0, maxHeight)
        self.scrollControl:SetVerticalScroll(newVerticalOffset)
        self:UpdateScrollFadeGradient()
    end
end
function ZO_TributeMechanic_Manager:CanScrollToTop()
    return not self.isScrollOffsetLocked
end
function ZO_TributeMechanic_Manager:GetControl()
    return self.control
end
function ZO_TributeMechanic_Manager:GetLastMechanicTile()
    return self.lastMechanicTile
end
function ZO_TributeMechanic_Manager:SetLastMechanicTile(mechanicTile)
    self.lastMechanicTile = mechanicTile
end
function ZO_TributeMechanic_Manager:Initialize(control)
    self.control = control
    control.object = self
    self.continuousScrollingDirection = 0
    self.gameState = TRIBUTE_GAME_FLOW_STATE_INACTIVE
    self.gamepadCursorX, self.gamepadCursorY = 0, 0
    self.isContinuousScrollingEnabled = false
    self.mouseCursorX, self.mouseCursorY = 0, 0
    self.history = {}
    self.queue = {}
    self:Reset()
end
function ZO_TributeMechanic_Manager:InitializeControls()
    local control = self.control
    self.headingLabel = control:GetNamedChild("Heading")
    self.showHeadingTimeline = ANIMATION_MANAGER:CreateTimelineFromVirtual("ZO_TributeMechanicHistory_ShowTimeline", self.headingLabel)
    self:SetHeadingHidden(true)
    self.scrollControl = control:GetNamedChild("Scroll")
    self.scrollChildControl = self.scrollControl:GetNamedChild("Child")
    self.patronPopup = control:GetNamedChild("PatronPopup")
    local KEYBOARD_PLATFORM_STYLE =
    {
        headingLabel = "ZoFontWinH3",
    }
    local GAMEPAD_PLATFORM_STYLE =
    {
        headingLabel = "ZoFontGamepadBold27",
    }
    local function ApplyPlatformStyle(style)
        self.headingLabel:SetFont(style.headingLabel)
    end
    self.platformStyle = ZO_PlatformStyle:New(function(style) ApplyPlatformStyle(style) end, KEYBOARD_PLATFORM_STYLE, GAMEPAD_PLATFORM_STYLE)
end
function ZO_TributeMechanic_Manager:InitializeEvents()
    local function OnCardMechanicResolutionStateChanged(_, ...)
    end
    EVENT_MANAGER:RegisterForEvent("ZO_TributeMechanic_Manager", EVENT_TRIBUTE_CARD_MECHANIC_RESOLUTION_STATE_CHANGED, OnCardMechanicResolutionStateChanged)
    local function OnPatronMechanicResolutionStateChanged(_, ...)
    end
    EVENT_MANAGER:RegisterForEvent("ZO_TributeMechanic_Manager", EVENT_TRIBUTE_PATRON_MECHANIC_RESOLUTION_STATE_CHANGED, OnPatronMechanicResolutionStateChanged)
    local function OnGameStateChanged(_, ...)
        self:OnGameStateChanged(...)
    end
    EVENT_MANAGER:RegisterForEvent("ZO_TributeMechanic_Manager", EVENT_TRIBUTE_GAME_FLOW_STATE_CHANGE, OnGameStateChanged)
    local function OnPlayerTurnStarted(_, ...)
        self:OnPlayerTurnStarted(...)
    end
    EVENT_MANAGER:RegisterForEvent("ZO_TributeMechanic_Manager", EVENT_TRIBUTE_PLAYER_TURN_STARTED, OnPlayerTurnStarted)
    local function OnScrollExtentsChanged(...)
        self:OnScrollExtentsChanged()
    end
    self.scrollControl:SetHandler("OnScrollExtentsChanged", OnScrollExtentsChanged)
end
function ZO_TributeMechanic_Manager:OnScrollExtentsChanged()
    local _, currentHeight = self.scrollControl:GetScrollExtents()
    local previousHeight = self.previousScrollHeight or currentHeight
    self.previousScrollHeight = currentHeight
    if self.isScrollOffsetLocked then
        local delta = currentHeight - previousHeight
        if delta ~= 0 then
            self:AdjustVerticalScrollOffset(delta)
        end
    end
end
function ZO_TributeMechanic_Manager:IsLocalPlayersTurn()
    return self.isLocalPlayersTurn == true
end
function ZO_TributeMechanic_Manager:QueueCardMechanic(cardInstanceId, isLocalPlayerOwner, mechanicActivationSource, mechanicIndex, quantity, isResolved)
    if mechanicActivationSource ~= TRIBUTE_MECHANIC_ACTIVATION_SOURCE_COMBO then
        -- Only Combo Mechanic and Trigger activation tiles should appear in the history.
        local cardDefId = GetTributeCardInstanceDefIds(cardInstanceId)
        local triggerId = select(7, GetTributeCardMechanicInfo(cardDefId, mechanicActivationSource, mechanicIndex))
        if triggerId == 0 then
            return
        end
    end
    for _, queueEntry in ipairs(self.queue) do
        -- Queue unique mechanics for the same player and card instance together.
        if queueEntry:GetEntryType() == QUEUE_MECHANIC_ENTRY_TYPE_CARD and cardInstanceId == queueEntry:GetCardInstanceId() and isLocalPlayerOwner == queueEntry:IsLocalPlayerOwner() then
            local triggeredMechanic = queueEntry:FindTriggeredMechanic(mechanicActivationSource, mechanicIndex)
            if triggeredMechanic then
                -- This triggered mechanic has already been queued in this queue entry.
                if isResolved and not triggeredMechanic:IsResolved() then
                    -- This triggered mechanic was previously unresolved and can now be resolved with its final quantity.
                    triggeredMechanic:SetIsResolved(true)
                    triggeredMechanic:SetQuantity(quantity)
                    return
                end
            elseif not queueEntry:IsPresenting() then
                -- This queue entry has not yet begun presentation; append this triggered mechanic to the entry.
                triggeredMechanic = ZO_TributeTriggeredCardMechanic:New(mechanicActivationSource, mechanicIndex, quantity, isResolved)
                queueEntry:AddTriggeredMechanic(triggeredMechanic)
                return
            end
        end
    end
    -- This triggered mechanic could not be added to any existing queue entries; create a new entry and add this mechanic to the entry.
    local newQueueEntry = ZO_TributeCardMechanicQueueEntry:New(cardInstanceId, isLocalPlayerOwner)
    local triggeredMechanic = ZO_TributeTriggeredCardMechanic:New(mechanicActivationSource, mechanicIndex, quantity, isResolved)
    newQueueEntry:AddTriggeredMechanic(triggeredMechanic)
    table.insert(self.queue, newQueueEntry)
end
function ZO_TributeMechanic_Manager:QueuePatronMechanic(patronDraftId, isLocalPlayerOwner, favorState, isPassive, mechanicIndex, quantity, isResolved)
    --For now, only passive patron trigger mechanics should appear in the tracker
    if not isPassive then 
        return
    else
        local patronStalls = TRIBUTE:GetPatronStalls()
        local patronData = patronStalls[patronDraftId]:GetDataSource()
        local triggerId = select(6, GetTributePatronPassiveMechanicInfo(patronData:GetId(), favorState, mechanicIndex)) 
        if triggerId == 0 then
            return
        end
    end
    for _, queueEntry in ipairs(self.queue) do
        -- Queue unique mechanics for the same player and patron together.
        if queueEntry:GetEntryType() == QUEUE_MECHANIC_ENTRY_TYPE_PATRON and patronDraftId == queueEntry:GetPatronDraftId() and isLocalPlayerOwner == queueEntry:IsLocalPlayerOwner() then
            local triggeredMechanic = queueEntry:FindTriggeredMechanic(favorState, isPassive, mechanicIndex)
            if triggeredMechanic then
                -- This triggered mechanic has already been queued in this queue entry.
                if isResolved and not triggeredMechanic:IsResolved() then
                    -- This triggered mechanic was previously unresolved and can now be resolved with its final quantity.
                    triggeredMechanic:SetIsResolved(true)
                    triggeredMechanic:SetQuantity(quantity)
                    return
                end
            elseif not queueEntry:IsPresenting() then
                -- This queue entry has not yet begun presentation; append this triggered mechanic to the entry.
                triggeredMechanic = ZO_TributeTriggeredPatronMechanic:New(favorState, isPassive, mechanicIndex, quantity, isResolved)
                queueEntry:AddTriggeredMechanic(triggeredMechanic)
                return
            end
        end
    end
    -- This triggered mechanic could not be added to any existing queue entries; create a new entry and add this mechanic to the entry.
    local newQueueEntry = ZO_TributePatronMechanicQueueEntry:New(patronDraftId, isLocalPlayerOwner)
    local triggeredMechanic = ZO_TributeTriggeredPatronMechanic:New(favorState, isPassive, mechanicIndex, quantity, isResolved)
    newQueueEntry:AddTriggeredMechanic(triggeredMechanic)
    table.insert(self.queue, newQueueEntry)
end
function ZO_TributeMechanic_Manager:Reset()
    -- Order matters
    self:ResetHistory()
    self:ResetQueue()
end
function ZO_TributeMechanic_Manager:ResetHistory()
    self.headAnchorControl = nil
    self:SetHeadingHidden(true)
    TRIBUTE_POOL_MANAGER:GetMechanicCardTilePlayerPool():ReleaseAllObjects()
    TRIBUTE_POOL_MANAGER:GetMechanicCardTileOpponentPool():ReleaseAllObjects()
    TRIBUTE_POOL_MANAGER:GetMechanicPatronTilePlayerPool():ReleaseAllObjects()
    TRIBUTE_POOL_MANAGER:GetMechanicPatronTileOpponentPool():ReleaseAllObjects()
    local FORCE = true
    self:ScrollToTop(FORCE)
end
function ZO_TributeMechanic_Manager:ResetQueue()
    self.nextQueueUpdateTimeMS = 0
end
function ZO_TributeMechanic_Manager:SetContinuousScrollingEnabled(enabled, direction)
    if enabled == self.isContinuousScrollingEnabled then
        return
    end
    -- Both a direction and an enabled flag are maintained in order to allow an
    -- ongoing continous scroll operation to be cancelled with the mouse wheel.
    self.isContinuousScrollingEnabled = enabled
    self.continuousScrollingDirection = enabled and direction or 0
end
function ZO_TributeMechanic_Manager:SetHeadingHidden(hidden)
    if hidden then
        self.showHeadingTimeline:PlayInstantlyToStart()
    else
        self.showHeadingTimeline:PlayForward()
    end
end
function ZO_TributeMechanic_Manager:SetVerticalScrollOffsetLocked(locked)
    if locked == self.isScrollOffsetLocked then
        return
    end
    self.isScrollOffsetLocked = locked
    self:UpdateCursors()
end
function ZO_TributeMechanic_Manager:ScrollToTop(force)
    if force or self:CanScrollToTop() then
        self.scrollControl:SetVerticalScroll(0)
    end
end
function ZO_TributeMechanic_Manager:UpdateCursors()
    local minX, minY, maxX, maxY = self.scrollControl:GetScreenRect()
    local x, y = nil, nil
    if self.isGamepadCursorActive then
        -- Check whether the Gamepad cursor is over the history scroll region.
        x, y = self.gamepadCursorX, self.gamepadCursorY
        if x and y then
            if x < minX or x > maxX or y < minY or y > maxY then
                x, y = nil, nil
            end
        end
    end
    if not x then
        -- Check whether the Mouse cursor is over the history scroll region.
        x, y = self.mouseCursorX, self.mouseCursorY
        if x < minX or x > maxX or y < minY or y > maxY then
            self:SetContinuousScrollingEnabled(false)
            self:SetVerticalScrollOffsetLocked(false)
            return
        end
    end
    local topOffset = y - minY
    if topOffset <= ZO_TRIBUTE_MECHANIC_CONTINUOUS_SCROLL_REGION_HEIGHT then
        local DIRECTION = -1
        self:SetContinuousScrollingEnabled(true, DIRECTION)
    else
        local bottomOffset = maxY - y
        if bottomOffset <= ZO_TRIBUTE_MECHANIC_CONTINUOUS_SCROLL_REGION_HEIGHT then
            local DIRECTION = 1
            self:SetContinuousScrollingEnabled(true, DIRECTION)
        else
            self:SetContinuousScrollingEnabled(false)
        end
    end
end
function ZO_TributeMechanic_Manager:UpdateMouseCursor()
    local x, y = GetUIMousePosition()
    if x ~= self.mouseCursorX or y ~= self.mouseCursorY then
        self.mouseCursorX, self.mouseCursorY = x, y
        self:UpdateCursors()
    end
end
function ZO_TributeMechanic_Manager:UpdateScrollFadeGradient()
    local USE_FADE_GRADIENT = true
    ZO_UpdateScrollFade(USE_FADE_GRADIENT, self.scrollControl, ZO_SCROLL_DIRECTION_VERTICAL, ZO_TRIBUTE_MECHANIC_HISTORY_FADE_GRADIENT_HEIGHT)
end
function ZO_TributeMechanic_Manager:OnGamepadCursorPositionChanged(x, y)
    self.gamepadCursorX, self.gamepadCursorY = x, y
    self:UpdateCursors()
end
function ZO_TributeMechanic_Manager:OnGamepadCursorStateChanged(active)
    self.gamepadCursorX, self.gamepadCursorY = nil, nil
    self.isGamepadCursorActive = active
    self:UpdateCursors()
end
function ZO_TributeMechanic_Manager:OnGameStateChanged(gameState)
    local previousState = self.gameState
    if previousState ~= gameState then
        self.gameState = gameState
        local isInactive = gameState == TRIBUTE_GAME_FLOW_STATE_INACTIVE
        self.control:SetHidden(isInactive)
        if isInactive then
            self:Reset()
        else
            if gameState == TRIBUTE_GAME_FLOW_STATE_PLAYING then
                -- Initialize the current player turn state at the onset of the game; events will subsequently maintain the turn state.
                local isLocalPlayersTurn = IsLocalTributePlayersTurn()
                self:OnPlayerTurnStarted(isLocalPlayersTurn)
            end
        end
    end
end
function ZO_TributeMechanic_Manager:OnCardMechanicResolutionStateChanged(cardInstanceId, mechanicActivationSource, mechanicIndex, quantity, isResolved)
    local ownerPlayerPerspective = GetTributeCardInstanceOwner(cardInstanceId)
    if ownerPlayerPerspective then
        local isLocalPlayerOwner = ownerPlayerPerspective == TRIBUTE_PLAYER_PERSPECTIVE_SELF
        self:QueueCardMechanic(cardInstanceId, isLocalPlayerOwner, mechanicActivationSource, mechanicIndex, quantity, isResolved)
    end
end
function ZO_TributeMechanic_Manager:OnPatronMechanicResolutionStateChanged(patronDraftId, favorState, isPassive, mechanicIndex, quantity, isResolved)
    --Patron mechanics cannot trigger out of turn, so this should work as long as that remains the case
    local isLocalPlayerOwner = self:IsLocalPlayersTurn()
    self:QueuePatronMechanic(patronDraftId, isLocalPlayerOwner, favorState, isPassive, mechanicIndex, quantity, isResolved)
end
function ZO_TributeMechanic_Manager:OnMouseWheel(delta, ctrl, alt, shift)
    local offsetMultiplier = (ctrl or shift) and 2 or 1
    local offset = delta * offsetMultiplier * ZO_TRIBUTE_MECHANIC_TILE_UI_HEIGHT
    -- Receiving mouse wheel input cancels any continuous scrolling.
    self.continuousScrollingDirection = 0
end
function ZO_TributeMechanic_Manager:OnPlayerTurnStarted(isLocalPlayer)
    self.isLocalPlayersTurn = isLocalPlayer
    if not isLocalPlayer then
        -- Reset the mechanic history stream when the local player finishes their turn.
        self:ResetHistory()
        self:ResetQueue()
    end
end
function ZO_TributeMechanic_Manager:OnUpdate()
    local scrollingDirection = self.continuousScrollingDirection
    if scrollingDirection ~= 0 then
        local offset = scrollingDirection * ZO_TRIBUTE_MECHANIC_CONTINUOUS_SCROLL_DISTANCE_PER_SECOND * GetFrameDeltaTimeSeconds()
    end
    local frameTimeMS = GetFrameTimeMilliseconds()
    if self.nextQueueUpdateTimeMS > frameTimeMS then
        return
    end
    local queueEntry = self.queue[1]
    if not queueEntry then
        return
    end
    self.nextQueueUpdateTimeMS = frameTimeMS + PER_HISTORY_ENTRY_DELAY_MS
    queueEntry:SetIsPresenting(true)
    local isTriggeredMechanicResolved = false
    local triggeredMechanics = queueEntry:GetTriggeredMechanics()
    local triggeredMechanic = triggeredMechanics[1]
    local entryType = queueEntry:GetEntryType()
    if triggeredMechanic then
        if triggeredMechanic:IsPresenting() then
            -- This mechanic has been presented already but not dequeued;
            -- therefore the mechanic must have been pending resolution previously.
            if triggeredMechanic:IsResolved() then
                local mechanicTile = self:GetLastMechanicTile()
                if mechanicTile then
                    -- Resolve this mechanic tile and update its final quantity.
                    -- Order matters:
                    mechanicTile:Resolve()
                    mechanicTile:SetQuantity(triggeredMechanic:GetQuantity())
                end
                -- Dequeue the mechanic.
                isTriggeredMechanicResolved = true
            end
        elseif entryType == QUEUE_MECHANIC_ENTRY_TYPE_CARD then
            local cardInstanceId = queueEntry:GetCardInstanceId()
            local isLocalPlayerOwner = queueEntry:IsLocalPlayerOwner()
            local mechanicActivationSource, mechanicIndex = triggeredMechanic:GetMechanicActivationSourceAndIndex()
            local quantity = triggeredMechanic:GetQuantity()
            local isResolved = triggeredMechanic:IsResolved()
            -- Present this new mechanic.
            self:AddCardMechanicHistory(cardInstanceId, mechanicActivationSource, mechanicIndex, isLocalPlayerOwner, quantity, isResolved)
            if isResolved then
                -- Dequeue the mechanic.
                isTriggeredMechanicResolved = true
            else
                -- Flag this mechanic as being presented but pending resolution.
                triggeredMechanic:SetIsPresenting(true)
            end
        elseif entryType == QUEUE_MECHANIC_ENTRY_TYPE_PATRON then
            local patronDraftId = queueEntry:GetPatronDraftId()
            local favorState = triggeredMechanic:GetFavorState()
            local isPassive = triggeredMechanic:IsPassive()
            local mechanicIndex = triggeredMechanic:GetMechanicIndex()
            local isLocalPlayerOwner = queueEntry:IsLocalPlayerOwner()
            local quantity = triggeredMechanic:GetQuantity()
            local isResolved = triggeredMechanic:IsResolved()
            -- Present this new mechanic.
            self:AddPatronMechanicHistory(patronDraftId, favorState, isPassive, mechanicIndex, isLocalPlayerOwner, quantity, isResolved)
            if isResolved then
                -- Dequeue the mechanic.
                isTriggeredMechanicResolved = true
            else
                -- Flag this mechanic as being presented but pending resolution.
                triggeredMechanic:SetIsPresenting(true)
            end
        else
            internalassert(false, "Unknown mechanic entry type")
        end
    end
    if isTriggeredMechanicResolved then
        -- Dequeue the mechanic.
        table.remove(triggeredMechanics, 1)
        if not next(triggeredMechanics) then
            -- No additional mechanics remain for this queue entry.
            table.remove(self.queue, 1)
        end
    end
end
function ZO_TributeMechanic_Manager:GetPatronPopup()
    return self.patronPopup
end
-- Global XML
    TRIBUTE_MECHANIC_MANAGER = ZO_TributeMechanic_Manager:New(control)
end
    control.object:OnMouseWheel(...)
end
    control.object:OnUpdate()
end
    control.object = ZO_TributeMechanicCardTile:New(control)
end
    control.object = ZO_TributeMechanicPatronTile:New(control)
end
function ZO_TributeMechanicTile_Timeline_OnStop(timeline, completedPlaying)
    if timeline.object then
        timeline.object:OnTimelineStop(timeline, completedPlaying)
    end
end
function ZO_TributeMechanicTile_Timeline_OnUpdate(timeline, progress)
    if timeline.object then
        timeline.object:OnTimelineUpdate(timeline, progress)
    end
end