Back to Home

ESO Lua File v101041

internalingame/market/gamepad/marketproductlistscene_gamepad.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
ZO_GAMEPAD_MARKET_CONTENT_LIST_SCENE_NAME = "gamepad_market_content_list"
--
--[[ Gamepad Market Product List Scene ]]--
--
local GamepadMarketProductListScene = ZO_Gamepad_ParametricList_Screen:Subclass()
function GamepadMarketProductListScene:New(...)
    return ZO_Gamepad_ParametricList_Screen.New(self, ...)
end
function GamepadMarketProductListScene:Initialize(control)
    ZO_GAMEPAD_MARKET_LIST_SCENE = ZO_RemoteScene:New(ZO_GAMEPAD_MARKET_CONTENT_LIST_SCENE_NAME, SCENE_MANAGER)
    local ACTIVATE_ON_SHOW = true
    ZO_Gamepad_ParametricList_Screen.Initialize(self, control, ZO_GAMEPAD_HEADER_TABBAR_DONT_CREATE, ACTIVATE_ON_SHOW, ZO_GAMEPAD_MARKET_LIST_SCENE)
    self.list = self:GetMainList()
    self.previewInfos = {}
end
function GamepadMarketProductListScene:OnDeferredInitialize()
end
function GamepadMarketProductListScene:InitializeKeybindStripDescriptors()
    self.keybindStripDescriptor =
    {
        alignment = KEYBIND_STRIP_ALIGN_LEFT,
        -- "Preview" Keybind
        {
            name = GetString(SI_MARKET_PREVIEW_KEYBIND_TEXT),
            keybind = "UI_SHORTCUT_PRIMARY",
            visible =   function()
                            local targetData = self.list:GetTargetData()
                            if targetData then
                                return true
                            end
                            return false
                        end,
            enabled =   function()
                            local targetData = self.list:GetTargetData()
                            if targetData then
                                return targetData.hasPreview and IsCharacterPreviewingAvailable()
                            end
                            return false
                        end,
            callback =  function()
                            self:BeginPreview()
                        end,
        },
        -- Back
        KEYBIND_STRIP:GetDefaultGamepadBackButtonDescriptor(),
    }
end
function GamepadMarketProductListScene:InitializeHeader()
    self.headerData = {
        titleText = "",
    }
end
function GamepadMarketProductListScene:OnShowing()
    ZO_Gamepad_ParametricList_Screen.OnShowing(self)
    if self.queuedMarketProductId ~= nil then
        self:ShowMarketProduct(self.queuedMarketProductId, self.queuedPreviewType)
        self.queuedMarketProductId = nil
        self.queuedPreviewType = nil
    else
    end
end
function GamepadMarketProductListScene:OnHiding()
    GAMEPAD_TOOLTIPS:ClearTooltip(GAMEPAD_LEFT_TOOLTIP)
    self.queuedMarketProductId = nil
    self.queuedPreviewType = nil
end
function GamepadMarketProductListScene:SetMarketProduct(marketProductId, previewType)
    if SCENE_MANAGER:IsShowing(self.scene.name) then
        self:ShowMarketProduct(marketProductId, previewType)
    else
        self.queuedMarketProductId = marketProductId
        self.queuedPreviewType = previewType
    end
end
function GamepadMarketProductListScene:ShowMarketProduct(marketProductId, previewType)
    if previewType == ZO_MARKET_PREVIEW_TYPE_CROWN_CRATE then
        self:ShowCrownCrateContents(marketProductId)
    elseif previewType == ZO_MARKET_PREVIEW_TYPE_BUNDLE or previewType == ZO_MARKET_PREVIEW_TYPE_BUNDLE_HIDES_CHILDREN then
        self:ShowMarketProductBundleContents(marketProductId)
    end
end
function GamepadMarketProductListScene:ShowCrownCrateContents(marketProductId)
    self.headerData.titleText = zo_strformat(SI_MARKET_PRODUCT_NAME_FORMATTER, GetMarketProductDisplayName(marketProductId))
    self.headerData.messageText = GetString(SI_MARKET_CRATE_LIST_HEADER)
    local marketProducts = ZO_Market_Shared.GetCrownCrateContentsProductInfo(marketProductId)
    table.sort(marketProducts, function(...)
                                    return ZO_Market_Shared.CompareCrateMarketProducts(...)
                                end)
    self:ShowMarketProducts(marketProducts)
end
function GamepadMarketProductListScene:ShowMarketProductBundleContents(marketProductId)
    self.headerData.titleText = zo_strformat(SI_MARKET_PRODUCT_NAME_FORMATTER, GetMarketProductDisplayName(marketProductId))
    self.headerData.messageText = nil
    local marketProducts = ZO_Market_Shared.GetMarketProductBundleChildProductInfo(marketProductId)
    table.sort(marketProducts, function(...)
                return ZO_Market_Shared.CompareBundleMarketProducts(...)
            end)
    self:ShowMarketProducts(marketProducts)
end
-- objectList is a table of MarketProduct and Reward objects
function GamepadMarketProductListScene:ShowMarketProducts(objectList)
    self.list:Clear()
    ZO_ClearNumericallyIndexedTable(self.previewInfos)
    local numObjects = #objectList
    local lastHeaderName = nil
    for i = 1, numObjects do
        local objectInfo = objectList[i]
        local isReward = objectInfo.isRewardEntry
        local rewardId = objectInfo.rewardId
        local productId = objectInfo.productId
        local productName = nil
        local iconTextureFile = nil
        local stackCount = nil
        local displayQuality = nil
        if isReward then
            productName = objectInfo:GetFormattedName()
            iconTextureFile = objectInfo:GetGamepadIcon()
            stackCount = objectInfo:GetQuantity()
            displayQuality = objectInfo:GetItemDisplayQuality()
        else
            local _
            productName, _, iconTextureFile = GetMarketProductInfo(productId)
            productName = zo_strformat(SI_MARKET_PRODUCT_NAME_FORMATTER, productName)
            stackCount = objectInfo.stackCount
            displayQuality = objectInfo.displayQuality
        end
        local entryData = ZO_GamepadEntryData:New(productName, iconTextureFile)
        entryData.marketProductId = productId
        entryData.rewardId = rewardId
        entryData.listIndex = i
        entryData:SetStackCount(stackCount)
        entryData.displayQuality = displayQuality or ITEM_DISPLAY_QUALITY_NORMAL
        entryData:SetNameColors(entryData:GetColorsBasedOnQuality(displayQuality))
        -- check if we should add a header
        local productHeader = objectInfo.headerName
        if productHeader and lastHeaderName ~= productHeader then
            local headerString = productHeader
            if isReward and numObjects > 1 and objectInfo.stackCount and objectInfo.stackCount > 1 then
                headerString = zo_strformat(SI_MARKET_LIST_ENTRY_HEADER_AND_STACK_COUNT_FORMATTER, headerString, objectInfo.stackCount)
            else
                headerString = zo_strformat(SI_MARKET_LIST_ENTRY_HEADER_FORMATTER, headerString)
            end
            if objectInfo.headerColor then
                headerString = objectInfo.headerColor:Colorize(headerString)
            end
            entryData:SetHeader(headerString)
            self.list:AddEntryWithHeader("ZO_GamepadMenuEntryTemplate", entryData)
            lastHeaderName = productHeader
        else
            self.list:AddEntry("ZO_GamepadMenuEntryTemplate", entryData)
        end
        local hasPreview = nil
        -- Order matters
        if isReward then
            hasPreview = CanPreviewReward(rewardId)
        else
            hasPreview = CanPreviewMarketProduct(productId)
        end
        entryData.hasPreview = hasPreview
        if hasPreview then
            local previewType = nil
            local previewObjectId = nil
            if isReward then
                previewType = ZO_ITEM_PREVIEW_REWARD
                previewObjectId = rewardId
            else
                previewType = ZO_ITEM_PREVIEW_MARKET_PRODUCT
                previewObjectId = productId
            end
            local previewEntry =
            {
                previewType,
                previewObjectId,
            }
            table.insert(self.previewInfos, previewEntry)
            entryData.previewIndex = #self.previewInfos
        end
    end
    self.list:Commit()
end
function GamepadMarketProductListScene:OnTargetChanged(list, targetData, oldTargetData)
    GAMEPAD_TOOLTIPS:ClearTooltip(GAMEPAD_LEFT_TOOLTIP)
    if targetData then
        if targetData.rewardId and targetData.rewardId ~= 0 then
            GAMEPAD_TOOLTIPS:LayoutReward(GAMEPAD_LEFT_TOOLTIP, targetData.rewardId, targetData.stackCount, REWARD_DISPLAY_FLAGS_FROM_CROWN_STORE_CONTAINER)
        else
            GAMEPAD_TOOLTIPS:LayoutMarketProduct(GAMEPAD_LEFT_TOOLTIP, targetData.marketProductId)
        end
    end
end
function GamepadMarketProductListScene:OnPreviewChanged(previewData)
    self.lastPreviewedMarketProductId = previewData
end
function GamepadMarketProductListScene:BeginPreview()
    local targetData = self.list:GetTargetData()
    if targetData then
        local previewIndex = targetData.previewIndex
        ZO_MARKET_PREVIEW_GAMEPAD:BeginPreview(self.previewInfos, previewIndex, function(...) self:OnPreviewChanged(...) end)
    end
end
function GamepadMarketProductListScene:TrySelectLastPreviewedProduct()
    local marketProductId = self.lastPreviewedMarketProductId
    if marketProductId then
        local index = self.list:FindFirstIndexByEval(function(data) return data.marketProductId == marketProductId end)
        if index then
            self.list:SetSelectedIndexWithoutAnimation(index)
        end
    end
end
function GamepadMarketProductListScene:PerformUpdate()
    -- This function is required but unused
    self.dirty = false
end
--Overridden from base
function GamepadMarketProductListScene:GetFooterNarration()
    if MARKET_CURRENCY_GAMEPAD_FRAGMENT:IsShowing() then
        return MARKET_CURRENCY_GAMEPAD:GetNarrationText()
    end
end
    ZO_GAMEPAD_MARKET_PRODUCT_LIST = GamepadMarketProductListScene:New(control)
end