-
Notifications
You must be signed in to change notification settings - Fork 0
/
Grid.js
98 lines (96 loc) · 2.41 KB
/
Grid.js
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
const GRID_SIZE = 4;
const CELL_SIZE = 20;
const CELL_GAP = 2;
export default class Grid {
#cells
constructor(gridElement) {
gridElement.style.setProperty('--grid-size', GRID_SIZE)
gridElement.style.setProperty('--cell-size', `${CELL_SIZE}vmin`)
gridElement.style.setProperty('--cell-gap', `${CELL_GAP}vmin`)
this.#cells = createCellElements(gridElement).map((cell, index) => {
return new Cell(cell, index % GRID_SIZE, Math.floor(index / GRID_SIZE))
})
}
get #emptyCells() {
return this.#cells.filter(cell => cell.tile == null)
}
randomEmptyCell() {
const randomIndex = Math.floor(Math.random() * this.#emptyCells.length)
return this.#emptyCells[randomIndex]
}
get cellsByColumn() {
return this.#cells.reduce((cellGrid, currentCell) => {
cellGrid[currentCell.x] = cellGrid[currentCell.x] || [];
cellGrid[currentCell.x][currentCell.y] = currentCell;
return cellGrid;
}, [])
}
get cellsByRow() {
return this.#cells.reduce((cellGrid, currentCell) => {
cellGrid[currentCell.y] = cellGrid[currentCell.y] || [];
cellGrid[currentCell.y][currentCell.x] = currentCell;
return cellGrid;
}, [])
}
get cells() {
return this.#cells
}
}
class Cell {
#cellElement
#x;
#y;
#tile;
#mergeTile;
constructor(cellElement, x, y) {
this.#cellElement = cellElement
this.#x = x;
this.#y = y;
}
get x() {
return this.#x
}
get y() {
return this.#y
}
get tile() {
return this.#tile
}
set tile(value) {
this.#tile = value;
if (value == null) return
this.#tile.x = this.#x;
this.#tile.y = this.#y;
}
get mergeTile() {
return this.#mergeTile
}
set mergeTile(value) {
this.#mergeTile = value
if (value == null) return;
this.#mergeTile.x = this.#x;
this.#mergeTile.y = this.#y;
}
canAccept(tile) {
return (
this.tile == null ||
(this.mergeTile == null && this.tile.value === tile.value)
)
}
mergeTiles() {
if (this.tile == null || this.mergeTile == null) return
this.tile.value = this.tile.value + this.mergeTile.value
this.mergeTile.remove()
this.mergeTile = null
}
}
function createCellElements(gridElement) {
const cells = [];
for (let i = 0; i < GRID_SIZE * GRID_SIZE; i++) {
const cell = document.createElement('div');
cell.classList.add('cell');
cells.push(cell);
gridElement.append(cell)
}
return cells
}