From 74f69c6f6c99b9b5668511e7f18b732b22889d63 Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <600878@stud.hvl.no> Date: Sat, 20 May 2023 18:05:23 +0200 Subject: [PATCH] Replaced the canvas map with a react component --- .../ClientApp/src/components/gameBoard.tsx | 130 ++++++++++++++++++ .../ClientApp/src/components/gameCanvas.tsx | 23 ---- .../src/components/gameComponent.tsx | 8 +- .../ClientApp/src/game/character.ts | 4 +- .../ClientApp/src/game/tileMap.ts | 93 ------------- pac-man-board-game/pac-man-board-game.csproj | 2 + 6 files changed, 140 insertions(+), 120 deletions(-) create mode 100644 pac-man-board-game/ClientApp/src/components/gameBoard.tsx delete mode 100644 pac-man-board-game/ClientApp/src/components/gameCanvas.tsx delete mode 100644 pac-man-board-game/ClientApp/src/game/tileMap.ts diff --git a/pac-man-board-game/ClientApp/src/components/gameBoard.tsx b/pac-man-board-game/ClientApp/src/components/gameBoard.tsx new file mode 100644 index 0000000..ed6150e --- /dev/null +++ b/pac-man-board-game/ClientApp/src/components/gameBoard.tsx @@ -0,0 +1,130 @@ +import React, {useEffect, useState} from "react"; +import {Character, PacMan} from "../game/character"; + +/** + * 0 = empty + * 1 = wall + * 2 = pellet + * 3 = power pellet + * 4 = ghost spawn + * 5 = pacman spawn + */ +const map: number[][] = [ + [1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1], + [1, 2, 0, 0, 0, 2, 0, 0, 0, 2, 1], + [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], + [1, 0, 1, 5, 1, 0, 1, 4, 1, 0, 1], + [1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1], + [0, 2, 0, 0, 0, 3, 0, 0, 0, 2, 0], + [1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1], + [1, 0, 1, 4, 1, 0, 1, 5, 1, 0, 1], + [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], + [1, 2, 0, 0, 0, 2, 0, 0, 0, 2, 1], + [1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1], +]; + +enum TileType { + empty, + wall, + pellet, + powerPellet, + ghostSpawn, + pacmanSpawn, +} + +interface BoardProps extends ComponentProps { + characters: Character[]; +} + +const Board: Component = ({className, characters}) => { + + const [tileSize, setTileSize] = useState(2); + + useEffect(() => { + + for (const character of characters) { // TODO make more dynamic + if (character instanceof PacMan) { + character.position = {x: 3, y: 3}; + } else { + character.position = {x: 7, y: 3}; + } + } + + function handleResize(): void { + const newSize = Math.floor(window.innerWidth / 12); + setTileSize(newSize); + } + + handleResize(); + + window.addEventListener("resize", handleResize); + return () => window.removeEventListener("resize", handleResize); + }, []); + + return ( +
+ { + map.map((row, rowIndex) => +
+ { + row.map((tile, colIndex) => + c.position.x === colIndex && c.position.y === rowIndex)}/> + ) + } +
) + } +
+ ); +}; + +export default Board; + +interface TileProps extends ComponentProps { + size: number, + type?: TileType, + character?: Character, +} + +const Tile: Component = ({size, type = TileType.empty, character}) => { + + function setColor(): string { + switch (type) { + case TileType.empty: + return "bg-black"; + case TileType.wall: + return "bg-blue-500"; + case TileType.pellet: + return "bg-yellow-500"; + case TileType.powerPellet: + return "bg-orange-500"; + case TileType.ghostSpawn: + return "bg-red-500"; + case TileType.pacmanSpawn: + return "bg-green-500"; + } + } + + return ( +
+ {character && +
+ +
+ } +
+ ); +}; + +interface CharacterComponentProps extends ComponentProps { + character: Character, +} + +const CharacterComponent: Component = ({character}) => { + return ( +
+ ); +}; diff --git a/pac-man-board-game/ClientApp/src/components/gameCanvas.tsx b/pac-man-board-game/ClientApp/src/components/gameCanvas.tsx deleted file mode 100644 index acfccb2..0000000 --- a/pac-man-board-game/ClientApp/src/components/gameCanvas.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React, {useEffect, useRef} from "react"; -import TileMap from "../game/tileMap"; - -const tileMap = new TileMap(); - -const GameCanvas: Component = ({className}) => { - - const canvasRef = useRef(null); - - useEffect(() => { - const context = canvasRef.current?.getContext("2d"); - if (!context) return; - context.canvas.height = context.canvas.width; - - tileMap.draw(context); - }, []); - - return ( - - ); -}; - -export default GameCanvas; diff --git a/pac-man-board-game/ClientApp/src/components/gameComponent.tsx b/pac-man-board-game/ClientApp/src/components/gameComponent.tsx index 2722515..f839d7a 100644 --- a/pac-man-board-game/ClientApp/src/components/gameComponent.tsx +++ b/pac-man-board-game/ClientApp/src/components/gameComponent.tsx @@ -1,10 +1,14 @@ import React, {useState} from "react"; -import GameCanvas from "../components/gameCanvas"; import Game from "../game/game"; import {AllDice} from "./dice"; import {Action} from "../websockets/actions"; +import GameBoard from "./gameBoard"; +import {Ghost, PacMan} from "../game/character"; let game: Game; + +const characters = [new PacMan("yellow"), new Ghost("purple")]; + export const GameComponent: Component = () => { const [dice, setDice] = useState(); @@ -51,7 +55,7 @@ export const GameComponent: Component = () => {
- + ); }; diff --git a/pac-man-board-game/ClientApp/src/game/character.ts b/pac-man-board-game/ClientApp/src/game/character.ts index e1fbbcb..fe3c261 100644 --- a/pac-man-board-game/ClientApp/src/game/character.ts +++ b/pac-man-board-game/ClientApp/src/game/character.ts @@ -1,10 +1,10 @@ -type CharacterColor = "red" | "blue" | "yellow" | "green"; +type CharacterColor = "red" | "blue" | "yellow" | "green" | "purple"; export abstract class Character { public color: CharacterColor; public position: CharacterPosition; - public constructor(color: CharacterColor, startPosition: CharacterPosition) { + public constructor(color: CharacterColor, startPosition: CharacterPosition = {x: 0, y: 0}) { this.color = color; this.position = startPosition; } diff --git a/pac-man-board-game/ClientApp/src/game/tileMap.ts b/pac-man-board-game/ClientApp/src/game/tileMap.ts deleted file mode 100644 index 6a2869f..0000000 --- a/pac-man-board-game/ClientApp/src/game/tileMap.ts +++ /dev/null @@ -1,93 +0,0 @@ -import {Character, Ghost, PacMan} from "./character"; - -export default class TileMap { - - /** - * 0 = empty - * 1 = wall - * 2 = pellet - * 3 = power pellet - * 4 = ghost spawn - * 5 = pacman spawn - */ - private map: number[][] = [ - [1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1], - [1, 2, 0, 0, 0, 2, 0, 0, 0, 2, 1], - [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], - [1, 0, 1, 5, 1, 0, 1, 4, 1, 0, 1], - [1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1], - [0, 2, 0, 0, 0, 3, 0, 0, 0, 2, 0], - [1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1], - [1, 0, 1, 4, 1, 0, 1, 5, 1, 0, 1], - [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1], - [1, 2, 0, 0, 0, 2, 0, 0, 0, 2, 1], - [1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1], - ]; - - public characters: Character[] = []; - - public constructor() { - this.characters.push(new PacMan("yellow", {x: 3, y: 3}), new Ghost("blue", {x: 7, y: 3})); - } - - public draw(ctx: CanvasRenderingContext2D): void { - this.drawMap(ctx); - this.drawCharacters(ctx); - } - - private drawMap(context: CanvasRenderingContext2D): void { - const tileSize = this.getTileSize(context); - - for (let row = 0; row < this.map.length; row++) { - for (let col = 0; col < this.map[row].length; col++) { - - const tile = this.map[row][col]; - switch (tile) { - case 0: - this.drawTile(context, col * tileSize, row * tileSize, tileSize, "black"); - break; - case 1: - this.drawTile(context, col * tileSize, row * tileSize, tileSize, "blue"); - break; - case 2: - this.drawTile(context, col * tileSize, row * tileSize, tileSize, "yellow"); - break; - case 3: - this.drawTile(context, col * tileSize, row * tileSize, tileSize, "orange"); - break; - case 4: - this.drawTile(context, col * tileSize, row * tileSize, tileSize, "red"); - break; - } - - } - } - } - - private drawTile(context: CanvasRenderingContext2D, x: number, y: number, tileSize: number, color: string): void { - context.fillStyle = color; - context.fillRect(x, y, tileSize, tileSize); - } - - private drawCharacters(ctx: CanvasRenderingContext2D): void { - for (const character of this.characters) { - this.drawCircle(ctx, character); - } - } - - private drawCircle(ctx: CanvasRenderingContext2D, character: Character): void { - const tileSize = this.getTileSize(ctx); - const x = character.position.x * tileSize; - const y = character.position.y * tileSize; - ctx.fillStyle = character.color; - ctx.beginPath(); - ctx.arc(x + tileSize / 2, y + tileSize / 2, tileSize / 2, tileSize / 2, 0.34 * Math.PI); - ctx.fill(); - ctx.stroke(); - } - - private getTileSize(context: CanvasRenderingContext2D): number { - const canvasSize = context.canvas.width; - return canvasSize / this.map[0].length; - } -} diff --git a/pac-man-board-game/pac-man-board-game.csproj b/pac-man-board-game/pac-man-board-game.csproj index 1ae692c..a1679ee 100644 --- a/pac-man-board-game/pac-man-board-game.csproj +++ b/pac-man-board-game/pac-man-board-game.csproj @@ -36,6 +36,8 @@ + +