ESO Lua File v100015

pregame/statemanager/pc/pregamestates.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
local pregameStates =
{
    ["CharacterSelect"] =
    {
        OnEnter = function()
            PregameStateManager_UpdateRealmName()
            SuppressWorldList()
            Pregame_ShowScene("gameMenuCharacterSelect")
            if DoesPlatformRequirePregamePEGI() and not HasAgreedToPEGI() then
                ZO_Dialogs_ShowDialog("PEGI_COUNTRY_SELECT")
            end
        end,
        OnExit = function()
        end
    },
    ["ShowEULA"] =
    {
        ShouldAdvance = function()
            return ZO_HasAgreedToEULA()
        end,
        OnEnter = function()
            SCENE_MANAGER:Show("eula")
        end,
        OnExit = function()
        end,
        GetStateTransitionData = function()
            return "AccountLogin"
        end,
    },
    ["AccountLogin"] =
    {
        OnEnter = function(allowAnimation)
            LOGIN_KEYBOARD:InitializeCredentialEditBoxes()
            PREGAME_SLIDESHOW_KEYBOARD:BeginSlideShow()
            PregameLogout()
            RegisterForLoadingUpdates()
            if(ZO_PREGAME_HAD_GLOBAL_ERROR) then
                AbortVideoPlayback()
            end
            ZO_PREGAME_FIRED_CHARACTER_CONSTRUCTION_READY = false
            ZO_PREGAME_CHARACTER_LIST_RECEIVED = false
            ZO_PREGAME_CHARACTER_COUNT = 0
            Pregame_ShowScene("gameMenuPregame")
            if(ZO_ServerSelectCancel ~= nil) then
                ZO_ServerSelectCancel.gameStateString = "AccountLogin"
            end
            AttemptQuickLaunch()
        end,
        OnExit = function()
        end
    },
    
    ["WorldSelect_Requested"] =
    {
        OnEnter = function()
            ZO_Dialogs_ShowDialog("REQUESTING_WORLD_LIST")
            RequestWorldList()
        end,
        OnExit = function()
        end
    },
    ["WorldSelect_ShowList"] =
    {
        OnEnter = function()
            ZO_ServerSelect_SetSelectionEnabled(true)
            Pregame_ShowScene("serverSelect")
        end,
        OnExit = function()
        end
    },
}
--[[
Various PC-only functions.
]]
--
local function OnServerLocked()
    ZO_Dialogs_ShowDialog("SERVER_LOCKED")
end
local function OnWorldListReceived()
    if(PregameStateManager_GetCurrentState() == "WorldSelect_Requested") then
        PregameStateManager_SetState("WorldSelect_ShowList")
    end
end
local function OnLoginSuccessful()
    if(PregameStateManager_GetCurrentState() == "AccountLogin") then
        PregameStateManager_SetState("WorldSelect_Requested")
    end
end
do
    local loginQueuedScene
    local currentLoginQueueWaitTime
    local lastQueuePosition
    local function GetLoginQueueApproximateWaitTime(waitTime, queuePosition)
        -- if our position increases, the ETA we have "locked" is no longer valid
        if(not currentLoginQueueWaitTime or queuePosition > lastQueuePosition) then
            currentLoginQueueWaitTime = zo_max(waitTime * 1000, 1000) -- minimum wait time is that last second...
            lastQueuePosition = queuePosition
        else
            currentLoginQueueWaitTime = zo_min(currentLoginQueueWaitTime, zo_max(waitTime * 1000, 1000))
        end
        return currentLoginQueueWaitTime
    end
    OnLoginQueued = function(eventCode, waitTime, queuePosition)
        if(not loginQueuedScene) then
            loginQueuedScene = ZO_Scene:New("loginQueuedScene", SCENE_MANAGER)
            loginQueuedScene:AddFragment(PREGAME_SLIDE_SHOW_FRAGMENT)
        end
        SCENE_MANAGER:Show("loginQueuedScene")
        waitTime = GetLoginQueueApproximateWaitTime(waitTime, queuePosition)
        if(ZO_Dialogs_IsShowing("LOGIN_QUEUED")) then
            ZO_Dialogs_UpdateDialogMainText(ZO_Dialogs_FindDialog("LOGIN_QUEUED"), nil, { waitTime, queuePosition })
        else
            ZO_Dialogs_ReleaseAllDialogs(true)
            ZO_Dialogs_ShowDialog("LOGIN_QUEUED", nil, { mainTextParams = { waitTime, queuePosition } })
        end
    end
    OnOverflowModeWaiting = function(eventId, mainServerETASeconds, queuePosition)
        local waitTime = GetLoginQueueApproximateWaitTime(mainServerETASeconds, queuePosition)
        ZO_Dialogs_ReleaseAllDialogs(true)
        ZO_Dialogs_ShowDialog("PROVIDE_OVERFLOW_RESPONSE", {waitTime = waitTime})
    end
end
local function OnBadClientVersion()
    ZO_Dialogs_ShowDialog("BAD_CLIENT_VERSION")
end
local LOGIN_REQUEST_TIME_MAX = 60
local function OnLoginRequested()
    ZO_Dialogs_ShowDialog("LOGIN_REQUESTED", {loginTimeMax = LOGIN_REQUEST_TIME_MAX})
end
    OnLoginRequested()
end
local function OnBadLogin(eventId, errorCode, accountPageURL)
    ZO_Dialogs_ReleaseDialog("LOGIN_REQUESTED")
    if(errorCode == AUTHENTICATION_ERROR_PAYMENT_EXPIRED) then
        ZO_Dialogs_ShowDialog("BAD_LOGIN_PAYMENT_EXPIRED", {accountPageURL = accountPageURL})
    else
        ZO_Dialogs_ShowDialog("BAD_LOGIN", {accountPageURL = accountPageURL})
    end
end
local function OnAuthenticationDown()
    ZO_Dialogs_ReleaseDialog("LOGIN_REQUESTED")
    ZO_Dialogs_ShowDialog("AUTHENTICATION_SERVER_DOWN")
end
local errorCodeToStateChange =
{
    [GLOBAL_ERROR_CODE_LOBBY_WORLD_PERMISSIONS] = "CharacterSelect_FromIngame",
    [GLOBAL_ERROR_CODE_LOBBY_CHARACTER_LOCKED] = "CharacterSelect_FromIngame",
    [GLOBAL_ERROR_CODE_LOBBY_CHARACTER_RENAME_NEEDED] = "CharacterSelect_FromIngame",
    [GLOBAL_ERROR_CODE_LOBBY_TRANSFER_FAILED] = "CharacterSelect_FromIngame",
    [GLOBAL_ERROR_CODE_LOBBY_CHAR_STILL_IN_GAME] = "CharacterSelect_FromIngame",
}
local function GlobalError(eventCode, errorCode, helpLinkURL, ...)
    ZO_PREGAME_HAD_GLOBAL_ERROR = true
    local errorString, errorStringFormat
    if(errorCode ~= nil) then
        errorStringFormat = GetString("SI_GLOBALERRORCODE", errorCode)
        if(errorStringFormat ~= "") then
            if(select("#", ...) > 0) then
                errorString = zo_strformat(errorStringFormat, ...)
            else
                errorString = errorStringFormat
            end
        end
    end
    if(not errorString or errorString == "") then
        errorString = GetString(SI_UNKNOWN_ERROR)
    end
    if(errorCodeToStateChange[errorCode]) then
        PregameStateManager_SetState(errorCodeToStateChange[errorCode])
    else
    end
    local force = true
    if helpLinkURL then
        ZO_Dialogs_ShowDialog("HANDLE_ERROR_WITH_HELP", {url = helpLinkURL}, {mainTextParams = {errorString}})
    else
        ZO_Dialogs_ShowDialog("HANDLE_ERROR", nil, {mainTextParams = {errorString}})
    end
end
local function ServerDisconnectError(eventCode)
    local logoutError, globalErrorCode = GetErrorQueuedFromIngame()
    ZO_PREGAME_HAD_GLOBAL_ERROR = true
    local errorString
    local errorStringFormat
    if logoutError ~= nil and logoutError ~= LOGOUT_ERROR_UNKNOWN_ERROR then
        errorStringFormat = GetString("SI_LOGOUTERROR", logoutError)
        if errorStringFormat ~= ""  then
            errorString = zo_strformat(errorStringFormat, GetGameURL())
        end
    elseif globalErrorCode ~= nil and globalErrorCode ~= GLOBAL_ERROR_CODE_NO_ERROR then
        -- if the error code is not in LogoutReason then it is probably in the GlobalErrorCode enum
        errorStringFormat = GetString("SI_GLOBALERRORCODE", globalErrorCode)
        if errorStringFormat ~= ""  then
            errorString = zo_strformat(errorStringFormat, globalErrorCode)
        end
    end
    if(not errorString or errorString == "") then
        errorString = GetString(SI_UNKNOWN_ERROR)
    end
    local force = true
    ZO_Dialogs_ShowDialog("HANDLE_ERROR", nil, {mainTextParams = {errorString}})
end
local function OnVideoPlaybackComplete()
    EVENT_MANAGER:UnregisterForEvent("PregameStateManager", EVENT_VIDEO_PLAYBACK_COMPLETE)
    if(not ZO_PREGAME_HAD_GLOBAL_ERROR) then
        if(IsInCharacterCreateIntroState()) then
            ZO_PREGAME_IS_CHARACTER_CREATE_INTRO_PLAYING = false
            AttemptToAdvancePastCharacterCreateIntro()
        else
            PregameStateManager_AdvanceState()
        end
    end
end
function ZO_PlayVideoAndAdvance(...)
    EVENT_MANAGER:RegisterForEvent("PregameStateManager", EVENT_VIDEO_PLAYBACK_COMPLETE, OnVideoPlaybackComplete)
    PlayVideo(...)
end
local function OnOTPPending(eventId, otpReason, otpType, otpDurationInSeconds)
    local otpDurationMs = otpDurationInSeconds * 1000
    local otpExpirationMs = GetFrameTimeMilliseconds() + otpDurationMs
    local dialogName, textParams
    if otpReason == LOGIN_STATUS_OTP_PENDING then
        dialogName = "PROVIDE_OTP_INITIAL"
        textParams = { GetString(OTP_DIALOG_SUBMIT), otpDurationMs } 
    elseif otpReason == LOGIN_STATUS_OTP_FAILED then
        dialogName = "PROVIDE_OTP_SUBSEQUENT"
        textParams = { otpDurationMs }
    end
    ZO_Dialogs_ShowDialog(dialogName, { otpExpirationMs = otpExpirationMs, otpReason = otpReason }, {mainTextParams = textParams})
end
--[[
Initialization and Event Registration
]]
--
local function PregameStateManager_Initialize()
    EVENT_MANAGER:RegisterForEvent("PregameStateManager", EVENT_SERVER_LOCKED,                      OnServerLocked)
    EVENT_MANAGER:RegisterForEvent("PregameStateManager", EVENT_WORLD_LIST_RECEIVED,                OnWorldListReceived)
    EVENT_MANAGER:RegisterForEvent("PregameStateManager", EVENT_LOGIN_FAILED_INVALID_CREDENTIALS,   OnBadLogin)
    EVENT_MANAGER:RegisterForEvent("PregameStateManager", EVENT_LOGIN_FAILED_AUTHENTICATION_DOWN,   OnAuthenticationDown)
    EVENT_MANAGER:RegisterForEvent("PregameStateManager", EVENT_LOGIN_SUCCESSFUL,                   OnLoginSuccessful)
    EVENT_MANAGER:RegisterForEvent("PregameStateManager", EVENT_LOGIN_QUEUED,                       OnLoginQueued)
    EVENT_MANAGER:RegisterForEvent("PregameStateManager", EVENT_LOGIN_REQUESTED,                    OnLoginRequested)
    EVENT_MANAGER:RegisterForEvent("PregameStateManager", EVENT_DISCONNECTED_FROM_SERVER,           ServerDisconnectError)
    EVENT_MANAGER:RegisterForEvent("PregameStateManager", EVENT_GLOBAL_ERROR,                       GlobalError)
    EVENT_MANAGER:RegisterForEvent("PregameStateManager", EVENT_LOGIN_OTP_PENDING,                  OnOTPPending)
    EVENT_MANAGER:RegisterForEvent("PregameStateManager", EVENT_LOGIN_OVERFLOW_MODE_PROMPT,         OnOverflowModeWaiting)
    EVENT_MANAGER:RegisterForEvent("PregameStateManager", EVENT_BAD_CLIENT_VERSION,                 OnBadClientVersion)
    local function OnPregameUILoaded(eventId, addOnName)
        if(addOnName == "ZO_Pregame") then
            RegisterForLoadingUpdates()
            EVENT_MANAGER:UnregisterForEvent("PregameStateManager", EVENT_ADD_ON_LOADED)
        end
    end
    EVENT_MANAGER:RegisterForEvent("PregameStateManager", EVENT_ADD_ON_LOADED, OnPregameUILoaded)
end