Back to Home

ESO Lua File v101041

internalingame/antiquitydigging/antiquitydiggingsummary.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
local ACCEPT = true
local REJECT = false
-- Style Constants
local FRAME_BORDER_PADDING_KEYBOARD = 4
local FRAME_BORDER_PADDING_GAMEPAD = 8
ZO_FRAMED_ANTIQUITY_FRAME_DIMENSIONS_KEYBOARD = 64
ZO_FRAMED_ANTIQUITY_ICON_DIMENSIONS_KEYBOARD = ZO_FRAMED_ANTIQUITY_FRAME_DIMENSIONS_KEYBOARD - FRAME_BORDER_PADDING_KEYBOARD
ZO_FRAMED_ANTIQUITY_FRAME_DIMENSIONS_GAMEPAD = 64
ZO_FRAMED_ANTIQUITY_ICON_DIMENSIONS_GAMEPAD = ZO_FRAMED_ANTIQUITY_FRAME_DIMENSIONS_GAMEPAD - FRAME_BORDER_PADDING_GAMEPAD
ZO_SET_COMPLETE_FRAMED_ANTIQUITY_FRAME_DIMENSIONS_KEYBOARD = 100
ZO_SET_COMPLETE_FRAMED_ANTIQUITY_ICON_DIMENSIONS_KEYBOARD = ZO_SET_COMPLETE_FRAMED_ANTIQUITY_FRAME_DIMENSIONS_KEYBOARD - FRAME_BORDER_PADDING_KEYBOARD
ZO_SET_COMPLETE_FRAMED_ANTIQUITY_FRAME_DIMENSIONS_GAMEPAD = 100
ZO_SET_COMPLETE_FRAMED_ANTIQUITY_ICON_DIMENSIONS_GAMEPAD = ZO_SET_COMPLETE_FRAMED_ANTIQUITY_FRAME_DIMENSIONS_GAMEPAD - FRAME_BORDER_PADDING_GAMEPAD
-- Timeline Constants
ZO_ANTIQUITY_DIGGING_FANFARE_OUT_DELAY = 30
ZO_ANTIQUITY_DIGGING_FANFARE_OUT_DURATION = 40
local SET_PROGRESSION_FRAMED_ICON_DELAY_MODIFIER_MS = 35
ZO_PROGRESSION_FRAMED_ICON_FADE_DURATION_MS = 300
ZO_PROGRESSION_FRAMED_ICON_SCALE_DURATION_MS = 100
local END_OF_GAME_FANFARE_TRIGGER_COMMANDS =
{
    BEGIN = "Begin",
    NEXT = "Next",
    ANIMATION_COMPLETE = "AnimationComplete",
    PARTIAL_ANIMATION_COMPLETE = "PartialAnimationComplete", -- For use in the animation event count trigger where we expect more than one call before we count all animations as complete and move on
}
ZO_AntiquityDiggingSummary = ZO_Object:Subclass()
function ZO_AntiquityDiggingSummary:New(...)
    local object = ZO_Object.New(self)
    object:Initialize(...)
    return object
end
function ZO_AntiquityDiggingSummary:Initialize(control)
    self.control = control
    ANTIQUITY_DIGGING_SUMMARY_FRAGMENT = ZO_SimpleSceneFragment:New(self.control)
    ANTIQUITY_DIGGING_SUMMARY_FRAGMENT:SetHideOnSceneHidden(true)
    ANTIQUITY_DIGGING_SUMMARY_FRAGMENT:RegisterCallback("StateChange", function(oldState, newState)
        if newState == SCENE_FRAGMENT_HIDDEN then
            self.fanfareStateMachine:SetCurrentState("INACTIVE")
        end
    end)
    control:RegisterForEvent(EVENT_START_ANTIQUITY_DIGGING, function()
        -- make sure we start at the beginning of the state machine on start
        self.fanfareStateMachine:SetCurrentState("INACTIVE")
    end)
    control:RegisterForEvent(EVENT_REQUEST_ANTIQUITY_DIGGING_EXIT, function()
        if ANTIQUITY_DIGGING_SUMMARY_FRAGMENT:IsShowing() then
            AntiquityDiggingExitResponse(ACCEPT)
        end
    end)
    ZO_PlatformStyle:New(function(style) self:ApplyPlatformStyle(style) end)
end
function ZO_AntiquityDiggingSummary:InitializeControls()
    self.modalUnderlay = self.control:GetNamedChild("ModalUnderlay")
    self.modalUnderlayTimeline = ANIMATION_MANAGER:CreateTimelineFromVirtual("ZO_AntiquityDiggingModalUnderlayFade", self.modalUnderlay)
    -- Control style tamplating
    local function MarkStyleDirty(control)
        control.isStyleDirty = true
        if not control:IsHidden() then
            control:CleanStyle()
        end
    end
    local function CleanStyle(control)
        if control.isStyleDirty then
            ApplyTemplateToControl(control, ZO_GetPlatformTemplate(control.styleTemplateBase))
            control.isStyleDirty = false
        end
    end
    local function SetupControlStyleTemplating(control, styleTemplateBase)
        control.CleanStyle = CleanStyle
        control.styleTemplateBase = styleTemplateBase
        control.isStyleDirty = true -- When first created they won't have the platform style applied yet
    end
    --Keybind
    self.keybindButtonsControl = self.control:GetNamedChild("Keybinds")
    self.keybindTimeline = ANIMATION_MANAGER:CreateTimelineFromVirtual("ZO_AntiquityDiggingSummaryKeybindFade", self.keybindButtonsControl)
    local primaryDescriptor =
    {
        keybind = "ANTIQUITY_DIGGING_PRIMARY_ACTION",
        callback = function()
            self:HandleCommand(END_OF_GAME_FANFARE_TRIGGER_COMMANDS.NEXT)
        end,
    }
    self.primaryKeybindButton = self.keybindButtonsControl:GetNamedChild("Primary")
    self.primaryKeybindButton:SetKeybindButtonDescriptor(primaryDescriptor)
    local secondaryDescriptor =
    {
        keybind = "ANTIQUITY_DIGGING_CODEX",
        callback = function()
            self:ShowCodexEntry()
        end,
    }
    self.secondaryKeybindButton = self.keybindButtonsControl:GetNamedChild("Secondary")
    self.secondaryKeybindButton:SetKeybindButtonDescriptor(secondaryDescriptor)
    -- Failure
    self.failureControl = self.control:GetNamedChild("Failure")
    self.failureReasonBodyLabel = self.failureControl:GetNamedChild("Reason"):GetNamedChild("Body")
    self.failureTimeline = ANIMATION_MANAGER:CreateTimelineFromVirtual("ZO_AntiquityDiggingFailureFade", self.failureControl)
    -- Rewards
    self.rewardsControl = self.control:GetNamedChild("Rewards")
    self.rewardsOutTimeline = ANIMATION_MANAGER:CreateTimelineFromVirtual("ZO_AntiquityDiggingRewardsOutTimeline", self.rewardsControl)
    -- SetSkipAnimationsBehindPlayheadOnInitialPlay is needed because the animations have delays.
    -- Without this, when playing the animation directly to start, it won't set the various states because the position is technically beyond the playhead
    self.rewardsOutTimeline:SetSkipAnimationsBehindPlayheadOnInitialPlay(false)
    -- Antiquity Reward
    self.antiquityRewardControl = self.rewardsControl:GetNamedChild("Antiquity")
    self.rewardAntiquityHeaderLabelRevealer = self.antiquityRewardControl:GetNamedChild("Header")
    self.rewardAntiquitySubHeaderLabelRevealer = self.antiquityRewardControl:GetNamedChild("SubHeader")
    local antiquityRewardContainerControl = self.antiquityRewardControl:GetNamedChild("Container")
    self.rewardAntiquityNameLabelRevealer = antiquityRewardContainerControl:GetNamedChild("Name")
    self.rewardAntiquityIconTexture = antiquityRewardContainerControl:GetNamedChild("FrameIcon")
    self.antiquityRewardTimeline = ANIMATION_MANAGER:CreateTimelineFromVirtual("ZO_AntiquityDiggingAntiquityRewardInTimeline", self.antiquityRewardControl)
    self.antiquityRewardTimeline:SetSkipAnimationsBehindPlayheadOnInitialPlay(false)
    self.rewardAntiquityHeaderLabelRevealer:SetMaskAnchor(BOTTOM)
    self.rewardAntiquityHeaderLabelRevealer:SetAnimation(self.antiquityRewardTimeline:GetAnimation(2))
    self.rewardAntiquitySubHeaderLabelRevealer:SetMaskAnchor(TOPLEFT, BOTTOMLEFT)
    self.rewardAntiquitySubHeaderLabelRevealer:SetAnimation(self.antiquityRewardTimeline:GetAnimation(8))
    self.rewardAntiquityNameLabelRevealer:SetMaskAnchor(TOPLEFT, BOTTOMLEFT)
    self.rewardAntiquityNameLabelRevealer:SetAnimation(self.antiquityRewardTimeline:GetAnimation(9))
    -- New Lead
    self.newLeadControl = self.rewardsControl:GetNamedChild("NewLead")
    local newLeadItemControl = self.newLeadControl:GetNamedChild("Item")
    self.newLeadIconTexture = newLeadItemControl:GetNamedChild("Icon")
    self.newLeadIconTexture:SetTexture(GetAntiquityLeadIcon()) -- Never changes, global def defined
    self.newLeadNameLabel = newLeadItemControl:GetNamedChild("Name")
    self.newLeadTimeline = ANIMATION_MANAGER:CreateTimelineFromVirtual("ZO_AntiquityDiggingRewardNewLeadFade", self.newLeadControl)
    self.newLeadTimeline:SetSkipAnimationsBehindPlayheadOnInitialPlay(false)
    -- Bonus Loot
    self.bonusRewardsControl = self.rewardsControl:GetNamedChild("Bonus")
    self.bonusRewardsHeaderLabel = self.bonusRewardsControl:GetNamedChild("Header")
    local bonusItemsContainer = self.bonusRewardsControl:GetNamedChild("Items")
    self.bonusesRowControlPool = ZO_ControlPool:New("ZO_AntiquityBonusLootRowContainer_Control", bonusItemsContainer)
    self.bonusesControlPool = ZO_ControlPool:New("ZO_AntiquityDiggingRewardItem_Control")
    self.bonusesControlPool:SetCustomFactoryBehavior(function(control)
        control.iconTexture = control:GetNamedChild("Icon")
        control.stackCountLabel = control.iconTexture:GetNamedChild("StackCount")
        control.nameLabel = control:GetNamedChild("Name")
        SetupControlStyleTemplating(control, "ZO_AntiquityDiggingRewardItem_Control")
    end)
    self.bonusesControlPool:SetCustomAcquireBehavior(function(control)
        control:CleanStyle()
    end)
    
    self.bonusRewardsNoLootFoundLabel = bonusItemsContainer:GetNamedChild("NoLootFound")
    self.bonusRewardsTimeline = ANIMATION_MANAGER:CreateTimelineFromVirtual("ZO_AntiquityDiggingRewardBonusesFade", self.bonusRewardsControl)
    self.bonusRewardsTimeline:SetSkipAnimationsBehindPlayheadOnInitialPlay(false)
    -- Set Progression
    self.setProgressionControl = self.control:GetNamedChild("SetProgression")
    self.setProgressionHeaderLabel = self.setProgressionControl:GetNamedChild("Header")
    self.setProgressionEntriesContainer = self.setProgressionControl:GetNamedChild("Entries")
    self.setProgressionTimeline = ANIMATION_MANAGER:CreateTimelineFromVirtual("ZO_AntiquityDiggingSetProgressionFade", self.setProgressionControl)
    local function SetAntiquityIconDisplayBehavior(control, desaturateControl, showSilhouette)
        local desaturation = desaturateControl and 1 or 0
        local rgbSampleProcessingWeight = showSilhouette and 0.7 or 1.0
        local alphaAsRGBSampleProcessingWeight = showSilhouette and 0.3 or 0.0
        control.iconTexture:SetDesaturation(desaturation)
        control.frameTexture:SetDesaturation(desaturation)
        control.bgTexture:SetDesaturation(desaturation)
        control.iconTexture:SetTextureSampleProcessingWeight(TEX_SAMPLE_PROCESSING_RGB, rgbSampleProcessingWeight)
        control.iconTexture:SetTextureSampleProcessingWeight(TEX_SAMPLE_PROCESSING_ALPHA_AS_RGB, alphaAsRGBSampleProcessingWeight)
    end
    local function OnCompleteFireTrigger(_, completedPlaying)
        if completedPlaying then
            ANTIQUITY_DIGGING_SUMMARY:HandleCommand(END_OF_GAME_FANFARE_TRIGGER_COMMANDS.PARTIAL_ANIMATION_COMPLETE)
        end
    end
    self.setProgressionAntiquityIconPool = ZO_ControlPool:New("ZO_AntiquityDigging_FramedAntiquityIcon", self.setProgressionEntriesContainer, "AntiquityIcon")
    self.setProgressionAntiquityIconPool:SetCustomFactoryBehavior(function(control)
        control.iconTexture = control:GetNamedChild("Icon")
        control.frameTexture = control:GetNamedChild("Frame")
        control.bgTexture = control.frameTexture:GetNamedChild("BG")
        control.fadeTimeline = ANIMATION_MANAGER:CreateTimelineFromVirtual("ZO_AntiquityDiggingFramedAntiquityIconFade", control)
        control.fadeTimeline:SetHandler("OnStop", OnCompleteFireTrigger)
        SetupControlStyleTemplating(control, "ZO_AntiquityDigging_FramedAntiquityIcon")
    end)
    local IGNORE_ANIMATION_CALLBACKS = true
    self.setProgressionAntiquityIconPool:SetCustomAcquireBehavior(function(control)
        control:CleanStyle()
        control.fadeTimeline:SetAllAnimationOffsets(0)
        control.fadeTimeline:PlayInstantlyToStart(IGNORE_ANIMATION_CALLBACKS)
    end)
    
    -- Control will be set when we know which one is the relevant one
    self.setProgressionAntiquityIconScaleTimeline = ANIMATION_MANAGER:CreateTimelineFromVirtual("ZO_AntiquityDiggingFramedAntiquityIconScale")
    self.setProgressionAntiquityIconScaleTimeline:SetHandler("OnStop", function(timeline, completedPlaying)
        if completedPlaying then
            -- 1. The control started out regular size and unfulfilled, then it started growing
            if timeline:IsPlayingBackward() then
                -- 4. Done shrinking, ready to move on
                OnCompleteFireTrigger(timeline, completedPlaying)
            else
                -- 2. After fully growing, mark fulfilled
                local DONT_DESATURATE, DONT_SHOW_SILHOUETTE = false, false
                self.setProgressionControlForCurrentAntiquity:SetDisplayBehavior(DONT_DESATURATE, DONT_SHOW_SILHOUETTE)
                self.setProgressionSparksParticleSystem:Start()
                if self.isAntiquitySetComplete then
                    PlaySound(SOUNDS.ANTIQUITIES_FANFARE_FRAGMENT_DISCOVERED_FINAL)
                else
                    PlaySound(SOUNDS.ANTIQUITIES_FANFARE_FRAGMENT_DISCOVERED)
                end
                -- 3. Then start shrinking back to normal
                timeline:PlayFromEnd()
            end
        end
    end)
    -- Set Complete
    self.setCompleteControl = self.control:GetNamedChild("SetComplete")
    self.setCompleteBannerTexture = self.setCompleteControl:GetNamedChild("Banner")
    self.setCompleteFramedAntiquityControl = self.setCompleteControl:GetNamedChild("FramedAntiquity")
    self.setCompleteFramedAntiquityIconTexture = self.setCompleteFramedAntiquityControl:GetNamedChild("Icon")
    self.setCompleteTimeline = ANIMATION_MANAGER:CreateTimelineFromVirtual("ZO_AntiquityDiggingSetCompleteFade", self.setCompleteControl)
    -- Transfer
    self.transferControl = self.control:GetNamedChild("Transfer")
    self.transferTimeline = ANIMATION_MANAGER:CreateTimelineFromVirtual("ZO_AntiquityDiggingTransferFade", self.transferControl)
    -- Lore
    self.loreControl = self.control:GetNamedChild("Lore")
    self.loreHeaderLabel = self.loreControl:GetNamedChild("Header")
    self.loreTimeline = ANIMATION_MANAGER:CreateTimelineFromVirtual("ZO_AntiquityDiggingLoreFade", self.loreControl)
end
function ZO_AntiquityDiggingSummary:InitializeParticleSystems()
    local particleR, particleG, particleB = ZO_OFF_WHITE:UnpackRGB()
    local FULL_CIRCLE_RADIANS = math.rad(360)
    local setProgressionSparksParticleSystem = ZO_ControlParticleSystem:New(ZO_AnalyticalPhysicsParticle_Control)
    setProgressionSparksParticleSystem:SetParticlesPerSecond(15)
    setProgressionSparksParticleSystem:SetStartPrimeS(0.5)
    setProgressionSparksParticleSystem:SetParticleParameter("Texture", "EsoUI/Art/PregameAnimatedBackground/ember.dds")
    setProgressionSparksParticleSystem:SetParticleParameter("BlendMode", TEX_BLEND_MODE_ADD)
    setProgressionSparksParticleSystem:SetParticleParameter("StartAlpha", 1)
    setProgressionSparksParticleSystem:SetParticleParameter("EndAlpha", 0)
    setProgressionSparksParticleSystem:SetParticleParameter("DurationS", ZO_UniformRangeGenerator:New(1, 1.5))
    setProgressionSparksParticleSystem:SetParticleParameter("PhysicsInitialVelocityElevationRadians", ZO_UniformRangeGenerator:New(0, FULL_CIRCLE_RADIANS))
    setProgressionSparksParticleSystem:SetParticleParameter("StartColorR", particleR)
    setProgressionSparksParticleSystem:SetParticleParameter("StartColorG", particleG)
    setProgressionSparksParticleSystem:SetParticleParameter("StartColorB", particleB)
    setProgressionSparksParticleSystem:SetParticleParameter("PhysicsInitialVelocityMagnitude", ZO_UniformRangeGenerator:New(15, 60))
    setProgressionSparksParticleSystem:SetParticleParameter("Size", ZO_UniformRangeGenerator:New(5, 10))
    setProgressionSparksParticleSystem:SetParticleParameter("DrawLevel", 4)
    self.setProgressionSparksParticleSystem = setProgressionSparksParticleSystem
    local setCompleteBlastParticleSystem = ZO_ControlParticleSystem:New(ZO_NumericalPhysicsParticle_Control)
    setCompleteBlastParticleSystem:SetParentControl(self.setCompleteBannerTexture)
    setCompleteBlastParticleSystem:SetParticlesPerSecond(500)
    setCompleteBlastParticleSystem:SetDuration(0.2)
    setCompleteBlastParticleSystem:SetParticleParameter("Texture", "EsoUI/Art/PregameAnimatedBackground/ember.dds")
    setCompleteBlastParticleSystem:SetParticleParameter("BlendMode", TEX_BLEND_MODE_ADD)
    setCompleteBlastParticleSystem:SetParticleParameter("StartAlpha", 1)
    setCompleteBlastParticleSystem:SetParticleParameter("EndAlpha", 0)
    setCompleteBlastParticleSystem:SetParticleParameter("DurationS", ZO_UniformRangeGenerator:New(1.5, 2.5))
    setCompleteBlastParticleSystem:SetParticleParameter("PhysicsInitialVelocityElevationRadians", ZO_UniformRangeGenerator:New(0, FULL_CIRCLE_RADIANS))
    setCompleteBlastParticleSystem:SetParticleParameter("PhysicsAccelerationElevationRadians1", math.rad(270)) --Down; Right is 0
    setCompleteBlastParticleSystem:SetParticleParameter("PhysicsAccelerationMagnitude1", 200)
    setCompleteBlastParticleSystem:SetParticleParameter("StartColorR", particleR)
    setCompleteBlastParticleSystem:SetParticleParameter("StartColorG", particleG)
    setCompleteBlastParticleSystem:SetParticleParameter("StartColorB", particleB)
    setCompleteBlastParticleSystem:SetParticleParameter("PhysicsInitialVelocityMagnitude", ZO_UniformRangeGenerator:New(500, 900))
    setCompleteBlastParticleSystem:SetParticleParameter("Size", ZO_UniformRangeGenerator:New(6, 12))
    setCompleteBlastParticleSystem:SetParticleParameter("PhysicsDragMultiplier", 1.5)
    setCompleteBlastParticleSystem:SetParticleParameter("PrimeS", 0.1)
    setCompleteBlastParticleSystem:SetParticleParameter("DrawLevel", 0)
    self.setCompleteBlastParticleSystem = setCompleteBlastParticleSystem
    local setCompleteSparksParticleSystem = ZO_ControlParticleSystem:New(ZO_AnalyticalPhysicsParticle_Control)
    setCompleteSparksParticleSystem:SetParentControl(self.setCompleteFramedAntiquityControl)
    setCompleteSparksParticleSystem:SetParticlesPerSecond(20)
    setCompleteSparksParticleSystem:SetStartPrimeS(0.5)
    setCompleteSparksParticleSystem:SetParticleParameter("Texture", "EsoUI/Art/PregameAnimatedBackground/ember.dds")
    setCompleteSparksParticleSystem:SetParticleParameter("BlendMode", TEX_BLEND_MODE_ADD)
    setCompleteSparksParticleSystem:SetParticleParameter("StartAlpha", 1)
    setCompleteSparksParticleSystem:SetParticleParameter("EndAlpha", 0)
    setCompleteSparksParticleSystem:SetParticleParameter("DurationS", ZO_UniformRangeGenerator:New(1.5, 2.0))
    setCompleteSparksParticleSystem:SetParticleParameter("PhysicsInitialVelocityElevationRadians", ZO_UniformRangeGenerator:New(0, FULL_CIRCLE_RADIANS))
    setCompleteSparksParticleSystem:SetParticleParameter("StartColorR", particleR)
    setCompleteSparksParticleSystem:SetParticleParameter("StartColorG", particleG)
    setCompleteSparksParticleSystem:SetParticleParameter("StartColorB", particleB)
    setCompleteSparksParticleSystem:SetParticleParameter("PhysicsInitialVelocityMagnitude", ZO_UniformRangeGenerator:New(15, 60))
    setCompleteSparksParticleSystem:SetParticleParameter("Size", ZO_UniformRangeGenerator:New(5, 10))
    setCompleteSparksParticleSystem:SetParticleParameter("DrawLevel", 4)
    self.setCompleteSparksParticleSystem = setCompleteSparksParticleSystem
    local setCompleteStarbustParticleSystem = ZO_ControlParticleSystem:New(ZO_StationaryParticle_Control)
    setCompleteStarbustParticleSystem:SetParentControl(self.setCompleteFramedAntiquityControl)
    setCompleteStarbustParticleSystem:SetParticlesPerSecond(20)
    setCompleteStarbustParticleSystem:SetStartPrimeS(2)
    setCompleteStarbustParticleSystem:SetParticleParameter("Texture", "EsoUI/Art/Miscellaneous/lensflare_star_256.dds")
    setCompleteStarbustParticleSystem:SetParticleParameter("BlendMode", TEX_BLEND_MODE_ADD)
    setCompleteStarbustParticleSystem:SetParticleParameter("StartAlpha", 0)
    setCompleteStarbustParticleSystem:SetParticleParameter("EndAlpha", 1)
    setCompleteStarbustParticleSystem:SetParticleParameter("AlphaEasing", ZO_EaseInOutZeroToOneToZero)
    setCompleteStarbustParticleSystem:SetParticleParameter("StartScale", ZO_UniformRangeGenerator:New(1.5, 1.8))
    setCompleteStarbustParticleSystem:SetParticleParameter("EndScale", ZO_UniformRangeGenerator:New(1.05, 1.5))
    setCompleteStarbustParticleSystem:SetParticleParameter("DurationS", ZO_UniformRangeGenerator:New(1, 2))
    setCompleteStarbustParticleSystem:SetParticleParameter("StartColorR", particleR)
    setCompleteStarbustParticleSystem:SetParticleParameter("StartColorG", particleG)
    setCompleteStarbustParticleSystem:SetParticleParameter("StartColorB", particleB)
    setCompleteStarbustParticleSystem:SetParticleParameter("StartRotationRadians", ZO_UniformRangeGenerator:New(0, FULL_CIRCLE_RADIANS))
    local MIN_ROTATION_SPEED = math.rad(1.5)
    local MAX_ROTATION_SPEED = math.rad(3)
    local headerStarbustRotationSpeedGenerator = ZO_WeightedChoiceGenerator:New(
        MIN_ROTATION_SPEED , 0.25,
        MAX_ROTATION_SPEED , 0.25,
        -MIN_ROTATION_SPEED, 0.25,
        -MAX_ROTATION_SPEED, 0.25)
    setCompleteStarbustParticleSystem:SetParticleParameter("RotationSpeedRadians", headerStarbustRotationSpeedGenerator)
    setCompleteStarbustParticleSystem:SetParticleParameter("Size", 256)
    setCompleteStarbustParticleSystem:SetParticleParameter("DrawLevel", 0)
    self.setCompleteStarbustParticleSystem = setCompleteStarbustParticleSystem
end
function ZO_AntiquityDiggingSummary:ConfigureKeybindButton(keybindButton, enabled, text)
    if enabled then
        keybindButton:SetHidden(false)
        keybindButton.originalText = text
        keybindButton:SetText(text)
    else
        keybindButton:SetHidden(true)
    end
end
function ZO_AntiquityDiggingSummary:InitializeStateMachine()
    local fanfareStateMachine = ZO_StateMachine_Base:New("ANTIQUITY_DIGGING_FANFARE_STATE_MACHINE")
    self.fanfareStateMachine = fanfareStateMachine
    local IGNORE_ANIMATION_CALLBACKS = true
    do
        local state = fanfareStateMachine:AddState("INACTIVE")
        state:RegisterCallback("OnActivated", function()
            self.modalUnderlayTimeline:PlayInstantlyToStart(IGNORE_ANIMATION_CALLBACKS)
            self.failureTimeline:PlayInstantlyToStart(IGNORE_ANIMATION_CALLBACKS)
            self.antiquityRewardTimeline:PlayInstantlyToStart(IGNORE_ANIMATION_CALLBACKS)
            self.newLeadTimeline:PlayInstantlyToStart(IGNORE_ANIMATION_CALLBACKS)
            self.bonusRewardsTimeline:PlayInstantlyToStart(IGNORE_ANIMATION_CALLBACKS)
            self.setProgressionTimeline:PlayInstantlyToStart(IGNORE_ANIMATION_CALLBACKS)
            self.setCompleteTimeline:PlayInstantlyToStart(IGNORE_ANIMATION_CALLBACKS)
            self.setProgressionAntiquityIconScaleTimeline:PlayInstantlyToStart(IGNORE_ANIMATION_CALLBACKS)
            self.loreTimeline:PlayInstantlyToStart(IGNORE_ANIMATION_CALLBACKS)
            self.keybindTimeline:PlayInstantlyToStart(IGNORE_ANIMATION_CALLBACKS)
            self.failureControl:SetHidden(true)
            self.antiquityRewardControl:SetHidden(true)
            self.newLeadControl:SetHidden(true)
            self.bonusRewardsControl:SetHidden(true)
            self.setProgressionControl:SetHidden(true)
            self.setCompleteControl:SetHidden(true)
            self.transferControl:SetHidden(true)
            self.loreControl:SetHidden(true)
            self.bonusesControlPool:ReleaseAllObjects()
            self.bonusesRowControlPool:ReleaseAllObjects()
            self.setProgressionAntiquityIconPool:ReleaseAllObjects()
            self.setProgressionSparksParticleSystem:Stop()
            self.setCompleteBlastParticleSystem:Stop()
            self.setCompleteSparksParticleSystem:Stop()
            self.setCompleteStarbustParticleSystem:Stop()
            ANTIQUITY_LORE_DOCUMENT_MANAGER:ReleaseAllObjects(self.loreControl)
            self:ConfigureKeybindButton(self.primaryKeybindButton, false)
            self:ConfigureKeybindButton(self.secondaryKeybindButton, false)
        end)
    end
    do
        local state = fanfareStateMachine:AddState("BEGIN")
        state:RegisterCallback("OnActivated", function()
            -- This state primarily exists to allow the two possible paths (REWARD_IN/FAILURE_IN) to run their conditionals
            -- And to animate shared controls
            SCENE_MANAGER:AddFragment(UNIFORM_BLUR_FRAGMENT)
            self.modalUnderlayTimeline:PlayFromStart()
            self.keybindTimeline:PlayFromStart()
            fanfareStateMachine:FireCallbacks(END_OF_GAME_FANFARE_TRIGGER_COMMANDS.NEXT)
        end)
    end
    do
        local state = fanfareStateMachine:AddState("ANTIQUITY_REWARD_IN")
        state:RegisterCallback("OnActivated", function()
            self:ConfigureKeybindButton(self.primaryKeybindButton, true, GetString(SI_ANTIQUITY_DIGGING_FANFARE_NEXT))
            self.antiquityRewardControl:SetHidden(false)
            self.rewardsOutTimeline:PlayInstantlyToStart(IGNORE_ANIMATION_CALLBACKS)
            self.antiquityRewardTimeline:PlayInstantlyToStart(IGNORE_ANIMATION_CALLBACKS)
            self.antiquityRewardTimeline:PlayFromStart()
            PlaySound(SOUNDS.ANTIQUITIES_FANFARE_FRAGMENT_FOUND)
        end)
        state:RegisterCallback("OnDeactivated", function()
            if self.antiquityRewardTimeline:IsPlaying() then
                self.antiquityRewardTimeline:PlayInstantlyToEnd(IGNORE_ANIMATION_CALLBACKS)
            end
        end)
    end
     do
        local state = fanfareStateMachine:AddState("NEW_LEAD_IN")
        state:RegisterCallback("OnActivated", function()
            self.newLeadControl:SetHidden(false)
            self.newLeadTimeline:PlayInstantlyToStart(IGNORE_ANIMATION_CALLBACKS)
            self.newLeadTimeline:PlayFromStart()
        end)
    end
    do
        local state = fanfareStateMachine:AddState("BONUS_REWARDS_IN")
        state:RegisterCallback("OnActivated", function()
            self.bonusRewardsControl:SetHidden(false)
            self.bonusRewardsTimeline:PlayInstantlyToStart(IGNORE_ANIMATION_CALLBACKS)
            self.bonusRewardsTimeline:PlayFromStart()
        end)
    end
    do
        local state = fanfareStateMachine:AddState("REWARDS")
        state:RegisterCallback("OnActivated", function()
            -- We may have gotten here via a skip, which means we may never have even made it into the interstitial states
            -- So just ensure these animations are where we want them to be by this point in the flow
            if self.hasNewLead then
                self.newLeadControl:SetHidden(false)
                self.newLeadTimeline:PlayInstantlyToEnd(IGNORE_ANIMATION_CALLBACKS)
            end
            -- The bonus rewards section always shows even if there aren't any rewards
            self.bonusRewardsControl:SetHidden(false)
            self.bonusRewardsTimeline:PlayInstantlyToEnd(IGNORE_ANIMATION_CALLBACKS)
        end)
    end
    do
        local state = fanfareStateMachine:AddState("REWARDS_OUT")
        state:RegisterCallback("OnActivated", function()
            self.rewardsOutTimeline:PlayFromStart()
        end)
        state:RegisterCallback("OnDeactivated", function()
            if self.rewardsOutTimeline:IsPlaying() then
                self.rewardsOutTimeline:PlayInstantlyToEnd(IGNORE_ANIMATION_CALLBACKS)
            end
            self.antiquityRewardControl:SetHidden(true)
            self.bonusRewardsControl:SetHidden(true)
        end)
    end
    do
        local state = fanfareStateMachine:AddState("SET_PROGRESSION_IN")
        state:RegisterCallback("OnActivated", function()
            self.setProgressionControl:SetHidden(false)
            self.setProgressionTimeline:PlayFromStart()
            PlaySound(SOUNDS.ANTIQUITIES_FANFARE_FRAGMENT_PROGRESSION)
        end)
        state:RegisterCallback("OnDeactivated", function()
            local primaryAnimationIsPlaying = self.setProgressionTimeline:IsPlaying()
            if primaryAnimationIsPlaying then
                self.setProgressionTimeline:PlayInstantlyToEnd(IGNORE_ANIMATION_CALLBACKS)
            end
            for _, activeIcon in self.setProgressionAntiquityIconPool:ActiveObjectIterator() do
                if primaryAnimationIsPlaying or activeIcon.fadeTimeline:IsPlaying() then
                    activeIcon.fadeTimeline:PlayInstantlyToEnd(IGNORE_ANIMATION_CALLBACKS)
                end
            end
            if primaryAnimationIsPlaying or self.setProgressionAntiquityIconScaleTimeline:IsPlaying() then
                local DONT_DESATURATE, DONT_SHOW_SILHOUETTE = false, false
                self.setProgressionControlForCurrentAntiquity:SetDisplayBehavior(DONT_DESATURATE, DONT_SHOW_SILHOUETTE)
                self.setProgressionAntiquityIconScaleTimeline:SetAllAnimationOffsets(0)
                self.setProgressionAntiquityIconScaleTimeline:PlayInstantlyToStart(IGNORE_ANIMATION_CALLBACKS)
                self.setProgressionSparksParticleSystem:Start()
            end
        end)
    end
    fanfareStateMachine:AddState("SET_PROGRESSION")
    do
        local state = fanfareStateMachine:AddState("SET_PROGRESSION_OUT")
        state:RegisterCallback("OnActivated", function()
            self.setProgressionTimeline:PlayBackward()
        end)
        state:RegisterCallback("OnDeactivated", function()
            if self.setProgressionTimeline:IsPlaying() then
                self.setProgressionTimeline:PlayInstantlyToStart(IGNORE_ANIMATION_CALLBACKS)
            end
            self.setProgressionControl:SetHidden(true)
            self.setProgressionSparksParticleSystem:Stop()
        end)
    end
    do
        local state = fanfareStateMachine:AddState("SET_COMPLETE_IN")
        state:RegisterCallback("OnActivated", function()
            self.setCompleteControl:SetHidden(false)
            self.setCompleteTimeline:PlayFromStart()
            self.setCompleteBlastParticleSystem:Start()
            self.setCompleteSparksParticleSystem:Start()
            self.setCompleteStarbustParticleSystem:Start()
            PlaySound(SOUNDS.ANTIQUITIES_FANFARE_COMPLETED)
        end)
        state:RegisterCallback("OnDeactivated", function()
            if self.setCompleteTimeline:IsPlaying() then
                self.setCompleteTimeline:PlayInstantlyToEnd(IGNORE_ANIMATION_CALLBACKS)
            end
        end)
    end
    fanfareStateMachine:AddState("SET_COMPLETE")
    do
        local state = fanfareStateMachine:AddState("SET_COMPLETE_OUT")
        state:RegisterCallback("OnActivated", function()
            self.setCompleteTimeline:PlayBackward()
        end)
        state:RegisterCallback("OnDeactivated", function()
            if self.setCompleteTimeline:IsPlaying() then
                self.setCompleteTimeline:PlayInstantlyToStart(IGNORE_ANIMATION_CALLBACKS)
            end
            self.setCompleteControl:SetHidden(true)
            self.setCompleteBlastParticleSystem:Stop()
            self.setCompleteSparksParticleSystem:Stop()
            self.setCompleteStarbustParticleSystem:Stop()
        end)
    end
    do
        local state = fanfareStateMachine:AddState("TRANSFER")
        state:RegisterCallback("OnActivated", function()
            StartDiggingTransitionToNextDay()
            self.transferControl:SetHidden(false)
            self.transferTimeline:PlayFromStart()
            self:ConfigureKeybindButton(self.primaryKeybindButton, false)
        end)
        state:RegisterCallback("OnDeactivated", function()
            self.transferControl:SetHidden(true)
            self.transferTimeline:Stop()
        end)
    end
    do
        local state = fanfareStateMachine:AddState("LORE_IN")
        state:RegisterCallback("OnActivated", function()
            self.loreControl:SetAlpha(0)
            self.loreControl:SetHidden(false)
            self.loreTimeline:PlayFromStart()
            PlaySound(SOUNDS.ANTIQUITIES_FANFARE_MOTIF_SCROLL_APPEAR)
        end)
    end
    do
        local state = fanfareStateMachine:AddState("LORE")
        state:RegisterCallback("OnDeactivated", function()
            if self.loreTimeline:IsPlaying() then
                self.loreTimeline:PlayInstantlyToEnd(IGNORE_ANIMATION_CALLBACKS)
            end
            self.loreControl:SetHidden(true)
            ANTIQUITY_LORE_DOCUMENT_MANAGER:ReleaseAllObjects(self.loreControl)
        end)
    end
    do
        local state = fanfareStateMachine:AddState("FAILURE_IN")
        state:RegisterCallback("OnActivated", function()
            self:ConfigureKeybindButton(self.primaryKeybindButton, true, GetString(SI_EXIT_BUTTON))
            self.failureControl:SetHidden(false)
            self.failureTimeline:PlayFromStart()
            PlaySound(SOUNDS.ANTIQUITIES_FANFARE_FAILURE)
        end)
    end
    do
        local state = fanfareStateMachine:AddState("QUIT")
        state:RegisterCallback("OnActivated", function()
            SCENE_MANAGER:RequestShowLeaderBaseScene()
        end)
    end
    -- Edges --
    do
        fanfareStateMachine:AddEdgeAutoName("INACTIVE", "BEGIN")
        local antiquityRewardInEdge = fanfareStateMachine:AddEdgeAutoName("BEGIN", "ANTIQUITY_REWARD_IN")
        antiquityRewardInEdge:SetConditional(function()
            return self.gameOverFlags == ANTIQUITY_DIGGING_GAME_OVER_FLAGS_VICTORY
        end)
        local antiquityRewardToNewLeadInEdge = fanfareStateMachine:AddEdgeAutoName("ANTIQUITY_REWARD_IN", "NEW_LEAD_IN")
        antiquityRewardToNewLeadInEdge:SetConditional(function()
            return self.hasNewLead
        end)
        local antiquityRewardToBonusRewardsInEdge = fanfareStateMachine:AddEdgeAutoName("ANTIQUITY_REWARD_IN", "BONUS_REWARDS_IN")
        antiquityRewardToBonusRewardsInEdge:SetConditional(function()
            return not self.hasNewLead
        end)
        fanfareStateMachine:AddEdge("ANTIQUITY_REWARD_IN_TO_REWARDS_SKIP", "ANTIQUITY_REWARD_IN", "REWARDS")
        fanfareStateMachine:AddEdgeAutoName("NEW_LEAD_IN", "BONUS_REWARDS_IN")
        fanfareStateMachine:AddEdge("NEW_LEAD_IN_TO_REWARDS_SKIP", "NEW_LEAD_IN", "REWARDS")
        fanfareStateMachine:AddEdgeAutoName("BONUS_REWARDS_IN", "REWARDS")
        local rewardsOutEdge = fanfareStateMachine:AddEdgeAutoName("REWARDS", "REWARDS_OUT")
        rewardsOutEdge:SetConditional(function()
            return self.showLore or self.hasAntiquitySet
        end)
        local rewardsOutToSetProgressionInEdge = fanfareStateMachine:AddEdgeAutoName("REWARDS_OUT", "SET_PROGRESSION_IN")
        rewardsOutToSetProgressionInEdge:SetConditional(function()
            return self.hasAntiquitySet
        end)
        local rewardsOutToTransferEdge = fanfareStateMachine:AddEdgeAutoName("REWARDS_OUT", "TRANSFER")
        rewardsOutToTransferEdge:SetConditional(function()
            return not self.hasAntiquitySet and self.showLore
        end)
        fanfareStateMachine:AddEdgeAutoName("LORE_IN", "LORE")
        fanfareStateMachine:AddEdgeAutoName("SET_PROGRESSION_IN", "SET_PROGRESSION")
        local setProgressionOutEdge = fanfareStateMachine:AddEdgeAutoName("SET_PROGRESSION", "SET_PROGRESSION_OUT")
        setProgressionOutEdge:SetConditional(function()
            return self.isAntiquitySetComplete or self.showLore
        end)
        local setProgressionOutToTransferEdge = fanfareStateMachine:AddEdgeAutoName("SET_PROGRESSION_OUT", "TRANSFER")
        setProgressionOutToTransferEdge:SetConditional(function()
            return not self.isAntiquitySetComplete and self.showLore
        end)
        local setProgressionOutToSetCompleteInEdge = fanfareStateMachine:AddEdgeAutoName("SET_PROGRESSION_OUT", "SET_COMPLETE_IN")
        setProgressionOutToSetCompleteInEdge:SetConditional(function()
            return self.isAntiquitySetComplete
        end)
        fanfareStateMachine:AddEdgeAutoName("SET_COMPLETE_IN", "SET_COMPLETE")
        local setCompleteQuitEdge = fanfareStateMachine:AddEdgeAutoName("SET_COMPLETE", "QUIT")
        setCompleteQuitEdge:SetConditional(function()
            return not self.showLore
        end)
        setCompleteQuitEdge:RegisterCallback("OnActivated", function()
            self:ConfigureKeybindButton(self.primaryKeybindButton, true, GetString(SI_EXIT_BUTTON))
        end)
        local setCompleteOutEdge = fanfareStateMachine:AddEdgeAutoName("SET_COMPLETE", "SET_COMPLETE_OUT")
        setCompleteOutEdge:SetConditional(function()
            return self.showLore
        end)
        fanfareStateMachine:AddEdgeAutoName("SET_COMPLETE_OUT", "TRANSFER")
        fanfareStateMachine:AddEdgeAutoName("TRANSFER", "LORE_IN")
        local failureInEdge = fanfareStateMachine:AddEdgeAutoName("BEGIN", "FAILURE_IN")
        failureInEdge:SetConditional(function()
            return self.gameOverFlags ~= ANTIQUITY_DIGGING_GAME_OVER_FLAGS_VICTORY
        end)
        local rewardsQuitEdge = fanfareStateMachine:AddEdgeAutoName("REWARDS", "QUIT")
        rewardsQuitEdge:SetConditional(function()
            return not (self.showLore or self.hasAntiquitySet)
        end)
        rewardsQuitEdge:RegisterCallback("OnActivated", function()
            self:ConfigureKeybindButton(self.primaryKeybindButton, true, GetString(SI_EXIT_BUTTON))
        end)
        local loreQuitEdge = fanfareStateMachine:AddEdgeAutoName("LORE", "QUIT")
        loreQuitEdge:RegisterCallback("OnActivated", function()
            self:ConfigureKeybindButton(self.primaryKeybindButton, true, GetString(SI_EXIT_BUTTON))
            self:ConfigureKeybindButton(self.secondaryKeybindButton, true, GetString(SI_ANTIQUITY_DIGGING_FANFARE_CODEX))
        end)
        local setProgressionQuitEdge = fanfareStateMachine:AddEdgeAutoName("SET_PROGRESSION", "QUIT")
        setProgressionQuitEdge:SetConditional(function()
            return not (self.showLore or self.isAntiquitySetComplete)
        end)
        setProgressionQuitEdge:RegisterCallback("OnActivated", function()
            self:ConfigureKeybindButton(self.primaryKeybindButton, true, GetString(SI_EXIT_BUTTON))
        end)
        -- If the player skips the failure at any point, just let them quit
        fanfareStateMachine:AddEdgeAutoName("FAILURE_IN", "QUIT")
    end
    -- Triggers --
    fanfareStateMachine:AddTrigger("BEGIN", ZO_StateMachine_TriggerStateCallback, END_OF_GAME_FANFARE_TRIGGER_COMMANDS.BEGIN)
    fanfareStateMachine:AddTrigger("NEXT", ZO_StateMachine_TriggerStateCallback, END_OF_GAME_FANFARE_TRIGGER_COMMANDS.NEXT)
    fanfareStateMachine:AddTrigger("ANIMATION_COMPLETE", ZO_StateMachine_TriggerStateCallback, END_OF_GAME_FANFARE_TRIGGER_COMMANDS.ANIMATION_COMPLETE)
    do
        local trigger = fanfareStateMachine:AddTrigger("SET_PROGRESSION_ANIMATIONS_COMPLETE", ZO_StateMachine_TriggerStateCallback, END_OF_GAME_FANFARE_TRIGGER_COMMANDS.PARTIAL_ANIMATION_COMPLETE)
        trigger:SetEventCount(function()
            local antiquityId = GetDigSpotAntiquityId()
            local antiquitySetId = GetAntiquitySetId(antiquityId)
            local numFadeAnimations = GetNumAntiquitySetAntiquities(antiquitySetId)
            local NUM_SCALE_ANIMATIONS = 1
            return numFadeAnimations + NUM_SCALE_ANIMATIONS
        end)
    end
    fanfareStateMachine:AddTrigger("TIME_HAS_PASSED", ZO_StateMachine_TriggerStateCallback, END_OF_GAME_FANFARE_TRIGGER_COMMANDS.TIME_HAS_PASSED)
    -- Add triggers to edges --
    fanfareStateMachine:AddTriggerToEdge("BEGIN", "INACTIVE_TO_BEGIN")
    fanfareStateMachine:AddTriggerToEdge("ANIMATION_COMPLETE", "ANTIQUITY_REWARD_IN_TO_NEW_LEAD_IN")
    fanfareStateMachine:AddTriggerToEdge("ANIMATION_COMPLETE", "ANTIQUITY_REWARD_IN_TO_BONUS_REWARDS_IN")
    fanfareStateMachine:AddTriggerToEdge("ANIMATION_COMPLETE", "NEW_LEAD_IN_TO_BONUS_REWARDS_IN")
    fanfareStateMachine:AddTriggerToEdge("ANIMATION_COMPLETE", "BONUS_REWARDS_IN_TO_REWARDS")
    fanfareStateMachine:AddTriggerToEdge("ANIMATION_COMPLETE", "REWARDS_OUT_TO_TRANSFER")
    fanfareStateMachine:AddTriggerToEdge("ANIMATION_COMPLETE", "REWARDS_OUT_TO_SET_PROGRESSION_IN")
    fanfareStateMachine:AddTriggerToEdge("ANIMATION_COMPLETE", "LORE_IN_TO_LORE")
    fanfareStateMachine:AddTriggerToEdge("SET_PROGRESSION_ANIMATIONS_COMPLETE", "SET_PROGRESSION_IN_TO_SET_PROGRESSION")
    fanfareStateMachine:AddTriggerToEdge("ANIMATION_COMPLETE", "SET_PROGRESSION_OUT_TO_SET_COMPLETE_IN")
    fanfareStateMachine:AddTriggerToEdge("ANIMATION_COMPLETE", "SET_PROGRESSION_OUT_TO_TRANSFER")
    fanfareStateMachine:AddTriggerToEdge("ANIMATION_COMPLETE", "SET_COMPLETE_IN_TO_SET_COMPLETE")
    fanfareStateMachine:AddTriggerToEdge("ANIMATION_COMPLETE", "SET_COMPLETE_OUT_TO_TRANSFER")
    fanfareStateMachine:AddTriggerToEdge("NEXT", "BEGIN_TO_ANTIQUITY_REWARD_IN")
    fanfareStateMachine:AddTriggerToEdge("NEXT", "ANTIQUITY_REWARD_IN_TO_REWARDS_SKIP")
    fanfareStateMachine:AddTriggerToEdge("NEXT", "NEW_LEAD_IN_TO_REWARDS_SKIP")
    fanfareStateMachine:AddTriggerToEdge("NEXT", "BONUS_REWARDS_IN_TO_REWARDS")
    fanfareStateMachine:AddTriggerToEdge("NEXT", "REWARDS_TO_REWARDS_OUT")
    fanfareStateMachine:AddTriggerToEdge("NEXT", "REWARDS_OUT_TO_TRANSFER")
    fanfareStateMachine:AddTriggerToEdge("NEXT", "REWARDS_OUT_TO_SET_PROGRESSION_IN")
    fanfareStateMachine:AddTriggerToEdge("NEXT", "LORE_IN_TO_LORE")
    fanfareStateMachine:AddTriggerToEdge("NEXT", "SET_PROGRESSION_IN_TO_SET_PROGRESSION")
    fanfareStateMachine:AddTriggerToEdge("NEXT", "SET_PROGRESSION_TO_SET_PROGRESSION_OUT")
    fanfareStateMachine:AddTriggerToEdge("NEXT", "SET_PROGRESSION_OUT_TO_SET_COMPLETE_IN")
    fanfareStateMachine:AddTriggerToEdge("NEXT", "SET_PROGRESSION_OUT_TO_TRANSFER")
    fanfareStateMachine:AddTriggerToEdge("NEXT", "SET_COMPLETE_IN_TO_SET_COMPLETE")
    fanfareStateMachine:AddTriggerToEdge("NEXT", "SET_COMPLETE_TO_SET_COMPLETE_OUT")
    fanfareStateMachine:AddTriggerToEdge("NEXT", "SET_COMPLETE_OUT_TO_TRANSFER")
    fanfareStateMachine:AddTriggerToEdge("NEXT", "BEGIN_TO_FAILURE_IN")
    fanfareStateMachine:AddTriggerToEdge("NEXT", "REWARDS_TO_QUIT")
    fanfareStateMachine:AddTriggerToEdge("NEXT", "LORE_TO_QUIT")
    fanfareStateMachine:AddTriggerToEdge("NEXT", "SET_PROGRESSION_TO_QUIT")
    fanfareStateMachine:AddTriggerToEdge("NEXT", "SET_COMPLETE_TO_QUIT")
    fanfareStateMachine:AddTriggerToEdge("NEXT", "FAILURE_IN_TO_QUIT")
    -- Animation callbacks --
    local function OnCompleteFireTrigger(_, completedPlaying)
        if completedPlaying then
            fanfareStateMachine:FireCallbacks(END_OF_GAME_FANFARE_TRIGGER_COMMANDS.ANIMATION_COMPLETE)
        end
    end
    self.antiquityRewardTimeline:SetHandler("OnStop", OnCompleteFireTrigger)
    self.newLeadTimeline:SetHandler("OnStop", OnCompleteFireTrigger)
    self.bonusRewardsTimeline:SetHandler("OnStop", OnCompleteFireTrigger)
    self.rewardsOutTimeline:SetHandler("OnStop", OnCompleteFireTrigger)
    self.loreTimeline:SetHandler("OnStop", OnCompleteFireTrigger)
    self.setProgressionTimeline:SetHandler("OnStop", function(timeline, completedPlaying)
        if timeline:IsPlayingBackward() then
            OnCompleteFireTrigger(timeline, completedPlaying)
        else
            for _, activeIcon in self.setProgressionAntiquityIconPool:ActiveObjectIterator() do
                activeIcon.fadeTimeline:PlayFromStart()
            end
            self.setProgressionAntiquityIconScaleTimeline:PlayFromStart()
        end
    end)
    self.setCompleteTimeline:SetHandler("OnStop", OnCompleteFireTrigger)
    local transferToNextDayCompleteTrigger = fanfareStateMachine:AddTrigger("TRANSFER_TO_LORE_IN", ZO_StateMachine_TriggerEventManager, EVENT_ANTIQUITY_DIGGING_TRANSITION_TO_NEXT_DAY_COMPLETE)
    fanfareStateMachine:GetEdgeByName("TRANSFER_TO_LORE_IN"):AddTrigger(transferToNextDayCompleteTrigger)
    -- Reset state machine
    self.fanfareStateMachine:SetCurrentState("INACTIVE")
end
function ZO_AntiquityDiggingSummary:ApplyPlatformStyle()
    ApplyTemplateToControl(self.failureControl, ZO_GetPlatformTemplate("ZO_AntiquityDiggingSummary_Failure"))
    ApplyTemplateToControl(self.antiquityRewardControl, ZO_GetPlatformTemplate("ZO_AntiquityDiggingSummary_AntiquityReward"))
    ApplyTemplateToControl(self.newLeadControl, ZO_GetPlatformTemplate("ZO_AntiquityDiggingSummary_NewLead"))
    ApplyTemplateToControl(self.bonusRewardsControl, ZO_GetPlatformTemplate("ZO_AntiquityDiggingSummary_BonusRewards"))
    ApplyTemplateToControl(self.loreControl, ZO_GetPlatformTemplate("ZO_AntiquityDiggingSummary_Lore"))
    ApplyTemplateToControl(self.transferControl, ZO_GetPlatformTemplate("ZO_AntiquityDiggingSummary_Transfer"))
    if not self.loreControl:IsHidden() then
        ANTIQUITY_LORE_DOCUMENT_MANAGER:ReleaseAllObjects(self.loreControl)
    end
    ApplyTemplateToControl(self.setProgressionControl, ZO_GetPlatformTemplate("ZO_AntiquityDiggingSummary_SetProgression"))
    ApplyTemplateToControl(self.setCompleteControl, ZO_GetPlatformTemplate("ZO_AntiquityDiggingSummary_SetComplete"))
    for _, control in self.bonusesControlPool:ActiveAndFreeObjectIterator() do
        control:MarkStyleDirty()
    end
    for _, control in self.setProgressionAntiquityIconPool:ActiveAndFreeObjectIterator() do
        control:MarkStyleDirty()
    end
    ApplyTemplateToControl(self.primaryKeybindButton, ZO_GetPlatformTemplate("ZO_KeybindButton"))
    ApplyTemplateToControl(self.secondaryKeybindButton, ZO_GetPlatformTemplate("ZO_KeybindButton"))
    -- Reset the text here to handle the force uppercase on gamepad
    self.primaryKeybindButton:SetText(self.primaryKeybindButton.originalText)
    self.secondaryKeybindButton:SetText(self.secondaryKeybindButton.originalText)
end
function ZO_AntiquityDiggingSummary:BeginEndOfGameFanfare(gameOverFlags)
    SCENE_MANAGER:AddFragment(ANTIQUITY_DIGGING_SUMMARY_FRAGMENT)
    self.gameOverFlags = gameOverFlags
    if gameOverFlags ~= ANTIQUITY_DIGGING_GAME_OVER_FLAGS_VICTORY then
        self.failureReasonBodyLabel:SetText(GetString("SI_DIGGINGGAMEOVERFLAGS", gameOverFlags))
        self.fanfareStateMachine:FireCallbacks(END_OF_GAME_FANFARE_TRIGGER_COMMANDS.BEGIN)
        return
    end
    local antiquityId = GetDigSpotAntiquityId()
    local antiquitySetId = GetAntiquitySetId(antiquityId)
    self.hasAntiquitySet = antiquitySetId ~= 0
    -- Antiquity Reward
    local rewardSubheaderHeaderStringId = self.hasAntiquitySet and SI_ANTIQUITY_DIGGING_REWARDS_ANTIQUITY_FRAGMENT_HEADER or SI_ANTIQUITY_DIGGING_REWARDS_ANTIQUITY_HEADER
    self.rewardAntiquitySubHeaderLabelRevealer:SetText(GetString(rewardSubheaderHeaderStringId))
    local antiquityName = zo_strformat(SI_ANTIQUITY_NAME_FORMATTER, GetAntiquityName(antiquityId))
    local antiquityQuality = GetAntiquityQuality(antiquityId)
    local qualityColorDef = GetAntiquityQualityColor(antiquityQuality)
    self.rewardAntiquityIconTexture:SetTexture(GetAntiquityIcon(antiquityId))
    self.rewardAntiquityNameLabelRevealer:SetText(qualityColorDef:Colorize(antiquityName))
    -- New Lead
    local newLeadAntiquityId = GetDigSpotNewLeadRewardAntiquityId()
    self.hasNewLead = newLeadAntiquityId ~= 0
    if self.hasNewLead then
        local antiquityLeadName = zo_strformat(SI_ANTIQUITY_LEAD_NAME_FORMATTER, GetAntiquityName(newLeadAntiquityId))
        local antiquityLeadQuality = GetAntiquityQuality(newLeadAntiquityId)
        local antiquityLeadQualityColorDef = GetAntiquityQualityColor(antiquityLeadQuality)
        self.newLeadNameLabel:SetText(antiquityLeadQualityColorDef:Colorize(antiquityLeadName))
        self.bonusRewardsHeaderLabel:SetAnchor(TOP, self.bonusRewardsControl, CENTER, 0, 70)
        self.hasNewLead = true
    else
        self.bonusRewardsHeaderLabel:SetAnchor(TOP, self.bonusRewardsControl, CENTER, 0, -70)
        self.hasNewLead = false
    end
    -- Bonus Rewards
    local numBonusLootRewards = GetNumDigSpotBonusLootRewards()
    local currentRowControl = nil
    local previousControl = nil
    local maxBonusLootPerRow = 3
    self.hasBonusRewards = numBonusLootRewards > 0
    for i = 1, numBonusLootRewards do
        local control = self.bonusesControlPool:AcquireObject(i)
        local lootType, id, name, icon, count, quality = GetDigSpotBonusLootRewardInfo(i)
        local qualityColorDef = nil
        local countText = ""
        if lootType == LOOT_TABLE_ENTRY_TYPE_CURRENCY then
            name = zo_strformat(SI_CURRENCY_CUSTOM_TOOLTIP_FORMAT, ZO_Currency_GetAmountLabel(id))
            icon = ZO_Currency_GetPlatformCurrencyLootIcon(id)
            local USE_SHORT_FORMAT = true
            countText = ZO_CurrencyControl_FormatAndLocalizeCurrency(count, USE_SHORT_FORMAT)
        elseif lootType == LOOT_TABLE_ENTRY_TYPE_ITEM then
            name = zo_strformat(SI_TOOLTIP_ITEM_NAME, name)
            qualityColorDef = GetItemQualityColor(quality)
            if count > 1 then
                countText = tostring(count)
            end
        elseif lootType == LOOT_TABLE_ENTRY_TYPE_ANTIQUITY_LEAD then
            qualityColorDef = GetAntiquityQualityColor(quality)
        end
        if qualityColorDef then
            name = qualityColorDef:Colorize(name)
        end
        control.nameLabel:SetText(name)
        control.iconTexture:SetTexture(icon)
        control.stackCountLabel:SetText(countText)
        --See if we've reached the maximum items for the current row
        if i % maxBonusLootPerRow == 1 then
            --If there is no row control yet, we need to create one
            if not currentRowControl then
                currentRowControl = self.bonusesRowControlPool:AcquireObject()
                currentRowControl:SetAnchor(TOP, nil, TOP, 0, 15)
            else
                --If we get here, this is not the first row, so anchor it underneath the previous row
                local rowControl = self.bonusesRowControlPool:AcquireObject()
                rowControl:SetAnchor(TOP, currentRowControl, BOTTOM, 0, 10)
                currentRowControl = rowControl
                previousControl = nil
            end
        end
        control:SetParent(currentRowControl)
        --If this is not the first control, put it to the right of the previous control, otherwise anchor it to the top left of the row
        if previousControl then
            control:SetAnchor(TOPLEFT, previousControl, TOPRIGHT, 40, 0)
        else
            control:SetAnchor(TOPLEFT)
        end
        previousControl = control
    end
    self.bonusRewardsNoLootFoundLabel:SetHidden(self.hasBonusRewards)
    -- Lore
        self.showLore = true
    else
        self.showLore = false
    end
    
    -- Set Progression
    if self.hasAntiquitySet then
        local MAX_ICONS_PER_ROW = 8
        local numAntiquitiesInSet = GetNumAntiquitySetAntiquities(antiquitySetId)
        local antiquitySetName = zo_strformat(SI_ANTIQUITY_NAME_FORMATTER, GetAntiquitySetName(antiquitySetId))
        local antiquitySetQuality = GetAntiquitySetQuality(antiquitySetId)
        local antiquitySetQualityColorDef = GetAntiquityQualityColor(antiquitySetQuality)
        self.setProgressionHeaderLabel:SetText(antiquitySetQualityColorDef:Colorize(antiquitySetName))
        -- TODO: This logic will need to change when we implement the fancy translation animations
        local firstControlInRow = nil
        local previousControl = nil
        local isAntiquitySetComplete = DidDigSpotCompleteAntiquitySet()
        for i = 1, numAntiquitiesInSet do
            local control = self.setProgressionAntiquityIconPool:AcquireObject()
            local antiquityFragmentId = GetAntiquitySetAntiquityId(antiquitySetId, i)
            local isAntiquityFragmentDigSpotAntiquity = antiquityFragmentId == antiquityId
            local antiquityFragmentRecovered = GetNumAntiquitiesRecovered(antiquityFragmentId) > 0
            -- If the set is complete, the flag will have already been cleared before we hit this rewards fanfare, so treat it like it had been set.
            local antiquityFragmentNeedsCombination = DoesAntiquityNeedCombination(antiquityFragmentId) or isAntiquitySetComplete
            local antiquityFragmentDiscovered = isAntiquityFragmentDigSpotAntiquity or antiquityFragmentRecovered
            if not antiquityFragmentDiscovered then
                local requiresLead = DoesAntiquityRequireLead(antiquityFragmentId)
                local meetsLeadRequirement = not requiresLead or DoesAntiquityHaveLead(antiquityFragmentId)
                antiquityFragmentDiscovered = meetsLeadRequirement
            end
            local icon = antiquityFragmentDiscovered and GetAntiquityIcon(antiquityFragmentId) or "EsoUI/Art/Icons/U26_Unknown_Antiquity_QuestionMark.dds"
            local iconTexture = control.iconTexture
            iconTexture:SetTexture(icon)
            -- The just dug up antiquity will start incomplete and become complete through animations
            local desaturateControl = not antiquityFragmentNeedsCombination or isAntiquityFragmentDigSpotAntiquity
            local showSilhouette = (antiquityFragmentDiscovered and not antiquityFragmentNeedsCombination) or isAntiquityFragmentDigSpotAntiquity
            control:SetDisplayBehavior(desaturateControl, showSilhouette)
            if isAntiquityFragmentDigSpotAntiquity then
                self.setProgressionAntiquityIconScaleTimeline:ApplyAllAnimationsToControl(iconTexture)
                self.setProgressionControlForCurrentAntiquity = control
                self.setProgressionSparksParticleSystem:SetParentControl(control.frameTexture)
            end
            local delayMs = (i - 1) * SET_PROGRESSION_FRAMED_ICON_DELAY_MODIFIER_MS
            control.fadeTimeline:SetAllAnimationOffsets(delayMs)
            if i % MAX_ICONS_PER_ROW == 1 then
                if firstControlInRow then
                    control:SetAnchor(TOPLEFT, firstControlInRow, BOTTOMLEFT, 0, 5)
                else
                    control:SetAnchor(TOPLEFT)
                end
                firstControlInRow = control
            else
                control:SetAnchor(LEFT, previousControl, RIGHT, 5, 0)
            end
            previousControl = control
        end
        self.setProgressionAntiquityIconScaleTimeline:SetAllAnimationOffsets((numAntiquitiesInSet * SET_PROGRESSION_FRAMED_ICON_DELAY_MODIFIER_MS) + ZO_PROGRESSION_FRAMED_ICON_FADE_DURATION_MS)
        -- Set Complete
        self.isAntiquitySetComplete = isAntiquitySetComplete
        if isAntiquitySetComplete then
            local icon = GetAntiquitySetIcon(antiquitySetId)
            self.setCompleteFramedAntiquityIconTexture:SetTexture(icon)
        end
    end
    self.fanfareStateMachine:FireCallbacks(END_OF_GAME_FANFARE_TRIGGER_COMMANDS.BEGIN)
end
function ZO_AntiquityDiggingSummary:AcquireAndLayoutLoreDocumentControl()
    local USE_MAGIC_VIEW = true
    local loreDocumentControl = ANTIQUITY_LORE_DOCUMENT_MANAGER:AcquireWideDocumentForLoreEntry(self.loreControl, GetDigSpotAntiquityId(), GetNumAntiquityLoreEntriesAcquired(GetDigSpotAntiquityId()), USE_MAGIC_VIEW)
    loreDocumentControl:SetAnchor(TOP, self.loreHeaderLabel, BOTTOM, 0, 20)
    -- The XL size is large enough that we need to move the header up in the post-dig summary to avoid the bottom being cut off
    -- If we ever did need more than XL we'd need to rethink our approach and design
    if loreDocumentControl.sizeDescriptor == "XL" then
        self.loreHeaderLabel:SetAnchor(BOTTOM, nil, CENTER, 0, -450)
    else
        self.loreHeaderLabel:SetAnchor(BOTTOM, nil, CENTER, 0, -275)
    end
end
function ZO_AntiquityDiggingSummary:HandleCommand(command)
    self.fanfareStateMachine:FireCallbacks(command)
end
function ZO_AntiquityDiggingSummary:OnUsePrimaryAction()
    if not self.primaryKeybindButton:IsHidden() then
        self.primaryKeybindButton:OnClicked()
    end
end
function ZO_AntiquityDiggingSummary:OnUseCodex()
    if not self.secondaryKeybindButton:IsHidden() then
        self.secondaryKeybindButton:OnClicked()
    end
end
function ZO_AntiquityDiggingSummary:ShowCodexEntry()
end
-- Global / XML --
    ANTIQUITY_DIGGING_SUMMARY = ZO_AntiquityDiggingSummary:New(control)
end