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 392 393 394 395 396 397 398 399 |
--static
ZO_SceneManager_Leader . bypassHideSceneConfirmationReason = 0
ZO_SceneManager_Leader . bypassHideSceneConfirmationReason = ZO_SceneManager_Leader . bypassHideSceneConfirmationReason + 1
_G [ reasonName ] = ZO_SceneManager_Leader . bypassHideSceneConfirmationReason
end
--class
EVENT_MANAGER : RegisterForEvent ( "SceneManager" , EVENT_REMOTE_SCENE_REQUEST , function ( eventId , ... ) self : OnRemoteSceneRequest ( ... ) end )
end
-- sequence number
end
if messageOrigin ~= ZO_REMOTE_SCENE_CHANGE_ORIGIN then
if requestType == REMOTE_SCENE_REQUEST_TYPE_SHOW_BASE_SCENE then
return
end
if scene then
if requestType == REMOTE_SCENE_REQUEST_TYPE_SWAP then
else
if requestType == REMOTE_SCENE_REQUEST_TYPE_HIDE then
end
else
if requestType == REMOTE_SCENE_REQUEST_TYPE_PUSH then
elseif requestType == REMOTE_SCENE_REQUEST_TYPE_SHOW then
end
end
end
end
end
end
-- scene stack
if self . currentScene and self . nextScene and self . nextScenePushed and self . currentScene : GetName ( ) == sceneName then
return true
end
if currentSceneName == sceneName then
return true
end
end
return false
end
end
end
if currentSceneName == sceneName then
return true
end
end
return false
end
end
end
end
end
end
end
end
end
end
if numScenes > 0 then
for i = 1 , numScenes - 1 do
end
end
end
-- next scene overrides
function ZO_SceneManager_Leader : SetNextScene ( nextScene , push , nextSceneClearsSceneStack , numScenesNextScenePops )
ZO_SceneManager_Base . SetNextScene ( self , nextScene , push , nextSceneClearsSceneStack , numScenesNextScenePops )
end
-- scene logic
local topSceneName
else
end
local KEEP_SCENE_STACK = false
end
end
local KEEP_SCENE_STACK = false
end
end
end
--[[
Replace the current scene with a new scene while preserving the stack
Current Stack --> New Stack
| Current Scene | | New Scene |
| Scene 2 | | Scene 2 |
| Scene 1 | | Scene 1 |
If there isn't actually anything on the stack, Show is used to replace the scene
--]]
local NUMBER_OF_SCENES_TO_POP = 1
else
end
end
local IS_PUSH = true
end
function ZO_SceneManager_Leader : ShowWithFollowup ( sceneName , resultCallback , push , nextSceneClearsSceneStack , numScenesNextScenePops , bypassHideSceneConfirmationReason )
self : Show ( sceneName , push , nextSceneClearsSceneStack , numScenesNextScenePops , bypassHideSceneConfirmationReason )
else
self : Show ( sceneName , push , nextSceneClearsSceneStack , numScenesNextScenePops , bypassHideSceneConfirmationReason )
local ALLOWED_TO_HIDE_CURRENT_SCENE = true
end
end
-- Note that push, nextSceneClearsSceneStack, numScenesNextScenePops, and bypassHideSceneConfirmationReason are meant to be INTERNAL parameters. They should NOT
-- be used when calling Show from outside of this file. These same params should be passed to ConfirmHideScene.
function ZO_SceneManager_Leader : Show ( sceneName , push , nextSceneClearsSceneStack , numScenesNextScenePops , bypassHideSceneConfirmationReason )
if nextScene == nil then
return
end
if nextSceneClearsSceneStack == nil then
nextSceneClearsSceneStack = true
end
if numScenesNextScenePops == nil then
numScenesNextScenePops = 0
end
--if a scene exists
if currentScene then
return
end
if nextScene ~= currentScene then
--If we need confirmation to hide this scene go request it unless we've already done that and this is the response
return currentScene : ConfirmHideScene ( sceneName , push , nextSceneClearsSceneStack , numScenesNextScenePops , bypassHideSceneConfirmationReason )
end
local CURRENT_SCENE_IGNORED = ""
local NO_SEQUENCE_NUMBER = 0
local FRAGMENT_COMPLETE_STATE_IGNORED = false
local nextSceneName = self . nextScene and self . nextScene : GetName ( ) or ZO_REMOTE_SCENE_NO_SCENE_IDENTIFIER
SendLeaderToFollowerSync ( ZO_REMOTE_SCENE_CHANGE_ORIGIN , REMOTE_SCENE_SYNC_TYPE_CHANGE_NEXT_SCENE , CURRENT_SCENE_IGNORED , nextSceneName , NO_SEQUENCE_NUMBER , FRAGMENT_COMPLETE_STATE_IGNORED )
end
else
end
else
if oldNextScene then
end
end
end
else
--otherwise, start showing this scene
end
end
if self . currentScene and self . currentScene : GetName ( ) == sceneName and self . currentScene : GetState ( ) ~= SCENE_HIDING then
end
end
return currentScene and currentScene : HasHideSceneConfirmation ( ) and bypassHideSceneConfirmationReason ~= ZO_BHSCR_ALREADY_SEEN and currentScene : IsShowing ( )
end
return nextScene and nextScene : HasHideSceneConfirmation ( ) and bypassHideSceneConfirmationReason ~= ZO_BHSCR_ALREADY_SEEN
end
end
end
local syncType = currentScene : IsShowing ( ) and REMOTE_SCENE_SYNC_TYPE_SHOW_SCENE or REMOTE_SCENE_SYNC_TYPE_HIDE_SCENE
local sequenceNumber = 0
local currentSceneTransitionComplete = true
end
end
local nextSceneName = self . nextScene and self . nextScene : GetName ( ) or ZO_REMOTE_SCENE_NO_SCENE_IDENTIFIER
SendLeaderToFollowerSync ( ZO_REMOTE_SCENE_CHANGE_ORIGIN , syncType , currentSceneName , nextSceneName , sequenceNumber , currentSceneTransitionComplete )
end
if newState == SCENE_HIDING or newState == SCENE_SHOWING then
end
end
end
-- override of ZO_SceneManager_Base:OnSceneStateHidden
local nextSceneGroup
if currentNextScene then
end
if lastSceneGroup ~= nextSceneGroup then
if lastSceneGroup ~= nil then
end
if nextSceneGroup ~= nil then
-- Check to see if self.nextScene has changed as a result of nextSceneGroup:SetState(SCENE_GROUP_SHOWING)
-- If self.nextScene has changed and currentNextScene's scene group is no longer showing, we set its state to SCENE_GROUP_HIDDEN
if nextSceneGroup ~= newNextSceneGroup then
end
-- Update currentNextScene to the new scene
end
end
end
if currentNextScene then
end
end
else
end
end
end
end
if bypassHideSceneConfirmationReason then
local DEFAULT_PUSH = nil
local DEFAULT_NEXT_SCENE_CLEARS_SCENE_STACK = nil
local DEFAULT_NUM_SCENES_NEXT_SCENE_POPS = nil
self : Show ( self : GetBaseScene ( ) : GetName ( ) , DEFAULT_PUSH , DEFAULT_NEXT_SCENE_CLEARS_SCENE_STACK , DEFAULT_NUM_SCENES_NEXT_SCENE_POPS , bypassHideSceneConfirmationReason )
else
end
end |