Hopefully Eightpieces is less buggish now
[vchess.git] / client / src / variants / Eightpieces.js
CommitLineData
2a8a94c9 1import { ArrayFun } from "@/utils/array";
afbf3ca7 2import { randInt } from "@/utils/alea";
2a8a94c9
BA
3import { ChessRules, PiPo, Move } from "@/base_rules";
4
5export const VariantRules = class EightpiecesRules extends ChessRules {
6 static get JAILER() {
7 return "j";
8 }
9 static get SENTRY() {
10 return "s";
11 }
12 static get LANCER() {
13 return "l";
14 }
15
ee307044 16 // Lancer directions *from white perspective*
28b32b4f
BA
17 static get LANCER_DIRS() {
18 return {
19 'c': [-1, 0], //north
20 'd': [-1, 1], //N-E
21 'e': [0, 1], //east
22 'f': [1, 1], //S-E
23 'g': [1, 0], //south
24 'h': [1, -1], //S-W
25 'm': [0, -1], //west
26 'o': [-1, -1] //N-W
27 };
28 }
29
3a2a7b5f
BA
30 static get PIECES() {
31 return ChessRules.PIECES
32 .concat([V.JAILER, V.SENTRY])
33 .concat(Object.keys(V.LANCER_DIRS));
34 }
35
28b32b4f
BA
36 getPiece(i, j) {
37 const piece = this.board[i][j].charAt(1);
38 // Special lancer case: 8 possible orientations
39 if (Object.keys(V.LANCER_DIRS).includes(piece)) return V.LANCER;
40 return piece;
41 }
42
3a2a7b5f
BA
43 getPpath(b, color, score, orientation) {
44 if ([V.JAILER, V.SENTRY].includes(b[1])) return "Eightpieces/" + b;
45 if (Object.keys(V.LANCER_DIRS).includes(b[1])) {
46 if (orientation == 'w') return "Eightpieces/" + b;
47 // Find opposite direction for adequate display:
48 let oppDir = '';
49 switch (b[1]) {
50 case 'c':
51 oppDir = 'g';
52 break;
53 case 'g':
54 oppDir = 'c';
55 break;
56 case 'd':
57 oppDir = 'h';
58 break;
59 case 'h':
60 oppDir = 'd';
61 break;
62 case 'e':
63 oppDir = 'm';
64 break;
65 case 'm':
66 oppDir = 'e';
67 break;
68 case 'f':
69 oppDir = 'o';
70 break;
71 case 'o':
72 oppDir = 'f';
73 break;
74 }
75 return "Eightpieces/" + b[0] + oppDir;
76 }
90e814b6
BA
77 return b;
78 }
79
3a2a7b5f
BA
80 getPPpath(b, orientation) {
81 return this.getPpath(b, null, null, orientation);
82 }
83
90e814b6
BA
84 static ParseFen(fen) {
85 const fenParts = fen.split(" ");
3a2a7b5f
BA
86 return Object.assign(
87 ChessRules.ParseFen(fen),
88 { sentrypush: fenParts[5] }
89 );
90 }
91
92 static IsGoodFen(fen) {
93 if (!ChessRules.IsGoodFen(fen)) return false;
94 const fenParsed = V.ParseFen(fen);
95 // 5) Check sentry push (if any)
96 if (
97 fenParsed.sentrypush != "-" &&
98 !fenParsed.sentrypush.match(/^([a-h][1-8],?)+$/)
99 ) {
100 return false;
101 }
102 return true;
90e814b6
BA
103 }
104
105 getFen() {
6b7b2cf7 106 return super.getFen() + " " + this.getSentrypushFen();
90e814b6
BA
107 }
108
109 getFenForRepeat() {
6b7b2cf7 110 return super.getFenForRepeat() + "_" + this.getSentrypushFen();
90e814b6
BA
111 }
112
6b7b2cf7
BA
113 getSentrypushFen() {
114 const L = this.sentryPush.length;
115 if (!this.sentryPush[L-1]) return "-";
90e814b6 116 let res = "";
6b7b2cf7 117 this.sentryPush[L-1].forEach(coords =>
90e814b6
BA
118 res += V.CoordsToSquare(coords) + ",");
119 return res.slice(0, -1);
2a8a94c9
BA
120 }
121
28b32b4f
BA
122 setOtherVariables(fen) {
123 super.setOtherVariables(fen);
124 // subTurn == 2 only when a sentry moved, and is about to push something
125 this.subTurn = 1;
afbf3ca7
BA
126 // Sentry position just after a "capture" (subTurn from 1 to 2)
127 this.sentryPos = null;
28b32b4f 128 // Stack pieces' forbidden squares after a sentry move at each turn
90e814b6 129 const parsedFen = V.ParseFen(fen);
6b7b2cf7 130 if (parsedFen.sentrypush == "-") this.sentryPush = [null];
90e814b6 131 else {
6b7b2cf7
BA
132 this.sentryPush = [
133 parsedFen.sentrypush.split(",").map(sq => {
90e814b6
BA
134 return V.SquareToCoords(sq);
135 })
136 ];
137 }
2a8a94c9
BA
138 }
139
2a8a94c9 140 static GenRandInitFen(randomness) {
9842aca2
BA
141 if (randomness == 0)
142 // Deterministic:
3a2a7b5f 143 return "jsfqkbnr/pppppppp/8/8/8/8/PPPPPPPP/JSDQKBNR w 0 ahah - -";
9842aca2
BA
144
145 let pieces = { w: new Array(8), b: new Array(8) };
3a2a7b5f 146 let flags = "";
9842aca2
BA
147 // Shuffle pieces on first (and last rank if randomness == 2)
148 for (let c of ["w", "b"]) {
149 if (c == 'b' && randomness == 1) {
ee307044
BA
150 const lancerIdx = pieces['w'].findIndex(p => {
151 return Object.keys(V.LANCER_DIRS).includes(p);
152 });
153 pieces['b'] =
154 pieces['w'].slice(0, lancerIdx)
155 .concat(['g'])
156 .concat(pieces['w'].slice(lancerIdx + 1));
3a2a7b5f 157 flags += flags;
9842aca2
BA
158 break;
159 }
160
161 let positions = ArrayFun.range(8);
162
163 // Get random squares for bishop and sentry
164 let randIndex = 2 * randInt(4);
165 let bishopPos = positions[randIndex];
166 // The sentry must be on a square of different color
167 let randIndex_tmp = 2 * randInt(4) + 1;
168 let sentryPos = positions[randIndex_tmp];
169 if (c == 'b') {
170 // Check if white sentry is on the same color as ours.
171 // If yes: swap bishop and sentry positions.
172 if ((pieces['w'].indexOf('s') - sentryPos) % 2 == 0)
173 [bishopPos, sentryPos] = [sentryPos, bishopPos];
174 }
175 positions.splice(Math.max(randIndex, randIndex_tmp), 1);
176 positions.splice(Math.min(randIndex, randIndex_tmp), 1);
177
178 // Get random squares for knight and lancer
179 randIndex = randInt(6);
180 const knightPos = positions[randIndex];
181 positions.splice(randIndex, 1);
182 randIndex = randInt(5);
183 const lancerPos = positions[randIndex];
184 positions.splice(randIndex, 1);
185
186 // Get random square for queen
187 randIndex = randInt(4);
188 const queenPos = positions[randIndex];
189 positions.splice(randIndex, 1);
190
191 // Rook, jailer and king positions are now almost fixed,
192 // only the ordering rook-> jailer or jailer->rook must be decided.
193 let rookPos = positions[0];
194 let jailerPos = positions[2];
195 const kingPos = positions[1];
3a2a7b5f 196 flags += V.CoordToColumn(rookPos) + V.CoordToColumn(jailerPos);
9842aca2
BA
197 if (Math.random() < 0.5) [rookPos, jailerPos] = [jailerPos, rookPos];
198
199 pieces[c][rookPos] = "r";
200 pieces[c][knightPos] = "n";
201 pieces[c][bishopPos] = "b";
202 pieces[c][queenPos] = "q";
203 pieces[c][kingPos] = "k";
204 pieces[c][sentryPos] = "s";
205 // Lancer faces north for white, and south for black:
206 pieces[c][lancerPos] = c == 'w' ? 'c' : 'g';
207 pieces[c][jailerPos] = "j";
208 }
209 return (
210 pieces["b"].join("") +
211 "/pppppppp/8/8/8/8/PPPPPPPP/" +
212 pieces["w"].join("").toUpperCase() +
3a2a7b5f 213 " w 0 " + flags + " - -"
9842aca2 214 );
2a8a94c9
BA
215 }
216
b0a0468a
BA
217 canTake([x1, y1], [x2, y2]) {
218 if (this.subTurn == 2)
219 // Only self captures on this subturn:
220 return this.getColor(x1, y1) == this.getColor(x2, y2);
221 return super.canTake([x1, y1], [x2, y2]);
222 }
223
6b7b2cf7
BA
224 // Is piece on square (x,y) immobilized?
225 isImmobilized([x, y]) {
226 const color = this.getColor(x, y);
227 const oppCol = V.GetOppCol(color);
228 for (let step of V.steps[V.ROOK]) {
229 const [i, j] = [x + step[0], y + step[1]];
230 if (
231 V.OnBoard(i, j) &&
232 this.board[i][j] != V.EMPTY &&
233 this.getColor(i, j) == oppCol
234 ) {
bfed878d 235 if (this.getPiece(i, j) == V.JAILER) return [i, j];
6b7b2cf7
BA
236 }
237 }
238 return null;
239 }
240
ee307044
BA
241 // Because of the lancers, getPiece() could be wrong:
242 // use board[x][y][1] instead (always valid).
243 getBasicMove([sx, sy], [ex, ey], tr) {
244 let mv = new Move({
245 appear: [
246 new PiPo({
247 x: ex,
248 y: ey,
249 c: tr ? tr.c : this.getColor(sx, sy),
afbf3ca7 250 p: tr ? tr.p : this.board[sx][sy].charAt(1)
ee307044
BA
251 })
252 ],
253 vanish: [
254 new PiPo({
255 x: sx,
256 y: sy,
257 c: this.getColor(sx, sy),
afbf3ca7 258 p: this.board[sx][sy].charAt(1)
ee307044
BA
259 })
260 ]
261 });
262
263 // The opponent piece disappears if we take it
264 if (this.board[ex][ey] != V.EMPTY) {
265 mv.vanish.push(
266 new PiPo({
267 x: ex,
268 y: ey,
269 c: this.getColor(ex, ey),
afbf3ca7 270 p: this.board[ex][ey].charAt(1)
ee307044
BA
271 })
272 );
273 }
274
275 return mv;
276 }
277
bfed878d
BA
278 canIplay(side, [x, y]) {
279 return (
280 (this.subTurn == 1 && this.turn == side && this.getColor(x, y) == side) ||
281 (this.subTurn == 2 && x == this.sentryPos.x && y == this.sentryPos.y)
282 );
283 }
284
3a2a7b5f 285 getPotentialMovesFrom([x, y]) {
bfed878d 286 // At subTurn == 2, jailers aren't effective (Jeff K)
3a2a7b5f
BA
287 if (this.subTurn == 1) {
288 const jsq = this.isImmobilized([x, y]);
289 if (!!jsq) {
290 let moves = [];
291 // Special pass move if king:
292 if (this.getPiece(x, y) == V.KING) {
293 moves.push(
294 new Move({
295 appear: [],
296 vanish: [],
297 start: { x: x, y: y },
298 end: { x: jsq[0], y: jsq[1] }
299 })
300 );
301 }
302 return moves;
303 }
304 }
bfed878d 305 let moves = [];
6b7b2cf7
BA
306 switch (this.getPiece(x, y)) {
307 case V.JAILER:
bfed878d
BA
308 moves = this.getPotentialJailerMoves([x, y]);
309 break;
6b7b2cf7 310 case V.SENTRY:
bfed878d
BA
311 moves = this.getPotentialSentryMoves([x, y]);
312 break;
13102cab 313 case V.LANCER:
bfed878d
BA
314 moves = this.getPotentialLancerMoves([x, y]);
315 break;
6b7b2cf7 316 default:
bfed878d
BA
317 moves = super.getPotentialMovesFrom([x, y]);
318 break;
6b7b2cf7 319 }
bfed878d
BA
320 const L = this.sentryPush.length;
321 if (!!this.sentryPush[L-1]) {
322 // Delete moves walking back on sentry push path
323 moves = moves.filter(m => {
324 if (
325 m.vanish[0].p != V.PAWN &&
326 this.sentryPush[L-1].some(sq => sq.x == m.end.x && sq.y == m.end.y)
327 ) {
328 return false;
329 }
330 return true;
331 });
b0a0468a
BA
332 } else if (this.subTurn == 2) {
333 // Put back the sentinel on board:
334 const color = this.turn;
bfed878d 335 moves.forEach(m => {
b0a0468a 336 m.appear.push({x: x, y: y, p: V.SENTRY, c: color});
bfed878d
BA
337 });
338 }
339 return moves;
6b7b2cf7
BA
340 }
341
ee307044 342 getPotentialPawnMoves([x, y]) {
bfed878d 343 const color = this.getColor(x, y);
ee307044
BA
344 let moves = [];
345 const [sizeX, sizeY] = [V.size.x, V.size.y];
b0a0468a
BA
346 let shiftX = color == "w" ? -1 : 1;
347 if (this.subTurn == 2) shiftX *= -1;
ee307044
BA
348 const startRank = color == "w" ? sizeX - 2 : 1;
349 const lastRank = color == "w" ? 0 : sizeX - 1;
350
b0a0468a
BA
351 // Pawns might be pushed on 1st rank and attempt to move again:
352 if (!V.OnBoard(x + shiftX, y)) return [];
353
ee307044 354 const finalPieces =
afbf3ca7
BA
355 // No promotions after pushes!
356 x + shiftX == lastRank && this.subTurn == 1
ee307044 357 ?
bfed878d
BA
358 Object.keys(V.LANCER_DIRS).concat(
359 [V.ROOK, V.KNIGHT, V.BISHOP, V.QUEEN, V.SENTRY, V.JAILER])
ee307044
BA
360 : [V.PAWN];
361 if (this.board[x + shiftX][y] == V.EMPTY) {
362 // One square forward
363 for (let piece of finalPieces) {
364 moves.push(
365 this.getBasicMove([x, y], [x + shiftX, y], {
366 c: color,
367 p: piece
368 })
369 );
370 }
371 if (
372 x == startRank &&
373 this.board[x + 2 * shiftX][y] == V.EMPTY
374 ) {
375 // Two squares jump
376 moves.push(this.getBasicMove([x, y], [x + 2 * shiftX, y]));
377 }
378 }
379 // Captures
380 for (let shiftY of [-1, 1]) {
381 if (
382 y + shiftY >= 0 &&
383 y + shiftY < sizeY &&
384 this.board[x + shiftX][y + shiftY] != V.EMPTY &&
385 this.canTake([x, y], [x + shiftX, y + shiftY])
386 ) {
387 for (let piece of finalPieces) {
388 moves.push(
389 this.getBasicMove([x, y], [x + shiftX, y + shiftY], {
390 c: color,
391 p: piece
392 })
393 );
6b7b2cf7 394 }
ee307044
BA
395 }
396 }
397
bfed878d 398 // En passant:
ee307044 399 const Lep = this.epSquares.length;
3a2a7b5f 400 const epSquare = this.epSquares[Lep - 1];
ee307044
BA
401 if (
402 !!epSquare &&
403 epSquare.x == x + shiftX &&
404 Math.abs(epSquare.y - y) == 1
405 ) {
406 let enpassantMove = this.getBasicMove([x, y], [epSquare.x, epSquare.y]);
407 enpassantMove.vanish.push({
408 x: x,
409 y: epSquare.y,
410 p: "p",
411 c: this.getColor(x, epSquare.y)
6b7b2cf7 412 });
ee307044 413 moves.push(enpassantMove);
6b7b2cf7 414 }
6b7b2cf7 415
ee307044 416 return moves;
9842aca2
BA
417 }
418
3a2a7b5f 419 // Obtain all lancer moves in "step" direction
afbf3ca7 420 getPotentialLancerMoves_aux([x, y], step, tr) {
9842aca2
BA
421 let moves = [];
422 // Add all moves to vacant squares until opponent is met:
b0a0468a
BA
423 const color = this.getColor(x, y);
424 const oppCol =
425 this.subTurn == 1
426 ? V.GetOppCol(color)
427 // at subTurn == 2, consider own pieces as opponent
428 : color;
9842aca2
BA
429 let sq = [x + step[0], y + step[1]];
430 while (V.OnBoard(sq[0], sq[1]) && this.getColor(sq[0], sq[1]) != oppCol) {
431 if (this.board[sq[0]][sq[1]] == V.EMPTY)
afbf3ca7 432 moves.push(this.getBasicMove([x, y], sq, tr));
9842aca2
BA
433 sq[0] += step[0];
434 sq[1] += step[1];
435 }
436 if (V.OnBoard(sq[0], sq[1]))
437 // Add capturing move
afbf3ca7 438 moves.push(this.getBasicMove([x, y], sq, tr));
9842aca2 439 return moves;
6b7b2cf7
BA
440 }
441
442 getPotentialLancerMoves([x, y]) {
9842aca2
BA
443 let moves = [];
444 // Add all lancer possible orientations, similar to pawn promotions.
445 // Except if just after a push: allow all movements from init square then
ee307044
BA
446 const L = this.sentryPush.length;
447 if (!!this.sentryPush[L-1]) {
9842aca2 448 // Maybe I was pushed
ee307044 449 const pl = this.sentryPush[L-1].length;
9842aca2 450 if (
ee307044
BA
451 this.sentryPush[L-1][pl-1].x == x &&
452 this.sentryPush[L-1][pl-1].y == y
9842aca2
BA
453 ) {
454 // I was pushed: allow all directions (for this move only), but
3a2a7b5f
BA
455 // do not change direction after moving, *except* if I keep the
456 // same orientation in which I was pushed.
afbf3ca7 457 const color = this.getColor(x, y);
b0a0468a 458 const curDir = V.LANCER_DIRS[this.board[x][y].charAt(1)];
9842aca2 459 Object.values(V.LANCER_DIRS).forEach(step => {
afbf3ca7 460 const dirCode = Object.keys(V.LANCER_DIRS).find(k => {
3a2a7b5f
BA
461 return (
462 V.LANCER_DIRS[k][0] == step[0] &&
463 V.LANCER_DIRS[k][1] == step[1]
464 );
afbf3ca7 465 });
3a2a7b5f
BA
466 const dirMoves =
467 this.getPotentialLancerMoves_aux(
468 [x, y],
469 step,
470 { p: dirCode, c: color }
471 );
472 if (curDir[0] == step[0] && curDir[1] == step[1]) {
473 // Keeping same orientation: can choose after
474 let chooseMoves = [];
475 dirMoves.forEach(m => {
476 Object.keys(V.LANCER_DIRS).forEach(k => {
477 let mk = JSON.parse(JSON.stringify(m));
478 mk.appear[0].p = k;
479 moves.push(mk);
480 });
481 });
482 Array.prototype.push.apply(moves, chooseMoves);
483 } else Array.prototype.push.apply(moves, dirMoves);
9842aca2
BA
484 });
485 return moves;
486 }
487 }
488 // I wasn't pushed: standard lancer move
489 const dirCode = this.board[x][y][1];
490 const monodirMoves =
491 this.getPotentialLancerMoves_aux([x, y], V.LANCER_DIRS[dirCode]);
bfed878d
BA
492 // Add all possible orientations aftermove except if I'm being pushed
493 if (this.subTurn == 1) {
494 monodirMoves.forEach(m => {
495 Object.keys(V.LANCER_DIRS).forEach(k => {
496 let mk = JSON.parse(JSON.stringify(m));
497 mk.appear[0].p = k;
498 moves.push(mk);
499 });
9842aca2 500 });
bfed878d 501 return moves;
3a2a7b5f
BA
502 } else {
503 // I'm pushed: add potential nudges
504 let potentialNudges = [];
505 for (let step of V.steps[V.ROOK].concat(V.steps[V.BISHOP])) {
506 if (
507 V.OnBoard(x + step[0], y + step[1]) &&
508 this.board[x + step[0]][y + step[1]] == V.EMPTY
509 ) {
510 potentialNudges.push(
511 this.getBasicMove(
512 [x, y],
513 [x + step[0], y + step[1]]
514 )
515 );
516 }
517 }
518 return monodirMoves.concat(potentialNudges);
519 }
6b7b2cf7
BA
520 }
521
522 getPotentialSentryMoves([x, y]) {
523 // The sentry moves a priori like a bishop:
524 let moves = super.getPotentialBishopMoves([x, y]);
ee307044
BA
525 // ...but captures are replaced by special move, if and only if
526 // "captured" piece can move now, considered as the capturer unit.
afbf3ca7
BA
527 // --> except is subTurn == 2, in this case I don't push anything.
528 if (this.subTurn == 2) return moves.filter(m => m.vanish.length == 1);
9842aca2
BA
529 moves.forEach(m => {
530 if (m.vanish.length == 2) {
531 // Temporarily cancel the sentry capture:
532 m.appear.pop();
533 m.vanish.pop();
534 }
535 });
bfed878d 536 const color = this.getColor(x, y);
ee307044 537 const fMoves = moves.filter(m => {
b0a0468a 538 // Can the pushed unit make any move? ...resulting in a non-self-check?
bfed878d
BA
539 if (m.appear.length == 0) {
540 let res = false;
541 this.play(m);
b0a0468a 542 let moves2 = this.getPotentialMovesFrom([m.end.x, m.end.y]);
bfed878d
BA
543 for (let m2 of moves2) {
544 this.play(m2);
545 res = !this.underCheck(color);
546 this.undo(m2);
547 if (res) break;
548 }
549 this.undo(m);
550 return res;
551 }
552 return true;
ee307044 553 });
ee307044 554 return fMoves;
6b7b2cf7
BA
555 }
556
557 getPotentialJailerMoves([x, y]) {
ee307044
BA
558 return super.getPotentialRookMoves([x, y]).filter(m => {
559 // Remove jailer captures
560 return m.vanish[0].p != V.JAILER || m.vanish.length == 1;
561 });
6b7b2cf7
BA
562 }
563
b0a0468a
BA
564 getPotentialKingMoves(sq) {
565 const moves = this.getSlideNJumpMoves(
566 sq,
567 V.steps[V.ROOK].concat(V.steps[V.BISHOP]),
568 "oneStep"
569 );
570 return (
571 this.subTurn == 1
572 ? moves.concat(this.getCastleMoves(sq))
573 : moves
574 );
575 }
576
90e814b6
BA
577 // Adapted: castle with jailer possible
578 getCastleMoves([x, y]) {
579 const c = this.getColor(x, y);
580 const firstRank = (c == "w" ? V.size.x - 1 : 0);
581 if (x != firstRank || y != this.INIT_COL_KING[c])
582 return [];
583
584 const oppCol = V.GetOppCol(c);
585 let moves = [];
586 let i = 0;
587 // King, then rook or jailer:
588 const finalSquares = [
589 [2, 3],
590 [V.size.y - 2, V.size.y - 3]
591 ];
592 castlingCheck: for (
593 let castleSide = 0;
594 castleSide < 2;
595 castleSide++
596 ) {
3a2a7b5f 597 if (this.castleFlags[c][castleSide] >= 8) continue;
90e814b6 598 // Rook (or jailer) and king are on initial position
90e814b6
BA
599 const finDist = finalSquares[castleSide][0] - y;
600 let step = finDist / Math.max(1, Math.abs(finDist));
601 i = y;
602 do {
603 if (
604 this.isAttacked([x, i], [oppCol]) ||
605 (this.board[x][i] != V.EMPTY &&
606 (this.getColor(x, i) != c ||
3a2a7b5f 607 ![V.KING, V.ROOK, V.JAILER].includes(this.getPiece(x, i))))
90e814b6
BA
608 ) {
609 continue castlingCheck;
610 }
611 i += step;
612 } while (i != finalSquares[castleSide][0]);
90e814b6 613 step = castleSide == 0 ? -1 : 1;
3a2a7b5f 614 const rookOrJailerPos = this.castleFlags[c][castleSide];
90e814b6
BA
615 for (i = y + step; i != rookOrJailerPos; i += step)
616 if (this.board[x][i] != V.EMPTY) continue castlingCheck;
617
618 // Nothing on final squares, except maybe king and castling rook or jailer?
619 for (i = 0; i < 2; i++) {
620 if (
621 this.board[x][finalSquares[castleSide][i]] != V.EMPTY &&
622 this.getPiece(x, finalSquares[castleSide][i]) != V.KING &&
623 finalSquares[castleSide][i] != rookOrJailerPos
624 ) {
625 continue castlingCheck;
626 }
627 }
628
629 // If this code is reached, castle is valid
630 const castlingPiece = this.getPiece(firstRank, rookOrJailerPos);
631 moves.push(
632 new Move({
633 appear: [
634 new PiPo({ x: x, y: finalSquares[castleSide][0], p: V.KING, c: c }),
635 new PiPo({ x: x, y: finalSquares[castleSide][1], p: castlingPiece, c: c })
636 ],
637 vanish: [
638 new PiPo({ x: x, y: y, p: V.KING, c: c }),
639 new PiPo({ x: x, y: rookOrJailerPos, p: castlingPiece, c: c })
640 ],
641 end:
642 Math.abs(y - rookOrJailerPos) <= 2
643 ? { x: x, y: rookOrJailerPos }
644 : { x: x, y: y + 2 * (castleSide == 0 ? -1 : 1) }
645 })
646 );
647 }
648
649 return moves;
2a8a94c9
BA
650 }
651
3a2a7b5f
BA
652 atLeastOneMove() {
653 // If in second-half of a move, we already know that a move is possible
654 if (this.subTurn == 2) return true;
655 return super.atLeastOneMove();
656 }
657
ee307044 658 filterValid(moves) {
b0a0468a
BA
659 if (moves.length == 0) return [];
660 const basicFilter = (m, c) => {
661 this.play(m);
662 const res = !this.underCheck(c);
663 this.undo(m);
664 return res;
665 };
bfed878d
BA
666 // Disable check tests for sentry pushes,
667 // because in this case the move isn't finished
668 let movesWithoutSentryPushes = [];
669 let movesWithSentryPushes = [];
670 moves.forEach(m => {
b0a0468a
BA
671 // Second condition below for special king "pass" moves
672 if (m.appear.length > 0 || m.vanish.length == 0)
673 movesWithoutSentryPushes.push(m);
bfed878d
BA
674 else movesWithSentryPushes.push(m);
675 });
b0a0468a
BA
676 const color = this.turn;
677 const oppCol = V.GetOppCol(color);
678 const filteredMoves =
679 movesWithoutSentryPushes.filter(m => basicFilter(m, color));
680 // If at least one full move made, everything is allowed.
681 // Else: forbid checks and captures.
682 return (
683 this.movesCount >= 2
684 ? filteredMoves
685 : filteredMoves.filter(m => {
686 return (
687 m.vanish.length <= 1 ||
688 m.appear.length != 1 ||
689 basicFilter(m, oppCol)
690 );
691 })
692 ).concat(movesWithSentryPushes);
bfed878d
BA
693 }
694
695 getAllValidMoves() {
696 if (this.subTurn == 1) return super.getAllValidMoves();
697 // Sentry push:
afbf3ca7 698 const sentrySq = [this.sentryPos.x, this.sentryPos.y];
bfed878d 699 return this.filterValid(this.getPotentialMovesFrom(sentrySq));
ee307044
BA
700 }
701
3a2a7b5f 702 prePlay(move) {
b0a0468a 703 if (move.appear.length == 0 && move.vanish.length == 1)
afbf3ca7 704 // The sentry is about to push a piece: subTurn goes from 1 to 2
93e8684c 705 this.sentryPos = { x: move.end.x, y: move.end.y };
b0a0468a 706 if (this.subTurn == 2 && move.vanish[0].p != V.PAWN) {
9842aca2
BA
707 // A piece is pushed: forbid array of squares between start and end
708 // of move, included (except if it's a pawn)
709 let squares = [];
3a2a7b5f
BA
710 if ([V.KNIGHT,V.KING].includes(move.vanish[0].p))
711 // short-range pieces: just forbid initial square
712 squares.push({ x: move.start.x, y: move.start.y });
713 else {
714 const deltaX = move.end.x - move.start.x;
715 const deltaY = move.end.y - move.start.y;
716 const step = [
717 deltaX / Math.abs(deltaX) || 0,
718 deltaY / Math.abs(deltaY) || 0
719 ];
720 for (
721 let sq = {x: move.start.x, y: move.start.y};
b0a0468a 722 sq.x != move.end.x || sq.y != move.end.y;
3a2a7b5f
BA
723 sq.x += step[0], sq.y += step[1]
724 ) {
725 squares.push({ x: sq.x, y: sq.y });
9842aca2 726 }
90e814b6 727 }
3a2a7b5f
BA
728 // Add end square as well, to know if I was pushed (useful for lancers)
729 squares.push({ x: move.end.x, y: move.end.y });
9842aca2
BA
730 this.sentryPush.push(squares);
731 } else this.sentryPush.push(null);
2a8a94c9
BA
732 }
733
90e814b6 734 play(move) {
b0a0468a
BA
735 if (!this.states) this.states = [];
736 const stateFen = this.getFen();
737 this.states.push(stateFen);
3a2a7b5f
BA
738
739 this.prePlay(move);
90e814b6
BA
740 move.flags = JSON.stringify(this.aggregateFlags());
741 this.epSquares.push(this.getEpSquare(move));
742 V.PlayOnBoard(this.board, move);
afbf3ca7
BA
743 // Is it a sentry push? (useful for undo)
744 move.sentryPush = (this.subTurn == 2);
9842aca2 745 if (this.subTurn == 1) this.movesCount++;
afbf3ca7 746 if (move.appear.length == 0 && move.vanish.length == 1) this.subTurn = 2;
93e8684c 747 else {
ee307044 748 // Turn changes only if not a sentry "pre-push"
9842aca2 749 this.turn = V.GetOppCol(this.turn);
ee307044 750 this.subTurn = 1;
ee307044 751 }
3a2a7b5f
BA
752 this.postPlay(move);
753 }
754
755 postPlay(move) {
b0a0468a
BA
756 if (move.vanish.length == 0 || this.subTurn == 2)
757 // Special pass move of the king, or sentry pre-push: nothing to update
3a2a7b5f 758 return;
b0a0468a
BA
759 const c = move.vanish[0].c;
760 const piece = move.vanish[0].p;
761 const firstRank = c == "w" ? V.size.x - 1 : 0;
762
763 if (piece == V.KING) {
764 this.kingPos[c][0] = move.appear[0].x;
765 this.kingPos[c][1] = move.appear[0].y;
766 this.castleFlags[c] = [V.size.y, V.size.y];
767 return;
768 }
769 // Update castling flags if rooks are moved
770 const oppCol = V.GetOppCol(c);
771 const oppFirstRank = V.size.x - 1 - firstRank;
772 if (
773 move.start.x == firstRank && //our rook moves?
774 this.castleFlags[c].includes(move.start.y)
775 ) {
776 const flagIdx = (move.start.y == this.castleFlags[c][0] ? 0 : 1);
777 this.castleFlags[c][flagIdx] = V.size.y;
778 } else if (
779 move.end.x == oppFirstRank && //we took opponent rook?
780 this.castleFlags[oppCol].includes(move.end.y)
781 ) {
782 const flagIdx = (move.end.y == this.castleFlags[oppCol][0] ? 0 : 1);
783 this.castleFlags[oppCol][flagIdx] = V.size.y;
784 }
90e814b6 785 }
2a8a94c9 786
90e814b6
BA
787 undo(move) {
788 this.epSquares.pop();
789 this.disaggregateFlags(JSON.parse(move.flags));
790 V.UndoOnBoard(this.board, move);
ee307044
BA
791 // Decrement movesCount except if the move is a sentry push
792 if (!move.sentryPush) this.movesCount--;
3a2a7b5f
BA
793 if (this.subTurn == 2) this.subTurn = 1;
794 else {
9842aca2 795 this.turn = V.GetOppCol(this.turn);
3a2a7b5f
BA
796 if (move.sentryPush) this.subTurn = 2;
797 }
798 this.postUndo(move);
799
b0a0468a
BA
800 const stateFen = this.getFen();
801 if (stateFen != this.states[this.states.length-1]) debugger;
802 this.states.pop();
3a2a7b5f
BA
803 }
804
805 postUndo(move) {
806 super.postUndo(move);
807 this.sentryPush.pop();
90e814b6 808 }
2a8a94c9 809
afbf3ca7
BA
810 isAttacked(sq, colors) {
811 return (
812 super.isAttacked(sq, colors) ||
813 this.isAttackedByLancer(sq, colors) ||
814 this.isAttackedBySentry(sq, colors)
815 );
816 }
817
b0a0468a
BA
818 isAttackedBySlideNJump([x, y], colors, piece, steps, oneStep) {
819 for (let step of steps) {
820 let rx = x + step[0],
821 ry = y + step[1];
822 while (V.OnBoard(rx, ry) && this.board[rx][ry] == V.EMPTY && !oneStep) {
823 rx += step[0];
824 ry += step[1];
825 }
826 if (
827 V.OnBoard(rx, ry) &&
828 this.getPiece(rx, ry) === piece &&
829 colors.includes(this.getColor(rx, ry)) &&
830 !this.isImmobilized([rx, ry])
831 ) {
832 return true;
833 }
834 }
835 return false;
836 }
837
838 isAttackedByPawn([x, y], colors) {
839 for (let c of colors) {
840 const pawnShift = c == "w" ? 1 : -1;
841 if (x + pawnShift >= 0 && x + pawnShift < V.size.x) {
842 for (let i of [-1, 1]) {
843 if (
844 y + i >= 0 &&
845 y + i < V.size.y &&
846 this.getPiece(x + pawnShift, y + i) == V.PAWN &&
847 this.getColor(x + pawnShift, y + i) == c &&
848 !this.isImmobilized([x + pawnShift, y + i])
849 ) {
850 return true;
851 }
852 }
853 }
854 }
855 return false;
856 }
857
afbf3ca7
BA
858 isAttackedByLancer([x, y], colors) {
859 for (let step of V.steps[V.ROOK].concat(V.steps[V.BISHOP])) {
860 // If in this direction there are only enemy pieces and empty squares,
861 // and we meet a lancer: can he reach us?
862 // NOTE: do not stop at first lancer, there might be several!
863 let coord = { x: x + step[0], y: y + step[1] };
864 let lancerPos = [];
865 while (
866 V.OnBoard(coord.x, coord.y) &&
867 (
868 this.board[coord.x][coord.y] == V.EMPTY ||
869 colors.includes(this.getColor(coord.x, coord.y))
870 )
871 ) {
b0a0468a
BA
872 if (
873 this.getPiece(coord.x, coord.y) == V.LANCER &&
874 !this.isImmobilized([coord.x, coord.y])
875 ) {
3a2a7b5f 876 lancerPos.push({x: coord.x, y: coord.y});
b0a0468a 877 }
3a2a7b5f
BA
878 coord.x += step[0];
879 coord.y += step[1];
afbf3ca7
BA
880 }
881 for (let xy of lancerPos) {
882 const dir = V.LANCER_DIRS[this.board[xy.x][xy.y].charAt(1)];
883 if (dir[0] == -step[0] && dir[1] == -step[1]) return true;
884 }
885 }
886 return false;
887 }
888
889 // Helper to check sentries attacks:
890 selfAttack([x1, y1], [x2, y2]) {
891 const color = this.getColor(x1, y1);
892 const sliderAttack = (allowedSteps, lancer) => {
893 const deltaX = x2 - x1;
894 const deltaY = y2 - y1;
895 const step = [ deltaX / Math.abs(deltaX), deltaY / Math.abs(deltaY) ];
3a2a7b5f 896 if (allowedSteps.every(st => st[0] != step[0] || st[1] != step[1]))
afbf3ca7 897 return false;
3a2a7b5f 898 let sq = [ x1 + step[0], y1 + step[1] ];
afbf3ca7
BA
899 while (sq[0] != x2 && sq[1] != y2) {
900 if (
3a2a7b5f 901 // NOTE: no need to check OnBoard in this special case
afbf3ca7
BA
902 (!lancer && this.board[sq[0]][sq[1]] != V.EMPTY) ||
903 (!!lancer && this.getColor(sq[0], sq[1]) != color)
904 ) {
905 return false;
906 }
3a2a7b5f
BA
907 sq[0] += step[0];
908 sq[1] += step[1];
afbf3ca7
BA
909 }
910 return true;
911 };
912 switch (this.getPiece(x1, y1)) {
913 case V.PAWN: {
914 // Pushed pawns move as enemy pawns
915 const shift = (color == 'w' ? 1 : -1);
916 return (x1 + shift == x2 && Math.abs(y1 - y2) == 1);
917 }
918 case V.KNIGHT: {
919 const deltaX = Math.abs(x1 - x2);
920 const deltaY = Math.abs(y1 - y2);
921 return (
922 deltaX + deltaY == 3 &&
923 [1, 2].includes(deltaX) &&
924 [1, 2].includes(deltaY)
925 );
926 }
927 case V.ROOK:
928 return sliderAttack(V.steps[V.ROOK]);
929 case V.BISHOP:
930 return sliderAttack(V.steps[V.BISHOP]);
931 case V.QUEEN:
932 return sliderAttack(V.steps[V.ROOK].concat(V.steps[V.BISHOP]));
933 case V.LANCER: {
934 // Special case: as long as no enemy units stands in-between, it attacks
935 // (if it points toward the king).
936 const allowedStep = V.LANCER_DIRS[this.board[x1][y1].charAt(1)];
937 return sliderAttack([allowedStep], "lancer");
938 }
939 // No sentries or jailer tests: they cannot self-capture
940 }
941 return false;
942 }
943
944 isAttackedBySentry([x, y], colors) {
945 // Attacked by sentry means it can self-take our king.
946 // Just check diagonals of enemy sentry(ies), and if it reaches
947 // one of our pieces: can I self-take?
948 const color = V.GetOppCol(colors[0]);
949 let candidates = [];
950 for (let i=0; i<V.size.x; i++) {
951 for (let j=0; j<V.size.y; j++) {
952 if (
953 this.getPiece(i,j) == V.SENTRY &&
b0a0468a
BA
954 colors.includes(this.getColor(i,j)) &&
955 !this.isImmobilized([i, j])
afbf3ca7
BA
956 ) {
957 for (let step of V.steps[V.BISHOP]) {
958 let sq = [ i + step[0], j + step[1] ];
959 while (
960 V.OnBoard(sq[0], sq[1]) &&
961 this.board[sq[0]][sq[1]] == V.EMPTY
962 ) {
963 sq[0] += step[0];
964 sq[1] += step[1];
965 }
966 if (
967 V.OnBoard(sq[0], sq[1]) &&
968 this.getColor(sq[0], sq[1]) == color
969 ) {
3a2a7b5f 970 candidates.push([ sq[0], sq[1] ]);
afbf3ca7
BA
971 }
972 }
973 }
974 }
975 }
976 for (let c of candidates)
977 if (this.selfAttack(c, [x, y])) return true;
978 return false;
979 }
980
981 // Jailer doesn't capture or give check
982
2a8a94c9
BA
983 static get VALUES() {
984 return Object.assign(
28b32b4f 985 { l: 4.8, s: 2.8, j: 3.8 }, //Jeff K. estimations
2a8a94c9
BA
986 ChessRules.VALUES
987 );
988 }
6b7b2cf7 989
afbf3ca7
BA
990 getComputerMove() {
991 const maxeval = V.INFINITY;
992 const color = this.turn;
993 let moves1 = this.getAllValidMoves();
994
995 if (moves1.length == 0)
996 // TODO: this situation should not happen
997 return null;
998
3a2a7b5f 999 const setEval = (move, next) => {
afbf3ca7 1000 const score = this.getCurrentScore();
3a2a7b5f 1001 const curEval = move.eval;
afbf3ca7
BA
1002 if (score != "*") {
1003 move.eval =
1004 score == "1/2"
1005 ? 0
1006 : (score == "1-0" ? 1 : -1) * maxeval;
3a2a7b5f
BA
1007 } else move.eval = this.evalPosition();
1008 if (
1009 // "next" is defined after sentry pushes
1010 !!next && (
1011 !curEval ||
1012 color == 'w' && move.eval > curEval ||
1013 color == 'b' && move.eval < curEval
1014 )
1015 ) {
1016 move.second = next;
1017 }
afbf3ca7
BA
1018 };
1019
1020 // Just search_depth == 1 (because of sentries. TODO: can do better...)
1021 moves1.forEach(m1 => {
1022 this.play(m1);
1023 if (this.subTurn == 1) setEval(m1);
1024 else {
1025 // Need to play every pushes and count:
1026 const moves2 = this.getAllValidMoves();
1027 moves2.forEach(m2 => {
1028 this.play(m2);
3a2a7b5f 1029 setEval(m1, m2);
afbf3ca7
BA
1030 this.undo(m2);
1031 });
1032 }
1033 this.undo(m1);
1034 });
1035
1036 moves1.sort((a, b) => {
1037 return (color == "w" ? 1 : -1) * (b.eval - a.eval);
1038 });
1039 let candidates = [0];
1040 for (let j = 1; j < moves1.length && moves1[j].eval == moves1[0].eval; j++)
1041 candidates.push(j);
3a2a7b5f
BA
1042 const choice = moves1[candidates[randInt(candidates.length)]];
1043 return (!choice.second ? choice : [choice, choice.second]);
afbf3ca7
BA
1044 }
1045
6b7b2cf7
BA
1046 getNotation(move) {
1047 // Special case "king takes jailer" is a pass move
1048 if (move.appear.length == 0 && move.vanish.length == 0) return "pass";
b0a0468a
BA
1049 if (this.subTurn == 2) {
1050 // Do not consider appear[1] (sentry) for sentry pushes
1051 const simpleMove = {
1052 appear: [move.appear[0]],
1053 vanish: move.vanish,
1054 start: move.start,
1055 end: move.end
1056 };
1057 return super.getNotation(simpleMove);
1058 }
6b7b2cf7
BA
1059 return super.getNotation(move);
1060 }
2a8a94c9 1061};