From 668985e6ed78add10e3a0eb94eff283d59b3971f Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sat, 12 Mar 2022 15:47:58 +0300 Subject: refactor: rename Feature.Emtpy -> Grass --- src/Tile/TileOnBoard.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/Tile/TileOnBoard.ts') diff --git a/src/Tile/TileOnBoard.ts b/src/Tile/TileOnBoard.ts index b15fcf4..fb0817c 100644 --- a/src/Tile/TileOnBoard.ts +++ b/src/Tile/TileOnBoard.ts @@ -10,7 +10,11 @@ export interface Attachment { export default class TileOnBoard extends Tile { neighbors: [Tile, Tile, Tile, Tile]; - orientation: number // amount of 90-degree counter-clockwise rotations from original orientation + orientation: number; // amount of 90-degree counter-clockwise rotations from original orientation + position: { + x: number; + y: number; + } constructor(center: Feature, sides: [Feature, Feature, Feature, Feature], shield = false, orientation = 0) { super(center, sides, shield); @@ -22,6 +26,8 @@ export default class TileOnBoard extends Tile { } rotate(rotation = 1) { + // We want to rotate clockwise, but orientation stores counter-clockwise rotations, + // therefore use the difference, not sum. this.orientation = this.orientation - rotation; } -- cgit v1.2.3