2020-04-27 15:03:05 +02:00
|
|
|
import {GameScene} from "./GameScene";
|
2020-04-07 20:41:35 +02:00
|
|
|
import {ROOM} from "../../Enum/EnvironmentVariable"
|
2020-04-12 13:57:00 +02:00
|
|
|
import {Connexion, ConnexionInterface, ListMessageUserPositionInterface} from "../../Connexion";
|
2020-04-26 19:59:51 +02:00
|
|
|
import {SimplePeerInterface, SimplePeer} from "../../WebRtc/SimplePeer";
|
2020-04-29 00:01:37 +02:00
|
|
|
import {LogincScene} from "../Login/LogincScene";
|
2020-04-10 12:54:05 +02:00
|
|
|
|
|
|
|
export enum StatusGameManagerEnum {
|
|
|
|
IN_PROGRESS = 1,
|
|
|
|
CURRENT_USER_CREATED = 2
|
|
|
|
}
|
2020-04-07 20:41:35 +02:00
|
|
|
|
2020-04-12 13:57:00 +02:00
|
|
|
export let ConnexionInstance : ConnexionInterface;
|
2020-04-07 20:41:35 +02:00
|
|
|
|
2020-04-27 15:03:05 +02:00
|
|
|
export class GameManager {
|
2020-04-10 12:54:05 +02:00
|
|
|
status: number;
|
2020-04-26 17:54:56 +02:00
|
|
|
private ConnexionInstance: Connexion;
|
2020-04-27 15:03:05 +02:00
|
|
|
private currentGameScene: GameScene;
|
2020-04-26 19:59:51 +02:00
|
|
|
SimplePeer : SimplePeerInterface;
|
2020-04-07 20:41:35 +02:00
|
|
|
|
|
|
|
constructor() {
|
2020-04-10 12:54:05 +02:00
|
|
|
this.status = StatusGameManagerEnum.IN_PROGRESS;
|
2020-04-07 20:41:35 +02:00
|
|
|
}
|
2020-04-26 17:54:56 +02:00
|
|
|
|
|
|
|
connect(email:string) {
|
|
|
|
this.ConnexionInstance = new Connexion(email, this);
|
2020-04-27 15:03:05 +02:00
|
|
|
ConnexionInstance = this.ConnexionInstance;
|
2020-04-29 17:37:17 +02:00
|
|
|
return this.ConnexionInstance.createConnexion().then(() => {
|
2020-04-29 00:01:37 +02:00
|
|
|
this.SimplePeer = new SimplePeer(ConnexionInstance);
|
|
|
|
});
|
2020-04-10 12:54:05 +02:00
|
|
|
}
|
|
|
|
|
2020-04-27 15:03:05 +02:00
|
|
|
setCurrentGameScene(gameScene: GameScene) {
|
|
|
|
this.currentGameScene = gameScene;
|
2020-04-07 20:41:35 +02:00
|
|
|
}
|
|
|
|
|
2020-04-27 15:03:05 +02:00
|
|
|
|
2020-04-10 12:54:05 +02:00
|
|
|
/**
|
|
|
|
* Permit to create player in started room
|
|
|
|
*/
|
|
|
|
createCurrentPlayer(): void {
|
2020-04-13 13:42:21 +02:00
|
|
|
//Get started room send by the backend
|
2020-04-27 15:03:05 +02:00
|
|
|
this.currentGameScene.createCurrentPlayer(this.ConnexionInstance.userId);
|
2020-04-10 12:54:05 +02:00
|
|
|
this.status = StatusGameManagerEnum.CURRENT_USER_CREATED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Share position in game
|
|
|
|
* @param ListMessageUserPosition
|
|
|
|
*/
|
|
|
|
shareUserPosition(ListMessageUserPosition: ListMessageUserPositionInterface): void {
|
|
|
|
if (this.status === StatusGameManagerEnum.IN_PROGRESS) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
try {
|
2020-04-27 15:03:05 +02:00
|
|
|
this.currentGameScene.shareUserPosition(ListMessageUserPosition.listUsersPosition)
|
2020-04-10 12:54:05 +02:00
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
}
|
2020-04-07 20:41:35 +02:00
|
|
|
}
|
2020-04-26 17:54:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export const gameManager = new GameManager();
|