diff --git a/pac-man-board-game/ClientApp/package-lock.json b/pac-man-board-game/ClientApp/package-lock.json index 466b881..b6b9b47 100644 --- a/pac-man-board-game/ClientApp/package-lock.json +++ b/pac-man-board-game/ClientApp/package-lock.json @@ -1,12 +1,12 @@ { "name": "pac_man_board_game", - "version": "0.1-Testing", + "version": "0.1.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "pac_man_board_game", - "version": "0.1-Testing", + "version": "0.1.1", "dependencies": { "@headlessui/react": "^1.7.14", "@heroicons/react": "^2.0.18", diff --git a/pac-man-board-game/ClientApp/src/components/gameBoard.tsx b/pac-man-board-game/ClientApp/src/components/gameBoard.tsx index 8834e52..31fe91b 100644 --- a/pac-man-board-game/ClientApp/src/components/gameBoard.tsx +++ b/pac-man-board-game/ClientApp/src/components/gameBoard.tsx @@ -1,8 +1,9 @@ import React, {useEffect, useState} from "react"; -import {Character, PacMan} from "../game/character"; +import {Character, Dummy, PacMan} from "../game/character"; import findPossiblePositions from "../game/possibleMovesAlgorithm"; import {TileType} from "../game/tileType"; import {testMap} from "../game/map"; +import {Direction} from "../game/direction"; interface BoardProps extends ComponentProps { characters: Character[], @@ -48,9 +49,9 @@ const Board: Component = ( for (const character of characters) { // TODO make more dynamic if (character instanceof PacMan) { - character.position = {end: {x: 3, y: 3}, direction: "up"}; + character.position = {end: {x: 3, y: 3}, direction: Direction.up}; } else { - character.position = {end: {x: 7, y: 3}, direction: "up"}; + character.position = {end: {x: 7, y: 3}, direction: Direction.up}; } } @@ -79,10 +80,21 @@ const Board: Component = ( type={tile} size={tileSize} character={characters.find(c => c.isAt({x: colIndex, y: rowIndex}))} - onCharacterClick={handleSelectCharacter} - onClick={possiblePositions.filter(p => p.end.x === colIndex && p.end.y === rowIndex) - .map(p => () => handleMoveCharacter(p))[0]} - /> + onClick={possiblePositions + .filter(p => p.end.x === colIndex && p.end.y === rowIndex) + .map(p => () => handleMoveCharacter(p))[0]}> + <> + {characters.find(c => c.isAt({x: colIndex, y: rowIndex})) && +
+ c.isAt({x: colIndex, y: rowIndex}))!} + onClick={handleSelectCharacter} + className={`${selectedCharacter?.isAt({x: colIndex, y: rowIndex}) ? "animate-bounce" : ""}`}/> +
+ } + p.end.x === colIndex && p.end.y === rowIndex)}/> + + ) } ) @@ -93,7 +105,21 @@ const Board: Component = ( export default Board; -interface TileProps extends ComponentProps { +interface AddDummyProps extends ComponentProps { + path?: Path; +} + +const AddDummy: Component = ({path}) => ( + <> + {path && +
+ +
+ } + +); + +interface TileProps extends ChildProps { size: number, type?: TileType, onClick?: () => void, @@ -107,10 +133,8 @@ const Tile: Component = ( size, type = TileType.empty, onClick, - character, - onCharacterClick, - characterClass, className, + children }) => { function setColor(): string { @@ -134,18 +158,13 @@ const Tile: Component = (
- {character && -
- -
- } - + {children}
); }; interface CharacterComponentProps extends ComponentProps { - character: Character, + character?: Character, onClick?: (character: Character) => void, } @@ -157,18 +176,20 @@ const CharacterComponent: Component = ( }) => { function getSide() { - switch (character.position.direction) { - case "up": + switch (character?.position.direction) { + case Direction.up: return "right-1/4 top-0"; - case "down": + case Direction.down: return "right-1/4 bottom-0"; - case "left": + case Direction.left: return "left-0 top-1/4"; - case "right": + case Direction.right: return "right-0 top-1/4"; } } + if (character === undefined) return null; + return (
p.end.x === entry.end.x && p.end.y === entry.end.y) && - !isOutsideBoard(entry, board.length) && !isSpawn(board, entry)) { - list.push(entry); - } +function pushTileToList(board: GameMap, tile: Path | null, list: Path[]): void { + if (tile !== null && !list.find(p => p.end.x === tile.end.x && p.end.y === tile.end.y) && + !isOutsideBoard(tile, board.length) && !isSpawn(board, tile)) { + list.push(tile); } } @@ -108,7 +104,7 @@ function findTeleportationTiles(board: number[][]): Path[] { return possiblePositions; } -function pushPath(board: GameMap, possiblePositions: Path[], x: number, y: number) { +function pushPath(board: GameMap, possiblePositions: Path[], x: number, y: number): void { if (board[x][y] !== TileType.wall) { possiblePositions.push({end: {x, y}, direction: findDirection(x, y, board.length)}); } @@ -117,13 +113,13 @@ function pushPath(board: GameMap, possiblePositions: Path[], x: number, y: numbe function findDirection(x: number, y: number, length: number): Direction { let direction: Direction; if (x === 0) { - direction = "right"; + direction = Direction.right; } else if (y === 0) { - direction = "down"; + direction = Direction.down; } else if (x === length - 1) { - direction = "left"; + direction = Direction.left; } else { - direction = "up"; + direction = Direction.up; } return direction; } diff --git a/pac-man-board-game/ClientApp/src/index.css b/pac-man-board-game/ClientApp/src/index.css index 49ad03f..ebc972d 100644 --- a/pac-man-board-game/ClientApp/src/index.css +++ b/pac-man-board-game/ClientApp/src/index.css @@ -7,6 +7,10 @@ @apply after:content-['debug'] after:absolute; } +.flex-center { + @apply flex justify-center items-center; +} + h1 { @apply text-4xl; } diff --git a/pac-man-board-game/ClientApp/src/types/props.d.ts b/pac-man-board-game/ClientApp/src/types/props.d.ts index 5498d64..1ba0ce3 100644 --- a/pac-man-board-game/ClientApp/src/types/props.d.ts +++ b/pac-man-board-game/ClientApp/src/types/props.d.ts @@ -1,4 +1,4 @@ -type Component = (props: T) => React.JSX.Element; +type Component = (props: T) => React.JSX.Element | null; interface ComponentProps { className?: string, 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 55eeeef..dfaa6a2 100644 --- a/pac-man-board-game/ClientApp/src/types/types.d.ts +++ b/pac-man-board-game/ClientApp/src/types/types.d.ts @@ -18,15 +18,13 @@ type Position = { x: number, y: number }; type GameMap = number[][]; -type Direction = "up" | "right" | "down" | "left"; - type DirectionalPosition = { at: Position, - direction: Direction + direction: import("../game/direction").Direction } type Path = { path?: Position[], end: Position, - direction: Direction + direction: import("../game/direction").Direction } diff --git a/pac-man-board-game/ClientApp/tests/game/possibleMovesAlgorithm.test.ts b/pac-man-board-game/ClientApp/tests/game/possibleMovesAlgorithm.test.ts index e7b9e92..905b091 100644 --- a/pac-man-board-game/ClientApp/tests/game/possibleMovesAlgorithm.test.ts +++ b/pac-man-board-game/ClientApp/tests/game/possibleMovesAlgorithm.test.ts @@ -1,46 +1,47 @@ -import {test, expect, beforeEach} from "vitest"; +import {beforeEach, expect, test} from "vitest"; import possibleMovesAlgorithm from "../../src/game/possibleMovesAlgorithm"; import {testMap} from "../../src/game/map"; import {Character, PacMan} from "../../src/game/character"; +import {Direction} from "../../src/game/direction"; let pacMan: Character; beforeEach(() => { - pacMan = new PacMan("yellow", {end: {x: 3, y: 3}, direction: "up"}); + pacMan = new PacMan("yellow", {end: {x: 3, y: 3}, direction: Direction.up}); }); test("Pac-Man rolls one from start, should return one position", () => { const result = possibleMovesAlgorithm(testMap, pacMan, 1); expect(result.length).toBe(1); - expect(result).toEqual(getPath({at: {x: 3, y: 2}, direction: "up"})); + expect(result).toEqual(getPath({at: {x: 3, y: 2}, direction: Direction.up})); }); test("Pac-Man rolls two from start, should return one position", () => { const result = possibleMovesAlgorithm(testMap, pacMan, 2); expect(result.length).toBe(1); - expect(result).toEqual(getPath({at: {x: 3, y: 1}, direction: "up"})); + expect(result).toEqual(getPath({at: {x: 3, y: 1}, direction: Direction.up})); }); test("Pac-Man rolls three from start, should return two positions", () => { const result = possibleMovesAlgorithm(testMap, pacMan, 3); expect(result.length).toBe(2); - arrayEquals(result, getPath({at: {x: 2, y: 1}, direction: "left"}, {at: {x: 4, y: 1}, direction: "right"})); + arrayEquals(result, getPath({at: {x: 2, y: 1}, direction: Direction.left}, {at: {x: 4, y: 1}, direction: Direction.right})); }); test("Pac-Man rolls four from start, should return two positions", () => { const result = possibleMovesAlgorithm(testMap, pacMan, 4); expect(result.length).toBe(2); - arrayEquals(result, getPath({at: {x: 1, y: 1}, direction: "left"}, {at: {x: 5, y: 1}, direction: "right"})); + arrayEquals(result, getPath({at: {x: 1, y: 1}, direction: Direction.left}, {at: {x: 5, y: 1}, direction: Direction.right})); }); test("Pac-Man rolls five from start, should return four positions", () => { const result = possibleMovesAlgorithm(testMap, pacMan, 5); expect(result.length).toBe(4); arrayEquals(result, getPath( - {at: {x: 5, y: 0}, direction: "up"}, - {at: {x: 6, y: 1}, direction: "right"}, - {at: {x: 1, y: 2}, direction: "down"}, - {at: {x: 5, y: 2}, direction: "down"} + {at: {x: 5, y: 0}, direction: Direction.up}, + {at: {x: 6, y: 1}, direction: Direction.right}, + {at: {x: 1, y: 2}, direction: Direction.down}, + {at: {x: 5, y: 2}, direction: Direction.down} )); }); @@ -48,19 +49,31 @@ test("Pac-Man rolls six from start, should return six positions", () => { const result = possibleMovesAlgorithm(testMap, pacMan, 6); expect(result.length).toBe(6); arrayEquals(result, getPath( - {at: {x: 1, y: 3}, direction: "down"}, - {at: {x: 0, y: 5}, direction: "right"}, - {at: {x: 5, y: 3}, direction: "down"}, - {at: {x: 7, y: 1}, direction: "right"}, - {at: {x: 10, y: 5}, direction: "left"}, - {at: {x: 5, y: 10}, direction: "up"})); + {at: {x: 1, y: 3}, direction: Direction.down}, + {at: {x: 0, y: 5}, direction:Direction.right}, + {at: {x: 5, y: 3}, direction: Direction.down}, + {at: {x: 7, y: 1}, direction: Direction.right}, + {at: {x: 10, y: 5}, direction: Direction.left}, + {at: {x: 5, y: 10}, direction: Direction.up})); }); -test("Pac-Man rolls six from position [1,5], should return 14", () => { - pacMan.follow({end: {x: 1, y: 5}, direction: "down"}); +test("Pac-Man rolls three from position [1,5] (left), should return 5", () => { + pacMan.follow({end: {x: 1, y: 5}, direction: Direction.left}); + const result = possibleMovesAlgorithm(testMap, pacMan, 3); + arrayEquals(result, getPath( + {at: {x: 1, y: 2}, direction: Direction.up}, + {at: {x: 1, y: 8}, direction: Direction.down}, + {at: {x: 5, y: 1}, direction: Direction.down}, + {at: {x: 9, y: 5}, direction: Direction.left}, + {at: {x: 5, y: 9}, direction: Direction.up}, + )); + expect(result.length).toBe(5); +}); + +test("Pac-Man rolls six from position [1,5] (down), should return 17", () => { + pacMan.follow({end: {x: 1, y: 5}, direction: Direction.down}); const result = possibleMovesAlgorithm(testMap, pacMan, 6); - // TODO add possible moves - expect(result.length).toBe(14); // TODO Oof + expect(result.length).toBe(17); }); function getPath(...positions: DirectionalPosition[]): Path[] {