2020-10-12 16:23:07 +02:00
|
|
|
import {GameScene} from "./GameScene";
|
2020-09-28 15:02:37 +02:00
|
|
|
import {connectionManager} from "../../Connexion/ConnectionManager";
|
2020-10-12 16:23:07 +02:00
|
|
|
import {Room} from "../../Connexion/Room";
|
2020-10-12 17:42:37 +02:00
|
|
|
import {FourOFourSceneName} from "../Reconnecting/FourOFourScene";
|
2020-04-10 12:54:05 +02:00
|
|
|
|
2020-05-02 16:54:52 +02:00
|
|
|
export interface HasMovedEvent {
|
|
|
|
direction: string;
|
2020-05-22 22:59:43 +02:00
|
|
|
moving: boolean;
|
2020-05-02 16:54:52 +02:00
|
|
|
x: number;
|
|
|
|
y: number;
|
|
|
|
}
|
2020-04-07 20:41:35 +02:00
|
|
|
|
2020-04-27 15:03:05 +02:00
|
|
|
export class GameManager {
|
2020-08-07 23:39:06 +02:00
|
|
|
private playerName!: string;
|
|
|
|
private characterLayers!: string[];
|
2020-10-12 16:23:07 +02:00
|
|
|
private startRoom!:Room;
|
2020-10-12 17:42:37 +02:00
|
|
|
|
2020-10-12 18:59:49 +02:00
|
|
|
public async init(scenePlugin: Phaser.Scenes.ScenePlugin) {
|
|
|
|
this.startRoom = await connectionManager.initGameConnexion();
|
2020-10-13 17:08:24 +02:00
|
|
|
await this.loadMap(this.startRoom, scenePlugin);
|
2020-10-12 16:23:07 +02:00
|
|
|
}
|
2020-04-07 20:41:35 +02:00
|
|
|
|
2020-07-28 15:53:44 +02:00
|
|
|
public setPlayerName(name: string): void {
|
2020-05-03 15:29:40 +02:00
|
|
|
this.playerName = name;
|
2020-07-28 15:53:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public setCharacterUserSelected(characterUserSelected : string): void {
|
|
|
|
this.characterLayers = [characterUserSelected];
|
|
|
|
}
|
|
|
|
|
|
|
|
public setCharacterLayers(layers: string[]) {
|
|
|
|
this.characterLayers = layers;
|
2020-04-10 12:54:05 +02:00
|
|
|
}
|
|
|
|
|
2020-05-03 15:29:40 +02:00
|
|
|
getPlayerName(): string {
|
|
|
|
return this.playerName;
|
|
|
|
}
|
2020-05-03 15:51:16 +02:00
|
|
|
|
2020-07-28 17:43:33 +02:00
|
|
|
getCharacterSelected(): string[] {
|
|
|
|
return this.characterLayers;
|
2020-05-06 01:50:01 +02:00
|
|
|
}
|
2020-10-12 17:42:37 +02:00
|
|
|
|
|
|
|
|
2020-10-13 17:08:24 +02:00
|
|
|
public async loadMap(room: Room, scenePlugin: Phaser.Scenes.ScenePlugin): Promise<void> {
|
|
|
|
const roomID = room.id;
|
|
|
|
const mapUrl = await room.getMapUrl();
|
2020-10-12 16:23:07 +02:00
|
|
|
console.log('Loading map '+roomID+' at url '+mapUrl);
|
2020-10-13 17:08:24 +02:00
|
|
|
|
2020-10-12 18:59:49 +02:00
|
|
|
const gameIndex = scenePlugin.getIndex(mapUrl);
|
2020-05-11 23:26:40 +02:00
|
|
|
if(gameIndex === -1){
|
2020-10-13 18:44:50 +02:00
|
|
|
const game : Phaser.Scene = GameScene.createFromUrl(room, mapUrl);
|
2020-10-12 18:59:49 +02:00
|
|
|
console.log('Adding scene '+mapUrl);
|
|
|
|
scenePlugin.add(mapUrl, game, false);
|
2020-05-11 23:26:40 +02:00
|
|
|
}
|
|
|
|
}
|
2020-10-08 18:51:24 +02:00
|
|
|
|
|
|
|
public getMapKeyByUrl(mapUrlStart: string) : string {
|
|
|
|
// FIXME: the key should be computed from the full URL of the map.
|
|
|
|
const startPos = mapUrlStart.indexOf('://')+3;
|
|
|
|
const endPos = mapUrlStart.indexOf(".json");
|
|
|
|
return mapUrlStart.substring(startPos, endPos);
|
|
|
|
}
|
2020-10-12 17:42:37 +02:00
|
|
|
|
2020-10-13 16:46:46 +02:00
|
|
|
public async goToStartingMap(scenePlugin: Phaser.Scenes.ScenePlugin) {
|
|
|
|
const url = await this.startRoom.getMapUrl();
|
|
|
|
console.log('Starting scene '+url);
|
2020-10-15 14:35:09 +02:00
|
|
|
scenePlugin.start(url);
|
2020-10-12 16:23:07 +02:00
|
|
|
}
|
2020-04-26 17:54:56 +02:00
|
|
|
}
|
|
|
|
|
2020-05-03 15:29:40 +02:00
|
|
|
export const gameManager = new GameManager();
|