From 049d5e4aeee9a6deda9b61f6de882202349e4c9f Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <600878@stud.hvl.no> Date: Fri, 14 Jul 2023 19:36:36 +0200 Subject: [PATCH] Moved button to component and added a Waiting state for the button --- .../ClientApp/src/components/dice.tsx | 9 ++---- .../ClientApp/src/components/gameBoard.tsx | 2 +- .../ClientApp/src/components/gameButton.tsx | 28 +++++++++++++++++++ .../src/components/gameComponent.tsx | 14 ++++------ .../ClientApp/src/game/player.ts | 7 +++++ pac-man-board-game/Services/GameGroup.cs | 2 +- 6 files changed, 45 insertions(+), 17 deletions(-) create mode 100644 pac-man-board-game/ClientApp/src/components/gameButton.tsx diff --git a/pac-man-board-game/ClientApp/src/components/dice.tsx b/pac-man-board-game/ClientApp/src/components/dice.tsx index 1e87e4d..d1bb212 100644 --- a/pac-man-board-game/ClientApp/src/components/dice.tsx +++ b/pac-man-board-game/ClientApp/src/components/dice.tsx @@ -1,21 +1,18 @@ import React from "react"; -import {useSetAtom} from "jotai"; +import {useAtom} from "jotai"; import {selectedDiceAtom} from "../utils/state"; interface AllDiceProps extends ComponentProps { values?: number[], - onclick?: (dice: SelectedDice) => void, - selectedDiceIndex: number | undefined } export const AllDice: Component = ( { className, values, - selectedDiceIndex }) => { - const setSelectedDice = useSetAtom(selectedDiceAtom); + const [selectedDice, setSelectedDice] = useAtom(selectedDiceAtom); function handleClick(dice: SelectedDice): void { setSelectedDice(dice); @@ -25,7 +22,7 @@ export const AllDice: Component = (
{values?.map((value, index) => handleClick({index, value})}/>)}
diff --git a/pac-man-board-game/ClientApp/src/components/gameBoard.tsx b/pac-man-board-game/ClientApp/src/components/gameBoard.tsx index 6199f6e..b455f27 100644 --- a/pac-man-board-game/ClientApp/src/components/gameBoard.tsx +++ b/pac-man-board-game/ClientApp/src/components/gameBoard.tsx @@ -100,7 +100,7 @@ const Board: Component = ( possiblePath={possiblePositions.find(p => p.End.X === colIndex && p.End.Y === rowIndex)} character={characters.find(c => c.isAt({X: colIndex, Y: rowIndex}))} isSelected={selectedCharacter?.isAt({X: colIndex, Y: rowIndex})} - showPath={hoveredPosition?.Path?.find(pos => pos.x === colIndex && pos.y === rowIndex) !== undefined} + showPath={hoveredPosition?.Path?.find(pos => pos.X === colIndex && pos.Y === rowIndex) !== undefined} handleMoveCharacter={handleMoveCharacter} handleSelectCharacter={handleSelectCharacter} handleStartShowPath={handleShowPath} diff --git a/pac-man-board-game/ClientApp/src/components/gameButton.tsx b/pac-man-board-game/ClientApp/src/components/gameButton.tsx new file mode 100644 index 0000000..ac434a8 --- /dev/null +++ b/pac-man-board-game/ClientApp/src/components/gameButton.tsx @@ -0,0 +1,28 @@ +import React, {MouseEventHandler} from "react"; +import {State} from "../game/player"; +import {currentPlayerAtom, thisPlayerAtom} from "../utils/state"; +import {useAtomValue} from "jotai"; + +interface GameButtonProps extends ComponentProps { + onReadyClick?: MouseEventHandler, + onRollDiceClick?: MouseEventHandler +} + +const GameButton: Component = ( + { + onReadyClick, + onRollDiceClick, + }) => { + const currentPlayer = useAtomValue(currentPlayerAtom); + const thisPlayer = useAtomValue(thisPlayerAtom); + + if (currentPlayer === undefined || currentPlayer.State === State.waitingForPlayers) { + return ; + } + if (!thisPlayer?.isTurn()) { + return ; + } + return ; +}; + +export default GameButton; diff --git a/pac-man-board-game/ClientApp/src/components/gameComponent.tsx b/pac-man-board-game/ClientApp/src/components/gameComponent.tsx index c648ff8..b112368 100644 --- a/pac-man-board-game/ClientApp/src/components/gameComponent.tsx +++ b/pac-man-board-game/ClientApp/src/components/gameComponent.tsx @@ -4,15 +4,16 @@ import {doAction, GameAction} from "../utils/actions"; import GameBoard from "./gameBoard"; import WebSocketService from "../websockets/WebSocketService"; import {getCharacterSpawns, testMap} from "../game/map"; -import Player, {State} from "../game/player"; +import Player from "../game/player"; import PlayerStats from "../components/playerStats"; import {getDefaultStore, useAtom, useAtomValue} from "jotai"; import {currentPlayerAtom, diceAtom, ghostsAtom, playersAtom, selectedDiceAtom} from "../utils/state"; import {CharacterType} from "../game/character"; +import GameButton from "./gameButton"; const wsService = new WebSocketService(import.meta.env.VITE_API); -export const GameComponent: Component<{ player: Player }> = ({player}) => { +export const GameComponent: Component<{ player: Player }> = ({player}) => { // TODO players not moving const players = useAtomValue(playersAtom); const dice = useAtomValue(diceAtom); @@ -44,7 +45,6 @@ export const GameComponent: Component<{ player: Player }> = ({player}) => { } async function sendPlayer(): Promise { - // TODO set spawn position and position wsService.send({ Action: GameAction.playerInfo, Data: { @@ -71,13 +71,9 @@ export const GameComponent: Component<{ player: Player }> = ({player}) => { return ( <>
- { - currentPlayer === undefined || currentPlayer.State === State.waitingForPlayers ? - : - - } +
- + {players?.map(p => )} diff --git a/pac-man-board-game/ClientApp/src/game/player.ts b/pac-man-board-game/ClientApp/src/game/player.ts index 313b0d5..8596e61 100644 --- a/pac-man-board-game/ClientApp/src/game/player.ts +++ b/pac-man-board-game/ClientApp/src/game/player.ts @@ -1,6 +1,8 @@ import {Character, CharacterType} from "./character"; import Box from "./box"; import {Colour} from "./colour"; +import {getDefaultStore} from "jotai"; +import {currentPlayerAtom} from "../utils/state"; export enum State { waitingForPlayers, @@ -26,6 +28,11 @@ export default class Player { this.State = props.State ?? State.waitingForPlayers; } + public isTurn(): boolean { + const store = getDefaultStore(); + return store.get(currentPlayerAtom)?.Name === this.Name; + } + public stealFrom(other: Player): void { for (let i = 0; i < 2; i++) { const pellet = other.Box.Pellets.pop(); diff --git a/pac-man-board-game/Services/GameGroup.cs b/pac-man-board-game/Services/GameGroup.cs index 6c95eb9..df26d28 100644 --- a/pac-man-board-game/Services/GameGroup.cs +++ b/pac-man-board-game/Services/GameGroup.cs @@ -47,7 +47,7 @@ public class GameGroup : IEnumerable public IEnumerable SetReady(IPlayer player) { - if (!Players.Contains(player)) + if (!Players.Contains(player)) // TODO throws exception after game has started and refresh throw new PlayerNotFoundException("The player was not found in the game group."); player.State = State.Ready; return Players;