forked from hczhcz/telegram-kuso-bots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nonogram.play.js
66 lines (49 loc) · 1.42 KB
/
nonogram.play.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
'use strict';
const core = require('./nonogram.core');
const games = {};
const init = (id, rows, columns, boxes, correct, onGameInit, onNotValid, onGameExist) => {
if (games[id]) {
return onGameExist();
}
if (core.verify(rows, columns, boxes)) {
games[id] = {
rows: rows,
columns: columns,
boxes: boxes,
correct: correct,
map: core.init(rows, columns, boxes, correct),
timeBegin: null,
timeEnd: null,
history: [],
};
return onGameInit(games[id]);
}
return onNotValid();
};
const click = (id, playerId, targetI, targetJ, onGameContinue, onGameWin, onNotChanged, onGameNotExist) => {
if (!games[id]) {
return onGameNotExist();
}
const game = games[id];
if (!game.timeBegin) {
game.timeBegin = Date.now();
}
if (core.click(game.map, game.correct, targetI, targetJ)) {
game.history.push([playerId, targetI, targetJ, game.map[targetI][targetJ] === game.correct]);
if (core.finished(game.map, game.correct)) {
game.timeEnd = Date.now();
delete games[id];
return onGameWin(game);
}
return onGameContinue(game);
}
return onNotChanged(game);
};
const count = () => {
return Object.keys(games).length;
};
module.exports = {
init: init,
click: click,
count: count,
};