aboutsummaryrefslogtreecommitdiff
path: root/src/Cell/Cell.ts
blob: 23fdc9e036dc0b8639f49952de002269b9be7466 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import Debug, { Debugger } from 'debug';

export enum Direction {
  North,
  East,
  South,
  West
}

export enum Item {
  Empty = " ",
  Road = "R",
  Town = "T",
  River = "I",
  Church = "C",
}

export default class Cell {
  center: Item;
  private sides: [Item, Item, Item, Item];
  private orientation: number // amount of 90-degree counter-clockwise rotations from original orientation
  shield?: boolean;

  debug: Debugger;

  public constructor(center: Item, sides: [Item, Item, Item, Item], orientation = 0, shield = false) {
    this.center = center;
    this.sides = sides;
    this.shield = shield;
    this.orientation = orientation;

    this.debug = Debug('cell');
  }

  toString() {
    return;
  }

  print() {
    console.log( ` ${this.getSide(Direction.North)} \n${this.getSide(Direction.West)}${this.center}${this.getSide(Direction.East)}\n ${this.getSide(Direction.South)} `);
  }

  getSide(direction: Direction) {
    return this.sides[(((this.orientation + direction) % 4) + 4) % 4];
  }

  rotate(rotation = 1) {
    this.debug(`Rotating ${rotation} clockwise`)
    this.orientation = this.orientation - rotation;
  }

  isAttachable(cell: Cell, side: Direction) {
    return (this.getSide(side) === cell.getSide(side + 2));
  }
}