From d6a49dee6a8b6ece1f4e9a7c21fdbff054cdecfd Mon Sep 17 00:00:00 2001 From: martin Date: Sun, 2 Jul 2023 16:44:30 +0200 Subject: [PATCH] Updated frontend and more .Ready implementations --- .../src/components/gameComponent.tsx | 18 ++++++++----- .../ClientApp/src/game/player.ts | 8 ++++++ .../src/game/possibleMovesAlgorithm.ts | 5 ++-- .../ClientApp/src/pages/home.tsx | 6 ++++- .../ClientApp/src/types/props.d.ts | 1 + .../Controllers/GameController.cs | 26 +++++++++++-------- pac-man-board-game/Services/GameGroup.cs | 18 +++++-------- 7 files changed, 51 insertions(+), 31 deletions(-) diff --git a/pac-man-board-game/ClientApp/src/components/gameComponent.tsx b/pac-man-board-game/ClientApp/src/components/gameComponent.tsx index 7e362bc..f16935b 100644 --- a/pac-man-board-game/ClientApp/src/components/gameComponent.tsx +++ b/pac-man-board-game/ClientApp/src/components/gameComponent.tsx @@ -6,7 +6,7 @@ import {Character, Ghost, PacMan} from "../game/character"; import WebSocketService from "../websockets/WebSocketService"; import {testMap} from "../game/map"; import {TileType} from "../game/tileType"; -import Player from "../game/player"; +import Player, {State} from "../game/player"; const wsService = new WebSocketService(import.meta.env.VITE_API); @@ -17,10 +17,7 @@ const ghosts = [ export const GameComponent: Component<{ player: Player }> = ( { - player = new Player({ - Name: "Martin", - Colour: "yellow", - }) + player }) => { // TODO find spawn points const [characters, setCharacters] = useState(); @@ -62,6 +59,7 @@ export const GameComponent: Component<{ player: Player }> = ( break; case GameAction.playerInfo: const players = parsed.Data as PlayerProps[]; + console.log(players); const pacMen = players.filter(p => p.PacMan).map(p => new PacMan(p.PacMan!)); console.log(pacMen); // TODO find spawn points @@ -121,11 +119,19 @@ export const GameComponent: Component<{ player: Player }> = ( return () => wsService.close(); }, []); + function sendReady() { + wsService.send({Action: GameAction.ready}); + } + return (

Pac-Man The Board Game

- + { + player.State === State.waitingForPlayers ? + : + + }
{ diff --git a/pac-man-board-game/ClientApp/src/game/player.ts b/pac-man-board-game/ClientApp/src/game/player.ts index 0e0b63d..2e57c91 100644 --- a/pac-man-board-game/ClientApp/src/game/player.ts +++ b/pac-man-board-game/ClientApp/src/game/player.ts @@ -1,11 +1,18 @@ import {Character, CharacterType} from "./character"; import Box from "./box"; +export enum State { + waitingForPlayers, + ready, + inGame +} + export default class Player { public readonly Name: string; public readonly PacMan: Character; public readonly Colour: Colour; public readonly Box: Box; + public State: State; constructor(props: PlayerProps) { this.Name = props.Name; @@ -15,6 +22,7 @@ export default class Player { Colour: props.Colour, Type: CharacterType.pacMan }); + this.State = props.State ?? State.waitingForPlayers; } public stealFrom(other: Player): void { diff --git a/pac-man-board-game/ClientApp/src/game/possibleMovesAlgorithm.ts b/pac-man-board-game/ClientApp/src/game/possibleMovesAlgorithm.ts index 3536d0f..6653514 100644 --- a/pac-man-board-game/ClientApp/src/game/possibleMovesAlgorithm.ts +++ b/pac-man-board-game/ClientApp/src/game/possibleMovesAlgorithm.ts @@ -13,8 +13,9 @@ import {Direction, getDirections} from "./direction"; * @returns An array of paths the character can move to */ export default function findPossiblePositions(board: GameMap, character: Character, steps: number, characters: Character[]): Path[] { + if (!character.Position || !character.SpawnPosition) throw new Error("Character has no position or spawn position"); return findPossibleRecursive(board, character.Position, steps, character, characters); -} +}; /** * Uses recursion to move through the board and find all the possible positions @@ -253,7 +254,7 @@ function isSpawn(board: GameMap, currentPos: Path) { */ function isOwnSpawn(currentPos: Path, character: Character): boolean { const pos = currentPos.End; - const charPos = character.SpawnPosition.At; + const charPos = character.SpawnPosition!.At; return charPos.x === pos.x && charPos.y === pos.y; } diff --git a/pac-man-board-game/ClientApp/src/pages/home.tsx b/pac-man-board-game/ClientApp/src/pages/home.tsx index ec521b2..3423480 100644 --- a/pac-man-board-game/ClientApp/src/pages/home.tsx +++ b/pac-man-board-game/ClientApp/src/pages/home.tsx @@ -1,9 +1,13 @@ import React from "react"; import {GameComponent} from "../components/gameComponent"; +import Player from "../game/player"; const Home: Component = () => (
- +
); diff --git a/pac-man-board-game/ClientApp/src/types/props.d.ts b/pac-man-board-game/ClientApp/src/types/props.d.ts index e3b15dc..6dfdbf6 100644 --- a/pac-man-board-game/ClientApp/src/types/props.d.ts +++ b/pac-man-board-game/ClientApp/src/types/props.d.ts @@ -29,4 +29,5 @@ interface PlayerProps { readonly PacMan?: CharacterProps, readonly Colour: Colour, readonly Box?: BoxProps, + State?: import("../game/player").State, } diff --git a/pac-man-board-game/Controllers/GameController.cs b/pac-man-board-game/Controllers/GameController.cs index ac5186f..8bdcb04 100644 --- a/pac-man-board-game/Controllers/GameController.cs +++ b/pac-man-board-game/Controllers/GameController.cs @@ -18,16 +18,11 @@ public class GameController : GenericController private GameGroup _group = new(); private IPlayer? _player; - public GameController(ILogger logger, IWebSocketService wsService) : base(logger, wsService) - { + public GameController(ILogger logger, IWebSocketService wsService) : base(logger, wsService) => _diceCup = new DiceCup(); - } [HttpGet] - public override async Task Accept() - { - await base.Accept(); - } + public override async Task Accept() => await base.Accept(); protected override ArraySegment Run(WebSocketReceiveResult result, byte[] data) { @@ -57,15 +52,24 @@ public class GameController : GenericController message.Data = _group.Players; break; case GameAction.Ready: - if (_player != null) _group.SetReady(_player); - if (_group.AllReady()) + if (_player != null) { - // TODO select starter player and send response + var players = _group.SetReady(_player).ToArray(); + if (players.All(p => p.State == State.Ready)) + // TODO roll to start + message.Data = new { AllReady = true, Starter = _group.RandomPlayer }; + else + message.Data = new { AllReady = false, players }; } + else + { + message.Data = "Player not found, please create a new player"; + } + break; default: Logger.Log(LogLevel.Information, "Forwarding message to all clients"); break; } } -} \ No newline at end of file +} diff --git a/pac-man-board-game/Services/GameGroup.cs b/pac-man-board-game/Services/GameGroup.cs index 820c07f..d687391 100644 --- a/pac-man-board-game/Services/GameGroup.cs +++ b/pac-man-board-game/Services/GameGroup.cs @@ -5,7 +5,10 @@ namespace pacMan.Services; public class GameGroup { + private readonly Random _random = new(); public List Players { get; } = new(); + + public IPlayer RandomPlayer => Players[_random.Next(Players.Count)]; public event Func, Task>? Connections; public bool AddPlayer(IPlayer player) @@ -18,18 +21,11 @@ public class GameGroup return true; } - public void SendToAll(ArraySegment segment) - { - Connections?.Invoke(segment); - } + public void SendToAll(ArraySegment segment) => Connections?.Invoke(segment); - public bool AllReady() - { - return Players.All(p => p.State == State.Ready); - } - - public void SetReady(IPlayer player) + public IEnumerable SetReady(IPlayer player) { player.State = State.Ready; + return Players; } -} \ No newline at end of file +}