diff --git a/pac-man-board-game/ClientApp/src/components/gameButton.tsx b/pac-man-board-game/ClientApp/src/components/gameButton.tsx index 26c5c18..c190296 100644 --- a/pac-man-board-game/ClientApp/src/components/gameButton.tsx +++ b/pac-man-board-game/ClientApp/src/components/gameButton.tsx @@ -1,8 +1,9 @@ import React, {MouseEventHandler} from "react"; import {State} from "../game/player"; -import {currentPlayerAtom, rollDiceButtonAtom, thisPlayerAtom} from "../utils/state"; +import {currentPlayerAtom, playersAtom, rollDiceButtonAtom, thisPlayerAtom} from "../utils/state"; import {useAtomValue} from "jotai"; import {Button} from "./Button"; +import rules from "../game/rules"; interface GameButtonProps extends ComponentProps { onReadyClick?: MouseEventHandler, @@ -17,9 +18,10 @@ const GameButton: Component = ( const currentPlayer = useAtomValue(currentPlayerAtom); const thisPlayer = useAtomValue(thisPlayerAtom); + const players = useAtomValue(playersAtom); const activeRollDiceButton = useAtomValue(rollDiceButtonAtom); - if (currentPlayer === undefined || currentPlayer.State === State.waitingForPlayers) { + if (players.length >= rules.minPlayers && (currentPlayer === undefined || currentPlayer.State === State.waitingForPlayers)) { return ; } if (!thisPlayer?.isTurn()) { // TODO also show when waiting for other players diff --git a/pac-man-board-game/ClientApp/src/components/gameComponent.tsx b/pac-man-board-game/ClientApp/src/components/gameComponent.tsx index 6789d67..c20e733 100644 --- a/pac-man-board-game/ClientApp/src/components/gameComponent.tsx +++ b/pac-man-board-game/ClientApp/src/components/gameComponent.tsx @@ -14,9 +14,9 @@ import GameButton from "./gameButton"; const wsService = new WebSocketService(import.meta.env.VITE_API); // TODO bug, when taking player on last dice, the currentPlayer changes and the wrong character get to steal +// TODO bug, first player can sometimes roll dice twice (maybe only on firefox) -// TODO move stats above dice -// TODO don't start game until at least 2 players have joined +// TODO add debug menu on dev, for testing and cheating // TODO join game lobby // TODO sign up player page // TODO sign in page @@ -90,13 +90,13 @@ export const GameComponent: Component<{ player: Player, map: GameMap }> = ({play return ( <> +
+ {players?.map(p => )} +
-
- {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 80461f3..b24dc69 100644 --- a/pac-man-board-game/ClientApp/src/game/player.ts +++ b/pac-man-board-game/ClientApp/src/game/player.ts @@ -4,6 +4,7 @@ import {Colour} from "./colour"; import {getDefaultStore} from "jotai"; import {currentPlayerNameAtom, playersAtom} from "../utils/state"; import Pellet from "./pellet"; +import rules from "./rules"; export enum State { waitingForPlayers, @@ -39,7 +40,7 @@ export default class Player { } public stealFrom(other: Player): void { - for (let i = 0; i < 2; i++) { + for (let i = 0; i < rules.maxStealPellets; i++) { const pellet = other.Box.Pellets.pop(); if (pellet) this.Box.addPellet(pellet); diff --git a/pac-man-board-game/ClientApp/src/game/rules.ts b/pac-man-board-game/ClientApp/src/game/rules.ts new file mode 100644 index 0000000..c692819 --- /dev/null +++ b/pac-man-board-game/ClientApp/src/game/rules.ts @@ -0,0 +1,7 @@ +const rules = { + minPlayers: 2, + maxPlayers: 4, + maxStealPellets: 2, +} + +export default rules;