54 lines
1.4 KiB
TypeScript
54 lines
1.4 KiB
TypeScript
import {GameScene} from "./GameScene";
|
|
import {
|
|
StartMapInterface
|
|
} from "../../Connection";
|
|
import Axios from "axios";
|
|
import {API_URL} from "../../Enum/EnvironmentVariable";
|
|
|
|
export interface HasMovedEvent {
|
|
direction: string;
|
|
moving: boolean;
|
|
x: number;
|
|
y: number;
|
|
}
|
|
|
|
export class GameManager {
|
|
private playerName: string;
|
|
private characterUserSelected: string;
|
|
|
|
public storePlayerDetails(name: string, characterUserSelected : string): void {
|
|
this.playerName = name;
|
|
this.characterUserSelected = characterUserSelected;
|
|
}
|
|
|
|
loadStartMap() : Promise<StartMapInterface> {
|
|
return Axios.get(`${API_URL}/start-map`)
|
|
.then((res) => {
|
|
return res.data;
|
|
}).catch((err) => {
|
|
console.error(err);
|
|
throw err;
|
|
});
|
|
}
|
|
|
|
getPlayerName(): string {
|
|
return this.playerName;
|
|
}
|
|
|
|
getCharacterSelected(): string {
|
|
return this.characterUserSelected;
|
|
}
|
|
|
|
loadMap(mapUrl: string, scene: Phaser.Scenes.ScenePlugin, instance: string): string {
|
|
const sceneKey = GameScene.getMapKeyByUrl(mapUrl);
|
|
|
|
const gameIndex = scene.getIndex(sceneKey);
|
|
if(gameIndex === -1){
|
|
const game : Phaser.Scene = GameScene.createFromUrl(mapUrl, instance);
|
|
scene.add(sceneKey, game, false);
|
|
}
|
|
return sceneKey;
|
|
}
|
|
}
|
|
|
|
export const gameManager = new GameManager();
|