c9fa9b9a92
The notion of public/private repositories (with /_/ and /@/ URLs) is specific to the SAAS version of WorkAdventure. It would be better to avoid leaking the organization/world/room structure of the private SAAS URLs inside the WorkAdventure Github project. Rather than sending http://admin_host/api/map?organizationSlug=...&worldSlug=...&roomSlug=...., we are now sending /api/map&playUri=... where playUri is the full URL of the current game. This allows the backend to act as a complete router. The front (and the pusher) will be able to completely ignore the specifics of URL building (with /@/ and /_/ URLs, etc...) Those details will live only in the admin server, which is way cleaner (and way more powerful).
136 lines
4.8 KiB
TypeScript
136 lines
4.8 KiB
TypeScript
import { GameScene } from "./GameScene";
|
|
import { connectionManager } from "../../Connexion/ConnectionManager";
|
|
import type { Room } from "../../Connexion/Room";
|
|
import { MenuScene, MenuSceneName } from "../Menu/MenuScene";
|
|
import { LoginSceneName } from "../Login/LoginScene";
|
|
import { SelectCharacterSceneName } from "../Login/SelectCharacterScene";
|
|
import { EnableCameraSceneName } from "../Login/EnableCameraScene";
|
|
import { localUserStore } from "../../Connexion/LocalUserStore";
|
|
import { get } from "svelte/store";
|
|
import { requestedCameraState, requestedMicrophoneState } from "../../Stores/MediaStore";
|
|
import { helpCameraSettingsVisibleStore } from "../../Stores/HelpCameraSettingsStore";
|
|
|
|
/**
|
|
* This class should be responsible for any scene starting/stopping
|
|
*/
|
|
export class GameManager {
|
|
private playerName: string | null;
|
|
private characterLayers: string[] | null;
|
|
private companion: string | null;
|
|
private startRoom!: Room;
|
|
currentGameSceneName: string | null = null;
|
|
|
|
constructor() {
|
|
this.playerName = localUserStore.getName();
|
|
this.characterLayers = localUserStore.getCharacterLayers();
|
|
this.companion = localUserStore.getCompanion();
|
|
}
|
|
|
|
public async init(scenePlugin: Phaser.Scenes.ScenePlugin): Promise<string> {
|
|
this.startRoom = await connectionManager.initGameConnexion();
|
|
this.loadMap(this.startRoom, scenePlugin);
|
|
|
|
if (!this.playerName) {
|
|
return LoginSceneName;
|
|
} else if (!this.characterLayers || !this.characterLayers.length) {
|
|
return SelectCharacterSceneName;
|
|
} else {
|
|
return EnableCameraSceneName;
|
|
}
|
|
}
|
|
|
|
public setPlayerName(name: string): void {
|
|
this.playerName = name;
|
|
localUserStore.setName(name);
|
|
}
|
|
|
|
public setCharacterLayers(layers: string[]): void {
|
|
this.characterLayers = layers;
|
|
localUserStore.setCharacterLayers(layers);
|
|
}
|
|
|
|
getPlayerName(): string | null {
|
|
return this.playerName;
|
|
}
|
|
|
|
getCharacterLayers(): string[] {
|
|
if (!this.characterLayers) {
|
|
throw "characterLayers are not set";
|
|
}
|
|
return this.characterLayers;
|
|
}
|
|
|
|
setCompanion(companion: string | null): void {
|
|
this.companion = companion;
|
|
}
|
|
|
|
getCompanion(): string | null {
|
|
return this.companion;
|
|
}
|
|
|
|
public loadMap(room: Room, scenePlugin: Phaser.Scenes.ScenePlugin) {
|
|
const roomID = room.key;
|
|
|
|
const gameIndex = scenePlugin.getIndex(roomID);
|
|
if (gameIndex === -1) {
|
|
const game: Phaser.Scene = new GameScene(room, room.mapUrl);
|
|
scenePlugin.add(roomID, game, false);
|
|
}
|
|
}
|
|
|
|
public goToStartingMap(scenePlugin: Phaser.Scenes.ScenePlugin): void {
|
|
console.log("starting " + (this.currentGameSceneName || this.startRoom.key));
|
|
scenePlugin.start(this.currentGameSceneName || this.startRoom.key);
|
|
scenePlugin.launch(MenuSceneName);
|
|
|
|
if (
|
|
!localUserStore.getHelpCameraSettingsShown() &&
|
|
(!get(requestedMicrophoneState) || !get(requestedCameraState))
|
|
) {
|
|
helpCameraSettingsVisibleStore.set(true);
|
|
localUserStore.setHelpCameraSettingsShown();
|
|
}
|
|
}
|
|
|
|
public gameSceneIsCreated(scene: GameScene) {
|
|
this.currentGameSceneName = scene.scene.key;
|
|
const menuScene: MenuScene = scene.scene.get(MenuSceneName) as MenuScene;
|
|
menuScene.revealMenuIcon();
|
|
}
|
|
|
|
/**
|
|
* Temporary leave a gameScene to go back to the loginScene for example.
|
|
* This will close the socket connections and stop the gameScene, but won't remove it.
|
|
*/
|
|
leaveGame(scene: Phaser.Scene, targetSceneName: string, sceneClass: Phaser.Scene): void {
|
|
if (this.currentGameSceneName === null) throw "No current scene id set!";
|
|
const gameScene: GameScene = scene.scene.get(this.currentGameSceneName) as GameScene;
|
|
gameScene.cleanupClosingScene();
|
|
scene.scene.stop(this.currentGameSceneName);
|
|
scene.scene.sleep(MenuSceneName);
|
|
if (!scene.scene.get(targetSceneName)) {
|
|
scene.scene.add(targetSceneName, sceneClass, false);
|
|
}
|
|
scene.scene.run(targetSceneName);
|
|
}
|
|
|
|
/**
|
|
* follow up to leaveGame()
|
|
*/
|
|
tryResumingGame(scene: Phaser.Scene, fallbackSceneName: string) {
|
|
if (this.currentGameSceneName) {
|
|
scene.scene.start(this.currentGameSceneName);
|
|
scene.scene.wake(MenuSceneName);
|
|
} else {
|
|
scene.scene.run(fallbackSceneName);
|
|
}
|
|
}
|
|
|
|
public getCurrentGameScene(scene: Phaser.Scene): GameScene {
|
|
if (this.currentGameSceneName === null) throw "No current scene id set!";
|
|
return scene.scene.get(this.currentGameSceneName) as GameScene;
|
|
}
|
|
}
|
|
|
|
export const gameManager = new GameManager();
|