-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlife.js
143 lines (123 loc) · 3.85 KB
/
life.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/**
* Игра "Жизнь"
*/
const NEIGHBORING_CELLS = [
[-1, -1], [-1, 0], [-1, 1], [1, -1],
[1, 0], [1, 1], [0, 1], [0, -1]
];
class Life {
/**
* Инициализация игры
*
* @param canvas игровое поле
* @param [opts]
* @param [opts.cellSize] размер клетки (default = 10px)
* @param [opts.x] количество клеток по вертикали (default = 70)
* @param [opts.y] количество клеток по горизонтали (default = 70)
* @param [opts.color] количество клеток по горизонтали (default = 70)
*/
constructor(canvas, opts) {
opts = opts || {};
this.cellSize = opts.cellSize || 10;
this.x = opts.x || 70;
this.y = opts.y || 70;
this.canvas = canvas;
this.canvas.addEventListener('click', this._changePoint.bind(this));
this.ctx = canvas.getContext('2d');
this.ctx.fillStyle = opts.color || '#444';
this.clear();
}
/**
* Обработка киков по игровому полю.
* Меняет цвет клекти на противоположный.
*
* @param event
* @private
*/
_changePoint(event) {
const x = Math.floor((event.pageX - event.currentTarget.offsetLeft) / this.cellSize);
const y = Math.floor((event.pageY - event.currentTarget.offsetTop) / this.cellSize);
this.stop();
this.area[y][x] = !this.area[y][x];
this._draw();
}
/**
* Закрашивает клетку
*
* @param x
* @param y
* @private
*/
_fillRect(x, y) {
this.ctx.fillRect(x * this.cellSize, y * this.cellSize, this.cellSize, this.cellSize);
}
/**
* Отрисовка игрового поля
*
* @private
*/
_draw() {
this.ctx.clearRect(0, 0, this.canvas.width, this.canvas.height);
this.area.forEach((line, y) => line.forEach((cell, x) => cell && this._fillRect(x, y), this), this);
}
/**
* Проверка клетки на её "живость"
*
* @param pointX
* @param pointY
* @returns {boolean}
* @private
*/
_isAlive(pointX, pointY) {
const count = NEIGHBORING_CELLS.reduce((sum, diff) => {
const x = pointX - diff[0];
const y = pointY - diff[1];
return (x < 0 || x >= this.area[0].length || y < 0 || y >= this.area.length) ?
sum : sum + this.area[y][x];
}, 0);
return this.area[pointY][pointX] ? (count === 2 || count === 3) : count === 3;
}
/**
* Вставка фигуры
*
* @param x
* @param y
* @param matrix фигу заданная матрицей
*/
addFigure(x, y, matrix) {
if (x + matrix[0].length > this.x || y + matrix.length > this.y) return;
for (let index = 0; index < matrix.length; index++) {
this.area[index + y] = this.area[index + y].slice(0, x)
.concat(matrix[index], this.area[index + y].slice(matrix[index].length, this.x));
}
this._draw();
}
/**
* Запуск игры
*
* @param tick миллисекунды
*/
start(tick) {
if (this.game) return;
this.game = setInterval(self => {
self.area = self.area.map((row, y) => row.map((cell, x) => self._isAlive(x, y)));
self._draw();
}, tick || 100, this);
}
/**
* Остановка игры
*/
stop() {
if (this.game) {
clearInterval(this.game);
this.game = null;
}
}
/**
* Очистка игрового поля
*/
clear() {
this.area = Array(this.y).fill(0).map(() => Array(this.x).fill(0));
this._draw();
}
}