Back to Home

ESO Lua File v101041

pregame/gamepad/createaccount/createaccount_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
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
local GAMEPAD_CREATE_ACCOUNT_ERROR_DIALOG = "GAMEPAD_CREATE_ACCOUNT_ERROR_DIALOG"
-- Main class.
local ZO_CreateAccount_Gamepad = ZO_InitializingObject:Subclass()
function ZO_CreateAccount_Gamepad:Initialize(control)
    self.control = control
    self.entryByCountry = {}
    local createAccount_Gamepad_Fragment = ZO_FadeSceneFragment:New(self.control)
    CREATE_ACCOUNT_GAMEPAD_SCENE = ZO_Scene:New("CreateAccount_Gamepad", SCENE_MANAGER)
    CREATE_ACCOUNT_GAMEPAD_SCENE:AddFragment(createAccount_Gamepad_Fragment)
    CREATE_ACCOUNT_GAMEPAD_SCENE:RegisterCallback("StateChange", function(oldState, newState)
        if newState == SCENE_SHOWING then
            self:PerformDeferredInitialize()
            self:ResetMainList()
            KEYBIND_STRIP:RemoveDefaultExit()
            self:SwitchToMainList()
        elseif newState == SCENE_HIDDEN then
            self:ResetScreen()
            self:SwitchToKeybind(nil)
            KEYBIND_STRIP:RestoreDefaultExit()
        end
    end)
end
function ZO_CreateAccount_Gamepad:ResetScreen()
    self.optionsControl:SetHidden(true)
    self.header:SetHidden(false)
    self.optionsList:Deactivate()
    if self.countriesList then
        self.countriesList:Deactivate()
    end
end
function ZO_CreateAccount_Gamepad:ResetAccountData()
    self.enteredAccountName = ""
    self.selectedCountry = ""
    self.enteredEmail = ""
    self.emailSignup = false
    self.lastErrorMessage = ""
    self.secondaryEntriesDirty = true
    self.creatingAccount = false
end
function ZO_CreateAccount_Gamepad:PerformDeferredInitialize()
    if not self.initialized then 
        self.initialized = true
        self.header = self.control:GetNamedChild("Container"):GetNamedChild("Header")
        self:SetupOptionsList()
        self:InitKeybindingDescriptors()
        self:InitializeErrorDialog()
    end
end
do
    local g_lastErrorString = nil
    function ZO_CreateAccount_Gamepad:InitializeErrorDialog()
        ZO_Dialogs_RegisterCustomDialog(GAMEPAD_CREATE_ACCOUNT_ERROR_DIALOG,
        {
            gamepadInfo =
            {
                dialogType = GAMEPAD_DIALOGS.BASIC,
            },
            mustChoose = true,
            title =
            {
                text = SI_CREATEACCOUNT_ERROR_HEADER,
            },
            mainText =
            {
                text = function() return g_lastErrorString end,
            },
            buttons =
            {
                {
                    keybind = "DIALOG_NEGATIVE",
                    text = SI_DIALOG_EXIT,
                },
            }
        })
    end
    function ZO_CreateAccount_Gamepad:ShowError(message)
        g_lastErrorString = message
        ZO_Dialogs_ShowGamepadDialog(GAMEPAD_CREATE_ACCOUNT_ERROR_DIALOG)
    end
    function ZO_CreateAccount_Gamepad:ClearError()
        g_lastErrorString = ""
    end
end
function ZO_CreateAccount_Gamepad:HasValidCountrySelected()
    return self.selectedCountry ~= nil and self.selectedCountry ~= ""
end
function ZO_CreateAccount_Gamepad:CreateAccountSelected()
    if not self:HasValidCountrySelected() then
        self:ShowError(GetString(SI_CONSOLE_CREATEACCOUNT_NOREGION))
    elseif self.enteredEmail == nil or self.enteredEmail == "" then
        self:ShowError(GetString(SI_CONSOLE_CREATEACCOUNT_NOEMAIL))
    elseif not self.creatingAccount then
        self:ClearError()
        self.creatingAccount = true
    end
end
function ZO_CreateAccount_Gamepad:InitKeybindingDescriptors()
    local function SwitchToMainList()
        PlaySound(SOUNDS.NEGATIVE_CLICK)
        self:SwitchToMainList()
    end
    local returnToMainListDescriptor = KEYBIND_STRIP:GenerateGamepadBackButtonDescriptor(SwitchToMainList)
    self.mainKeybindStripDescriptor = {
        alignment = KEYBIND_STRIP_ALIGN_LEFT,
        -- Select Control
        {    
            name = GetString(SI_GAMEPAD_SELECT_OPTION),
            keybind = "UI_SHORTCUT_PRIMARY",
            callback = function()
                local data = self.optionsList:GetTargetData()
                local control = self.optionsList:GetTargetControl()
                if data ~= nil and data.selectedCallback ~= nil and control ~= nil then
                    data.selectedCallback(control, data)
                end
            end,
        },
        -- Back
        KEYBIND_STRIP:GenerateGamepadBackButtonDescriptor(function()
                PlaySound(SOUNDS.NEGATIVE_CLICK)
                PregameStateManager_SetState("CreateLinkAccount")
            end)
    }
    ZO_Gamepad_AddListTriggerKeybindDescriptors(self.mainKeybindStripDescriptor, self.optionsList)
    self.errorKeybindStripDescriptor = {
        alignment = KEYBIND_STRIP_ALIGN_LEFT,
        -- Back
        returnToMainListDescriptor,
    }
end
function ZO_CreateAccount_Gamepad:SwitchToKeybind(keybindStripDescriptor)
    if self.keybindStripDescriptor then
        KEYBIND_STRIP:RemoveKeybindButtonGroup(self.keybindStripDescriptor)
    end
    self.keybindStripDescriptor = keybindStripDescriptor
    if keybindStripDescriptor then
        KEYBIND_STRIP:AddKeybindButtonGroup(keybindStripDescriptor)
    end
end
function ZO_CreateAccount_Gamepad:SwitchToMainList()
    self:ResetScreen()
    self:SwitchToKeybind(self.mainKeybindStripDescriptor)
    self.optionsList:Activate()
    self.optionsList:RefreshVisible()
    self.optionsControl:SetHidden(false)
    self.defaultTextLabel:SetHidden(self:HasValidCountrySelected())
end
function ZO_CreateAccount_Gamepad:SwitchToCountryList()
    self:ResetScreen()
    self:SwitchToKeybind(self.countriesKeybindStripDescriptor)
    self.optionsControl:SetHidden(false)
    self.countriesList:Activate()
    self.countriesList:HighlightSelectedItem()
    self.defaultTextLabel:SetHidden(true)
end
function ZO_CreateAccount_Gamepad:AddComboBox(text, contents, selectedCallback, editedCallback)
    local option = ZO_GamepadEntryData:New()
    option:SetHeader(text)
    option.contents = contents
    option.contentsChangedCallback = editedCallback
    option:SetFontScaleOnSelection(false)
    self.optionsList:AddEntryWithHeader("ZO_GamepadCountrySelectorTemplate", option)
end
function ZO_CreateAccount_Gamepad:AddTextEdit(text, contents, selectedCallback, editedCallback)
    local option = ZO_GamepadEntryData:New() -- No text to populate - it uses a header instead.
    option:SetHeader(text)
    option.contents = contents
    option.contentsChangedCallback = editedCallback
    option:SetFontScaleOnSelection(true)
    self.optionsList:AddEntry("ZO_PregameGamepadTextEditTemplateWithHeader", option)
end
function ZO_CreateAccount_Gamepad:AddCheckbox(text, checked, callback)
    local option = self:CreateCheckboxData(text, checked, callback)
    self.optionsList:AddEntry("ZO_CheckBoxTemplate_Pregame_Gamepad", option)
end
function ZO_CreateAccount_Gamepad:CreateCheckboxData(text, checked, callback)
    local option = ZO_GamepadEntryData:New(text)
    option.checked = checked
    option.setChecked = callback
    option:SetFontScaleOnSelection(true)
    option.list = self.optionsList
    return option
end
function ZO_CreateAccount_Gamepad:AddButton(text, callback)
    local option = self:CreateButtonData(text, callback)
    self.optionsList:AddEntry("ZO_PregameGamepadButtonWithTextTemplate", option)
end
function ZO_CreateAccount_Gamepad:CreateButtonData(text, callback)
    local option = ZO_GamepadEntryData:New(text)
    option.selectedCallback = callback
    option:SetFontScaleOnSelection(true)
    return option
end
function ZO_CreateAccount_Gamepad:ActivateEditbox(edit, isEmailBox)
    if isEmailBox == true then
        edit:SetVirtualKeyboardType(VIRTUAL_KEYBOARD_TYPE_EMAIL)
    else
        edit:SetVirtualKeyboardType(VIRTUAL_KEYBOARD_TYPE_DEFAULT)
    end
    edit:TakeFocus()
end
function ZO_CreateAccount_Gamepad:SetupOptionsList()
    -- Setup the actual list.
    self.optionsControl = self.control:GetNamedChild("Container"):GetNamedChild("Options")
    self.optionsList = ZO_GamepadVerticalParametricScrollList:New(self.optionsControl:GetNamedChild("List"))
    self.optionsList:SetAlignToScreenCenter(true)
    self.optionsList:AddDataTemplateWithHeader("ZO_PregameGamepadTextEditTemplate", ZO_PregameGamepadTextEditTemplate_Setup, ZO_GamepadMenuEntryTemplateParametricListFunction, nil, "ZO_PregameGamepadTextEditHeaderTemplate")
    self.optionsList:AddDataTemplate("ZO_PregameGamepadButtonWithTextTemplate", ZO_SharedGamepadEntry_OnSetup, ZO_GamepadMenuEntryTemplateParametricListFunction)
    local function SetupCountrySelector(control, data, selected, reselectingDuringRebuild, enabled, active)
        ZO_SharedGamepadEntry_OnSetup(control, data, selected, reselectingDuringRebuild, enabled, active)
        if self.comboControl ~= control then
            self.comboControl = control
            self.countriesList = control.dropdown
            self.countriesList:SetDeactivatedCallback(function() self:SwitchToMainList() end)
            self.countriesList:SetSortsItems(false)
            self.defaultTextLabel = control:GetNamedChild("DefaultText")
            self.defaultTextLabel:SetText(GetString(SI_CREATEACCOUNT_SELECT_REGION))
        end
    end
    self.optionsList:AddDataTemplateWithHeader("ZO_GamepadCountrySelectorTemplate", SetupCountrySelector, ZO_GamepadMenuEntryTemplateParametricListFunction, nil, "ZO_PregameGamepadTextEditHeaderTemplate")
    -- Populate the main list.
    self:ResetMainList()
end
function ZO_CreateAccount_Gamepad:ResetMainList()
    self.optionsList:Clear()
    if ZO_IsPCUI() then
        self:AddTextEdit(GetString(SI_KEYBOARD_CREATEACCOUNT_ACCOUNT_NAME_LABEL), function(data) return self.enteredAccountName end, function(control, data) self:ActivateEditbox(control.edit, true) end, function(newText) self.enteredAccountName = newText end)
    end
    self:AddComboBox(GetString(SI_CREATEACCOUNT_REGION), function(data) return self.selectedCountry end, function(control, data)
                self:SwitchToCountryList()
            end)
    self:AddTextEdit(GetString(SI_CREATEACCOUNT_EMAIL), function(data) return self.enteredEmail end, function(control, data) self:ActivateEditbox(control.edit, true) end, function(newText) self.enteredEmail = newText end)
    self.optionsList:Commit()
    self.countriesList:ClearItems()
end
function ZO_CreateAccount_Gamepad:AddSecondaryListEntries()
    if self.selectedCountry ~= "" and self.secondaryEntriesDirty then
        if self.emailSignupOptionData then
            self.optionsList:RemoveEntry("ZO_CheckBoxTemplate_Pregame_Gamepad", self.emailSignupOptionData)
        end
        if self.createButtonOptionData then
            self.optionsList:RemoveEntry("ZO_PregameGamepadButtonWithTextTemplate", self.createButtonOptionData)
        end
        if not self.autoEmailSubscribe then
            if not self.emailSignupOptionData then
                local function IsChecked(data)
                    return self.emailSignup
                end
                local function SetCheckedCallback(data, checked)
                    self.emailSignup = checked
                end
                self.emailSignupOptionData = self:CreateCheckboxData(GetString(SI_CREATEACCOUNT_EMAIL_SIGNUP), IsChecked, SetCheckedCallback)
            end
            self.optionsList:AddEntry("ZO_CheckBoxTemplate_Pregame_Gamepad", self.emailSignupOptionData)
        end
        if not self.createButtonOptionData then
            local function ButtonSelectedCallback(control, data)
                PlaySound(SOUNDS.POSITIVE_CLICK)
                self:CreateAccountSelected()
            end
            self.createButtonOptionData = self:CreateButtonData(GetString(SI_CREATEACCOUNT_CREATE_ACCOUNT_BUTTON), ButtonSelectedCallback)
        end
        self.optionsList:AddEntry("ZO_PregameGamepadButtonWithTextTemplate", self.createButtonOptionData)
        self.secondaryEntriesDirty = false
        self.optionsList:Commit()
    end
end
function ZO_CreateAccount_Gamepad:PopulateCountriesDropdownList()
    -- Checking for 0 to ensure we only setup the country list once
    if self.countriesList:GetNumItems() == 0 then
        -- Populate the combobox list.
        self.countriesList:ClearItems()
        local numCountries = GetNumCountries()
        local function OnCountrySelected(comboBox, entryText, entry)
            self.selectedCountry = entryText 
            self.countryCode = entry.countryCode
            if self.autoEmailSubscribe ~= entry.autoEmailSubscribe then
                self.autoEmailSubscribe = entry.autoEmailSubscribe
                self.secondaryEntriesDirty = true
            end
        end
        for i = 1, numCountries do
            local countryName, countryCode, _, isAllowedInAccountCreation, autoEmailSubscribe = GetCountryDataForIndex(i)
            if isAllowedInAccountCreation then
                local option = self.countriesList:CreateItemEntry(countryName, OnCountrySelected)
                option.countryCode = countryCode
                option.autoEmailSubscribe = autoEmailSubscribe
                self.countriesList:AddItem(option)
            end
        end
        self.countriesList:HighlightSelectedItem()
        self.optionsList:Commit()
    end
end
function ZO_CreateAccount_Gamepad:GetEnteredEmail()
    return self.enteredEmail
end
function ZO_CreateAccount_Gamepad:ShouldReceiveNewsEmail()
    -- Auto subscribe never sees an option
    return self.autoEmailSubscribe or self.emailSignup
end
function ZO_CreateAccount_Gamepad:GetCountryCode()
    return self.countryCode
end
function ZO_CreateAccount_Gamepad:GetEnteredAccountName()
    return self.enteredAccountName
end
    CREATE_ACCOUNT_GAMEPAD = ZO_CreateAccount_Gamepad:New(self)
end