-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboard.js
43 lines (33 loc) · 862 Bytes
/
board.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
function Board(rootEl, grid, view) {
this.rootEl = rootEl;
this.grid = grid;
this.view = view;
}
Board.prototype.setView = function(view) {
this.view = view;
};
Board.prototype.setGrid = function(grid) {
this.grid = grid;
}
Board.prototype.init = function() {
this.view.init(this.rootEl, this.grid);
};
Board.prototype.randomize = function(values) {
this.grid.fill(chooseRandom.bind(null, values));
function chooseRandom(array) {
return array[Math.floor(Math.random() * array.length)];
};
};
Board.prototype.clear = function() {
while (this.rootEl.firstChild)
this.rootEl.removeChild(this.rootEl.firstChild);
};
Board.prototype.update = function() {
this.view.update(this.rootEl, this.grid);
};
Board.prototype.reset = function() {
this.clear();
this.init();
this.randomize([false, true]);
this.update();
}