import {gameManager} from "../Game/GameManager"; import {Scene} from "phaser"; import {ErrorScene} from "../Reconnecting/ErrorScene"; import {WAError} from "../Reconnecting/WAError"; export const EntrySceneName = "EntryScene"; /** * The EntryScene is not a real scene. It is the first scene loaded and is only used to initialize the gameManager * and to route to the next correct scene. */ export class EntryScene extends Scene { constructor() { super({ key: EntrySceneName }); } create() { gameManager.init(this.scene).then((nextSceneName) => { this.scene.start(nextSceneName); }).catch((err) => { if (err.response && err.response.status == 404) { ErrorScene.showError(new WAError( 'Access link incorrect', 'Could not find map. Please check your access link.', 'If you want more information, you may contact administrator or contact us at: workadventure@thecodingmachine.com'), this.scene); } else { ErrorScene.showError(err, this.scene); } }); } }