-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMinesweeperAnalyser.js
302 lines (220 loc) · 7.01 KB
/
MinesweeperAnalyser.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
/*
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2004 Sam Hocevar <[email protected]>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
*/
var MinesweeperAnalyzer = (function() {
'use strict';
function MinesweeperAnalyzer(minesweeper) {
/* The minesweeper to analysis */
this.minesweeper = minesweeper;
/* The private state */
this.state = [];
/* Positions of the potentials mines */
this.mines = [];
/* Potentials mine given by plain cells */
this.plainCells = {};
/* Number of misplaced mark */
this.failCount = 0;
/* Cells which are plain acording to the analysis */
this.openPossibilities = [];
/* Cells where are mines acording to the analysis */
this.minesPossibilities = [];
}
MinesweeperAnalyzer.prototype.firstAnalysis = function() {
var cell, j, emptyCell,
value, markValue, borders, free,
gridLength = this.minesweeper.w * this.minesweeper.h;
this.mines = [];
this.plainCells = {};
this.failCount = 0;
this.openPossibilities = [];
this.minesPossibilities = [];
this.state = this.minesweeper.state.slice();
for (cell = 0; cell < gridLength; cell++) {
// Fail check
if (this.state[cell] === 2 && this.minesweeper.getValue(cell) >= 0) {
this.failCount++;
}
// Search for possibilities
else if (this.state[cell] === 1) {
value = this.minesweeper.getValue(cell);
markValue = this.getMarkValue(cell);
borders = this.getBorderCase(cell);
// Search empty cells around
free = [];
for (j = 0; j < borders.length; j++) {
emptyCell = borders[j];
if (this.isBlank(emptyCell)) {
free.push(emptyCell);
}
}
if (value !== markValue) {
// The plain case doesn't have all its mines
// Number of empty cells match the mine lack
if (value - markValue === free.length) {
for (j = 0; j < free.length; j++) {
this.markMine(free[j], cell);
}
}
else {
// Mark the empty cells as possibilities
this.plainCells[cell] = [value - markValue, []];
for (j = 0; j < free.length; j++) {
emptyCell = free[j];
if (this.mines[emptyCell] === undefined) {
this.mines[emptyCell] = [];
}
this.mines[emptyCell].push(cell);
this.plainCells[cell][1].push(emptyCell);
}
}
}
else {
// Mark the empty cells as plain cells
for (j = 0; j < free.length; j++) {
this.removeMineFrom(free[j], -1);
this.openPossibilities.push(free[j]);
this.state[free[j]] = 5;
}
}
}
}
};
MinesweeperAnalyzer.prototype.secondAnalysis = function() {
var changed, plainCell, i;
do {
changed = false;
for (plainCell in this.plainCells) {
plainCell = parseInt(plainCell, 10);
if (this.plainCells[plainCell][0] > 0 && this.plainCells[plainCell][0] === this.plainCells[plainCell][1].length) {
var poses = this.plainCells[plainCell][1].slice();
for (i = 0; i < poses.length; i++) {
this.markMine(poses[i], plainCell);
}
this.plainCells[plainCell] = [0, []];
changed = true;
}
else if (this.plainCells[plainCell][0] === 0 && this.minesweeper.getValue(plainCell) === this.getMarkValue(plainCell)) {
var borders = this.getBorderCase(plainCell);
for (i = 0; i < borders.length; i++) {
if (this.isBlank(borders[i])) {
this.removeMineFrom(borders[i], -1);
this.openPossibilities.push(borders[i]);
this.state[borders[i]] = 5;
changed = true;
}
}
}
}
} while (changed);
};
MinesweeperAnalyzer.prototype.remove = function(mineCell, initialCell) {
var borders, cell, plainCell;
if (this.mines[mineCell] === undefined) {
return;
}
borders = this.getBorderCase(mineCell);
for (cell = 0; cell < borders.length; cell++) {
plainCell = borders[cell];
if (plainCell !== initialCell && this.isPlain(plainCell)) {
this.removeMineFrom(mineCell, initialCell);
/*
TODO: Useless ?
if (this.plainCells[plainCell] !== undefined && this.plainCells[plainCell][0] === 0) {
this.removeAllMinesAround(plainCell);
}
*/
}
}
delete this.mines[mineCell];
};
MinesweeperAnalyzer.prototype.removeMineFrom = function(mineCell, initialCell) {
var i, cell;
if (this.mines[mineCell] === undefined) {
return;
}
for (i = 0; i < this.mines[mineCell].length; i++) {
cell = this.mines[mineCell][i];
if (cell !== initialCell) {
if (this.plainCells[cell] !== undefined) {
if (initialCell >= 0) {
this.plainCells[cell][0]--;
}
var p = this.plainCells[cell][1].indexOf(mineCell);
if (p >= 0) {
this.plainCells[cell][1].splice(p, 1);
}
}
}
}
delete this.mines[mineCell];
};
/*
TODO: Useless ?
MinesweeperAnalyzer.prototype.removeAllMinesAround = function(plainCell) {
var borders = this.getBorderCase(plainCell),
i, j, cell;
console.log('>>>', borders.length);
for (i = 0; i < borders.length; i++) {
cell = borders[i];
if (this.plainCells[cell] !== undefined && this.plainCells[cell][0] > 0) {
for (j = 0; j < this.plainCells[cell][1].length; j++) {
this.removeMineFrom(this.plainCells[cell][1][j], cell);
}
}
}
};
*/
/*
* Return the 3-8 position around the (fx, fy) case
*/
MinesweeperAnalyzer.prototype.getBorderCase = function(fx, fy) {
var i, j, x, y, cases = [];
if (fy === undefined) {
fy = Math.floor(fx / this.minesweeper.w);
fx = fx % this.minesweeper.w;
}
for (i = -1; i < 2; i++) {
for (j = -1; j < 2; j++) {
x = fx + i;
y = fy + j;
if ((i !== 0 || j !== 0) && x >= 0 && x < this.minesweeper.w && y >= 0 && y < this.minesweeper.h) {
cases.push(y * this.minesweeper.w + x);
}
}
}
return cases;
};
MinesweeperAnalyzer.prototype.isMarked = function(pos) {
return this.state[pos] === 2 || this.state[pos] === 4;
};
MinesweeperAnalyzer.prototype.isPlain = function(pos) {
return this.state[pos] === 1 || this.state[pos] === 5;
};
MinesweeperAnalyzer.prototype.isBlank = function(pos) {
return this.state[pos] === undefined || this.state[pos] === 3;
};
MinesweeperAnalyzer.prototype.getMarkValue = function(pos) {
var i, mark = 0, borders;
borders = this.getBorderCase(pos);
for (i = 0; i < borders.length; i++) {
if (this.isMarked(borders[i])) {
mark++;
}
}
return mark;
};
MinesweeperAnalyzer.prototype.markMine = function(cell, plainCell) {
this.state[cell] = 4;
this.remove(cell, plainCell);
this.minesPossibilities.push(cell);
};
return MinesweeperAnalyzer;
})();