Started with player class

This commit is contained in:
martin 2023-06-15 22:53:07 +02:00
parent f000e0effc
commit 7ccb15707e
3 changed files with 25 additions and 4 deletions

View File

@ -47,10 +47,6 @@ export class PacMan extends Character {
this.box = new Box(box);
}
public stealFrom(other: PacMan): void {
}
}
export class Ghost extends Character {

View File

@ -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 {
}
}

View File

@ -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,
}