Back to Home

ESO Lua File v101041

internalingame/marketannouncement/marketannouncement_shared.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
----
-- ZO_MarketAnnouncement_Shared
----
ZO_MARKET_ANNOUNCEMENT_TILE_DIMENSIONS_X = 315
ZO_MARKET_ANNOUNCEMENT_TILE_DIMENSIONS_Y = 210
ZO_MARKET_ANNOUNCEMENT_TILE_DIMENSIONS_ASPECT_RATIO = ZO_MARKET_ANNOUNCEMENT_TILE_DIMENSIONS_X / ZO_MARKET_ANNOUNCEMENT_TILE_DIMENSIONS_Y
ZO_ACTION_TILE_TYPE =
{
    EVENT_ANNOUNCEMENT = 1,
    DAILY_REWARDS = 2,
    ZONE_STORIES = 3,
}
ZO_ACTION_SORTED_TILE_TYPE =
{
    ZO_ACTION_TILE_TYPE.EVENT_ANNOUNCEMENT,
    ZO_ACTION_TILE_TYPE.DAILY_REWARDS,
    ZO_ACTION_TILE_TYPE.ZONE_STORIES,
}
ZO_MarketAnnouncement_Shared = ZO_Object:Subclass()
function ZO_MarketAnnouncement_Shared:New(...)
    local announcement = ZO_Object.New(self)
    announcement:Initialize(...)
    return announcement
end
function ZO_MarketAnnouncement_Shared:InitializeKeybindButtons()
    self.closeButton = self.controlContainer:GetNamedChild("Close")
    self.closeButton:SetKeybind("MARKET_ANNOUNCEMENT_CLOSE")
    self.closeButton:SetClickSound(SOUNDS.DIALOG_ACCEPT)
    self.closeButton:SetCallback(function()
    end)
end
function ZO_MarketAnnouncement_Shared:Initialize(control, fragmentConditionFunction)
    self.control = control
    local container = control:GetNamedChild("Container")
    self.titleLabel = container:GetNamedChild("Title")
    self.carouselControl = container:GetNamedChild("Carousel")
    self.scrollContainer = container:GetNamedChild("ScrollContainer")
    self.actionTileListControl = container:GetNamedChild("ActionTileList")
    self.crownStoreLockedControl = container:GetNamedChild("LockedCrownStore")
    self.crownStoreLockedTitleControl = self.crownStoreLockedControl:GetNamedChild("TitleText")
    self.crownStoreLockedDescriptionControl = self.crownStoreLockedControl:GetNamedChild("DescriptionText")
    self.crownStoreLockedTexture = self.crownStoreLockedControl:GetNamedChild("Background")
    self.controlContainer = container
    self.actionTileList = {}
    self.actionTileControlPoolMap = {}
    for _, tileType in pairs(ZO_ACTION_TILE_TYPE) do
        self:AddTileTypeObjectPoolToMap(tileType)
    end
    local fragment = ZO_FadeSceneFragment:New(control)
    fragment:RegisterCallback("StateChange", function(...) self:OnStateChanged(...) end)
    if fragmentConditionFunction then
        fragment:SetConditional(fragmentConditionFunction)
    end
    self.fragment = fragment
    self.marketProductSelectedCallback = function(...) self:UpdateLabels(...) end
    local function OnDailyLoginRewardsUpdated()
        self:OnDailyLoginRewardsUpdated()
    end
    ZO_MARKET_ANNOUNCEMENT_MANAGER:RegisterCallback("OnMarketAnnouncementDataUpdated", function() self:UpdateMarketCarousel() end)
    ZO_MARKET_ANNOUNCEMENT_MANAGER:RegisterCallback("EventAnnouncementExpired", function() self:LayoutActionTiles() end)
    control:RegisterForEvent(EVENT_DAILY_LOGIN_REWARDS_UPDATED, OnDailyLoginRewardsUpdated)
end
function ZO_MarketAnnouncement_Shared:AddTileTypeObjectPoolToMap(tileType)
    self.actionTileControlPoolMap[tileType] = ZO_ControlPool:New(self.actionTileControlByType[tileType], self.actionTileListControl)
    local function ResetFunction(control)
        control.object:Reset()
    end
    self.actionTileControlPoolMap[tileType]:SetCustomResetBehavior(ResetFunction)
end
function ZO_MarketAnnouncement_Shared:OnStateChanged(oldState, newState)
    if newState == SCENE_SHOWING then
        self:OnShowing()
    elseif newState == SCENE_SHOWN then
        self:OnShown()
    elseif newState == SCENE_HIDING then
        self:OnHiding()
    elseif newState == SCENE_HIDDEN then
        self:OnHidden()
    end
end
function ZO_MarketAnnouncement_Shared:OnDailyLoginRewardsUpdated()
    if self.fragment:IsShowing() then
        self:LayoutActionTiles()
    end
end
function ZO_MarketAnnouncement_Shared:UpdateLabels(productData)
    self:UpdatePositionLabel(productData.index)
end
function ZO_MarketAnnouncement_Shared:UpdatePositionLabel(index)
    self.carousel:UpdateSelection(index)
end
function ZO_MarketAnnouncement_Shared:GetFragment()
    return self.fragment
end
function ZO_MarketAnnouncement_Shared:OnShowing()
    PlaySound(SOUNDS.DEFAULT_WINDOW_OPEN)
    if ZO_MARKET_ANNOUNCEMENT_MANAGER:ShouldHideMarketProductAnnouncements() then
        if GetMarketAnnouncementCrownStoreLocked() then
            self.crownStoreLockedTitleControl:SetText(GetString(SI_MARKET_ANNOUNCEMENT_LOCKED_CROWN_STORE_TITLE))
            self.crownStoreLockedDescriptionControl:SetHidden(false)
        else
            self.crownStoreLockedTitleControl:SetText(GetString(SI_MARKET_ANNOUNCEMENT_NO_FEATURED_PRODUCTS_TITLE))
            self.crownStoreLockedDescriptionControl:SetHidden(true)
        end
        self.carouselControl:SetHidden(true)
        self.crownStoreLockedControl:SetHidden(false)
        self.crownStoreLockedTexture:SetTexture(GetMarketAnnouncementCrownStoreLockedBackground())
    else
        UpdateMarketAnnouncement()
        self:UpdateMarketCarousel()
        self.carousel:Activate()
        self.carouselControl:SetHidden(false)
        self.crownStoreLockedControl:SetHidden(true)
    end
end
function ZO_MarketAnnouncement_Shared:OnShown()
    -- To be overridden
end
function ZO_MarketAnnouncement_Shared:OnHiding()
    PlaySound(SOUNDS.DEFAULT_WINDOW_CLOSE)
    self.carousel:Deactivate()
end
function ZO_MarketAnnouncement_Shared:OnHidden()
    -- To be overridden
end
function ZO_MarketAnnouncement_Shared:UpdateMarketCarousel()
    if self.fragment:IsShowing() then
        local productInfoTable = ZO_MARKET_ANNOUNCEMENT_MANAGER:GetProductInfoTable()
        self.carousel:Clear()
        for index, productInfo in ipairs(productInfoTable) do
            local marketProduct = self:CreateMarketProduct()
            marketProduct:SetMarketProductData(productInfo.productData)
            local data =
            {
                marketProduct = marketProduct,
                callback = self.marketProductSelectedCallback,
                index = index
            }
            self.carousel:AddEntry(data)
        end
        self.carousel:Commit()
        if #productInfoTable > 0 then
            self.carousel:UpdateSelection(1)
        end
    end
end
function ZO_MarketAnnouncement_Shared:OnSelectionClicked()
    -- To be overridden
end
function ZO_MarketAnnouncement_Shared:OnHelpClicked()
    -- To be overridden
end
function ZO_MarketAnnouncement_Shared:OnCloseClicked()
    self.closeButton:OnClicked()
end
function ZO_MarketAnnouncement_Shared:OnMarketAnnouncementCloseKeybind()
    SCENE_MANAGER:HideCurrentScene()
end
function ZO_MarketAnnouncement_Shared:OnMarketAnnouncementViewCrownStoreKeybind()
    local targetData = self.carousel:GetSelectedData()
    local marketProductId = targetData.marketProduct:GetId()
    internalassert(marketProductId ~= 0, string.format("Announcement Crown Store Keybind for %s has a market product id: 0", targetData.marketProduct:GetMarketProductDisplayName()))
end
function ZO_MarketAnnouncement_Shared:DoOpenMarketBehaviorForMarketProductId(marketProductId)
    local openBehavior = GetMarketProductOpenMarketBehavior(marketProductId)
    local additionalData = GetMarketProductOpenMarketBehaviorReferenceData(marketProductId)
    if openBehavior == OPEN_MARKET_BEHAVIOR_NAVIGATE_TO_PRODUCT then
        additionalData = marketProductId
    end
    if openBehavior == OPEN_MARKET_BEHAVIOR_SHOW_CHAPTER_UPGRADE then
        ZO_ShowChapterUpgradePlatformScreen(MARKET_OPEN_OPERATION_ANNOUNCEMENT, additionalData)
    elseif not IsInGamepadPreferredMode() and openBehavior == OPEN_MARKET_BEHAVIOR_SHOW_ESO_PLUS_CATEGORY then
        ESO_PLUS_OFFERS_KEYBOARD:RequestShowMarket(MARKET_OPEN_OPERATION_ANNOUNCEMENT, openBehavior, additionalData)
    else
        SYSTEMS:GetObject(ZO_MARKET_NAME):RequestShowMarket(MARKET_OPEN_OPERATION_ANNOUNCEMENT, openBehavior, additionalData)
    end
end
function ZO_MarketAnnouncement_Shared.GetEventAnnouncementTilesData(tileInfoList)
    --- Add tile if there is an active event
    if ZO_MARKET_ANNOUNCEMENT_MANAGER:GetNumEventAnnouncements() > 0 then
        local eventAnnouncementTileInfo =
        {
            type = ZO_ACTION_TILE_TYPE.EVENT_ANNOUNCEMENT,
            data =
            {
                eventAnnouncementIndex = 1 -- Always show first sorted announcement on the tile
            },
            visible = true,
        }
        table.insert(tileInfoList, eventAnnouncementTileInfo)
    end
end
function ZO_MarketAnnouncement_Shared.GetDailyRewardsTilesData(tileInfoList)
    --- Add tile if Daily Rewards is unlocked
    if not ZO_DAILYLOGINREWARDS_MANAGER:IsDailyRewardsLocked() then
         local dailyRewardIndex = ZO_DAILYLOGINREWARDS_MANAGER:GetDailyLoginRewardIndex()
        local dailyRewardTileInfo =
        {
            type = ZO_ACTION_TILE_TYPE.DAILY_REWARDS,
            data =
            {
                dailyRewardIndex = dailyRewardIndex
            },
            visible = true,
        }
        table.insert(tileInfoList, dailyRewardTileInfo)
    end
end
function ZO_MarketAnnouncement_Shared.GetZoneStoriesTilesData(tileInfoList)
    local zoneId
    if IsZoneStoryActivelyTracking() then
        zoneId = GetTrackedZoneStoryActivityInfo()
    else
        local zoneIndex = GetUnitZoneIndex("player")
        zoneId = ZO_ExplorationUtils_GetZoneStoryZoneIdByZoneIndex(zoneIndex)
    end
    if HasZoneStoriesData(zoneId) and not IsZoneStoryComplete(zoneId) then
        local zoneStoriesTileInfo =
        {
            type = ZO_ACTION_TILE_TYPE.ZONE_STORIES,
            data =
            {
                zoneId = zoneId,
            },
            visible = true,
        }
        table.insert(tileInfoList, zoneStoriesTileInfo)
    end
end
do
    ZO_TILE_TYPE_TO_GET_TILE_INFO_FUNCTION =
    {
        [ZO_ACTION_TILE_TYPE.EVENT_ANNOUNCEMENT] = ZO_MarketAnnouncement_Shared.GetEventAnnouncementTilesData,
        [ZO_ACTION_TILE_TYPE.DAILY_REWARDS] = ZO_MarketAnnouncement_Shared.GetDailyRewardsTilesData,
        [ZO_ACTION_TILE_TYPE.ZONE_STORIES] = ZO_MarketAnnouncement_Shared.GetZoneStoriesTilesData,
    }
    function ZO_MarketAnnouncement_Shared:LayoutActionTiles()
        -- Get list of available tile infos
        local availableTileInfoList = {}
        for _, data in ipairs(ZO_ACTION_SORTED_TILE_TYPE) do
            local tileInfoFunction = ZO_TILE_TYPE_TO_GET_TILE_INFO_FUNCTION[data]
            tileInfoFunction(availableTileInfoList)
        end
        -- Clear Data from previous show
        self.actionTileList = {}
        for _, controlPool in pairs(self.actionTileControlPoolMap) do
            controlPool:ReleaseAllObjects()
        end
        -- Create display tiles from available tile infos (Limited at 3 as that's the most the display supports)
        local NUM_MAX_DISPLAY_TILES = 3
        for i, actionTileInfo in ipairs(availableTileInfoList) do
            local visible
            if type(actionTileInfo.visible) == "function" then
                visible = actionTileInfo.visible()
            else
                visible = actionTileInfo.visible
            end
            if visible and self.actionTileControlPoolMap[actionTileInfo.type] then
                local actionTileControl = self.actionTileControlPoolMap[actionTileInfo.type]:AcquireObject()
                actionTileControl.object:Layout(actionTileInfo.data)
                table.insert(self.actionTileList, actionTileControl)
                -- Set Anchors
                local ACTION_TILE_HORIZONTAL_PADDING = 34
                if #self.actionTileList > 1 then
                    actionTileControl:SetAnchor(TOPLEFT, self.actionTileList[i-1], TOPRIGHT, ACTION_TILE_HORIZONTAL_PADDING)
                else 
                    actionTileControl:SetAnchor(TOPLEFT)
                end
                if #self.actionTileList == NUM_MAX_DISPLAY_TILES then
                    break
                end
            else
                assert("ObjectPool was not defined for Action Tile " .. i)
            end
        end
    end
end
function ZO_MarketAnnouncement_Shared:CreateMarketProduct(productId)
    -- To be overridden
end