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-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
|
|
|
}
|
|
|
|
|
2020-10-20 13:44:57 +02:00
|
|
|
public setCharacterLayers(layers: string[]): void {
|
2020-07-28 15:53:44 +02:00
|
|
|
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-11-18 18:15:57 +01:00
|
|
|
const gameIndex = scenePlugin.getIndex(roomID);
|
2020-05-11 23:26:40 +02:00
|
|
|
if(gameIndex === -1){
|
2020-11-19 14:32:18 +01:00
|
|
|
const game : Phaser.Scene = new GameScene(room, mapUrl);
|
2020-11-18 18:15:57 +01:00
|
|
|
scenePlugin.add(roomID, game, false);
|
2020-05-11 23:26:40 +02:00
|
|
|
}
|
|
|
|
}
|
2020-10-08 18:51:24 +02:00
|
|
|
|
2020-11-18 18:15:57 +01:00
|
|
|
public goToStartingMap(scenePlugin: Phaser.Scenes.ScenePlugin): void {
|
|
|
|
scenePlugin.start(this.startRoom.id);
|
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();
|