From 6042984fc60d466eb9030d62b7480f17fe24dc6c Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <600878@stud.hvl.no> Date: Sat, 20 May 2023 15:26:09 +0200 Subject: [PATCH] Dice can be selected --- .../ClientApp/src/components/dice.tsx | 46 +++++++++++++++++-- .../src/components/gameComponent.tsx | 18 +++++--- pac-man-board-game/ClientApp/src/game/game.ts | 26 ++++++----- .../ClientApp/src/types/types.d.ts | 5 ++ 4 files changed, 73 insertions(+), 22 deletions(-) diff --git a/pac-man-board-game/ClientApp/src/components/dice.tsx b/pac-man-board-game/ClientApp/src/components/dice.tsx index 1a3ef22..b482916 100644 --- a/pac-man-board-game/ClientApp/src/components/dice.tsx +++ b/pac-man-board-game/ClientApp/src/components/dice.tsx @@ -2,20 +2,56 @@ import React from "react"; interface AllDiceProps extends ComponentProps { values?: number[], + onclick?: (dice: SelectedDice) => void, + selectedDiceIndex: number | undefined } -export const AllDice: Component = ({className, values}) => { +export const AllDice: Component = ( + { + className, + values, + onclick, + selectedDiceIndex + }) => { + + function handleClick(index: SelectedDice) { + if (onclick) { + onclick(index); + } + } + return (
- {values?.map((value, index) => )} + {values?.map((value, index) => + handleClick({index, value})}/>)}
); }; interface DiceProps extends ComponentProps { value?: number, + onClick?: (value: number) => void, } -export const Dice: Component = ({className, value}) => ( -

{value?.toString()}

-); +export const Dice: Component = ( + { + className, + value, + onClick, + }) => { + + function handleClick() { + if (onClick && value) { + onClick(value); + } + } + + return ( + + ); +}; diff --git a/pac-man-board-game/ClientApp/src/components/gameComponent.tsx b/pac-man-board-game/ClientApp/src/components/gameComponent.tsx index a83871c..01999d3 100644 --- a/pac-man-board-game/ClientApp/src/components/gameComponent.tsx +++ b/pac-man-board-game/ClientApp/src/components/gameComponent.tsx @@ -1,4 +1,4 @@ -import React from "react"; +import React, {useState} from "react"; import GameCanvas from "../components/gameCanvas"; import Game from "../game/game"; import {AllDice} from "./dice"; @@ -7,9 +7,15 @@ import {Action} from "../classes/actions"; let game: Game; export const GameComponent: Component = () => { - const [dice, setDice] = React.useState(); + const [dice, setDice] = useState(); + const [selectedDice, setSelectedDice] = useState(); - function startGameLoop() { + function handleDiceClick(selected: SelectedDice): void { + setSelectedDice(selected); + game.selectedDice = selected; + } + + function startGameLoop(): void { if (!game.isConnected()) { setTimeout(startGameLoop, 50); return; @@ -20,10 +26,10 @@ export const GameComponent: Component = () => { function updateState() { game.wsService.onReceive = (message) => { const parsed: ActionMessage = JSON.parse(message.data); - console.log(parsed); + switch (parsed.Action) { case Action.rollDice: - setDice(parsed.Data as number[]); + setDice(parsed.Data as number[]); // Updates the state of other players break; } }; @@ -44,7 +50,7 @@ export const GameComponent: Component = () => {
- + ); diff --git a/pac-man-board-game/ClientApp/src/game/game.ts b/pac-man-board-game/ClientApp/src/game/game.ts index b88f97a..e4b2997 100644 --- a/pac-man-board-game/ClientApp/src/game/game.ts +++ b/pac-man-board-game/ClientApp/src/game/game.ts @@ -4,6 +4,7 @@ import {Action} from "../classes/actions"; export default class Game { private readonly _wsService: WebSocketService; + public selectedDice?: SelectedDice; constructor() { this._wsService = new WebSocketService("wss://localhost:3000/api/game"); @@ -17,11 +18,15 @@ export default class Game { } public async gameLoop(setDice: Setter): Promise { - // Throw the dices + // Throw the dice const result = await this.rollDice(); - setDice(result.Data); + const dice = result.Data; + setDice(dice); // Updates the state of the current player - // Choose a dice and move pac-man or a ghost + // Choose a dice + + // Choose a character to move + // this.chooseCharacter(); // Use the remaining dice to move pac-man if the player moved a ghost or vice versa @@ -38,7 +43,7 @@ export default class Game { public isConnected(): boolean { return this._wsService.isOpen(); } - + public disconnect(): void { this._wsService.close(); } @@ -61,15 +66,11 @@ export default class Game { return result; } - private chooseDice(dices: number[]): number { + private movePacMan(steps: number): void { throw new Error("Not implemented"); } - private movePacMan(dice: number): void { - throw new Error("Not implemented"); - } - - private moveGhost(dice: number): void { + private moveGhost(steps: number): void { throw new Error("Not implemented"); } @@ -81,8 +82,11 @@ export default class Game { throw new Error("Not implemented"); } + private chooseCharacter(): void { + throw new Error("Method not implemented."); + } + get wsService(): WebSocketService { return this._wsService; } - } \ No newline at end of file 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 31b0228..90826c8 100644 --- a/pac-man-board-game/ClientApp/src/types/types.d.ts +++ b/pac-man-board-game/ClientApp/src/types/types.d.ts @@ -8,3 +8,8 @@ type ActionMessage = { Action: import("../classes/actions").Action, Data?: T } + +type SelectedDice = { + value: number, + index: number +};