ESO Lua File v100015

internalingame/market/keyboard/market_keyboard.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
ZO_KEYBOARD_MARKET_SCENE_NAME  = "market"
local MARKET_LABELED_GROUP_LABEL_TEMPLATE = "ZO_Market_GroupLabel"
ZO_MARKET_PREVIEW_DIRECTION_PREVIOUS = "previous"
ZO_MARKET_PREVIEW_DIRECTION_NEXT = "next"
--
--[[ Market ]]--
--
local Market = ZO_Market_Shared:Subclass()
function Market:New(...)
    return ZO_Market_Shared.New(self, ...)
end
function Market:Initialize(control)
    control.owner = self
    self.control = control
    self.contentsControl = self.control:GetNamedChild("Contents")
    self.currencyLabel = self.contentsControl:GetNamedChild("Currency"):GetNamedChild("CurrencyLabel")
    self.messageLabel = self.control:GetNamedChild("MessageLabel")
    self.messageLoadingIcon = self.control:GetNamedChild("MessageLoadingIcon")
    self.rotationControl = self.control:GetNamedChild("RotationArea")
    self.noMatchesMessage = self.contentsControl:GetNamedChild("NoMatchMessage")
    self.searchBox = self.contentsControl:GetNamedChild("Search"):GetNamedChild("Box")
    self.previewVariationLeftArrow = self.control:GetNamedChild("PreviewVariationLeftArrow")
    self.previewVariationRightArrow = self.control:GetNamedChild("PreviewVariationRightArrow")
    self.variationLabel = self.control:GetNamedChild("VariationLabel")
    local subscriptionControl = self.contentsControl:GetNamedChild("SubscriptionPage")
    self.subscriptionPage = subscriptionControl
    self.subscriptionOverviewLabel = subscriptionControl:GetNamedChild("Overview")
    self.subscriptionStatusLabel = subscriptionControl:GetNamedChild("MembershipInfoStatus")
    self.subscriptionMembershipBanner = subscriptionControl:GetNamedChild("MembershipInfoBanner")
    self.subscriptionBenefitsLabel = subscriptionControl:GetNamedChild("BenefitsText")
    self.subscriptionSubscribeButton = subscriptionControl:GetNamedChild("SubscribeButton")
    self.nextPreviewChangeTime = 0
    self.canBeginPreview = true
    self.control:SetHandler("OnUpdate", function(control, currentTime) self:OnUpdate(currentTime) end)
    -- ZO_Market_Shared.Initialize needs to be called after the control declarations
    -- This is because several overridden functions such as InitializeCategories and InitializeFilters called during initialization reference them
    ZO_Market_Shared.Initialize(self)
end
function Market:GetLabeledGroupLabelTemplate()
    return MARKET_LABELED_GROUP_LABEL_TEMPLATE
end
function Market:UpdateCurrencyBalance(currency)
    local currencyString = zo_strformat(SI_MARKET_CURRENCY_LABEL, ZO_CommaDelimitNumber(currency))
    self.currencyLabel:SetText(currencyString)
end
function Market:InitializeKeybindDescriptors()
    self.keybindStripDescriptors =
    {
        alignment = KEYBIND_STRIP_ALIGN_RIGHT,
        {
            alignment = KEYBIND_STRIP_ALIGN_CENTER,
            name =      GetString(SI_MARKET_END_PREVIEW_KEYBIND_TEXT),
            keybind =   "UI_SHORTCUT_NEGATIVE",
            visible =   function()
                                local isPreviewing = self:GetPreviewState()
                                return isPreviewing
                        end,
            callback =  function()
                            local isPreviewing = self:GetPreviewState()
                            if isPreviewing then
                                self:EndCurrentPreview()
                            end
                        end,
        },
        {
            name =      GetString(SI_MARKET_PREVIEW_KEYBIND_TEXT),
            keybind =   "UI_SHORTCUT_SECONDARY",
            visible =   function()
                            return self:IsReadyToPreview()
                        end,
            callback =  function()
                            self.selectedMarketProduct.variation = 1
                            self:BeginPreview()
                            self:SetCanBeginPreview(false, GetFrameTimeSeconds())
                        end,
            enabled =   function()
                            return self.canBeginPreview
                        end,
        },
        {
            name =  function()
                        if self.selectedMarketProduct:IsBundle() then
                            return GetString(SI_MARKET_PURCHASE_BUNDLE_KEYBIND_TEXT)
                        else
                            return GetString(SI_MARKET_PURCHASE_KEYBIND_TEXT)
                        end
                    end,
            keybind = "UI_SHORTCUT_PRIMARY",
            visible = function()
                          return self.selectedMarketProduct ~= nil and not self.selectedMarketProduct:IsPurchaseLocked()
                      end,
            callback = function()
                           self.selectedMarketProduct:Purchase()
                       end,
        },
    }
end
do
    -- Map from enum to keyboard specific strings
    local MARKET_FILTERS =
    {
        [MARKET_FILTER_VIEW_ALL] = SI_MARKET_FILTER_SHOW_ALL,
        [MARKET_FILTER_VIEW_PURCHASED] = SI_MARKET_FILTER_SHOW_PURCHASED,
        [MARKET_FILTER_VIEW_NOT_PURCHASED] = SI_MARKET_FILTER_SHOW_NOT_PURCHASED,
    }
    function Market:InitializeFilters()
        self.categoryFilter = self.contentsControl:GetNamedChild("Filter")
        self.categoryFilterLabel = self.contentsControl:GetNamedChild("FilterLabel")
        local comboBox = ZO_ComboBox_ObjectFromContainer(self.categoryFilter)
        comboBox:SetSortsItems(false)
        comboBox:SetFont("ZoFontWinT1")
        comboBox:SetSpacing(4)
    
        local function OnFilterChanged(comboBox, entryText, entry)
            self.categoryFilter.filterType = entry.filterType
            self:RefreshVisibleCategoryFilter()
        end
        for i, stringId in ipairs(MARKET_FILTERS) do
            local entry = comboBox:CreateItemEntry(GetString(stringId), OnFilterChanged)
            entry.filterType = i
            comboBox:AddItem(entry)
        end
        comboBox:SelectFirstItem()
    end
end
function Market:CreateMarketScene()
    local scene = ZO_RemoteScene:New(ZO_KEYBOARD_MARKET_SCENE_NAME, SCENE_MANAGER)
    SYSTEMS:RegisterKeyboardRootScene(ZO_MARKET_NAME, scene)
    self:SetMarketScene(scene)
end
function Market:InitializeCategories()
    self.categories = self.contentsControl:GetNamedChild("Categories")
    self.categoryTree = ZO_Tree:New(self.categories:GetNamedChild("ScrollChild"), 60, -10, 300)
    local function BaseTreeHeaderIconSetup(control, data, open)
        local iconTexture = (open and data.pressedIcon or data.normalIcon) or "EsoUI/Art/Icons/icon_missing.dds"
        local mouseoverTexture = data.mouseoverIcon or "EsoUI/Art/Icons/icon_missing.dds"
        
        control.icon:SetTexture(iconTexture)
        control.iconHighlight:SetTexture(mouseoverTexture)
        ZO_IconHeader_Setup(control, open)
    end
    local function BaseTreeHeaderSetup(node, control, data, open)
        control.text:SetModifyTextType(MODIFY_TEXT_TYPE_UPPERCASE)
        control.text:SetText(data.name)
        BaseTreeHeaderIconSetup(control, data, open)
    end
    local function TreeHeaderSetup_Child(node, control, data, open, userRequested)
        BaseTreeHeaderSetup(node, control, data, open)
        if(open and userRequested) then
            self.categoryTree:SelectFirstChild(node)
        end
    end
    local function TreeHeaderSetup_Childless(node, control, data, open)
        BaseTreeHeaderSetup(node, control, data, open)
    end
    local function TreeEntryOnSelected(control, data, selected, reselectingDuringRebuild)
        control:SetSelected(selected)
        if selected and not reselectingDuringRebuild then
            self:OnCategorySelected(data)
            local categoryIndex, subCategoryIndex
            -- faked category types don't have real category indices so keep them as nil
            if data.type == ZO_MARKET_CATEGORY_TYPE_NONE then
                if data.parentData then
                    categoryIndex = data.parentData.categoryIndex
                    subCategoryIndex = data.categoryIndex
                else
                    categoryIndex = data.categoryIndex
                end
            end
            OnMarketCategorySelected(categoryIndex, subCategoryIndex)
        end
    end
    local function TreeHeaderOnSelected_Childless(control, data, selected, reselectingDuringRebuild)
        TreeEntryOnSelected(control, data, selected, reselectingDuringRebuild)
        BaseTreeHeaderIconSetup(control, data, selected)
    end
    local DEFAULT_NOT_SELECTED = false
    local function TreeEntrySetup(node, control, data, open)
        control:SetText(data.name)
        control:SetSelected(DEFAULT_NOT_SELECTED)
    end
    
    self.categoryTree:AddTemplate("ZO_IconHeader", TreeHeaderSetup_Child, nil, nil, 60, 0)
    self.categoryTree:AddTemplate("ZO_MarketChildlessCategory", TreeHeaderSetup_Childless, TreeHeaderOnSelected_Childless)
    self.categoryTree:AddTemplate("ZO_MarketSubCategory", TreeEntrySetup, TreeEntryOnSelected)
    self.categoryTree:SetExclusive(true) --only one header open at a time
    self.categoryTree:SetOpenAnimation("ZO_TreeOpenAnimation")
end
function Market:InitializeMarketList()
    self.marketProductList = self.contentsControl:GetNamedChild("EntryList")
    self.marketScrollChild = self.marketProductList:GetNamedChild("ScrollChild")
    -- override the default functionality when the extants change for the product list so we can scroll to a specific item
    -- if one exists because we openned the market to see a specific item
    self.marketProductList.scroll:SetHandler("OnScrollExtentsChanged", function(control)
                                                                                   ZO_Scroll_OnExtentsChanged(control:GetParent()) 
                                                                                   self:ScrollAndPreviewQueuedMarketProduct()
                                                                                   end)
    -- MarketProductIcon Pool
    local function CreateMarketProductIcon(objectPool)
        -- parent will be changed to the MarketProduct that uses the icon
        return ZO_MarketProductIcon:New(objectPool:GetNextControlId(), self.marketScrollChild, self.marketProductIconPool)
    end
    
    local function ResetMarketProductIcon(marketProductIcon)
        marketProductIcon:Reset()
    end
    self.marketProductIconPool = ZO_ObjectPool:New(CreateMarketProductIcon, ResetMarketProductIcon)
    -- ZO_MarketProductIndividual Pool
    local function CreateMarketProduct(objectPool)
        return ZO_MarketProductIndividual:New(objectPool:GetNextControlId(), self.marketScrollChild, self.marketProductIconPool, self)
    end
    
    local function ResetMarketProduct(marketProduct)
        marketProduct:Reset()
    end
    self.marketProductPool = ZO_ObjectPool:New(CreateMarketProduct, ResetMarketProduct)
    -- ZO_MarketProductBundle Pool
    local function CreateMarketProductBundle(objectPool)
        return ZO_MarketProductBundle:New(objectPool:GetNextControlId(), self.marketScrollChild, self.marketProductIconPool, self)
    end
    
    local function ResetMarketProductBundle(marketProductBundle)
        marketProductBundle:Reset()
    end
    self.marketProductBundlePool = ZO_ObjectPool:New(CreateMarketProductBundle, ResetMarketProductBundle)
end
function Market:BuildCategories()
    local currentCategory = self.currentCategoryData
    self.categoryTree:Reset()
    self.nodeLookupData = {}
    if self.searchString == "" then
        --Special featured items blade
        local numFeaturedMarketProducts = GetNumFeaturedMarketProducts()
        if numFeaturedMarketProducts > 0 then
            local normalIcon = "esoui/art/treeicons/achievements_indexicon_summary_up.dds"
            local pressedIcon = "esoui/art/treeicons/achievements_indexicon_summary_down.dds"
            local mouseoverIcon = "esoui/art/treeicons/achievements_indexicon_summary_over.dds"
            self:AddTopLevelCategory(ZO_MARKET_FEATURED_CATEGORY_INDEX, GetString(SI_MARKET_FEATURED_CATEGORY), 0, normalIcon, pressedIcon, mouseoverIcon, ZO_MARKET_CATEGORY_TYPE_FEATURED)
        end
        local normalIcon = "esoui/art/treeicons/store_indexIcon_ESOPlus_up.dds"
        local pressedIcon = "esoui/art/treeicons/store_indexIcon_ESOPlus_down.dds"
        local mouseoverIcon = "esoui/art/treeicons/store_indexIcon_ESOPlus_over.dds"
        self:AddTopLevelCategory(ZO_MARKET_ESO_PLUS_CATEGORY_INDEX, GetString(SI_MARKET_ESO_PLUS_CATEGORY), 0, normalIcon, pressedIcon, mouseoverIcon, ZO_MARKET_CATEGORY_TYPE_ESO_PLUS)
        for i = 1, GetNumMarketProductCategories() do
            local name, numSubCategories, numMarketProducts, normalIcon, pressedIcon, mouseoverIcon = GetMarketProductCategoryInfo(i)
            self:AddTopLevelCategory(i, name, numSubCategories, normalIcon, pressedIcon, mouseoverIcon)
        end
    else
        for categoryIndex, data in pairs(self.searchResults) do
            local name, numSubCategories, numMarketProducts, normalIcon, pressedIcon, mouseoverIcon = GetMarketProductCategoryInfo(categoryIndex)
            self:AddTopLevelCategory(categoryIndex, name, numSubCategories, normalIcon, pressedIcon, mouseoverIcon)
        end
    end
    
    local nodeToSelect
    if currentCategory then
        local categoryIndex
        local subcatgoryIndex
        local parentData = currentCategory.parentData
        if parentData then
            categoryIndex = parentData.categoryIndex
            subcatgoryIndex = currentCategory.categoryIndex
        else
            categoryIndex = currentCategory.categoryIndex
        end
        nodeToSelect = self:GetCategoryData(categoryIndex, subcatgoryIndex)
    end
    self.categoryTree:Commit(nodeToSelect)
    self.refreshCategories = false
end
function Market:RefreshVisibleCategoryFilter()
    local data = self.categoryTree:GetSelectedData()
    if data ~= nil then
        self:OnCategorySelected(data)
    end
end
do
    local function AddNodeLookup(lookup, node, parent, categoryIndex)
        if categoryIndex ~= nil then
            local parentCategory = categoryIndex
            local subCategory
            if parent then
                parentCategory = parent.data.categoryIndex
                subCategory = categoryIndex
            end
            local categoryTable = lookup[parentCategory]
            
            if categoryTable == nil then
                categoryTable = { subCategories = {} }
                lookup[parentCategory] = categoryTable
            end
            if subCategory then
                categoryTable.subCategories[subCategory] = node
            else
                categoryTable.node = node
            end
        end
    end
    function Market:GetCategoryData(categoryIndex, subCategoryIndex)
        if categoryIndex ~= nil then
            local categoryTable = self.nodeLookupData[categoryIndex]
            if categoryTable ~= nil then
                if subCategoryIndex ~= nil then
                    return categoryTable.subCategories[subCategoryIndex]
                else
                    if categoryTable.node:IsLeaf() then
                        return categoryTable.node
                    else
                        return categoryTable.node:GetChildren()[1]
                    end
                end
            end
        end
    end
    function Market:GetMarketProductInfo(productId)
        for i = 1, #self.marketProducts do
            if self.marketProducts[i].product:GetId() == productId then
                return self.marketProducts[i]
            end
        end
        for i = 1, #self.featuredProducts do
            if self.featuredProducts[i].product:GetId() == productId then
                return self.featuredProducts[i]
            end
        end
        for i = 1, #self.limitedTimedOfferProducts do
            if self.limitedTimedOfferProducts[i].product:GetId() == productId then
                return self.limitedTimedOfferProducts[i]
            end
        end
    end
    function Market:RequestShowMarketProduct(id)
        if self.marketState ~= MARKET_STATE_OPEN then
            self.queuedMarketProductId = id
            return
        end
        local targetNode = self:GetCategoryDataForMarketProduct(id)
        if targetNode then
            if self.categoryTree:GetSelectedNode() == targetNode then
                self:ScrollAndPreviewMarketProduct(id)
            else
                self.categoryTree:SelectNode(targetNode)
                self.queuedMarketProductId = id -- order of operations is important here
            end
        end
    end
    local INSTANTLY_SCROLL_TO_CENTER = true
    function Market:ScrollAndPreviewMarketProduct(marketProductId)
        local marketProductInfo = self:GetMarketProductInfo(marketProductId)
        if marketProductInfo then
            ZO_Scroll_ScrollControlIntoCentralView(self.marketProductList, marketProductInfo.control, INSTANTLY_SCROLL_TO_CENTER)
            marketProductInfo.product:PlayHighlightAnimationToEnd()
            self.queuedMarketProductPreview = marketProductInfo.product
        end
    end
    function Market:ScrollAndPreviewQueuedMarketProduct()
        self:ScrollAndPreviewMarketProduct(self.queuedMarketProductId)
        self.queuedMarketProductId = nil
    end
    function Market:RequestShowMarketWithSearchString(searchString)
        if self.marketState ~= MARKET_STATE_OPEN then
            self.queuedSearchString = searchString
            return
        end
        self:DisplayMarketProductsBySearchString(searchString)
    end
    function Market:DisplayMarketProductsBySearchString(searchString)
        self.searchBox:SetText(searchString)
    end
    function Market:DisplayQueuedMarketProductsBySearchString()
        self:DisplayMarketProductsBySearchString(self.queuedSearchString)
        self.queuedSearchString = nil
    end
    local function AddCategory(lookup, tree, nodeTemplate, parent, categoryIndex, name, normalIcon, pressedIcon, mouseoverIcon, categoryType)
        categoryType = categoryType or ZO_MARKET_CATEGORY_TYPE_NONE
        local entryData = 
        {
            categoryIndex = categoryIndex,
            name = zo_strformat(SI_MARKET_PRODUCT_NAME_FORMATTER, name),
            type = categoryType,
            parentData = parent and parent.data or nil,
            normalIcon = normalIcon,
            pressedIcon = pressedIcon,
            mouseoverIcon = mouseoverIcon,
        }
        local soundId = parent and SOUNDS.MARKET_SUB_CATEGORY_SELECTED or SOUNDS.MARKET_CATEGORY_SELECTED
        local node = tree:AddNode(nodeTemplate, entryData, parent, soundId)
        entryData.node = node
        AddNodeLookup(lookup, node, parent, categoryIndex)
        return node
    end
    function Market:AddTopLevelCategory(categoryIndex, name, numSubCategories, normalIcon, pressedIcon, mouseoverIcon, categoryType)
        local tree = self.categoryTree
        local lookup = self.nodeLookupData
        --Either there's more than one subcategory found, or the subcategory found isn't "general", thus children
        local searchResultsWithChildren = self.searchString ~= "" and (NonContiguousCount(self.searchResults[categoryIndex]) > 1 or self.searchResults[categoryIndex]["root"] == nil)
        local hasChildren = numSubCategories > 0 --Only for non-search results
        local nodeTemplate = hasChildren and "ZO_IconHeader" or "ZO_MarketChildlessCategory"
        local parent = AddCategory(lookup, tree, nodeTemplate, nil, categoryIndex, name, normalIcon, pressedIcon, mouseoverIcon, categoryType)
        if searchResultsWithChildren then
            for subcategoryIndex, data in pairs(self.searchResults[categoryIndex]) do
                if subcategoryIndex ~= "root" then
                    local subCategoryName, numSubCategoryMarketProducts = GetMarketProductSubCategoryInfo(categoryIndex, subcategoryIndex)
                    AddCategory(lookup, tree, "ZO_MarketSubCategory", parent, subcategoryIndex, subCategoryName, normalIcon, pressedIcon, mouseoverIcon)
                end
            end
        elseif hasChildren then
            for i = 1, numSubCategories do
                local subCategoryName, numSubCategoryMarketProducts = GetMarketProductSubCategoryInfo(categoryIndex, i)
                AddCategory(lookup, tree, "ZO_MarketSubCategory", parent, i, subCategoryName, normalIcon, pressedIcon, mouseoverIcon)
            end
        end
        return parent
    end
    
    local function GetFeaturedSubCategoryProductIds(index, ...)
        if index >= 1 then
            local id = GetFeaturedMarketProductId(index)
            index = index - 1
            return GetFeaturedSubCategoryProductIds(index, id, ...)
        end
        return ...
    end
    
    function Market:BuildFeaturedMarketProductList(data)
        local numFeaturedMarketProducts = GetNumFeaturedMarketProducts()
        self:LayoutMarketProducts(GetFeaturedSubCategoryProductIds(numFeaturedMarketProducts))
    end
end
function Market:GetMarketProductIds(categoryIndex, subCategoryIndex, index, ...)
    if index >= 1 then
        if self.searchString ~= "" then
            if NonContiguousCount(self.searchResults) == 0 then
                return ...
            end
            local effectiveSubcategoryIndex = subCategoryIndex or "root"
            if not self.searchResults[categoryIndex][effectiveSubcategoryIndex][index] then
                index = index - 1
                return self:GetMarketProductIds(categoryIndex, subCategoryIndex, index, ...)
            end
        end
        local id = GetMarketProductDefId(categoryIndex, subCategoryIndex, index)
        index = index - 1
        return self:GetMarketProductIds(categoryIndex, subCategoryIndex, index, id, ...)
    end
    return ...
end
do
    local ROW_PADDING = 10
    local NUM_COLUMNS = 2
    local LABELED_GROUP_PADDING = 70
    local FIRST_LABELED_GROUP_PADDING = 40
    local LABELED_GROUP_LABEL_PADDING = -20
    function Market:AddLabeledGroupTable(labeledGroupName, labeledGroupTable)
        ZO_Market_Shared.AddLabeledGroupTable(self, labeledGroupName, labeledGroupTable)
        
        local previousRowControl = self.previousRowControl
        local previousControl
        local currentColumn = 1
        for i = 1, #labeledGroupTable do
            local productInfo = labeledGroupTable[i]
            local marketProduct = productInfo.product
            local marketControl = marketProduct:GetControl()
            marketControl:ClearAnchors()
            local isBundle = productInfo.isBundle
            if isBundle and currentColumn ~= 1 then
                currentColumn = 1 -- make sure the bundle is on a new line, it takes 2 spots
            end
            if currentColumn == 1 then
                if previousRowControl then
                    local yPadding = (i == 1 and LABELED_GROUP_PADDING or 0) + ROW_PADDING
                    marketControl:SetAnchor(TOPLEFT, previousRowControl, BOTTOMLEFT, 0, yPadding)
                else
                    marketControl:SetAnchor(TOPLEFT, nil, TOPLEFT, 0, labeledGroupName and FIRST_LABELED_GROUP_PADDING or 0)
                end
                
                previousRowControl = marketControl
            else
                marketControl:SetAnchor(LEFT, previousControl, RIGHT, ZO_MARKET_PRODUCT_COLUMN_PADDING, 0)
            end
            if isBundle then
                currentColumn = 1 -- make sure the next item goes on a new line
            else
                currentColumn = currentColumn + 1
                if currentColumn > NUM_COLUMNS then
                    currentColumn = 1
                end
            end
            
            if i == 1 and labeledGroupName then
                self:AddLabel(labeledGroupName, marketControl, LABELED_GROUP_LABEL_PADDING)
            end
            previousControl = marketControl
        end
        
        if #labeledGroupTable > 0 then
            self.previousRowControl = previousRowControl
        end
    end
end
function Market:ClearMarketProducts()
    self.marketProductPool:ReleaseAllObjects()
    self.marketProductBundlePool:ReleaseAllObjects()
    ZO_Scroll_ResetToTop(self.marketProductList)
    self.previousRowControl = nil
end
function Market:DisplayEsoPlusOffer()
    self.subscriptionPage:SetHidden(false)
    self.categoryFilter:SetHidden(true)
    self.categoryFilterLabel:SetHidden(true)
    local overview, benefits, image = GetMarketSubscriptionKeyboardInfo()
    self.subscriptionOverviewLabel:SetText(overview)
    self.subscriptionBenefitsLabel:SetText(benefits)
    self.subscriptionMembershipBanner:SetTexture(image)
    local isSubscribed = IsESOPlusSubscriber()
    local statusText = isSubscribed and SI_MARKET_SUBSCRIPTION_PAGE_SUBSCRIPTION_STATUS_ACTIVE or SI_MARKET_SUBSCRIPTION_PAGE_SUBSCRIPTION_STATUS_NOT_ACTIVE
    self.subscriptionSubscribeButton:SetHidden(isSubscribed)
    self.subscriptionStatusLabel:SetText(GetString(statusText))
end
local NO_LABELED_GROUP_HEADER = nil
function Market:LayoutMarketProducts(...)
    self.subscriptionPage:SetHidden(true)
    self.categoryFilter:SetHidden(false)
    self.categoryFilterLabel:SetHidden(false)
    local categoryType = self.currentCategoryData.type
    local filterType = self.categoryFilter.filterType
    local hasShownProduct = false
    for i = 1, select("#", ...) do
        local id = select(i, ...)
        if self:ShouldAddMarketProduct(filterType, id) then
            hasShownProduct = true
            local isBundle = GetMarketProductType(id) == MARKET_PRODUCT_TYPE_BUNDLE
            local pool = isBundle and self.marketProductBundlePool or self.marketProductPool
            local marketProduct = pool:AcquireObject()
            marketProduct:Show(id)
            local name, description, cost, discountedCost, discountPercent, icon, isNew, isFeatured = marketProduct:GetMarketProductInfo()
            local timeLeft = marketProduct:GetTimeLeftInSeconds()
            -- durations longer than 1 month aren't represented to the user, so it's effectively not limited time
            local isLimitedTime = timeLeft > 0 and timeLeft <= ZO_ONE_MONTH_IN_SECONDS
            local doesContainDLC = DoesMarketProductContainDLC(id)
            -- only show the market product in the featured section or the all section
            if doesContainDLC and categoryType == ZO_MARKET_CATEGORY_TYPE_FEATURED then
                self:AddProductToLabeledGroupTable(self.dlcProducts, name, marketProduct)
            else
                if isLimitedTime then
                    self:AddProductToLabeledGroupTable(self.limitedTimedOfferProducts, name, marketProduct)
                elseif isFeatured then
                    self:AddProductToLabeledGroupTable(self.featuredProducts, name, marketProduct)
                else
                    self:AddProductToLabeledGroupTable(self.marketProducts, name, marketProduct)
                end
            end
        end
    end
    if #self.limitedTimedOfferProducts > 0 then
        self:AddLabeledGroupTable(GetString(SI_MARKET_LIMITED_TIME_OFFER_CATEGORY), self.limitedTimedOfferProducts)
    end
    if #self.dlcProducts > 0 then
        self:AddLabeledGroupTable(GetString(SI_MARKET_DLC_CATEGORY), self.dlcProducts)
    end
    if #self.featuredProducts > 0 then
        if categoryType == ZO_MARKET_CATEGORY_TYPE_NONE then
            self:AddLabeledGroupTable(GetString(SI_MARKET_FEATURED_CATEGORY), self.featuredProducts)
        else -- featured
            self:AddLabeledGroupTable(GetString(SI_MARKET_ALL_LABEL), self.featuredProducts)
        end
    end
    local categoryHeader = (#self.labeledGroups > 0) and GetString(SI_MARKET_ALL_LABEL) or NO_LABELED_GROUP_HEADER
    self:AddLabeledGroupTable(categoryHeader, self.marketProducts)
    self:ShowNoMatchesMessage(not hasShownProduct)
end
function Market:ShowMarket(showMarket)
    ZO_Market_Shared.ShowMarket(self, showMarket)
    self.contentsControl:SetHidden(not showMarket)
    self.messageLabel:SetHidden(showMarket)
    self.rotationControl:SetHidden(not showMarket)
    if showMarket then
        -- hide the market products and show our no matches message if search has no results
        local showMessage = self.searchString ~= "" and NonContiguousCount(self.searchResults) == 0
        self:ShowNoMatchesMessage(showMessage)
        self.messageLoadingIcon:Hide()
    end
end
function Market:ShowNoMatchesMessage(showMessage)
    self.marketProductList:SetHidden(showMessage)
    self.noMatchesMessage:SetHidden(not showMessage)
end
function Market:OnMarketUpdate()
    if MARKET_TREE_UNDERLAY_FRAGMENT then
        MARKET_TREE_UNDERLAY_FRAGMENT:Refresh()
    end
end
function Market:OnMarketLocked()
    self.messageLabel:SetText(GetString(SI_MARKET_LOCKED_TEXT))
    self:ShowMarket(false)
    self.messageLoadingIcon:Hide()
end
function Market:OnMarketLoading()
    if self.showLoadingText then
        self.messageLabel:SetText(GetString(SI_GAMEPAD_MARKET_PRESCENE_LOADING))
        self.messageLoadingIcon:Show()
    end
    self:ShowMarket(false)
end
function Market:MarketProductSelected(marketProduct)
    self.selectedMarketProduct = marketProduct
    self:RefreshActions()
end
function Market:RefreshActions()
    local cursor = self:IsReadyToPreview() and MOUSE_CURSOR_PREVIEW or MOUSE_CURSOR_DO_NOT_CARE
    WINDOW_MANAGER:SetMouseCursor(cursor)
end
do
    local PREVIEW_WAIT_TIME_SECONDS = ZO_MARKET_PREVIEW_WAIT_TIME_MS / 1000
    function Market:SetCanBeginPreview(canBeginPreview, lastChangeTimeSeconds)
        self.canBeginPreview = canBeginPreview
        self.nextPreviewChangeTime = lastChangeTimeSeconds + PREVIEW_WAIT_TIME_SECONDS
        self:RefreshKeybinds()
        if canBeginPreview then
            self.variationLabel:SetColor(GetInterfaceColor(INTERFACE_COLOR_TYPE_TEXT_COLORS, INTERFACE_TEXT_COLOR_NORMAL))
        else
            self.variationLabel:SetColor(GetInterfaceColor(INTERFACE_COLOR_TYPE_TEXT_COLORS, INTERFACE_TEXT_COLOR_DISABLED))
        end
    end
end
function Market:GetCanBeginPreview()
    return self.canBeginPreview
end
do
    local DISPLAY_LOADING_DELAY_SECONDS = ZO_MARKET_DISPLAY_LOADING_DELAY_MS / 1000
    function Market:OnUpdate(currentTime)
        if(not self.canBeginPreview and (currentTime >= self.nextPreviewChangeTime)) then
            self:SetCanBeginPreview(true, currentTime)
        end
        if self.marketState == MARKET_STATE_UNKNOWN then
            if self.loadingStartTime == nil then
                self.loadingStartTime = currentTime
            end
            if currentTime - self.loadingStartTime >= DISPLAY_LOADING_DELAY_SECONDS then
                self.showLoadingText = true
                self:OnMarketLoading()
            end
        else
            self.showLoadingText = false
            loadingStartTime = nil
        end
    end
end
function Market:OnShown()
    BeginPreviewMode()
    self:AddKeybinds()
    ZO_Market_Shared.OnShown(self)
    if self.refreshCategories then
        self:BuildCategories()
    end
    if self.queuedMarketProductPreview and IsCharacterPreviewingAvailable() then
        self.queuedMarketProductPreview:Preview()
        self.queuedMarketProductPreview = nil
    end
end
function Market:OnHidden()
    self:RemoveKeybinds()
end
function Market:RefreshProducts()
    for i = 1, #self.marketProducts do
        local product = self.marketProducts[i].product
        product:Refresh()
    end
    for i = 1, #self.featuredProducts do
        local product = self.featuredProducts[i].product
        product:Refresh()
    end
    for i = 1, #self.limitedTimedOfferProducts do
        local product = self.limitedTimedOfferProducts[i].product
        product:Refresh()
    end
    for i = 1, #self.dlcProducts do
        local product = self.dlcProducts[i].product
        product:Refresh()
    end
end
function Market:RestoreActionLayerForTutorial()
    PushActionLayerByName(GetString(SI_KEYBINDINGS_LAYER_USER_INTERFACE_SHORTCUTS))
end
function Market:RemoveActionLayerForTutorial()
    -- we exit the gamepad tutotial by pressing "Alt"
    RemoveActionLayerByName(GetString(SI_KEYBINDINGS_LAYER_USER_INTERFACE_SHORTCUTS))
end
function Market:ResetSearch()
    self.searchBox:SetText("")
end
function Market:EndCurrentPreview()
    ZO_Market_Shared.EndCurrentPreview(self)
end
function Market:SetCurrentMultiVariationPreviewProduct(marketProduct)
    self.currentMultiVariationPreviewProduct = marketProduct
    local hideMultiVariationControls = marketProduct == nil
    self.previewVariationLeftArrow:SetHidden(hideMultiVariationControls)
    self.previewVariationRightArrow:SetHidden(hideMultiVariationControls)
    self.variationLabel:SetHidden(hideMultiVariationControls)
    if marketProduct then
        self.variationLabel:SetText(marketProduct:GetPreviewVariationDisplayName())
    end
end
function Market:CyclePreviewVariations(direction)
    if self.currentMultiVariationPreviewProduct then
        if direction == ZO_MARKET_PREVIEW_DIRECTION_PREVIOUS then
            self.currentMultiVariationPreviewProduct:PreviewPreviousVariation()
        else
            self.currentMultiVariationPreviewProduct:PreviewNextVariation()
        end
        self.variationLabel:SetText(self.currentMultiVariationPreviewProduct:GetPreviewVariationDisplayName())
        self:SetCanBeginPreview(false, GetFrameTimeSeconds())
    end
end
--
--[[ XML Handlers ]]--
--
    MARKET = Market:New(self)
    SYSTEMS:RegisterKeyboardObject(ZO_MARKET_NAME, MARKET)
end
function ZO_Market_BeginSearch(editBox)
    editBox:TakeFocus()
end
function ZO_Market_EndSearch(editBox)
    editBox:LoseFocus()
end
function ZO_Market_OnSearchTextChanged(editBox)
    MARKET:SearchStart(editBox:GetText())
end
    MARKET:SearchStart(editBox:GetText())
    editBox:LoseFocus()
end
    InitializeTooltip(InformationTooltip, control, BOTTOM, 0, -2)
    SetTooltipText(InformationTooltip, GetString(SI_MARKET_CURRENCY_TOOLTIP))
end
    ClearTooltip(InformationTooltip)
end
    ZO_Dialogs_ShowDialog("CONFIRM_OPEN_URL_BY_TYPE", ZO_BUY_CROWNS_URL_TYPE, ZO_BUY_CROWNS_FRONT_FACING_ADDRESS)
end
    ZO_Dialogs_ShowDialog("CONFIRM_OPEN_URL_BY_TYPE", ZO_BUY_SUBSCRIPTION_URL_TYPE, ZO_BUY_SUBSCRIPTION_FRONT_FACING_ADDRESS)
end
    if MARKET:GetCanBeginPreview() then
        MARKET:CyclePreviewVariations(direction)
    end
end