Dice can be selected
This commit is contained in:
parent
6f309a9b4a
commit
6042984fc6
@ -2,20 +2,56 @@ import React from "react";
|
|||||||
|
|
||||||
interface AllDiceProps extends ComponentProps {
|
interface AllDiceProps extends ComponentProps {
|
||||||
values?: number[],
|
values?: number[],
|
||||||
|
onclick?: (dice: SelectedDice) => void,
|
||||||
|
selectedDiceIndex: number | undefined
|
||||||
}
|
}
|
||||||
|
|
||||||
export const AllDice: Component<AllDiceProps> = ({className, values}) => {
|
export const AllDice: Component<AllDiceProps> = (
|
||||||
|
{
|
||||||
|
className,
|
||||||
|
values,
|
||||||
|
onclick,
|
||||||
|
selectedDiceIndex
|
||||||
|
}) => {
|
||||||
|
|
||||||
|
function handleClick(index: SelectedDice) {
|
||||||
|
if (onclick) {
|
||||||
|
onclick(index);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={"flex gap-5 justify-center"}>
|
<div className={"flex gap-5 justify-center"}>
|
||||||
{values?.map((value, index) => <Dice key={index} className={className} value={value}/>)}
|
{values?.map((value, index) =>
|
||||||
|
<Dice key={index}
|
||||||
|
className={`${selectedDiceIndex === index ? "border-2 border-black" : ""} ${className}`}
|
||||||
|
value={value}
|
||||||
|
onClick={(value) => handleClick({index, value})}/>)}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
interface DiceProps extends ComponentProps {
|
interface DiceProps extends ComponentProps {
|
||||||
value?: number,
|
value?: number,
|
||||||
|
onClick?: (value: number) => void,
|
||||||
}
|
}
|
||||||
|
|
||||||
export const Dice: Component<DiceProps> = ({className, value}) => (
|
export const Dice: Component<DiceProps> = (
|
||||||
<p className={`text-2xl ${className}`}>{value?.toString()}</p>
|
{
|
||||||
);
|
className,
|
||||||
|
value,
|
||||||
|
onClick,
|
||||||
|
}) => {
|
||||||
|
|
||||||
|
function handleClick() {
|
||||||
|
if (onClick && value) {
|
||||||
|
onClick(value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<button className={`text-2xl bg-gray-400 px-4 m-1 ${className}`} onClick={handleClick}>
|
||||||
|
{value?.toString()}
|
||||||
|
</button>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import React from "react";
|
import React, {useState} 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";
|
||||||
@ -7,9 +7,15 @@ import {Action} from "../classes/actions";
|
|||||||
let game: Game;
|
let game: Game;
|
||||||
export const GameComponent: Component = () => {
|
export const GameComponent: Component = () => {
|
||||||
|
|
||||||
const [dice, setDice] = React.useState<number[]>();
|
const [dice, setDice] = useState<number[]>();
|
||||||
|
const [selectedDice, setSelectedDice] = useState<SelectedDice>();
|
||||||
|
|
||||||
function startGameLoop() {
|
function handleDiceClick(selected: SelectedDice): void {
|
||||||
|
setSelectedDice(selected);
|
||||||
|
game.selectedDice = selected;
|
||||||
|
}
|
||||||
|
|
||||||
|
function startGameLoop(): void {
|
||||||
if (!game.isConnected()) {
|
if (!game.isConnected()) {
|
||||||
setTimeout(startGameLoop, 50);
|
setTimeout(startGameLoop, 50);
|
||||||
return;
|
return;
|
||||||
@ -20,10 +26,10 @@ export const GameComponent: Component = () => {
|
|||||||
function updateState() {
|
function updateState() {
|
||||||
game.wsService.onReceive = (message) => {
|
game.wsService.onReceive = (message) => {
|
||||||
const parsed: ActionMessage = JSON.parse(message.data);
|
const parsed: ActionMessage = JSON.parse(message.data);
|
||||||
console.log(parsed);
|
|
||||||
switch (parsed.Action) {
|
switch (parsed.Action) {
|
||||||
case Action.rollDice:
|
case Action.rollDice:
|
||||||
setDice(parsed.Data as number[]);
|
setDice(parsed.Data as number[]); // Updates the state of other players
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -44,7 +50,7 @@ export const GameComponent: Component = () => {
|
|||||||
<div className={"flex justify-center"}>
|
<div className={"flex justify-center"}>
|
||||||
<button onClick={startGameLoop}>Roll dice</button>
|
<button onClick={startGameLoop}>Roll dice</button>
|
||||||
</div>
|
</div>
|
||||||
<AllDice values={dice}/>
|
<AllDice values={dice} onclick={handleDiceClick} selectedDiceIndex={selectedDice?.index}/>
|
||||||
<GameCanvas className={"mx-auto"}/>
|
<GameCanvas className={"mx-auto"}/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
@ -4,6 +4,7 @@ import {Action} from "../classes/actions";
|
|||||||
export default class Game {
|
export default class Game {
|
||||||
|
|
||||||
private readonly _wsService: WebSocketService;
|
private readonly _wsService: WebSocketService;
|
||||||
|
public selectedDice?: SelectedDice;
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
this._wsService = new WebSocketService("wss://localhost:3000/api/game");
|
this._wsService = new WebSocketService("wss://localhost:3000/api/game");
|
||||||
@ -17,11 +18,15 @@ 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 dice
|
||||||
const result = await this.rollDice();
|
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
|
// 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 {
|
public isConnected(): boolean {
|
||||||
return this._wsService.isOpen();
|
return this._wsService.isOpen();
|
||||||
}
|
}
|
||||||
|
|
||||||
public disconnect(): void {
|
public disconnect(): void {
|
||||||
this._wsService.close();
|
this._wsService.close();
|
||||||
}
|
}
|
||||||
@ -61,15 +66,11 @@ export default class Game {
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
private chooseDice(dices: number[]): number {
|
private movePacMan(steps: number): void {
|
||||||
throw new Error("Not implemented");
|
throw new Error("Not implemented");
|
||||||
}
|
}
|
||||||
|
|
||||||
private movePacMan(dice: number): void {
|
private moveGhost(steps: number): void {
|
||||||
throw new Error("Not implemented");
|
|
||||||
}
|
|
||||||
|
|
||||||
private moveGhost(dice: number): void {
|
|
||||||
throw new Error("Not implemented");
|
throw new Error("Not implemented");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -81,8 +82,11 @@ export default class Game {
|
|||||||
throw new Error("Not implemented");
|
throw new Error("Not implemented");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private chooseCharacter(): void {
|
||||||
|
throw new Error("Method not implemented.");
|
||||||
|
}
|
||||||
|
|
||||||
get wsService(): WebSocketService {
|
get wsService(): WebSocketService {
|
||||||
return this._wsService;
|
return this._wsService;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -8,3 +8,8 @@ type ActionMessage<T = object> = {
|
|||||||
Action: import("../classes/actions").Action,
|
Action: import("../classes/actions").Action,
|
||||||
Data?: T
|
Data?: T
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type SelectedDice = {
|
||||||
|
value: number,
|
||||||
|
index: number
|
||||||
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user