Started with player class
This commit is contained in:
parent
f000e0effc
commit
7ccb15707e
@ -47,10 +47,6 @@ export class PacMan extends Character {
|
|||||||
this.box = new Box(box);
|
this.box = new Box(box);
|
||||||
}
|
}
|
||||||
|
|
||||||
public stealFrom(other: PacMan): void {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export class Ghost extends Character {
|
export class Ghost extends Character {
|
||||||
|
19
pac-man-board-game/ClientApp/src/game/player.ts
Normal file
19
pac-man-board-game/ClientApp/src/game/player.ts
Normal 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 {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -26,3 +26,9 @@ interface BoxProps {
|
|||||||
pellets?: import("../game/pellet").default[],
|
pellets?: import("../game/pellet").default[],
|
||||||
readonly colour: Colour,
|
readonly colour: Colour,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface PlayerProps {
|
||||||
|
readonly character: CharacterProps | PacManProps,
|
||||||
|
readonly colour: Colour,
|
||||||
|
readonly box: BoxProps,
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user