From 7ccb15707e528b0a7b21531690feaf43031e33e6 Mon Sep 17 00:00:00 2001 From: martin Date: Thu, 15 Jun 2023 22:53:07 +0200 Subject: [PATCH] Started with player class --- .../ClientApp/src/game/character.ts | 4 ---- .../ClientApp/src/game/player.ts | 19 +++++++++++++++++++ .../ClientApp/src/types/props.d.ts | 6 ++++++ 3 files changed, 25 insertions(+), 4 deletions(-) create mode 100644 pac-man-board-game/ClientApp/src/game/player.ts diff --git a/pac-man-board-game/ClientApp/src/game/character.ts b/pac-man-board-game/ClientApp/src/game/character.ts index d2f4cf9..cc50190 100644 --- a/pac-man-board-game/ClientApp/src/game/character.ts +++ b/pac-man-board-game/ClientApp/src/game/character.ts @@ -47,10 +47,6 @@ export class PacMan extends Character { this.box = new Box(box); } - public stealFrom(other: PacMan): void { - - } - } export class Ghost extends Character { diff --git a/pac-man-board-game/ClientApp/src/game/player.ts b/pac-man-board-game/ClientApp/src/game/player.ts new file mode 100644 index 0000000..7ef099f --- /dev/null +++ b/pac-man-board-game/ClientApp/src/game/player.ts @@ -0,0 +1,19 @@ +import {Character, Ghost, PacMan} from "./character"; +import Box from "./box"; + +export default class Player { + public readonly character: Character; + public readonly colour: Colour; + public readonly box: Box; + + constructor(props: PlayerProps) { + this.colour = props.colour; + this.box = new Box(props.box); + this.character = "box" in props.character ? new PacMan(props.character) : new Ghost(props.character); // TODO move box here + } + + public stealFrom(other: Player): void { + + } + +} 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 b18e248..2d439ac 100644 --- a/pac-man-board-game/ClientApp/src/types/props.d.ts +++ b/pac-man-board-game/ClientApp/src/types/props.d.ts @@ -26,3 +26,9 @@ interface BoxProps { pellets?: import("../game/pellet").default[], readonly colour: Colour, } + +interface PlayerProps { + readonly character: CharacterProps | PacManProps, + readonly colour: Colour, + readonly box: BoxProps, +}