69549525408d51fa349cac05fb2254db758c216b
1 // (Orthodox) Chess rules are defined in ChessRules class.
2 // Variants generally inherit from it, and modify some parts.
4 import { ArrayFun
} from "@/utils/array";
5 import { randInt
, shuffle
} from "@/utils/alea";
7 // class "PiPo": Piece + Position
8 export const PiPo
= class PiPo
{
9 // o: {piece[p], color[c], posX[x], posY[y]}
18 export const Move
= class Move
{
19 // o: {appear, vanish, [start,] [end,]}
20 // appear,vanish = arrays of PiPo
21 // start,end = coordinates to apply to trigger move visually (think castle)
23 this.appear
= o
.appear
;
24 this.vanish
= o
.vanish
;
25 this.start
= o
.start
? o
.start : { x: o
.vanish
[0].x
, y: o
.vanish
[0].y
};
26 this.end
= o
.end
? o
.end : { x: o
.appear
[0].x
, y: o
.appear
[0].y
};
30 // NOTE: x coords = top to bottom; y = left to right
31 // (from white player perspective)
32 export const ChessRules
= class ChessRules
{
37 // Some variants don't have flags:
38 static get HasFlags() {
43 static get HasCastle() {
47 // Pawns specifications
48 static get PawnSpecs() {
50 directions: { 'w': -1, 'b': 1 },
51 initShift: { w: 1, b: 1 },
54 promotions: [V
.ROOK
, V
.KNIGHT
, V
.BISHOP
, V
.QUEEN
],
56 captureBackward: false,
61 // En-passant captures need a stack of squares:
62 static get HasEnpassant() {
66 // Some variants cannot have analyse mode
67 static get CanAnalyze() {
70 // Patch: issues with javascript OOP, objects can't access static fields.
75 // Some variants show incomplete information,
76 // and thus show only a partial moves list or no list at all.
77 static get ShowMoves() {
84 // Sometimes moves must remain hidden until game ends
85 static get SomeHiddenMoves() {
88 get someHiddenMoves() {
89 return V
.SomeHiddenMoves
;
92 // Generally true, unless the variant includes random effects
93 static get CorrConfirm() {
97 // Used for Monochrome variant (TODO: harmonize: !canFlip ==> showFirstTurn)
102 // Some variants always show the same orientation
103 static get CanFlip() {
110 // For (generally old) variants without checkered board
111 static get Monochrome() {
115 // Some games are drawn unusually (bottom right corner is black)
116 static get DarkBottomRight() {
120 // Some variants require lines drawing
124 // Draw all inter-squares lines
125 for (let i
= 0; i
<= V
.size
.x
; i
++)
126 lines
.push([[i
, 0], [i
, V
.size
.y
]]);
127 for (let j
= 0; j
<= V
.size
.y
; j
++)
128 lines
.push([[0, j
], [V
.size
.x
, j
]]);
134 // In some variants, the player who repeat a position loses
135 static get LoseOnRepetition() {
139 // Some variants use click infos:
144 // Some variants may need to highlight squares on hover (Hamilton, Weiqi...)
149 static get IMAGE_EXTENSION() {
150 // All pieces should be in the SVG format
154 // Turn "wb" into "B" (for FEN)
155 static board2fen(b
) {
156 return b
[0] == "w" ? b
[1].toUpperCase() : b
[1];
159 // Turn "p" into "bp" (for board)
160 static fen2board(f
) {
161 return f
.charCodeAt() <= 90 ? "w" + f
.toLowerCase() : "b" + f
;
164 // Check if FEN describes a board situation correctly
165 static IsGoodFen(fen
) {
166 const fenParsed
= V
.ParseFen(fen
);
168 if (!V
.IsGoodPosition(fenParsed
.position
)) return false;
170 if (!fenParsed
.turn
|| !V
.IsGoodTurn(fenParsed
.turn
)) return false;
171 // 3) Check moves count
172 if (!fenParsed
.movesCount
|| !(parseInt(fenParsed
.movesCount
, 10) >= 0))
175 if (V
.HasFlags
&& (!fenParsed
.flags
|| !V
.IsGoodFlags(fenParsed
.flags
)))
177 // 5) Check enpassant
180 (!fenParsed
.enpassant
|| !V
.IsGoodEnpassant(fenParsed
.enpassant
))
187 // Is position part of the FEN a priori correct?
188 static IsGoodPosition(position
) {
189 if (position
.length
== 0) return false;
190 const rows
= position
.split("/");
191 if (rows
.length
!= V
.size
.x
) return false;
192 let kings
= { "k": 0, "K": 0 };
193 for (let row
of rows
) {
195 for (let i
= 0; i
< row
.length
; i
++) {
196 if (['K','k'].includes(row
[i
])) kings
[row
[i
]]++;
197 if (V
.PIECES
.includes(row
[i
].toLowerCase())) sumElts
++;
199 const num
= parseInt(row
[i
], 10);
200 if (isNaN(num
) || num
<= 0) return false;
204 if (sumElts
!= V
.size
.y
) return false;
206 // Both kings should be on board. Exactly one per color.
207 if (Object
.values(kings
).some(v
=> v
!= 1)) return false;
212 static IsGoodTurn(turn
) {
213 return ["w", "b"].includes(turn
);
217 static IsGoodFlags(flags
) {
218 // NOTE: a little too permissive to work with more variants
219 return !!flags
.match(/^[a-z]{4,4}$/);
222 // NOTE: not with regexp to adapt to different board sizes. (TODO?)
223 static IsGoodEnpassant(enpassant
) {
224 if (enpassant
!= "-") {
225 const ep
= V
.SquareToCoords(enpassant
);
226 if (isNaN(ep
.x
) || !V
.OnBoard(ep
)) return false;
231 // 3 --> d (column number to letter)
232 static CoordToColumn(colnum
) {
233 return String
.fromCharCode(97 + colnum
);
236 // d --> 3 (column letter to number)
237 static ColumnToCoord(column
) {
238 return column
.charCodeAt(0) - 97;
242 static SquareToCoords(sq
) {
244 // NOTE: column is always one char => max 26 columns
245 // row is counted from black side => subtraction
246 x: V
.size
.x
- parseInt(sq
.substr(1), 10),
247 y: sq
[0].charCodeAt() - 97
252 static CoordsToSquare(coords
) {
253 return V
.CoordToColumn(coords
.y
) + (V
.size
.x
- coords
.x
);
256 // Path to pieces (standard ones in pieces/ folder)
261 // Path to promotion pieces (usually the same)
263 return this.getPpath(m
.appear
[0].c
+ m
.appear
[0].p
);
266 // Aggregates flags into one object
268 return this.castleFlags
;
272 disaggregateFlags(flags
) {
273 this.castleFlags
= flags
;
276 // En-passant square, if any
277 getEpSquare(moveOrSquare
) {
278 if (!moveOrSquare
) return undefined; //TODO: necessary line?!
279 if (typeof moveOrSquare
=== "string") {
280 const square
= moveOrSquare
;
281 if (square
== "-") return undefined;
282 return V
.SquareToCoords(square
);
284 // Argument is a move:
285 const move = moveOrSquare
;
286 const s
= move.start
,
290 Math
.abs(s
.x
- e
.x
) == 2 &&
291 // Next conditions for variants like Atomic or Rifle, Recycle...
292 (move.appear
.length
> 0 && move.appear
[0].p
== V
.PAWN
) &&
293 (move.vanish
.length
> 0 && move.vanish
[0].p
== V
.PAWN
)
300 return undefined; //default
303 // Can thing on square1 take thing on square2
304 canTake([x1
, y1
], [x2
, y2
]) {
305 return this.getColor(x1
, y1
) !== this.getColor(x2
, y2
);
308 // Is (x,y) on the chessboard?
309 static OnBoard(x
, y
) {
310 return x
>= 0 && x
< V
.size
.x
&& y
>= 0 && y
< V
.size
.y
;
313 // Used in interface: 'side' arg == player color
314 canIplay(side
, [x
, y
]) {
315 return this.turn
== side
&& this.getColor(x
, y
) == side
;
318 // On which squares is color under check ? (for interface)
320 const color
= this.turn
;
322 this.underCheck(color
)
323 // kingPos must be duplicated, because it may change:
324 ? [JSON
.parse(JSON
.stringify(this.kingPos
[color
]))]
332 // Setup the initial random (asymmetric) position
333 static GenRandInitFen(randomness
) {
336 return "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w 0 ahah -";
338 let pieces
= { w: new Array(8), b: new Array(8) };
340 // Shuffle pieces on first (and last rank if randomness == 2)
341 for (let c
of ["w", "b"]) {
342 if (c
== 'b' && randomness
== 1) {
343 pieces
['b'] = pieces
['w'];
348 let positions
= ArrayFun
.range(8);
350 // Get random squares for bishops
351 let randIndex
= 2 * randInt(4);
352 const bishop1Pos
= positions
[randIndex
];
353 // The second bishop must be on a square of different color
354 let randIndex_tmp
= 2 * randInt(4) + 1;
355 const bishop2Pos
= positions
[randIndex_tmp
];
356 // Remove chosen squares
357 positions
.splice(Math
.max(randIndex
, randIndex_tmp
), 1);
358 positions
.splice(Math
.min(randIndex
, randIndex_tmp
), 1);
360 // Get random squares for knights
361 randIndex
= randInt(6);
362 const knight1Pos
= positions
[randIndex
];
363 positions
.splice(randIndex
, 1);
364 randIndex
= randInt(5);
365 const knight2Pos
= positions
[randIndex
];
366 positions
.splice(randIndex
, 1);
368 // Get random square for queen
369 randIndex
= randInt(4);
370 const queenPos
= positions
[randIndex
];
371 positions
.splice(randIndex
, 1);
373 // Rooks and king positions are now fixed,
374 // because of the ordering rook-king-rook
375 const rook1Pos
= positions
[0];
376 const kingPos
= positions
[1];
377 const rook2Pos
= positions
[2];
379 // Finally put the shuffled pieces in the board array
380 pieces
[c
][rook1Pos
] = "r";
381 pieces
[c
][knight1Pos
] = "n";
382 pieces
[c
][bishop1Pos
] = "b";
383 pieces
[c
][queenPos
] = "q";
384 pieces
[c
][kingPos
] = "k";
385 pieces
[c
][bishop2Pos
] = "b";
386 pieces
[c
][knight2Pos
] = "n";
387 pieces
[c
][rook2Pos
] = "r";
388 flags
+= V
.CoordToColumn(rook1Pos
) + V
.CoordToColumn(rook2Pos
);
390 // Add turn + flags + enpassant
392 pieces
["b"].join("") +
393 "/pppppppp/8/8/8/8/PPPPPPPP/" +
394 pieces
["w"].join("").toUpperCase() +
395 " w 0 " + flags
+ " -"
399 // "Parse" FEN: just return untransformed string data
400 static ParseFen(fen
) {
401 const fenParts
= fen
.split(" ");
403 position: fenParts
[0],
405 movesCount: fenParts
[2]
408 if (V
.HasFlags
) Object
.assign(res
, { flags: fenParts
[nextIdx
++] });
409 if (V
.HasEnpassant
) Object
.assign(res
, { enpassant: fenParts
[nextIdx
] });
413 // Return current fen (game state)
416 this.getBaseFen() + " " +
417 this.getTurnFen() + " " +
419 (V
.HasFlags
? " " + this.getFlagsFen() : "") +
420 (V
.HasEnpassant
? " " + this.getEnpassantFen() : "")
425 // Omit movesCount, only variable allowed to differ
427 this.getBaseFen() + "_" +
429 (V
.HasFlags
? "_" + this.getFlagsFen() : "") +
430 (V
.HasEnpassant
? "_" + this.getEnpassantFen() : "")
434 // Position part of the FEN string
436 const format
= (count
) => {
437 // if more than 9 consecutive free spaces, break the integer,
438 // otherwise FEN parsing will fail.
439 if (count
<= 9) return count
;
440 // Currently only boards of size up to 11 or 12:
441 return "9" + (count
- 9);
444 for (let i
= 0; i
< V
.size
.x
; i
++) {
446 for (let j
= 0; j
< V
.size
.y
; j
++) {
447 if (this.board
[i
][j
] == V
.EMPTY
) emptyCount
++;
449 if (emptyCount
> 0) {
450 // Add empty squares in-between
451 position
+= format(emptyCount
);
454 position
+= V
.board2fen(this.board
[i
][j
]);
457 if (emptyCount
> 0) {
459 position
+= format(emptyCount
);
461 if (i
< V
.size
.x
- 1) position
+= "/"; //separate rows
470 // Flags part of the FEN string
474 for (let c
of ["w", "b"])
475 flags
+= this.castleFlags
[c
].map(V
.CoordToColumn
).join("");
479 // Enpassant part of the FEN string
481 const L
= this.epSquares
.length
;
482 if (!this.epSquares
[L
- 1]) return "-"; //no en-passant
483 return V
.CoordsToSquare(this.epSquares
[L
- 1]);
486 // Turn position fen into double array ["wb","wp","bk",...]
487 static GetBoard(position
) {
488 const rows
= position
.split("/");
489 let board
= ArrayFun
.init(V
.size
.x
, V
.size
.y
, "");
490 for (let i
= 0; i
< rows
.length
; i
++) {
492 for (let indexInRow
= 0; indexInRow
< rows
[i
].length
; indexInRow
++) {
493 const character
= rows
[i
][indexInRow
];
494 const num
= parseInt(character
, 10);
495 // If num is a number, just shift j:
496 if (!isNaN(num
)) j
+= num
;
497 // Else: something at position i,j
498 else board
[i
][j
++] = V
.fen2board(character
);
504 // Extract (relevant) flags from fen
506 // white a-castle, h-castle, black a-castle, h-castle
507 this.castleFlags
= { w: [-1, -1], b: [-1, -1] };
508 for (let i
= 0; i
< 4; i
++) {
509 this.castleFlags
[i
< 2 ? "w" : "b"][i
% 2] =
510 V
.ColumnToCoord(fenflags
.charAt(i
));
517 // Fen string fully describes the game state
520 // In printDiagram() fen isn't supply because only getPpath() is used
521 // TODO: find a better solution!
523 const fenParsed
= V
.ParseFen(fen
);
524 this.board
= V
.GetBoard(fenParsed
.position
);
525 this.turn
= fenParsed
.turn
;
526 this.movesCount
= parseInt(fenParsed
.movesCount
, 10);
527 this.setOtherVariables(fen
);
530 // Scan board for kings positions
532 // Squares of white and black king:
533 this.kingPos
= { w: [-1, -1], b: [-1, -1] };
534 const fenRows
= V
.ParseFen(fen
).position
.split("/");
535 const startRow
= { 'w': V
.size
.x
- 1, 'b': 0 };
536 for (let i
= 0; i
< fenRows
.length
; i
++) {
537 let k
= 0; //column index on board
538 for (let j
= 0; j
< fenRows
[i
].length
; j
++) {
539 switch (fenRows
[i
].charAt(j
)) {
541 this.kingPos
["b"] = [i
, k
];
544 this.kingPos
["w"] = [i
, k
];
547 const num
= parseInt(fenRows
[i
].charAt(j
), 10);
548 if (!isNaN(num
)) k
+= num
- 1;
556 // Some additional variables from FEN (variant dependant)
557 setOtherVariables(fen
) {
558 // Set flags and enpassant:
559 const parsedFen
= V
.ParseFen(fen
);
560 if (V
.HasFlags
) this.setFlags(parsedFen
.flags
);
561 if (V
.HasEnpassant
) {
563 parsedFen
.enpassant
!= "-"
564 ? this.getEpSquare(parsedFen
.enpassant
)
566 this.epSquares
= [epSq
];
568 // Search for kings positions:
572 /////////////////////
576 return { x: 8, y: 8 };
579 // Color of thing on square (i,j). 'undefined' if square is empty
581 return this.board
[i
][j
].charAt(0);
584 // Piece type on square (i,j). 'undefined' if square is empty
586 return this.board
[i
][j
].charAt(1);
589 // Get opponent color
590 static GetOppCol(color
) {
591 return color
== "w" ? "b" : "w";
594 // Pieces codes (for a clearer code)
601 static get KNIGHT() {
604 static get BISHOP() {
615 static get PIECES() {
616 return [V
.PAWN
, V
.ROOK
, V
.KNIGHT
, V
.BISHOP
, V
.QUEEN
, V
.KING
];
624 // Some pieces movements
655 // All possible moves from selected square
656 getPotentialMovesFrom(sq
) {
657 switch (this.getPiece(sq
[0], sq
[1])) {
658 case V
.PAWN: return this.getPotentialPawnMoves(sq
);
659 case V
.ROOK: return this.getPotentialRookMoves(sq
);
660 case V
.KNIGHT: return this.getPotentialKnightMoves(sq
);
661 case V
.BISHOP: return this.getPotentialBishopMoves(sq
);
662 case V
.QUEEN: return this.getPotentialQueenMoves(sq
);
663 case V
.KING: return this.getPotentialKingMoves(sq
);
665 return []; //never reached
668 // Build a regular move from its initial and destination squares.
669 // tr: transformation
670 getBasicMove([sx
, sy
], [ex
, ey
], tr
) {
671 const initColor
= this.getColor(sx
, sy
);
672 const initPiece
= this.board
[sx
][sy
].charAt(1);
678 c: !!tr
? tr
.c : initColor
,
679 p: !!tr
? tr
.p : initPiece
692 // The opponent piece disappears if we take it
693 if (this.board
[ex
][ey
] != V
.EMPTY
) {
698 c: this.getColor(ex
, ey
),
699 p: this.board
[ex
][ey
].charAt(1)
707 // Generic method to find possible moves of non-pawn pieces:
708 // "sliding or jumping"
709 getSlideNJumpMoves([x
, y
], steps
, oneStep
) {
711 outerLoop: for (let step
of steps
) {
714 while (V
.OnBoard(i
, j
) && this.board
[i
][j
] == V
.EMPTY
) {
715 moves
.push(this.getBasicMove([x
, y
], [i
, j
]));
716 if (oneStep
) continue outerLoop
;
720 if (V
.OnBoard(i
, j
) && this.canTake([x
, y
], [i
, j
]))
721 moves
.push(this.getBasicMove([x
, y
], [i
, j
]));
726 // Special case of en-passant captures: treated separately
727 getEnpassantCaptures([x
, y
], shiftX
) {
728 const Lep
= this.epSquares
.length
;
729 const epSquare
= this.epSquares
[Lep
- 1]; //always at least one element
730 let enpassantMove
= null;
733 epSquare
.x
== x
+ shiftX
&&
734 Math
.abs(epSquare
.y
- y
) == 1
736 enpassantMove
= this.getBasicMove([x
, y
], [epSquare
.x
, epSquare
.y
]);
737 enpassantMove
.vanish
.push({
740 p: this.board
[x
][epSquare
.y
].charAt(1),
741 c: this.getColor(x
, epSquare
.y
)
744 return !!enpassantMove
? [enpassantMove
] : [];
747 // Consider all potential promotions:
748 addPawnMoves([x1
, y1
], [x2
, y2
], moves
, promotions
) {
749 let finalPieces
= [V
.PAWN
];
750 const color
= this.turn
; //this.getColor(x1, y1);
751 const lastRank
= (color
== "w" ? 0 : V
.size
.x
- 1);
752 if (x2
== lastRank
) {
753 // promotions arg: special override for Hiddenqueen variant
754 if (!!promotions
) finalPieces
= promotions
;
755 else if (!!V
.PawnSpecs
.promotions
) finalPieces
= V
.PawnSpecs
.promotions
;
758 for (let piece
of finalPieces
) {
759 tr
= (piece
!= V
.PAWN
? { c: color
, p: piece
} : null);
760 moves
.push(this.getBasicMove([x1
, y1
], [x2
, y2
], tr
));
764 // What are the pawn moves from square x,y ?
765 getPotentialPawnMoves([x
, y
], promotions
) {
766 const color
= this.turn
; //this.getColor(x, y);
767 const [sizeX
, sizeY
] = [V
.size
.x
, V
.size
.y
];
768 const pawnShiftX
= V
.PawnSpecs
.directions
[color
];
769 const firstRank
= (color
== "w" ? sizeX
- 1 : 0);
770 const forward
= (color
== 'w' ? -1 : 1);
772 // Pawn movements in shiftX direction:
773 const getPawnMoves
= (shiftX
) => {
775 // NOTE: next condition is generally true (no pawn on last rank)
776 if (x
+ shiftX
>= 0 && x
+ shiftX
< sizeX
) {
777 if (this.board
[x
+ shiftX
][y
] == V
.EMPTY
) {
778 // One square forward (or backward)
779 this.addPawnMoves([x
, y
], [x
+ shiftX
, y
], moves
, promotions
);
780 // Next condition because pawns on 1st rank can generally jump
782 V
.PawnSpecs
.twoSquares
&&
784 (color
== 'w' && x
>= V
.size
.x
- 1 - V
.PawnSpecs
.initShift
['w'])
786 (color
== 'b' && x
<= V
.PawnSpecs
.initShift
['b'])
791 this.board
[x
+ 2 * shiftX
][y
] == V
.EMPTY
794 moves
.push(this.getBasicMove([x
, y
], [x
+ 2 * shiftX
, y
]));
796 V
.PawnSpecs
.threeSquares
&&
797 this.board
[x
+ 3 * shiftX
][y
] == V
.EMPTY
799 // Three squares jump
800 moves
.push(this.getBasicMove([x
, y
], [x
+ 3 * shiftX
, y
]));
806 if (V
.PawnSpecs
.canCapture
) {
807 for (let shiftY
of [-1, 1]) {
808 if (y
+ shiftY
>= 0 && y
+ shiftY
< sizeY
) {
810 this.board
[x
+ shiftX
][y
+ shiftY
] != V
.EMPTY
&&
811 this.canTake([x
, y
], [x
+ shiftX
, y
+ shiftY
])
814 [x
, y
], [x
+ shiftX
, y
+ shiftY
],
819 V
.PawnSpecs
.captureBackward
&& shiftX
== forward
&&
820 x
- shiftX
>= 0 && x
- shiftX
< V
.size
.x
&&
821 this.board
[x
- shiftX
][y
+ shiftY
] != V
.EMPTY
&&
822 this.canTake([x
, y
], [x
- shiftX
, y
+ shiftY
])
825 [x
, y
], [x
- shiftX
, y
+ shiftY
],
836 let pMoves
= getPawnMoves(pawnShiftX
);
837 if (V
.PawnSpecs
.bidirectional
)
838 pMoves
= pMoves
.concat(getPawnMoves(-pawnShiftX
));
840 if (V
.HasEnpassant
) {
841 // NOTE: backward en-passant captures are not considered
842 // because no rules define them (for now).
843 Array
.prototype.push
.apply(
845 this.getEnpassantCaptures([x
, y
], pawnShiftX
)
852 // What are the rook moves from square x,y ?
853 getPotentialRookMoves(sq
) {
854 return this.getSlideNJumpMoves(sq
, V
.steps
[V
.ROOK
]);
857 // What are the knight moves from square x,y ?
858 getPotentialKnightMoves(sq
) {
859 return this.getSlideNJumpMoves(sq
, V
.steps
[V
.KNIGHT
], "oneStep");
862 // What are the bishop moves from square x,y ?
863 getPotentialBishopMoves(sq
) {
864 return this.getSlideNJumpMoves(sq
, V
.steps
[V
.BISHOP
]);
867 // What are the queen moves from square x,y ?
868 getPotentialQueenMoves(sq
) {
869 return this.getSlideNJumpMoves(
871 V
.steps
[V
.ROOK
].concat(V
.steps
[V
.BISHOP
])
875 // What are the king moves from square x,y ?
876 getPotentialKingMoves(sq
) {
877 // Initialize with normal moves
878 let moves
= this.getSlideNJumpMoves(
880 V
.steps
[V
.ROOK
].concat(V
.steps
[V
.BISHOP
]),
883 if (V
.HasCastle
&& this.castleFlags
[this.turn
].some(v
=> v
< V
.size
.y
))
884 moves
= moves
.concat(this.getCastleMoves(sq
));
888 // "castleInCheck" arg to let some variants castle under check
889 getCastleMoves([x
, y
], finalSquares
, castleInCheck
, castleWith
) {
890 const c
= this.getColor(x
, y
);
893 const oppCol
= V
.GetOppCol(c
);
897 finalSquares
= finalSquares
|| [ [2, 3], [V
.size
.y
- 2, V
.size
.y
- 3] ];
898 const castlingKing
= this.board
[x
][y
].charAt(1);
902 castleSide
++ //large, then small
904 if (this.castleFlags
[c
][castleSide
] >= V
.size
.y
) continue;
905 // If this code is reached, rook and king are on initial position
907 // NOTE: in some variants this is not a rook
908 const rookPos
= this.castleFlags
[c
][castleSide
];
909 const castlingPiece
= this.board
[x
][rookPos
].charAt(1);
911 this.board
[x
][rookPos
] == V
.EMPTY
||
912 this.getColor(x
, rookPos
) != c
||
913 (!!castleWith
&& !castleWith
.includes(castlingPiece
))
915 // Rook is not here, or changed color (see Benedict)
919 // Nothing on the path of the king ? (and no checks)
920 const finDist
= finalSquares
[castleSide
][0] - y
;
921 let step
= finDist
/ Math
.max(1, Math
.abs(finDist
));
925 (!castleInCheck
&& this.isAttacked([x
, i
], oppCol
)) ||
927 this.board
[x
][i
] != V
.EMPTY
&&
928 // NOTE: next check is enough, because of chessboard constraints
929 (this.getColor(x
, i
) != c
|| ![y
, rookPos
].includes(i
))
932 continue castlingCheck
;
935 } while (i
!= finalSquares
[castleSide
][0]);
937 // Nothing on the path to the rook?
938 step
= castleSide
== 0 ? -1 : 1;
939 for (i
= y
+ step
; i
!= rookPos
; i
+= step
) {
940 if (this.board
[x
][i
] != V
.EMPTY
) continue castlingCheck
;
943 // Nothing on final squares, except maybe king and castling rook?
944 for (i
= 0; i
< 2; i
++) {
946 finalSquares
[castleSide
][i
] != rookPos
&&
947 this.board
[x
][finalSquares
[castleSide
][i
]] != V
.EMPTY
&&
949 finalSquares
[castleSide
][i
] != y
||
950 this.getColor(x
, finalSquares
[castleSide
][i
]) != c
953 continue castlingCheck
;
957 // If this code is reached, castle is valid
963 y: finalSquares
[castleSide
][0],
969 y: finalSquares
[castleSide
][1],
975 // King might be initially disguised (Titan...)
976 new PiPo({ x: x
, y: y
, p: castlingKing
, c: c
}),
977 new PiPo({ x: x
, y: rookPos
, p: castlingPiece
, c: c
})
980 Math
.abs(y
- rookPos
) <= 2
981 ? { x: x
, y: rookPos
}
982 : { x: x
, y: y
+ 2 * (castleSide
== 0 ? -1 : 1) }
993 // For the interface: possible moves for the current turn from square sq
994 getPossibleMovesFrom(sq
) {
995 return this.filterValid(this.getPotentialMovesFrom(sq
));
998 // TODO: promotions (into R,B,N,Q) should be filtered only once
1000 if (moves
.length
== 0) return [];
1001 const color
= this.turn
;
1002 return moves
.filter(m
=> {
1004 const res
= !this.underCheck(color
);
1010 getAllPotentialMoves() {
1011 const color
= this.turn
;
1012 let potentialMoves
= [];
1013 for (let i
= 0; i
< V
.size
.x
; i
++) {
1014 for (let j
= 0; j
< V
.size
.y
; j
++) {
1015 if (this.board
[i
][j
] != V
.EMPTY
&& this.getColor(i
, j
) == color
) {
1016 Array
.prototype.push
.apply(
1018 this.getPotentialMovesFrom([i
, j
])
1023 return potentialMoves
;
1026 // Search for all valid moves considering current turn
1027 // (for engine and game end)
1028 getAllValidMoves() {
1029 return this.filterValid(this.getAllPotentialMoves());
1032 // Stop at the first move found
1033 // TODO: not really, it explores all moves from a square (one is enough).
1035 const color
= this.turn
;
1036 for (let i
= 0; i
< V
.size
.x
; i
++) {
1037 for (let j
= 0; j
< V
.size
.y
; j
++) {
1038 if (this.board
[i
][j
] != V
.EMPTY
&& this.getColor(i
, j
) == color
) {
1039 const moves
= this.getPotentialMovesFrom([i
, j
]);
1040 if (moves
.length
> 0) {
1041 for (let k
= 0; k
< moves
.length
; k
++)
1042 if (this.filterValid([moves
[k
]]).length
> 0) return true;
1050 // Check if pieces of given color are attacking (king) on square x,y
1051 isAttacked(sq
, color
) {
1053 this.isAttackedByPawn(sq
, color
) ||
1054 this.isAttackedByRook(sq
, color
) ||
1055 this.isAttackedByKnight(sq
, color
) ||
1056 this.isAttackedByBishop(sq
, color
) ||
1057 this.isAttackedByQueen(sq
, color
) ||
1058 this.isAttackedByKing(sq
, color
)
1062 // Generic method for non-pawn pieces ("sliding or jumping"):
1063 // is x,y attacked by a piece of given color ?
1064 isAttackedBySlideNJump([x
, y
], color
, piece
, steps
, oneStep
) {
1065 for (let step
of steps
) {
1066 let rx
= x
+ step
[0],
1068 while (V
.OnBoard(rx
, ry
) && this.board
[rx
][ry
] == V
.EMPTY
&& !oneStep
) {
1073 V
.OnBoard(rx
, ry
) &&
1074 this.board
[rx
][ry
] != V
.EMPTY
&&
1075 this.getPiece(rx
, ry
) == piece
&&
1076 this.getColor(rx
, ry
) == color
&&
1077 this.canTake([rx
, ry
], [x
, y
])
1085 // Is square x,y attacked by 'color' pawns ?
1086 isAttackedByPawn(sq
, color
) {
1087 const pawnShift
= (color
== "w" ? 1 : -1);
1088 return this.isAttackedBySlideNJump(
1092 [[pawnShift
, 1], [pawnShift
, -1]],
1097 // Is square x,y attacked by 'color' rooks ?
1098 isAttackedByRook(sq
, color
) {
1099 return this.isAttackedBySlideNJump(sq
, color
, V
.ROOK
, V
.steps
[V
.ROOK
]);
1102 // Is square x,y attacked by 'color' knights ?
1103 isAttackedByKnight(sq
, color
) {
1104 return this.isAttackedBySlideNJump(
1113 // Is square x,y attacked by 'color' bishops ?
1114 isAttackedByBishop(sq
, color
) {
1115 return this.isAttackedBySlideNJump(sq
, color
, V
.BISHOP
, V
.steps
[V
.BISHOP
]);
1118 // Is square x,y attacked by 'color' queens ?
1119 isAttackedByQueen(sq
, color
) {
1120 return this.isAttackedBySlideNJump(
1124 V
.steps
[V
.ROOK
].concat(V
.steps
[V
.BISHOP
])
1128 // Is square x,y attacked by 'color' king(s) ?
1129 isAttackedByKing(sq
, color
) {
1130 return this.isAttackedBySlideNJump(
1134 V
.steps
[V
.ROOK
].concat(V
.steps
[V
.BISHOP
]),
1139 // Is color under check after his move ?
1141 return this.isAttacked(this.kingPos
[color
], V
.GetOppCol(color
));
1147 // Apply a move on board
1148 static PlayOnBoard(board
, move) {
1149 for (let psq
of move.vanish
) board
[psq
.x
][psq
.y
] = V
.EMPTY
;
1150 for (let psq
of move.appear
) board
[psq
.x
][psq
.y
] = psq
.c
+ psq
.p
;
1152 // Un-apply the played move
1153 static UndoOnBoard(board
, move) {
1154 for (let psq
of move.appear
) board
[psq
.x
][psq
.y
] = V
.EMPTY
;
1155 for (let psq
of move.vanish
) board
[psq
.x
][psq
.y
] = psq
.c
+ psq
.p
;
1162 // if (!this.states) this.states = [];
1163 // const stateFen = this.getFen() + JSON.stringify(this.kingPos);
1164 // this.states.push(stateFen);
1167 // Save flags (for undo)
1168 if (V
.HasFlags
) move.flags
= JSON
.stringify(this.aggregateFlags());
1169 if (V
.HasEnpassant
) this.epSquares
.push(this.getEpSquare(move));
1170 V
.PlayOnBoard(this.board
, move);
1171 this.turn
= V
.GetOppCol(this.turn
);
1173 this.postPlay(move);
1176 updateCastleFlags(move, piece
, color
) {
1177 const c
= color
|| V
.GetOppCol(this.turn
);
1178 const firstRank
= (c
== "w" ? V
.size
.x
- 1 : 0);
1179 // Update castling flags if rooks are moved
1180 const oppCol
= this.turn
;
1181 const oppFirstRank
= V
.size
.x
- 1 - firstRank
;
1182 if (piece
== V
.KING
&& move.appear
.length
> 0)
1183 this.castleFlags
[c
] = [V
.size
.y
, V
.size
.y
];
1185 move.start
.x
== firstRank
&& //our rook moves?
1186 this.castleFlags
[c
].includes(move.start
.y
)
1188 const flagIdx
= (move.start
.y
== this.castleFlags
[c
][0] ? 0 : 1);
1189 this.castleFlags
[c
][flagIdx
] = V
.size
.y
;
1191 // NOTE: not "else if" because a rook could take an opposing rook
1193 move.end
.x
== oppFirstRank
&& //we took opponent rook?
1194 this.castleFlags
[oppCol
].includes(move.end
.y
)
1196 const flagIdx
= (move.end
.y
== this.castleFlags
[oppCol
][0] ? 0 : 1);
1197 this.castleFlags
[oppCol
][flagIdx
] = V
.size
.y
;
1201 // After move is played, update variables + flags
1203 const c
= V
.GetOppCol(this.turn
);
1204 let piece
= undefined;
1205 if (move.vanish
.length
>= 1)
1206 // Usual case, something is moved
1207 piece
= move.vanish
[0].p
;
1209 // Crazyhouse-like variants
1210 piece
= move.appear
[0].p
;
1212 // Update king position + flags
1213 if (piece
== V
.KING
&& move.appear
.length
> 0)
1214 this.kingPos
[c
] = [move.appear
[0].x
, move.appear
[0].y
];
1215 if (V
.HasCastle
) this.updateCastleFlags(move, piece
);
1222 if (V
.HasEnpassant
) this.epSquares
.pop();
1223 if (V
.HasFlags
) this.disaggregateFlags(JSON
.parse(move.flags
));
1224 V
.UndoOnBoard(this.board
, move);
1225 this.turn
= V
.GetOppCol(this.turn
);
1227 this.postUndo(move);
1230 // const stateFen = this.getFen() + JSON.stringify(this.kingPos);
1231 // if (stateFen != this.states[this.states.length-1]) debugger;
1232 // this.states.pop();
1235 // After move is undo-ed *and flags resetted*, un-update other variables
1236 // TODO: more symmetry, by storing flags increment in move (?!)
1238 // (Potentially) Reset king position
1239 const c
= this.getColor(move.start
.x
, move.start
.y
);
1240 if (this.getPiece(move.start
.x
, move.start
.y
) == V
.KING
)
1241 this.kingPos
[c
] = [move.start
.x
, move.start
.y
];
1247 // What is the score ? (Interesting if game is over)
1249 if (this.atLeastOneMove()) return "*";
1251 const color
= this.turn
;
1252 // No valid move: stalemate or checkmate?
1253 if (!this.underCheck(color
)) return "1/2";
1255 return (color
== "w" ? "0-1" : "1-0");
1262 static get VALUES() {
1273 // "Checkmate" (unreachable eval)
1274 static get INFINITY() {
1278 // At this value or above, the game is over
1279 static get THRESHOLD_MATE() {
1283 // Search depth: 1,2 for e.g. higher branching factor, 4 for smaller
1284 static get SEARCH_DEPTH() {
1288 // 'movesList' arg for some variants to provide a custom list
1289 getComputerMove(movesList
) {
1290 const maxeval
= V
.INFINITY
;
1291 const color
= this.turn
;
1292 let moves1
= movesList
|| this.getAllValidMoves();
1294 if (moves1
.length
== 0)
1295 // TODO: this situation should not happen
1298 // Rank moves using a min-max at depth 2 (if search_depth >= 2!)
1299 for (let i
= 0; i
< moves1
.length
; i
++) {
1300 this.play(moves1
[i
]);
1301 const score1
= this.getCurrentScore();
1302 if (score1
!= "*") {
1306 : (score1
== "1-0" ? 1 : -1) * maxeval
;
1308 if (V
.SEARCH_DEPTH
== 1 || score1
!= "*") {
1309 if (!moves1
[i
].eval
) moves1
[i
].eval
= this.evalPosition();
1310 this.undo(moves1
[i
]);
1313 // Initial self evaluation is very low: "I'm checkmated"
1314 moves1
[i
].eval
= (color
== "w" ? -1 : 1) * maxeval
;
1315 // Initial enemy evaluation is very low too, for him
1316 let eval2
= (color
== "w" ? 1 : -1) * maxeval
;
1317 // Second half-move:
1318 let moves2
= this.getAllValidMoves();
1319 for (let j
= 0; j
< moves2
.length
; j
++) {
1320 this.play(moves2
[j
]);
1321 const score2
= this.getCurrentScore();
1322 let evalPos
= 0; //1/2 value
1325 evalPos
= this.evalPosition();
1335 (color
== "w" && evalPos
< eval2
) ||
1336 (color
== "b" && evalPos
> eval2
)
1340 this.undo(moves2
[j
]);
1343 (color
== "w" && eval2
> moves1
[i
].eval
) ||
1344 (color
== "b" && eval2
< moves1
[i
].eval
)
1346 moves1
[i
].eval
= eval2
;
1348 this.undo(moves1
[i
]);
1350 moves1
.sort((a
, b
) => {
1351 return (color
== "w" ? 1 : -1) * (b
.eval
- a
.eval
);
1353 // console.log(moves1.map(m => { return [this.getNotation(m), m.eval]; }));
1355 // Skip depth 3+ if we found a checkmate (or if we are checkmated in 1...)
1356 if (V
.SEARCH_DEPTH
>= 3 && Math
.abs(moves1
[0].eval
) < V
.THRESHOLD_MATE
) {
1357 for (let i
= 0; i
< moves1
.length
; i
++) {
1358 this.play(moves1
[i
]);
1359 // 0.1 * oldEval : heuristic to avoid some bad moves (not all...)
1361 0.1 * moves1
[i
].eval
+
1362 this.alphabeta(V
.SEARCH_DEPTH
- 1, -maxeval
, maxeval
);
1363 this.undo(moves1
[i
]);
1365 moves1
.sort((a
, b
) => {
1366 return (color
== "w" ? 1 : -1) * (b
.eval
- a
.eval
);
1370 let candidates
= [0];
1371 for (let i
= 1; i
< moves1
.length
&& moves1
[i
].eval
== moves1
[0].eval
; i
++)
1373 return moves1
[candidates
[randInt(candidates
.length
)]];
1376 alphabeta(depth
, alpha
, beta
) {
1377 const maxeval
= V
.INFINITY
;
1378 const color
= this.turn
;
1379 const score
= this.getCurrentScore();
1381 return score
== "1/2" ? 0 : (score
== "1-0" ? 1 : -1) * maxeval
;
1382 if (depth
== 0) return this.evalPosition();
1383 const moves
= this.getAllValidMoves();
1384 let v
= color
== "w" ? -maxeval : maxeval
;
1386 for (let i
= 0; i
< moves
.length
; i
++) {
1387 this.play(moves
[i
]);
1388 v
= Math
.max(v
, this.alphabeta(depth
- 1, alpha
, beta
));
1389 this.undo(moves
[i
]);
1390 alpha
= Math
.max(alpha
, v
);
1391 if (alpha
>= beta
) break; //beta cutoff
1396 for (let i
= 0; i
< moves
.length
; i
++) {
1397 this.play(moves
[i
]);
1398 v
= Math
.min(v
, this.alphabeta(depth
- 1, alpha
, beta
));
1399 this.undo(moves
[i
]);
1400 beta
= Math
.min(beta
, v
);
1401 if (alpha
>= beta
) break; //alpha cutoff
1409 // Just count material for now
1410 for (let i
= 0; i
< V
.size
.x
; i
++) {
1411 for (let j
= 0; j
< V
.size
.y
; j
++) {
1412 if (this.board
[i
][j
] != V
.EMPTY
) {
1413 const sign
= this.getColor(i
, j
) == "w" ? 1 : -1;
1414 evaluation
+= sign
* V
.VALUES
[this.getPiece(i
, j
)];
1421 /////////////////////////
1422 // MOVES + GAME NOTATION
1423 /////////////////////////
1425 // Context: just before move is played, turn hasn't changed
1426 // TODO: un-ambiguous notation (switch on piece type, check directions...)
1428 if (move.appear
.length
== 2 && move.appear
[0].p
== V
.KING
)
1430 return move.end
.y
< move.start
.y
? "0-0-0" : "0-0";
1432 // Translate final square
1433 const finalSquare
= V
.CoordsToSquare(move.end
);
1435 const piece
= this.getPiece(move.start
.x
, move.start
.y
);
1436 if (piece
== V
.PAWN
) {
1439 if (move.vanish
.length
> move.appear
.length
) {
1441 const startColumn
= V
.CoordToColumn(move.start
.y
);
1442 notation
= startColumn
+ "x" + finalSquare
;
1444 else notation
= finalSquare
;
1445 if (move.appear
.length
> 0 && move.appear
[0].p
!= V
.PAWN
)
1447 notation
+= "=" + move.appear
[0].p
.toUpperCase();
1452 piece
.toUpperCase() +
1453 (move.vanish
.length
> move.appear
.length
? "x" : "") +
1458 static GetUnambiguousNotation(move) {
1459 // Machine-readable format with all the informations about the move
1461 (!!move.start
&& V
.OnBoard(move.start
.x
, move.start
.y
)
1462 ? V
.CoordsToSquare(move.start
)
1465 (!!move.end
&& V
.OnBoard(move.end
.x
, move.end
.y
)
1466 ? V
.CoordsToSquare(move.end
)
1469 (!!move.appear
&& move.appear
.length
> 0
1470 ? move.appear
.map(a
=>
1471 a
.c
+ a
.p
+ V
.CoordsToSquare({ x: a
.x
, y: a
.y
})).join(".")
1474 (!!move.vanish
&& move.vanish
.length
> 0
1475 ? move.vanish
.map(a
=>
1476 a
.c
+ a
.p
+ V
.CoordsToSquare({ x: a
.x
, y: a
.y
})).join(".")