Commit | Line | Data |
---|---|---|
9d15c433 BA |
1 | import { ChessRules, PiPo, Move } from "@/base_rules"; |
2 | import { randInt } from "@/utils/alea"; | |
3 | import { ArrayFun } from "@/utils/array"; | |
4 | ||
5 | export class OtageRules extends ChessRules { | |
6 | ||
7 | static get IMAGE_EXTENSION() { | |
8 | return ".png"; | |
9 | } | |
10 | ||
11 | // Hostage / Capturer combinations | |
12 | // + letter among a, b, v, w to indicate colors + config: | |
13 | // a: black first, black controls | |
14 | // b: white first, black controls | |
15 | // v: black first, white controls | |
16 | // w: white first, white controls | |
17 | static get UNIONS() { | |
18 | return { | |
19 | a: ['p', 'p'], | |
20 | c: ['p', 'r'], | |
21 | d: ['p', 'n'], | |
22 | e: ['p', 'b'], | |
23 | f: ['p', 'q'], | |
24 | g: ['p', 'k'], | |
25 | h: ['r', 'r'], | |
26 | i: ['r', 'n'], | |
27 | j: ['r', 'b'], | |
28 | l: ['r', 'q'], | |
29 | m: ['r', 'k'], | |
30 | o: ['n', 'n'], | |
31 | s: ['n', 'b'], | |
32 | t: ['n', 'q'], | |
33 | u: ['n', 'k'], | |
34 | v: ['b', 'b'], | |
35 | w: ['b', 'q'], | |
36 | x: ['b', 'k'], | |
37 | y: ['q', 'q'], | |
38 | z: ['q', 'k'], | |
d982fffc | 39 | '@': ['k', 'k'] |
9d15c433 BA |
40 | }; |
41 | } | |
42 | ||
43 | static board2fen(b) { | |
44 | if (ChessRules.PIECES.includes(b[1])) return ChessRules.board2fen(b); | |
45 | // Show symbol first (no collisions) | |
46 | return b[1] + b[0]; | |
47 | } | |
48 | ||
49 | static fen2board(f) { | |
50 | if (f.length == 1) return ChessRules.fen2board(f); | |
51 | return f[1] + f[0]; //"color" first | |
52 | } | |
53 | ||
54 | static IsGoodPosition(position) { | |
55 | if (position.length == 0) return false; | |
56 | const rows = position.split("/"); | |
57 | if (rows.length != V.size.x) return false; | |
9d15c433 BA |
58 | let kings = { 'k': 0, 'K': 0 }; |
59 | for (let row of rows) { | |
60 | let sumElts = 0; | |
61 | for (let i = 0; i < row.length; i++) { | |
8ec71052 | 62 | const lowR = row[i].toLowerCase(); |
9d15c433 | 63 | const readNext = !(ChessRules.PIECES.includes(lowR)); |
d982fffc | 64 | if (!!(lowR.match(/[a-z@]/))) { |
9d15c433 | 65 | sumElts++; |
8ec71052 BA |
66 | if (lowR == 'k') kings[row[i]]++; |
67 | else if (readNext) { | |
68 | const up = this.getUnionPieces(row[++i], lowR); | |
69 | if (up.w == V.KING) kings['K']++; | |
70 | // NOTE: not "else if" because two kings might be in union | |
71 | if (up.b == V.KING) kings['k']++; | |
72 | } | |
9d15c433 BA |
73 | } |
74 | else { | |
75 | const num = parseInt(row[i], 10); | |
76 | if (isNaN(num) || num <= 0) return false; | |
77 | sumElts += num; | |
78 | } | |
79 | } | |
80 | if (sumElts != V.size.y) return false; | |
81 | } | |
82 | // Both kings should be on board. Exactly one per color. | |
83 | if (Object.values(kings).some(v => v != 1)) return false; | |
84 | return true; | |
85 | } | |
86 | ||
87 | static GetBoard(position) { | |
88 | const rows = position.split("/"); | |
89 | let board = ArrayFun.init(V.size.x, V.size.y, ""); | |
90 | for (let i = 0; i < rows.length; i++) { | |
91 | let j = 0; | |
92 | for (let indexInRow = 0; indexInRow < rows[i].length; indexInRow++) { | |
93 | const character = rows[i][indexInRow]; | |
94 | const num = parseInt(character, 10); | |
95 | // If num is a number, just shift j: | |
96 | if (!isNaN(num)) j += num; | |
97 | else { | |
98 | // Something at position i,j | |
99 | const lowC = character.toLowerCase(); | |
100 | if (ChessRules.PIECES.includes(lowC)) | |
101 | board[i][j++] = V.fen2board(character); | |
102 | else | |
103 | board[i][j++] = V.fen2board(lowC + rows[i][++indexInRow]); | |
104 | } | |
105 | } | |
106 | } | |
107 | return board; | |
108 | } | |
109 | ||
110 | getPpath(b) { | |
111 | return "Otage/" + b; | |
112 | } | |
113 | ||
114 | getPPpath(m) { | |
115 | if (ChessRules.PIECES.includes(m.appear[0].p)) return super.getPPpath(m); | |
116 | // For an "union", show only relevant piece: | |
117 | // The color must be deduced from the move: reaching final rank of who? | |
118 | const color = (m.appear[0].x == 0 ? 'w' : 'b'); | |
119 | const up = this.getUnionPieces(m.appear[0].c, m.appear[0].p); | |
120 | return "Pacosako/" + color + up[color]; | |
121 | } | |
122 | ||
123 | canTake([x1, y1], [x2, y2]) { | |
124 | const p1 = this.board[x1][y1].charAt(1); | |
125 | if (!(ChessRules.PIECES.includes(p1))) return false; | |
126 | const p2 = this.board[x2][y2].charAt(1); | |
127 | if (!(ChessRules.PIECES.includes(p2))) return true; | |
128 | const c1 = this.board[x1][y1].charAt(0); | |
129 | const c2 = this.board[x2][y2].charAt(0); | |
130 | return (c1 != c2); | |
131 | } | |
132 | ||
133 | canIplay(side, [x, y]) { | |
134 | const c = this.board[x][y].charAt(0); | |
135 | const compSide = (side == 'w' ? 'v' : 'a'); | |
136 | return (this.turn == side && [side, compSide].includes(c)); | |
137 | } | |
138 | ||
139 | scanKings(fen) { | |
140 | this.kingPos = { w: [-1, -1], b: [-1, -1] }; | |
141 | const fenRows = V.ParseFen(fen).position.split("/"); | |
142 | const startRow = { 'w': V.size.x - 1, 'b': 0 }; | |
9d15c433 BA |
143 | for (let i = 0; i < fenRows.length; i++) { |
144 | let k = 0; | |
145 | for (let j = 0; j < fenRows[i].length; j++) { | |
146 | const c = fenRows[i].charAt(j); | |
147 | const lowR = c.toLowerCase(); | |
148 | const readNext = !(ChessRules.PIECES.includes(lowR)); | |
d982fffc | 149 | if (!!(lowR.match(/[a-z@]/))) { |
8ec71052 BA |
150 | if (lowR == 'k') this.kingPos[c == 'k' ? 'b' : 'w'] = [i, k]; |
151 | else if (readNext) { | |
152 | const up = this.getUnionPieces(fenRows[i][++j], lowR); | |
153 | if (up.w == V.KING) this.kingPos['w'] = [i, k]; | |
154 | if (up.b == V.KING) this.kingPos['b'] = [i, k]; | |
155 | } | |
9d15c433 BA |
156 | } |
157 | else { | |
158 | const num = parseInt(fenRows[i].charAt(j), 10); | |
159 | if (!isNaN(num)) k += num - 1; | |
160 | } | |
161 | k++; | |
162 | } | |
163 | } | |
164 | } | |
165 | ||
166 | setOtherVariables(fen) { | |
167 | super.setOtherVariables(fen); | |
168 | // Stack of "last move" only for intermediate chaining | |
169 | this.lastMoveEnd = [null]; | |
f3f84707 | 170 | this.repetitions = []; |
9d15c433 BA |
171 | } |
172 | ||
173 | static IsGoodFlags(flags) { | |
174 | // 4 for castle + 16 for pawns | |
175 | return !!flags.match(/^[a-z]{4,4}[01]{16,16}$/); | |
176 | } | |
177 | ||
178 | setFlags(fenflags) { | |
179 | super.setFlags(fenflags); //castleFlags | |
180 | this.pawnFlags = { | |
181 | w: [...Array(8)], //pawns can move 2 squares? | |
182 | b: [...Array(8)] | |
183 | }; | |
184 | const flags = fenflags.substr(4); //skip first 4 letters, for castle | |
185 | for (let c of ["w", "b"]) { | |
186 | for (let i = 0; i < 8; i++) | |
187 | this.pawnFlags[c][i] = flags.charAt((c == "w" ? 0 : 8) + i) == "1"; | |
188 | } | |
189 | } | |
190 | ||
191 | aggregateFlags() { | |
192 | return [this.castleFlags, this.pawnFlags]; | |
193 | } | |
194 | ||
195 | disaggregateFlags(flags) { | |
196 | this.castleFlags = flags[0]; | |
197 | this.pawnFlags = flags[1]; | |
198 | } | |
199 | ||
4313762d | 200 | static GenRandInitFen(options) { |
9d15c433 | 201 | // Add 16 pawns flags: |
4313762d | 202 | return ChessRules.GenRandInitFen(options) |
9d15c433 BA |
203 | .slice(0, -2) + "1111111111111111 -"; |
204 | } | |
205 | ||
206 | getFlagsFen() { | |
207 | let fen = super.getFlagsFen(); | |
208 | // Add pawns flags | |
209 | for (let c of ["w", "b"]) | |
210 | for (let i = 0; i < 8; i++) fen += (this.pawnFlags[c][i] ? "1" : "0"); | |
211 | return fen; | |
212 | } | |
213 | ||
214 | getPiece(i, j) { | |
215 | const p = this.board[i][j].charAt(1); | |
216 | if (ChessRules.PIECES.includes(p)) return p; | |
217 | const c = this.board[i][j].charAt(0); | |
218 | const idx = (['a', 'w'].includes(c) ? 0 : 1); | |
219 | return V.UNIONS[p][idx]; | |
220 | } | |
221 | ||
222 | getUnionPieces(color, code) { | |
223 | const pieces = V.UNIONS[code]; | |
224 | return { | |
225 | w: pieces[ ['b', 'w'].includes(color) ? 0 : 1 ], | |
226 | b: pieces[ ['a', 'v'].includes(color) ? 0 : 1 ] | |
227 | }; | |
228 | } | |
229 | ||
230 | // p1: white piece, p2: black piece, capturer: (temporary) owner | |
231 | getUnionCode(p1, p2, capturer) { | |
232 | let uIdx = ( | |
233 | Object.values(V.UNIONS).findIndex(v => v[0] == p1 && v[1] == p2) | |
234 | ); | |
235 | let c = ''; | |
236 | if (capturer == 'w') c = (uIdx >= 0 ? 'w' : 'v'); | |
237 | else c = (uIdx >= 0 ? 'b' : 'a'); | |
238 | if (uIdx == -1) { | |
239 | uIdx = ( | |
240 | Object.values(V.UNIONS).findIndex(v => v[0] == p2 && v[1] == p1) | |
241 | ); | |
242 | } | |
243 | return { c: c, p: Object.keys(V.UNIONS)[uIdx] }; | |
244 | } | |
245 | ||
246 | getBasicMove([sx, sy], [ex, ey], tr) { | |
247 | const L = this.lastMoveEnd.length; | |
248 | const lm = this.lastMoveEnd[L-1]; | |
249 | const piece = (!!lm ? lm.p : null); | |
250 | const initColor = (!!piece ? this.turn : this.board[sx][sy].charAt(0)); | |
251 | const initPiece = (piece || this.board[sx][sy].charAt(1)); | |
252 | const c = this.turn; | |
253 | const oppCol = V.GetOppCol(c); | |
254 | if (!!tr && !(ChessRules.PIECES.includes(initPiece))) { | |
255 | // Transformation computed without taking union into account | |
256 | const up = this.getUnionPieces(initColor, initPiece); | |
257 | let args = [tr.p, up[oppCol]]; | |
259035ec BA |
258 | if ( |
259 | ['a', 'v'].includes(initColor) || | |
260 | // HACK: "ba" piece = two pawns, black controling. | |
261 | // If promoting, must artificially imagine color was 'a': | |
262 | (initPiece == 'a' && initColor == 'b') | |
263 | ) { | |
264 | args = args.reverse(); | |
265 | } | |
9d15c433 BA |
266 | const capturer = (['a', 'b'].includes(initColor) ? 'b' : 'w'); |
267 | const cp = this.getUnionCode(args[0], args[1], capturer); | |
268 | tr.c = cp.c; | |
269 | tr.p = cp.p; | |
270 | } | |
271 | // 4 cases : moving | |
272 | // - union to free square (other cases are illegal: return null) | |
273 | // - normal piece to free square, | |
274 | // to enemy normal piece, or | |
275 | // to union (releasing our piece) | |
276 | let mv = new Move({ | |
277 | start: { x: sx, y: sy }, | |
278 | end: { x: ex, y: ey }, | |
279 | vanish: [] | |
280 | }); | |
281 | if (!piece) { | |
282 | mv.vanish = [ | |
283 | new PiPo({ | |
284 | x: sx, | |
285 | y: sy, | |
286 | c: initColor, | |
287 | p: initPiece | |
288 | }) | |
289 | ]; | |
290 | } | |
291 | // Treat free square cases first: | |
292 | if (this.board[ex][ey] == V.EMPTY) { | |
293 | mv.appear = [ | |
294 | new PiPo({ | |
295 | x: ex, | |
296 | y: ey, | |
297 | c: !!tr ? tr.c : initColor, | |
298 | p: !!tr ? tr.p : initPiece | |
299 | }) | |
300 | ]; | |
301 | return mv; | |
302 | } | |
303 | // Now the two cases with union / release: | |
304 | const destColor = this.board[ex][ey].charAt(0); | |
305 | const destPiece = this.board[ex][ey].charAt(1); | |
306 | mv.vanish.push( | |
307 | new PiPo({ | |
308 | x: ex, | |
309 | y: ey, | |
310 | c: destColor, | |
311 | p: destPiece | |
312 | }) | |
313 | ); | |
314 | if (ChessRules.PIECES.includes(destPiece)) { | |
315 | // Normal piece: just create union | |
316 | let args = [!!tr ? tr.p : initPiece, destPiece]; | |
317 | if (c == 'b') args = args.reverse(); | |
318 | const cp = this.getUnionCode(args[0], args[1], c); | |
319 | mv.appear = [ | |
320 | new PiPo({ | |
321 | x: ex, | |
322 | y: ey, | |
323 | c: cp.c, | |
324 | p: cp.p | |
325 | }) | |
326 | ]; | |
327 | return mv; | |
328 | } | |
329 | // Releasing a piece in an union: keep track of released piece | |
330 | const up = this.getUnionPieces(destColor, destPiece); | |
331 | let args = [!!tr ? tr.p : initPiece, up[oppCol]]; | |
332 | if (c == 'b') args = args.reverse(); | |
333 | const cp = this.getUnionCode(args[0], args[1], c); | |
334 | mv.appear = [ | |
335 | new PiPo({ | |
336 | x: ex, | |
337 | y: ey, | |
338 | c: cp.c, | |
339 | p: cp.p | |
340 | }) | |
341 | ]; | |
342 | mv.end.released = up[c]; | |
343 | return mv; | |
344 | } | |
345 | ||
346 | // noCastle arg: when detecting king attacks | |
347 | getPotentialMovesFrom([x, y], noCastle) { | |
348 | const L = this.lastMoveEnd.length; | |
349 | const lm = this.lastMoveEnd[L-1]; | |
350 | if (!!lm && (x != lm.x || y != lm.y)) return []; | |
351 | const piece = (!!lm ? lm.p : this.getPiece(x, y)); | |
352 | if (!!lm) { | |
353 | var saveSquare = this.board[x][y]; | |
354 | this.board[x][y] = this.turn + piece; | |
355 | } | |
356 | let baseMoves = []; | |
357 | const c = this.turn; | |
1006b211 | 358 | switch (piece) { |
9d15c433 BA |
359 | case V.PAWN: { |
360 | const firstRank = (c == 'w' ? 7 : 0); | |
361 | baseMoves = this.getPotentialPawnMoves([x, y]).filter(m => { | |
362 | // Skip forbidden 2-squares jumps (except from first rank) | |
363 | // Also skip unions capturing en-passant (not allowed). | |
364 | return ( | |
365 | ( | |
366 | m.start.x == firstRank || | |
367 | Math.abs(m.end.x - m.start.x) == 1 || | |
368 | this.pawnFlags[c][m.start.y] | |
369 | ) | |
370 | && | |
371 | ( | |
372 | this.board[x][y].charAt(1) == V.PAWN || | |
373 | m.start.y == m.end.y | |
374 | ) | |
375 | ); | |
376 | }); | |
377 | break; | |
378 | } | |
379 | case V.ROOK: | |
380 | baseMoves = this.getPotentialRookMoves([x, y]); | |
381 | break; | |
382 | case V.KNIGHT: | |
383 | baseMoves = this.getPotentialKnightMoves([x, y]); | |
384 | break; | |
385 | case V.BISHOP: | |
386 | baseMoves = this.getPotentialBishopMoves([x, y]); | |
387 | break; | |
388 | case V.QUEEN: | |
389 | baseMoves = this.getPotentialQueenMoves([x, y]); | |
390 | break; | |
391 | case V.KING: | |
392 | baseMoves = this.getSlideNJumpMoves( | |
4313762d | 393 | [x, y], V.steps[V.ROOK].concat(V.steps[V.BISHOP]), 1); |
9d15c433 | 394 | if (!noCastle && this.castleFlags[this.turn].some(v => v < V.size.y)) |
8a8687b8 | 395 | baseMoves = baseMoves.concat(this.getCastleMoves([x, y])); |
9d15c433 BA |
396 | break; |
397 | } | |
398 | // When a pawn in an union reaches final rank with a non-standard | |
399 | // promotion move: apply promotion anyway | |
400 | let moves = []; | |
401 | const oppCol = V.GetOppCol(c); | |
402 | const oppLastRank = (c == 'w' ? 7 : 0); | |
403 | baseMoves.forEach(m => { | |
404 | if ( | |
405 | m.end.x == oppLastRank && | |
406 | ['c', 'd', 'e', 'f', 'g'].includes(m.appear[0].p) | |
407 | ) { | |
408 | // Move to first rank, which is last rank for opponent's pawn. | |
409 | // => Show promotion choices. | |
410 | // Find our piece in union (not a pawn) | |
411 | const up = this.getUnionPieces(m.appear[0].c, m.appear[0].p); | |
412 | // merge with all potential promotion pieces + push (loop) | |
413 | for (let promotionPiece of [V.ROOK, V.KNIGHT, V.BISHOP, V.QUEEN]) { | |
414 | let args = [up[c], promotionPiece]; | |
415 | if (c == 'b') args = args.reverse(); | |
416 | const cp = this.getUnionCode(args[0], args[1], c); | |
417 | let cpMove = JSON.parse(JSON.stringify(m)); | |
418 | cpMove.appear[0].c = cp.c; | |
419 | cpMove.appear[0].p = cp.p; | |
420 | moves.push(cpMove); | |
421 | } | |
422 | } | |
423 | else { | |
424 | if ( | |
425 | m.vanish.length > 0 && | |
426 | m.vanish[0].p == V.PAWN && | |
427 | m.start.y != m.end.y && | |
428 | this.board[m.end.x][m.end.y] == V.EMPTY | |
429 | ) { | |
430 | if (!!lm) | |
431 | // No en-passant inside a chaining | |
432 | return; | |
433 | // Fix en-passant capture: union type, maybe released piece too | |
434 | const cs = [m.end.x + (c == 'w' ? 1 : -1), m.end.y]; | |
435 | const code = this.board[cs[0]][cs[1]].charAt(1); | |
436 | if (code == V.PAWN) { | |
437 | // Simple en-passant capture (usual: just form union) | |
438 | m.appear[0].c = c; | |
439 | m.appear[0].p = 'a'; | |
440 | } | |
441 | else { | |
442 | // An union pawn + something just moved two squares | |
443 | const color = this.board[cs[0]][cs[1]].charAt(0); | |
444 | const up = this.getUnionPieces(color, code); | |
445 | m.end.released = up[c]; | |
446 | let args = [V.PAWN, up[oppCol]]; | |
447 | if (c == 'b') args = args.reverse(); | |
448 | const cp = this.getUnionCode(args[0], args[1], c); | |
449 | m.appear[0].c = cp.c; | |
450 | m.appear[0].p = cp.p; | |
451 | } | |
452 | } | |
453 | moves.push(m); | |
454 | } | |
455 | }); | |
456 | if (!!lm) this.board[x][y] = saveSquare; | |
457 | return moves; | |
458 | } | |
459 | ||
460 | getEpSquare(moveOrSquare) { | |
461 | if (typeof moveOrSquare === "string") { | |
462 | const square = moveOrSquare; | |
463 | if (square == "-") return undefined; | |
464 | return V.SquareToCoords(square); | |
465 | } | |
466 | const move = moveOrSquare; | |
467 | const s = move.start, | |
468 | e = move.end; | |
469 | if ( | |
470 | s.y == e.y && | |
471 | Math.abs(s.x - e.x) == 2 && | |
472 | this.getPiece(s.x, s.y) == V.PAWN | |
473 | ) { | |
474 | return { | |
475 | x: (s.x + e.x) / 2, | |
476 | y: s.y | |
477 | }; | |
478 | } | |
479 | return undefined; | |
480 | } | |
481 | ||
482 | getCastleMoves([x, y]) { | |
483 | const c = this.turn; | |
484 | const accepted = (c == 'w' ? ['v', 'w'] : ['a', 'b']); | |
485 | const oppCol = V.GetOppCol(c); | |
486 | let moves = []; | |
487 | const finalSquares = [ [2, 3], [6, 5] ]; | |
488 | castlingCheck: for (let castleSide = 0; castleSide < 2; castleSide++) { | |
489 | if (this.castleFlags[c][castleSide] >= 8) continue; | |
490 | const rookPos = this.castleFlags[c][castleSide]; | |
491 | const castlingColor = this.board[x][rookPos].charAt(0); | |
492 | const castlingPiece = this.board[x][rookPos].charAt(1); | |
493 | ||
494 | // Nothing on the path of the king ? | |
495 | const finDist = finalSquares[castleSide][0] - y; | |
496 | let step = finDist / Math.max(1, Math.abs(finDist)); | |
497 | let i = y; | |
498 | let kingSquares = [y]; | |
499 | do { | |
500 | if ( | |
501 | this.board[x][i] != V.EMPTY && | |
502 | !accepted.includes(this.getColor(x, i)) | |
503 | ) { | |
504 | continue castlingCheck; | |
505 | } | |
506 | i += step; | |
507 | kingSquares.push(i); | |
508 | } while (i != finalSquares[castleSide][0]); | |
509 | // No checks on the path of the king ? | |
510 | if (this.isAttacked(kingSquares, oppCol)) continue castlingCheck; | |
511 | ||
512 | // Nothing on the path to the rook? | |
513 | step = castleSide == 0 ? -1 : 1; | |
514 | for (i = y + step; i != rookPos; i += step) { | |
515 | if (this.board[x][i] != V.EMPTY) continue castlingCheck; | |
516 | } | |
517 | ||
518 | // Nothing on final squares, except maybe king and castling rook? | |
519 | for (i = 0; i < 2; i++) { | |
520 | if ( | |
521 | finalSquares[castleSide][i] != rookPos && | |
522 | this.board[x][finalSquares[castleSide][i]] != V.EMPTY && | |
523 | ( | |
524 | finalSquares[castleSide][i] != y || | |
525 | // TODO: next test seems superflu | |
526 | !accepted.includes(this.getColor(x, finalSquares[castleSide][i])) | |
527 | ) | |
528 | ) { | |
529 | continue castlingCheck; | |
530 | } | |
531 | } | |
532 | ||
533 | moves.push( | |
534 | new Move({ | |
535 | appear: [ | |
536 | new PiPo({ | |
537 | x: x, | |
538 | y: finalSquares[castleSide][0], | |
539 | p: V.KING, | |
540 | c: c | |
541 | }), | |
542 | new PiPo({ | |
543 | x: x, | |
544 | y: finalSquares[castleSide][1], | |
545 | p: castlingPiece, | |
546 | c: castlingColor | |
547 | }) | |
548 | ], | |
549 | vanish: [ | |
550 | // King might be initially disguised (Titan...) | |
551 | new PiPo({ x: x, y: y, p: V.KING, c: c }), | |
552 | new PiPo({ x: x, y: rookPos, p: castlingPiece, c: castlingColor }) | |
553 | ], | |
554 | end: | |
555 | Math.abs(y - rookPos) <= 2 | |
556 | ? { x: x, y: rookPos } | |
557 | : { x: x, y: y + 2 * (castleSide == 0 ? -1 : 1) } | |
558 | }) | |
559 | ); | |
560 | } | |
561 | ||
562 | return moves; | |
563 | } | |
564 | ||
565 | getEnpassantCaptures(sq, shiftX) { | |
566 | // HACK: when artificially change turn, do not consider en-passant | |
567 | const mcMod2 = this.movesCount % 2; | |
568 | const c = this.turn; | |
569 | if ((c == 'w' && mcMod2 == 1) || (c == 'b' && mcMod2 == 0)) return []; | |
570 | return super.getEnpassantCaptures(sq, shiftX); | |
571 | } | |
572 | ||
573 | isAttacked_aux(files, color, positions, fromSquare, released) { | |
574 | // "positions" = array of FENs to detect infinite loops. Example: | |
575 | // r1q1k2r/p1Pb1ppp/5n2/1f1p4/AV5P/P1eDP3/3B1PP1/R3K1NR, | |
576 | // Bxd2 Bxc3 Bxb4 Bxc3 Bxb4 etc. | |
577 | const newPos = { fen: super.getBaseFen(), piece: released }; | |
578 | if (positions.some(p => p.piece == newPos.piece && p.fen == newPos.fen)) | |
579 | // Start of an infinite loop: exit | |
580 | return false; | |
581 | positions.push(newPos); | |
582 | const rank = (color == 'w' ? 0 : 7); | |
583 | const moves = this.getPotentialMovesFrom(fromSquare); | |
584 | if (moves.some(m => m.end.x == rank && files.includes(m.end.y))) | |
585 | // Found an attack! | |
586 | return true; | |
587 | for (let m of moves) { | |
588 | if (!!m.end.released) { | |
589 | // Turn won't change since !!m.released | |
590 | this.play(m); | |
591 | const res = this.isAttacked_aux( | |
592 | files, color, positions, [m.end.x, m.end.y], m.end.released); | |
593 | this.undo(m); | |
594 | if (res) return true; | |
595 | } | |
596 | } | |
597 | return false; | |
598 | } | |
599 | ||
600 | isAttacked(files, color) { | |
601 | const rank = (color == 'w' ? 0 : 7); | |
602 | // Since it's too difficult (impossible?) to search from the square itself, | |
603 | // let's adopt a suboptimal but working strategy: find all attacks. | |
604 | const c = this.turn; | |
605 | // Artificial turn change is required: | |
606 | this.turn = color; | |
607 | let res = false; | |
608 | outerLoop: for (let i=0; i<8; i++) { | |
609 | for (let j=0; j<8; j++) { | |
610 | // Attacks must start from a normal piece, not an union. | |
611 | // Therefore, the following test is correct. | |
612 | if ( | |
613 | this.board[i][j] != V.EMPTY && | |
614 | [V.KING, V.PAWN, V.ROOK, V.KNIGHT, V.BISHOP, V.QUEEN].includes( | |
615 | this.board[i][j].charAt(1)) && | |
616 | this.board[i][j].charAt(0) == color | |
617 | ) { | |
618 | // Try from here. | |
619 | const moves = this.getPotentialMovesFrom([i, j], "noCastle"); | |
620 | if (moves.some(m => m.end.x == rank && files.includes(m.end.y))) { | |
621 | res = true; | |
622 | break outerLoop; | |
623 | } | |
624 | for (let m of moves) { | |
625 | if (!!m.end.released) { | |
626 | // Turn won't change since !!m.released | |
627 | this.play(m); | |
628 | let positions = []; | |
629 | res = this.isAttacked_aux( | |
630 | files, color, positions, [m.end.x, m.end.y], m.end.released); | |
631 | this.undo(m); | |
632 | if (res) break outerLoop; | |
633 | } | |
634 | } | |
635 | } | |
636 | } | |
637 | } | |
638 | this.turn = c; | |
639 | return res; | |
640 | } | |
641 | ||
642 | // Do not consider checks, except to forbid castling | |
643 | getCheckSquares() { | |
644 | return []; | |
645 | } | |
f3f84707 | 646 | |
9d15c433 | 647 | filterValid(moves) { |
f3f84707 BA |
648 | if (moves.length == 0) return []; |
649 | return moves.filter(m => { | |
650 | if (!m.end.released) return true; | |
651 | // Check for repetitions: | |
652 | V.PlayOnBoard(this.board, m); | |
d2af3400 BA |
653 | const newState = { |
654 | piece: m.end.released, | |
655 | square: { x: m.end.x, y: m.end.y }, | |
656 | position: this.getBaseFen() | |
657 | }; | |
f3f84707 BA |
658 | const repet = |
659 | this.repetitions.some(r => { | |
660 | return ( | |
661 | r.piece == newState.piece && | |
d2af3400 BA |
662 | ( |
663 | r.square.x == newState.square.x && | |
1328e7dd | 664 | r.square.y == newState.square.y |
d2af3400 | 665 | ) && |
f3f84707 BA |
666 | r.position == newState.position |
667 | ); | |
668 | }); | |
669 | V.UndoOnBoard(this.board, m); | |
670 | return !repet; | |
671 | }); | |
9d15c433 BA |
672 | } |
673 | ||
674 | updateCastleFlags(move, piece) { | |
675 | const c = this.turn; | |
676 | const firstRank = (c == "w" ? 7 : 0); | |
677 | if (piece == V.KING && move.appear.length > 0) | |
678 | this.castleFlags[c] = [V.size.y, V.size.y]; | |
679 | else if ( | |
680 | move.start.x == firstRank && | |
681 | this.castleFlags[c].includes(move.start.y) | |
682 | ) { | |
683 | const flagIdx = (move.start.y == this.castleFlags[c][0] ? 0 : 1); | |
684 | this.castleFlags[c][flagIdx] = V.size.y; | |
685 | } | |
686 | else if ( | |
687 | move.end.x == firstRank && | |
688 | this.castleFlags[c].includes(move.end.y) | |
689 | ) { | |
690 | // Move to our rook: necessary normal piece, to union, releasing | |
691 | // (or the rook was moved before!) | |
692 | const flagIdx = (move.end.y == this.castleFlags[c][0] ? 0 : 1); | |
693 | this.castleFlags[c][flagIdx] = V.size.y; | |
694 | } | |
695 | } | |
696 | ||
697 | prePlay(move) { | |
698 | // Easier before move is played in this case (flags are saved) | |
699 | const c = this.turn; | |
700 | const L = this.lastMoveEnd.length; | |
701 | const lm = this.lastMoveEnd[L-1]; | |
8ec71052 BA |
702 | const piece = |
703 | !!lm | |
c3145c37 BA |
704 | ? lm.p |
705 | : this.getPiece(move.vanish[0].x, move.vanish[0].y); | |
9d15c433 BA |
706 | if (piece == V.KING) |
707 | this.kingPos[c] = [move.appear[0].x, move.appear[0].y]; | |
708 | this.updateCastleFlags(move, piece); | |
709 | const pawnFirstRank = (c == 'w' ? 6 : 1); | |
8ec71052 BA |
710 | if ( |
711 | move.start.x == pawnFirstRank && | |
712 | piece == V.PAWN && | |
713 | Math.abs(move.end.x - move.start.x) == 2 | |
714 | ) { | |
715 | // This move turns off a 2-squares pawn flag | |
9d15c433 | 716 | this.pawnFlags[c][move.start.y] = false; |
8ec71052 | 717 | } |
9d15c433 BA |
718 | } |
719 | ||
720 | play(move) { | |
721 | move.flags = JSON.stringify(this.aggregateFlags()); | |
722 | this.prePlay(move); | |
723 | this.epSquares.push(this.getEpSquare(move)); | |
724 | // Check if the move is the last of the turn: all cases except releases | |
725 | if (!move.end.released) { | |
726 | // No more union releases available | |
727 | this.turn = V.GetOppCol(this.turn); | |
728 | this.movesCount++; | |
729 | this.lastMoveEnd.push(null); | |
730 | } | |
731 | else | |
732 | this.lastMoveEnd.push(Object.assign({ p: move.end.released }, move.end)); | |
733 | V.PlayOnBoard(this.board, move); | |
f3f84707 BA |
734 | if (!move.end.released) this.repetitions = []; |
735 | else { | |
736 | this.repetitions.push( | |
737 | { | |
738 | piece: move.end.released, | |
d2af3400 | 739 | square: { x: move.end.x, y: move.end.y }, |
f3f84707 BA |
740 | position: this.getBaseFen() |
741 | } | |
742 | ); | |
743 | } | |
9d15c433 BA |
744 | } |
745 | ||
746 | undo(move) { | |
747 | this.epSquares.pop(); | |
748 | this.disaggregateFlags(JSON.parse(move.flags)); | |
749 | V.UndoOnBoard(this.board, move); | |
750 | this.lastMoveEnd.pop(); | |
751 | if (!move.end.released) { | |
752 | this.turn = V.GetOppCol(this.turn); | |
753 | this.movesCount--; | |
754 | } | |
4573adc5 | 755 | if (!!move.end.released) this.repetitions.pop(); |
9d15c433 BA |
756 | this.postUndo(move); |
757 | } | |
758 | ||
759 | postUndo(move) { | |
760 | if (this.getPiece(move.start.x, move.start.y) == V.KING) | |
761 | this.kingPos[this.turn] = [move.start.x, move.start.y]; | |
c3145c37 BA |
762 | else { |
763 | // Check if a king is being released: put it on releasing square | |
764 | const L = this.lastMoveEnd.length; | |
765 | const lm = this.lastMoveEnd[L-1]; | |
766 | if (!!lm && lm.p == V.KING) | |
767 | this.kingPos[this.turn] = [move.start.x, move.start.y]; | |
768 | } | |
9d15c433 BA |
769 | } |
770 | ||
771 | getCurrentScore() { | |
772 | // Check kings: if one is captured, the side lost | |
773 | for (let c of ['w', 'b']) { | |
774 | const kp = this.kingPos[c]; | |
775 | const cell = this.board[kp[0]][kp[1]]; | |
776 | if ( | |
777 | cell[1] != V.KING && | |
778 | ( | |
779 | (c == 'w' && ['a', 'b'].includes(cell[0])) || | |
780 | (c == 'b' && ['v', 'w'].includes(cell[0])) | |
781 | ) | |
782 | ) { | |
783 | // King is captured | |
784 | return (c == 'w' ? "0-1" : "1-0"); | |
785 | } | |
786 | } | |
787 | return "*"; | |
788 | } | |
789 | ||
790 | getComputerMove() { | |
791 | let initMoves = this.getAllValidMoves(); | |
792 | if (initMoves.length == 0) return null; | |
793 | // Loop until valid move is found (no blocked pawn released...) | |
794 | while (true) { | |
795 | let moves = JSON.parse(JSON.stringify(initMoves)); | |
796 | let mvArray = []; | |
797 | let mv = null; | |
798 | // Just play random moves (for now at least. TODO?) | |
799 | while (moves.length > 0) { | |
800 | mv = moves[randInt(moves.length)]; | |
801 | mvArray.push(mv); | |
802 | this.play(mv); | |
803 | if (!!mv.end.released) | |
804 | // A piece was just released from an union | |
805 | moves = this.getPotentialMovesFrom([mv.end.x, mv.end.y]); | |
806 | else break; | |
807 | } | |
808 | for (let i = mvArray.length - 1; i >= 0; i--) this.undo(mvArray[i]); | |
809 | if (!mv.end.released) return (mvArray.length > 1 ? mvArray : mvArray[0]); | |
810 | } | |
2da551a3 | 811 | return null; //never reached |
9d15c433 BA |
812 | } |
813 | ||
814 | // NOTE: evalPosition() is wrong, but unused since bot plays at random | |
815 | ||
816 | getNotation(move) { | |
817 | if (move.appear.length == 2 && move.appear[0].p == V.KING) | |
818 | return (move.end.y < move.start.y ? "0-0-0" : "0-0"); | |
819 | ||
820 | const c = this.turn; | |
821 | const L = this.lastMoveEnd.length; | |
822 | const lm = this.lastMoveEnd[L-1]; | |
823 | let piece = null; | |
824 | if (!lm && move.vanish.length == 0) | |
825 | // When importing a game, the info move.released is lost | |
826 | piece = move.appear[0].p; | |
827 | else piece = (!!lm ? lm.p : move.vanish[0].p); | |
828 | if (!(ChessRules.PIECES.includes(piece))) { | |
829 | // Decode (moving) union | |
830 | const up = this.getUnionPieces( | |
831 | move.vanish.length > 0 ? move.vanish[0].c : move.appear[0].c, piece); | |
832 | piece = up[c] | |
833 | } | |
834 | ||
835 | // Basic move notation: | |
836 | let notation = piece.toUpperCase(); | |
837 | if ( | |
838 | this.board[move.end.x][move.end.y] != V.EMPTY || | |
839 | (piece == V.PAWN && move.start.y != move.end.y) | |
840 | ) { | |
841 | notation += "x"; | |
842 | } | |
843 | const finalSquare = V.CoordsToSquare(move.end); | |
844 | notation += finalSquare; | |
845 | ||
846 | // Add potential promotion indications: | |
847 | const firstLastRank = (c == 'w' ? [7, 0] : [0, 7]); | |
848 | if (move.end.x == firstLastRank[1] && piece == V.PAWN) { | |
afcfb852 BA |
849 | notation += "="; |
850 | if (ChessRules.PIECES.includes(move.appear[0].p)) | |
851 | notation += move.appear[0].p.toUpperCase(); | |
852 | else { | |
853 | const up = this.getUnionPieces(move.appear[0].c, move.appear[0].p); | |
854 | notation += up[c].toUpperCase(); | |
855 | } | |
9d15c433 BA |
856 | } |
857 | else if ( | |
858 | move.end.x == firstLastRank[0] && | |
859 | move.vanish.length > 0 && | |
860 | ['c', 'd', 'e', 'f', 'g'].includes(move.vanish[0].p) | |
861 | ) { | |
862 | // We promoted an opponent's pawn | |
863 | const oppCol = V.GetOppCol(c); | |
864 | const up = this.getUnionPieces(move.appear[0].c, move.appear[0].p); | |
865 | notation += "=" + up[oppCol].toUpperCase(); | |
866 | } | |
867 | ||
868 | return notation; | |
869 | } | |
870 | ||
871 | }; |