Back to Home

ESO Lua File v101041

pregame/accountlogin/pegi.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
local SCROLL_TYPE_PEGI = 1
--[[
---- Lifecycle
--]]
ZO_PEGIAgreement = ZO_InitializingObject:Subclass()
function ZO_PEGIAgreement:Initialize()
    self.countryToRatingsBoard = {}
    self.countriesPopulated = false
    local function OnLinkClicked(link, button, text, color, linkType, ...)
        if ZO_PEGI_IsDeclineNotificationShowing() and linkType == URL_LINK_TYPE then
            ConfirmOpenURL(zo_strjoin(':', ...))
            return true
        end
    end
    CALLBACK_MANAGER:RegisterCallback("PregameFullyLoaded", function() self:PopulateCountries() end)
    LINK_HANDLER:RegisterCallback(LINK_HANDLER.LINK_CLICKED_EVENT, OnLinkClicked)
end
function ZO_PEGIAgreement:PopulateCountries()
    if not self.countriesPopulated then
        -- Set up list
        self.control = ZO_PEGI_CountrySelectDialog
        self.list = self.control:GetNamedChild("CountryList")
        local function SetupListItem(rowControl, data)
            rowControl.name:SetText(data.countryName)
            if ZO_ScrollList_GetSelectedData(self.list) == data then
                rowControl.name:SetColor(GetInterfaceColor(INTERFACE_COLOR_TYPE_TEXT_COLORS, INTERFACE_TEXT_COLOR_SELECTED))
            else
                rowControl.name:SetColor(GetInterfaceColor(INTERFACE_COLOR_TYPE_TEXT_COLORS, INTERFACE_TEXT_COLOR_NORMAL))
            end
        end
        ZO_ScrollList_AddDataType(self.list, SCROLL_TYPE_PEGI, "ZO_PEGI_CountrySelectDialog_ListItem", 32, SetupListItem)
        local function OnSelectionChanged(previouslySelectedData, selectedData)
            ZO_ScrollList_RefreshVisible(self.list)
            self.countrySelectConfirmButton:SetEnabled(selectedData ~= nil)
        end
        ZO_ScrollList_EnableSelection(self.list, "ZO_ThinListHighlight", OnSelectionChanged)
        ZO_ScrollList_EnableHighlight(self.list, "ZO_ThinListHighlight")
        -- Populate list
        local numCountries = GetNumCountries()
        local scrollData = ZO_ScrollList_GetDataList(self.list)
        for i = 1, numCountries do
            local countryName, _, ratingsBoard = GetCountryDataForIndex(i)
            self.countryToRatingsBoard[countryName] = ratingsBoard
            scrollData[#scrollData + 1] = ZO_ScrollList_CreateDataEntry(SCROLL_TYPE_PEGI, { countryName = countryName or "", countryNameLower = zo_strlower(countryName or "") })
        end     
        -- Sort list
        local function countrySortFunction(countryName1, countryName2)
            -- We assume there will never be two countries with exactly the same name, and that the arguments will both always be strings
            return countryName1.data.countryNameLower < countryName2.data.countryNameLower
        end
        table.sort(scrollData, countrySortFunction)
        
        ZO_ScrollList_Commit(self.list)
        if numCountries > 0 then
            self.countrySelectConfirmButton:SetEnabled(false)
        end
        self.countriesPopulated = true
    end
end
function ZO_PEGIAgreement:OnCountrySelectionConfirmed()
    local selectedData = ZO_ScrollList_GetSelectedData(self.list)
    local selectedCountry = selectedData.countryName
    if self.countryToRatingsBoard[selectedCountry] == RATINGS_BOARD_PEGI then
        ZO_Dialogs_ShowDialog("PEGI_NOTIFICATION")
    else
        AgreeToPEGI()
    end
end
--[[
---- Global XML
--]]
    PEGI_AGREEMENT.countrySelectList = self:GetNamedChild("CountryList")
    PEGI_AGREEMENT.countrySelectConfirmButton = self:GetNamedChild("Confirm")
    ZO_Dialogs_RegisterCustomDialog("PEGI_COUNTRY_SELECT",
    {
        customControl = self,
        mustChoose = true,
        canQueue = true,
        title =
        {
            text = SI_PEGI_COUNTRY_SELECT_TITLE,
        },
        buttons =
        {
            [1] =
            {
                control = self:GetNamedChild("Confirm"),
                text = SI_DIALOG_CONFIRM,
                callback =  function(self)
                                PEGI_AGREEMENT:OnCountrySelectionConfirmed()
                            end,
            },
        }
    })
end
    ZO_Dialogs_RegisterCustomDialog("PEGI_NOTIFICATION",
    {
        customControl = self,
        mustChoose = true,
        canQueue = true,
        title =
        {
            text = SI_PEGI_AGREEMENT_TITLE,
        },
        buttons =
        {
            [1] =
            {
                control = self:GetNamedChild("Accept"),
                text = SI_DIALOG_ACCEPT,
                callback =  function(self)
                                AgreeToPEGI()
                            end,
            },
            [2] =
            {
                control = self:GetNamedChild("Decline"),
                text = SI_DIALOG_DECLINE,
                callback =  function(self)
                                ZO_Dialogs_ShowDialog("PEGI_NOTIFICATION_DECLINE")
                            end,
            },
        }
    })
end
    local customerSupportLink = ZO_LinkHandler_CreateURLLink(GetURLTextByType(APPROVED_URL_ESO_HELP), GetString(SI_PEGI_AGREEMENT_LINK_TEXT))
    self:GetNamedChild("AgreementText"):SetText(zo_strformat(SI_PEGI_AGREEMENT_DECLINE_TEXT, customerSupportLink))
    ZO_Dialogs_RegisterCustomDialog("PEGI_NOTIFICATION_DECLINE",
    {
        customControl = self,
        mustChoose = true,
        canQueue = true,
        title =
        {
            text = SI_PEGI_AGREEMENT_DECLINE_TITLE,
        },
        buttons =
        {
            [1] =
            {
                control = self:GetNamedChild("Back"),
                text = SI_BACK_UP_ONE_MENU,
                callback =  function(self)
                                ZO_Dialogs_ShowDialog("PEGI_NOTIFICATION")
                            end,
            },
        }
    })
end
    return ZO_Dialogs_FindDialog("PEGI_NOTIFICATION_DECLINE") ~= nil
end
    ZO_ScrollList_MouseEnter(PEGI_AGREEMENT.list, control)
end
    ZO_ScrollList_MouseExit(PEGI_AGREEMENT.list, control)
end
    ZO_ScrollList_MouseClick(PEGI_AGREEMENT.list, control)
end
    local selectedData = ZO_ScrollList_GetSelectedData(PEGI_AGREEMENT.list)
    if selectedData == nil then
        return
    end
    PEGI_AGREEMENT:OnCountrySelectionConfirmed()
    ZO_Dialogs_ReleaseDialog("PEGI_COUNTRY_SELECT")
end
PEGI_AGREEMENT = ZO_PEGIAgreement:New()