diff --git a/pac-man-board-game/ClientApp/src/classes/WebSocketService.ts b/pac-man-board-game/ClientApp/src/classes/WebSocketService.ts index 5bf5bdc..7c425ec 100644 --- a/pac-man-board-game/ClientApp/src/classes/WebSocketService.ts +++ b/pac-man-board-game/ClientApp/src/classes/WebSocketService.ts @@ -33,14 +33,14 @@ export default class WebSocketService { if (this._onError) this.ws.onerror = this._onError; } - public send(data: ActionRequest | string): void { + public send(data: ActionMessage | string): void { if (typeof data !== "string") { data = JSON.stringify(data); } this.ws?.send(data); } - public async sendAndReceive(data: ActionRequest): Promise { + public async sendAndReceive(data: ActionMessage): Promise { if (!this.isOpen()) return Promise.reject("WebSocket is not open"); let result: R | undefined; diff --git a/pac-man-board-game/ClientApp/src/components/gameComponent.tsx b/pac-man-board-game/ClientApp/src/components/gameComponent.tsx index cd7b297..a83871c 100644 --- a/pac-man-board-game/ClientApp/src/components/gameComponent.tsx +++ b/pac-man-board-game/ClientApp/src/components/gameComponent.tsx @@ -2,6 +2,7 @@ import React from "react"; import GameCanvas from "../components/gameCanvas"; import Game from "../game/game"; import {AllDice} from "./dice"; +import {Action} from "../classes/actions"; let game: Game; export const GameComponent: Component = () => { @@ -18,9 +19,12 @@ export const GameComponent: Component = () => { function updateState() { game.wsService.onReceive = (message) => { - const parsed = JSON.parse(message.data); - if (parsed instanceof Array) { - setDice(parsed); + const parsed: ActionMessage = JSON.parse(message.data); + console.log(parsed); + switch (parsed.Action) { + case Action.rollDice: + setDice(parsed.Data as number[]); + break; } }; } diff --git a/pac-man-board-game/ClientApp/src/game/game.ts b/pac-man-board-game/ClientApp/src/game/game.ts index 95528fd..b88f97a 100644 --- a/pac-man-board-game/ClientApp/src/game/game.ts +++ b/pac-man-board-game/ClientApp/src/game/game.ts @@ -19,7 +19,7 @@ export default class Game { public async gameLoop(setDice: Setter): Promise { // Throw the dices const result = await this.rollDice(); - setDice(result); + setDice(result.Data); // Choose a dice and move pac-man or a ghost @@ -55,9 +55,9 @@ export default class Game { throw new Error("Not implemented"); } - private async rollDice(): Promise { - let result: number[]; - result = await this._wsService.sendAndReceive({action: Action.rollDice}); + private async rollDice(): Promise> { + let result: ActionMessage; + result = await this._wsService.sendAndReceive>({Action: Action.rollDice}); return result; } diff --git a/pac-man-board-game/ClientApp/src/types/types.d.ts b/pac-man-board-game/ClientApp/src/types/types.d.ts index b624056..31b0228 100644 --- a/pac-man-board-game/ClientApp/src/types/types.d.ts +++ b/pac-man-board-game/ClientApp/src/types/types.d.ts @@ -4,7 +4,7 @@ type Setter = React.Dispatch>; type WebSocketData = string | ArrayBufferLike | Blob | ArrayBufferView; -type ActionRequest = { - action: import("../classes/actions").Action, - data?: object +type ActionMessage = { + Action: import("../classes/actions").Action, + Data?: T } diff --git a/pac-man-board-game/Controllers/GameController.cs b/pac-man-board-game/Controllers/GameController.cs index 188f2b9..00a2b50 100644 --- a/pac-man-board-game/Controllers/GameController.cs +++ b/pac-man-board-game/Controllers/GameController.cs @@ -31,7 +31,7 @@ public class GameController : GenericController stringResult = Regex.Replace(stringResult, @"\p{C}+", ""); Logger.Log(LogLevel.Information, "Received: {}", stringResult); - var action = JsonSerializer.Deserialize(stringResult); + var action = JsonSerializer.Deserialize(stringResult); switch (action?.Action) { @@ -39,7 +39,8 @@ public class GameController : GenericController var rolls = _diceCup.Roll(); Logger.Log(LogLevel.Information, "Rolled {}", string.Join(", ", rolls)); - return rolls.ToArraySegment(); + action.Data = rolls; + return action.ToArraySegment(); default: return new ArraySegment("Invalid action"u8.ToArray()); } diff --git a/pac-man-board-game/Game/Action.cs b/pac-man-board-game/Game/Action.cs deleted file mode 100644 index d6bebed..0000000 --- a/pac-man-board-game/Game/Action.cs +++ /dev/null @@ -1,6 +0,0 @@ -namespace pacMan.Game; - -public enum GameAction -{ - RollDice -} \ No newline at end of file diff --git a/pac-man-board-game/Game/ActionRequest.cs b/pac-man-board-game/Game/ActionRequest.cs deleted file mode 100644 index d95b570..0000000 --- a/pac-man-board-game/Game/ActionRequest.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace pacMan.Game; - -public class ActionRequest -{ - public GameAction Action { get; set; } - public object? Data { get; set; } -} \ No newline at end of file diff --git a/pac-man-board-game/Game/Actions.cs b/pac-man-board-game/Game/Actions.cs new file mode 100644 index 0000000..f70a448 --- /dev/null +++ b/pac-man-board-game/Game/Actions.cs @@ -0,0 +1,16 @@ +namespace pacMan.Game; + +public enum GameAction +{ + RollDice +} + +public class ActionMessage +{ + public GameAction Action { get; set; } + public T? Data { get; set; } +} + +public class ActionMessage : ActionMessage +{ +} \ No newline at end of file