Sends an ActionMessage between client and server

This commit is contained in:
Martin Berg Alstad 2023-05-20 00:13:52 +02:00
parent 9df04610ef
commit d8e74dc6fd
8 changed files with 35 additions and 27 deletions

View File

@ -33,14 +33,14 @@ export default class WebSocketService {
if (this._onError) this.ws.onerror = this._onError; if (this._onError) this.ws.onerror = this._onError;
} }
public send(data: ActionRequest | string): void { public send(data: ActionMessage | string): void {
if (typeof data !== "string") { if (typeof data !== "string") {
data = JSON.stringify(data); data = JSON.stringify(data);
} }
this.ws?.send(data); this.ws?.send(data);
} }
public async sendAndReceive<R>(data: ActionRequest): Promise<R> { public async sendAndReceive<R>(data: ActionMessage): Promise<R> {
if (!this.isOpen()) return Promise.reject("WebSocket is not open"); if (!this.isOpen()) return Promise.reject("WebSocket is not open");
let result: R | undefined; let result: R | undefined;

View File

@ -2,6 +2,7 @@ import React from "react";
import GameCanvas from "../components/gameCanvas"; import GameCanvas from "../components/gameCanvas";
import Game from "../game/game"; import Game from "../game/game";
import {AllDice} from "./dice"; import {AllDice} from "./dice";
import {Action} from "../classes/actions";
let game: Game; let game: Game;
export const GameComponent: Component = () => { export const GameComponent: Component = () => {
@ -18,9 +19,12 @@ export const GameComponent: Component = () => {
function updateState() { function updateState() {
game.wsService.onReceive = (message) => { game.wsService.onReceive = (message) => {
const parsed = JSON.parse(message.data); const parsed: ActionMessage = JSON.parse(message.data);
if (parsed instanceof Array) { console.log(parsed);
setDice(parsed); switch (parsed.Action) {
case Action.rollDice:
setDice(parsed.Data as number[]);
break;
} }
}; };
} }

View File

@ -19,7 +19,7 @@ export default class Game {
public async gameLoop(setDice: Setter<number[] | undefined>): Promise<void> { public async gameLoop(setDice: Setter<number[] | undefined>): Promise<void> {
// Throw the dices // Throw the dices
const result = await this.rollDice(); const result = await this.rollDice();
setDice(result); setDice(result.Data);
// Choose a dice and move pac-man or a ghost // Choose a dice and move pac-man or a ghost
@ -55,9 +55,9 @@ export default class Game {
throw new Error("Not implemented"); throw new Error("Not implemented");
} }
private async rollDice(): Promise<number[]> { private async rollDice(): Promise<ActionMessage<number[]>> {
let result: number[]; let result: ActionMessage<number[]>;
result = await this._wsService.sendAndReceive<number[]>({action: Action.rollDice}); result = await this._wsService.sendAndReceive<ActionMessage<number[]>>({Action: Action.rollDice});
return result; return result;
} }

View File

@ -4,7 +4,7 @@ type Setter<T> = React.Dispatch<React.SetStateAction<T>>;
type WebSocketData = string | ArrayBufferLike | Blob | ArrayBufferView; type WebSocketData = string | ArrayBufferLike | Blob | ArrayBufferView;
type ActionRequest = { type ActionMessage<T = object> = {
action: import("../classes/actions").Action, Action: import("../classes/actions").Action,
data?: object Data?: T
} }

View File

@ -31,7 +31,7 @@ public class GameController : GenericController
stringResult = Regex.Replace(stringResult, @"\p{C}+", ""); stringResult = Regex.Replace(stringResult, @"\p{C}+", "");
Logger.Log(LogLevel.Information, "Received: {}", stringResult); Logger.Log(LogLevel.Information, "Received: {}", stringResult);
var action = JsonSerializer.Deserialize<ActionRequest>(stringResult); var action = JsonSerializer.Deserialize<ActionMessage>(stringResult);
switch (action?.Action) switch (action?.Action)
{ {
@ -39,7 +39,8 @@ public class GameController : GenericController
var rolls = _diceCup.Roll(); var rolls = _diceCup.Roll();
Logger.Log(LogLevel.Information, "Rolled {}", string.Join(", ", rolls)); Logger.Log(LogLevel.Information, "Rolled {}", string.Join(", ", rolls));
return rolls.ToArraySegment(); action.Data = rolls;
return action.ToArraySegment();
default: default:
return new ArraySegment<byte>("Invalid action"u8.ToArray()); return new ArraySegment<byte>("Invalid action"u8.ToArray());
} }

View File

@ -1,6 +0,0 @@
namespace pacMan.Game;
public enum GameAction
{
RollDice
}

View File

@ -1,7 +0,0 @@
namespace pacMan.Game;
public class ActionRequest
{
public GameAction Action { get; set; }
public object? Data { get; set; }
}

View File

@ -0,0 +1,16 @@
namespace pacMan.Game;
public enum GameAction
{
RollDice
}
public class ActionMessage<T>
{
public GameAction Action { get; set; }
public T? Data { get; set; }
}
public class ActionMessage : ActionMessage<dynamic>
{
}