1 // (Orthodox) Chess rules are defined in ChessRules class.
2 // Variants generally inherit from it, and modify some parts.
4 class PiPo
//Piece+Position
6 // o: {piece[p], color[c], posX[x], posY[y]}
16 // TODO: for animation, moves should contains "moving" and "fading" maybe...
19 // o: {appear, vanish, [start,] [end,]}
20 // appear,vanish = arrays of PiPo
21 // start,end = coordinates to apply to trigger move visually (think castle)
24 this.appear
= o
.appear
;
25 this.vanish
= o
.vanish
;
26 this.start
= !!o
.start
? o
.start : {x:o
.vanish
[0].x
, y:o
.vanish
[0].y
};
27 this.end
= !!o
.end
? o
.end : {x:o
.appear
[0].x
, y:o
.appear
[0].y
};
31 // NOTE: x coords = top to bottom; y = left to right (from white player perspective)
37 static get HasFlags() { return true; } //some variants don't have flags
39 static get HasEnpassant() { return true; } //some variants don't have ep.
44 return b
; //usual pieces in pieces/ folder
47 // Turn "wb" into "B" (for FEN)
50 return b
[0]=='w' ? b
[1].toUpperCase() : b
[1];
53 // Turn "p" into "bp" (for board)
56 return f
.charCodeAt()<=90 ? "w"+f
.toLowerCase() : "b"+f
;
59 // Check if FEN describe a position
62 const fenParsed
= V
.ParseFen(fen
);
64 if (!V
.IsGoodPosition(fenParsed
.position
))
67 if (!fenParsed
.turn
|| !V
.IsGoodTurn(fenParsed
.turn
))
69 // 3) Check moves count
70 if (!fenParsed
.movesCount
|| !(parseInt(fenParsed
.movesCount
) >= 0))
73 if (V
.HasFlags
&& (!fenParsed
.flags
|| !V
.IsGoodFlags(fenParsed
.flags
)))
77 (!fenParsed
.enpassant
|| !V
.IsGoodEnpassant(fenParsed
.enpassant
)))
84 // Is position part of the FEN a priori correct?
85 static IsGoodPosition(position
)
87 if (position
.length
== 0)
89 const rows
= position
.split("/");
90 if (rows
.length
!= V
.size
.x
)
95 for (let i
=0; i
<row
.length
; i
++)
97 if (V
.PIECES
.includes(row
[i
].toLowerCase()))
101 const num
= parseInt(row
[i
]);
107 if (sumElts
!= V
.size
.y
)
114 static IsGoodTurn(turn
)
116 return ["w","b"].includes(turn
);
120 static IsGoodFlags(flags
)
122 return !!flags
.match(/^[01]{4,4}$/);
125 static IsGoodEnpassant(enpassant
)
127 if (enpassant
!= "-")
129 const ep
= V
.SquareToCoords(fenParsed
.enpassant
);
130 if (isNaN(ep
.x
) || !V
.OnBoard(ep
))
136 // 3 --> d (column number to letter)
137 static CoordToColumn(colnum
)
139 return String
.fromCharCode(97 + colnum
);
142 // d --> 3 (column letter to number)
143 static ColumnToCoord(column
)
145 return column
.charCodeAt(0) - 97;
149 static SquareToCoords(sq
)
152 // NOTE: column is always one char => max 26 columns
153 // row is counted from black side => subtraction
154 x: V
.size
.x
- parseInt(sq
.substr(1)),
155 y: sq
[0].charCodeAt() - 97
160 static CoordsToSquare(coords
)
162 return V
.CoordToColumn(coords
.y
) + (V
.size
.x
- coords
.x
);
165 // Aggregates flags into one object
168 return this.castleFlags
;
172 disaggregateFlags(flags
)
174 this.castleFlags
= flags
;
177 // En-passant square, if any
178 getEpSquare(moveOrSquare
)
182 if (typeof moveOrSquare
=== "string")
184 const square
= moveOrSquare
;
187 return V
.SquareToCoords(square
);
189 // Argument is a move:
190 const move = moveOrSquare
;
191 const [sx
,sy
,ex
] = [move.start
.x
,move.start
.y
,move.end
.x
];
192 // TODO: next conditions are first for Atomic, and third for Checkered
193 if (move.appear
.length
> 0 && move.appear
[0].p
== V
.PAWN
&& ["w","b"].includes(move.appear
[0].c
) && Math
.abs(sx
- ex
) == 2)
200 return undefined; //default
203 // Can thing on square1 take thing on square2
204 canTake([x1
,y1
], [x2
,y2
])
206 return this.getColor(x1
,y1
) !== this.getColor(x2
,y2
);
209 // Is (x,y) on the chessboard?
212 return (x
>=0 && x
<V
.size
.x
&& y
>=0 && y
<V
.size
.y
);
215 // Used in interface: 'side' arg == player color
216 canIplay(side
, [x
,y
])
218 return (this.turn
== side
&& this.getColor(x
,y
) == side
);
221 // On which squares is color under check ? (for interface)
222 getCheckSquares(color
)
224 return this.isAttacked(this.kingPos
[color
], [this.getOppCol(color
)])
225 ? [JSON
.parse(JSON
.stringify(this.kingPos
[color
]))] //need to duplicate!
232 // Setup the initial random (assymetric) position
233 static GenRandInitFen()
235 let pieces
= { "w": new Array(8), "b": new Array(8) };
236 // Shuffle pieces on first and last rank
237 for (let c
of ["w","b"])
239 let positions
= _
.range(8);
241 // Get random squares for bishops
242 let randIndex
= 2 * _
.random(3);
243 const bishop1Pos
= positions
[randIndex
];
244 // The second bishop must be on a square of different color
245 let randIndex_tmp
= 2 * _
.random(3) + 1;
246 const bishop2Pos
= positions
[randIndex_tmp
];
247 // Remove chosen squares
248 positions
.splice(Math
.max(randIndex
,randIndex_tmp
), 1);
249 positions
.splice(Math
.min(randIndex
,randIndex_tmp
), 1);
251 // Get random squares for knights
252 randIndex
= _
.random(5);
253 const knight1Pos
= positions
[randIndex
];
254 positions
.splice(randIndex
, 1);
255 randIndex
= _
.random(4);
256 const knight2Pos
= positions
[randIndex
];
257 positions
.splice(randIndex
, 1);
259 // Get random square for queen
260 randIndex
= _
.random(3);
261 const queenPos
= positions
[randIndex
];
262 positions
.splice(randIndex
, 1);
264 // Rooks and king positions are now fixed,
265 // because of the ordering rook-king-rook
266 const rook1Pos
= positions
[0];
267 const kingPos
= positions
[1];
268 const rook2Pos
= positions
[2];
270 // Finally put the shuffled pieces in the board array
271 pieces
[c
][rook1Pos
] = 'r';
272 pieces
[c
][knight1Pos
] = 'n';
273 pieces
[c
][bishop1Pos
] = 'b';
274 pieces
[c
][queenPos
] = 'q';
275 pieces
[c
][kingPos
] = 'k';
276 pieces
[c
][bishop2Pos
] = 'b';
277 pieces
[c
][knight2Pos
] = 'n';
278 pieces
[c
][rook2Pos
] = 'r';
280 return pieces
["b"].join("") +
281 "/pppppppp/8/8/8/8/PPPPPPPP/" +
282 pieces
["w"].join("").toUpperCase() +
283 " w 1111 -"; //add turn + flags + enpassant
286 // "Parse" FEN: just return untransformed string data
289 const fenParts
= fen
.split(" ");
292 position: fenParts
[0],
294 movesCount: fenParts
[2],
298 Object
.assign(res
, {flags: fenParts
[nextIdx
++]});
300 Object
.assign(res
, {enpassant: fenParts
[nextIdx
]});
304 // Return current fen (game state)
307 return this.getBaseFen() + " " +
308 this.getTurnFen() + " " + this.movesCount
+
309 (V
.HasFlags
? (" " + this.getFlagsFen()) : "") +
310 (V
.HasEnpassant
? (" " + this.getEnpassantFen()) : "");
313 // Position part of the FEN string
317 for (let i
=0; i
<V
.size
.x
; i
++)
320 for (let j
=0; j
<V
.size
.y
; j
++)
322 if (this.board
[i
][j
] == V
.EMPTY
)
328 // Add empty squares in-between
329 position
+= emptyCount
;
332 position
+= V
.board2fen(this.board
[i
][j
]);
338 position
+= emptyCount
;
340 if (i
< V
.size
.x
- 1)
341 position
+= "/"; //separate rows
351 // Flags part of the FEN string
355 // Add castling flags
356 for (let i
of ['w','b'])
358 for (let j
=0; j
<2; j
++)
359 flags
+= (this.castleFlags
[i
][j
] ? '1' : '0');
364 // Enpassant part of the FEN string
367 const L
= this.epSquares
.length
;
368 if (!this.epSquares
[L
-1])
369 return "-"; //no en-passant
370 return V
.CoordsToSquare(this.epSquares
[L
-1]);
373 // Turn position fen into double array ["wb","wp","bk",...]
374 static GetBoard(position
)
376 const rows
= position
.split("/");
377 let board
= doubleArray(V
.size
.x
, V
.size
.y
, "");
378 for (let i
=0; i
<rows
.length
; i
++)
381 for (let indexInRow
= 0; indexInRow
< rows
[i
].length
; indexInRow
++)
383 const character
= rows
[i
][indexInRow
];
384 const num
= parseInt(character
);
386 j
+= num
; //just shift j
387 else //something at position i,j
388 board
[i
][j
++] = V
.fen2board(character
);
394 // Extract (relevant) flags from fen
397 // white a-castle, h-castle, black a-castle, h-castle
398 this.castleFlags
= {'w': [true,true], 'b': [true,true]};
401 for (let i
=0; i
<4; i
++)
402 this.castleFlags
[i
< 2 ? 'w' : 'b'][i
%2] = (fenflags
.charAt(i
) == '1');
408 // Fen string fully describes the game state
411 const fenParsed
= V
.ParseFen(fen
);
412 this.board
= V
.GetBoard(fenParsed
.position
);
413 this.turn
= fenParsed
.turn
[0]; //[0] to work with MarseilleRules
414 this.movesCount
= parseInt(fenParsed
.movesCount
);
415 this.setOtherVariables(fen
);
418 // Scan board for kings and rooks positions
421 this.INIT_COL_KING
= {'w':-1, 'b':-1};
422 this.INIT_COL_ROOK
= {'w':[-1,-1], 'b':[-1,-1]};
423 this.kingPos
= {'w':[-1,-1], 'b':[-1,-1]}; //squares of white and black king
424 const fenRows
= V
.ParseFen(fen
).position
.split("/");
425 for (let i
=0; i
<fenRows
.length
; i
++)
427 let k
= 0; //column index on board
428 for (let j
=0; j
<fenRows
[i
].length
; j
++)
430 switch (fenRows
[i
].charAt(j
))
433 this.kingPos
['b'] = [i
,k
];
434 this.INIT_COL_KING
['b'] = k
;
437 this.kingPos
['w'] = [i
,k
];
438 this.INIT_COL_KING
['w'] = k
;
441 if (this.INIT_COL_ROOK
['b'][0] < 0)
442 this.INIT_COL_ROOK
['b'][0] = k
;
444 this.INIT_COL_ROOK
['b'][1] = k
;
447 if (this.INIT_COL_ROOK
['w'][0] < 0)
448 this.INIT_COL_ROOK
['w'][0] = k
;
450 this.INIT_COL_ROOK
['w'][1] = k
;
453 const num
= parseInt(fenRows
[i
].charAt(j
));
462 // Some additional variables from FEN (variant dependant)
463 setOtherVariables(fen
)
465 // Set flags and enpassant:
466 const parsedFen
= V
.ParseFen(fen
);
468 this.setFlags(parsedFen
.flags
);
471 const epSq
= parsedFen
.enpassant
!= "-"
472 ? V
.SquareToCoords(parsedFen
.enpassant
)
474 this.epSquares
= [ epSq
];
476 // Search for king and rooks positions:
477 this.scanKingsRooks(fen
);
480 /////////////////////
488 // Color of thing on suqare (i,j). 'undefined' if square is empty
491 return this.board
[i
][j
].charAt(0);
494 // Piece type on square (i,j). 'undefined' if square is empty
497 return this.board
[i
][j
].charAt(1);
500 // Get opponent color
503 return (color
=="w" ? "b" : "w");
506 // Get next color (for compatibility with 3 and 4 players games)
509 return this.getOppCol(color
);
512 // Pieces codes (for a clearer code)
513 static get PAWN() { return 'p'; }
514 static get ROOK() { return 'r'; }
515 static get KNIGHT() { return 'n'; }
516 static get BISHOP() { return 'b'; }
517 static get QUEEN() { return 'q'; }
518 static get KING() { return 'k'; }
523 return [V
.PAWN
,V
.ROOK
,V
.KNIGHT
,V
.BISHOP
,V
.QUEEN
,V
.KING
];
527 static get EMPTY() { return ""; }
529 // Some pieces movements
533 'r': [ [-1,0],[1,0],[0,-1],[0,1] ],
534 'n': [ [-1,-2],[-1,2],[1,-2],[1,2],[-2,-1],[-2,1],[2,-1],[2,1] ],
535 'b': [ [-1,-1],[-1,1],[1,-1],[1,1] ],
542 // All possible moves from selected square (assumption: color is OK)
543 getPotentialMovesFrom([x
,y
])
545 switch (this.getPiece(x
,y
))
548 return this.getPotentialPawnMoves([x
,y
]);
550 return this.getPotentialRookMoves([x
,y
]);
552 return this.getPotentialKnightMoves([x
,y
]);
554 return this.getPotentialBishopMoves([x
,y
]);
556 return this.getPotentialQueenMoves([x
,y
]);
558 return this.getPotentialKingMoves([x
,y
]);
562 // Build a regular move from its initial and destination squares.
563 // tr: transformation
564 getBasicMove([sx
,sy
], [ex
,ey
], tr
)
571 c: !!tr
? tr
.c : this.getColor(sx
,sy
),
572 p: !!tr
? tr
.p : this.getPiece(sx
,sy
)
579 c: this.getColor(sx
,sy
),
580 p: this.getPiece(sx
,sy
)
585 // The opponent piece disappears if we take it
586 if (this.board
[ex
][ey
] != V
.EMPTY
)
592 c: this.getColor(ex
,ey
),
593 p: this.getPiece(ex
,ey
)
600 // Generic method to find possible moves of non-pawn pieces:
601 // "sliding or jumping"
602 getSlideNJumpMoves([x
,y
], steps
, oneStep
)
604 const color
= this.getColor(x
,y
);
607 for (let step
of steps
)
611 while (V
.OnBoard(i
,j
) && this.board
[i
][j
] == V
.EMPTY
)
613 moves
.push(this.getBasicMove([x
,y
], [i
,j
]));
614 if (oneStep
!== undefined)
619 if (V
.OnBoard(i
,j
) && this.canTake([x
,y
], [i
,j
]))
620 moves
.push(this.getBasicMove([x
,y
], [i
,j
]));
625 // What are the pawn moves from square x,y ?
626 getPotentialPawnMoves([x
,y
])
628 const color
= this.turn
;
630 const [sizeX
,sizeY
] = [V
.size
.x
,V
.size
.y
];
631 const shiftX
= (color
== "w" ? -1 : 1);
632 const firstRank
= (color
== 'w' ? sizeX
-1 : 0);
633 const startRank
= (color
== "w" ? sizeX
-2 : 1);
634 const lastRank
= (color
== "w" ? 0 : sizeX
-1);
635 const pawnColor
= this.getColor(x
,y
); //can be different for checkered
637 // NOTE: next condition is generally true (no pawn on last rank)
638 if (x
+shiftX
>= 0 && x
+shiftX
< sizeX
)
640 const finalPieces
= x
+ shiftX
== lastRank
641 ? [V
.ROOK
,V
.KNIGHT
,V
.BISHOP
,V
.QUEEN
]
643 // One square forward
644 if (this.board
[x
+shiftX
][y
] == V
.EMPTY
)
646 for (let piece
of finalPieces
)
648 moves
.push(this.getBasicMove([x
,y
], [x
+shiftX
,y
],
649 {c:pawnColor
,p:piece
}));
651 // Next condition because pawns on 1st rank can generally jump
652 if ([startRank
,firstRank
].includes(x
)
653 && this.board
[x
+2*shiftX
][y
] == V
.EMPTY
)
656 moves
.push(this.getBasicMove([x
,y
], [x
+2*shiftX
,y
]));
660 for (let shiftY
of [-1,1])
662 if (y
+ shiftY
>= 0 && y
+ shiftY
< sizeY
663 && this.board
[x
+shiftX
][y
+shiftY
] != V
.EMPTY
664 && this.canTake([x
,y
], [x
+shiftX
,y
+shiftY
]))
666 for (let piece
of finalPieces
)
668 moves
.push(this.getBasicMove([x
,y
], [x
+shiftX
,y
+shiftY
],
669 {c:pawnColor
,p:piece
}));
678 const Lep
= this.epSquares
.length
;
679 const epSquare
= this.epSquares
[Lep
-1]; //always at least one element
680 if (!!epSquare
&& epSquare
.x
== x
+shiftX
&& Math
.abs(epSquare
.y
- y
) == 1)
682 let enpassantMove
= this.getBasicMove([x
,y
], [epSquare
.x
,epSquare
.y
]);
683 enpassantMove
.vanish
.push({
687 c: this.getColor(x
,epSquare
.y
)
689 moves
.push(enpassantMove
);
696 // What are the rook moves from square x,y ?
697 getPotentialRookMoves(sq
)
699 return this.getSlideNJumpMoves(sq
, V
.steps
[V
.ROOK
]);
702 // What are the knight moves from square x,y ?
703 getPotentialKnightMoves(sq
)
705 return this.getSlideNJumpMoves(sq
, V
.steps
[V
.KNIGHT
], "oneStep");
708 // What are the bishop moves from square x,y ?
709 getPotentialBishopMoves(sq
)
711 return this.getSlideNJumpMoves(sq
, V
.steps
[V
.BISHOP
]);
714 // What are the queen moves from square x,y ?
715 getPotentialQueenMoves(sq
)
717 return this.getSlideNJumpMoves(sq
,
718 V
.steps
[V
.ROOK
].concat(V
.steps
[V
.BISHOP
]));
721 // What are the king moves from square x,y ?
722 getPotentialKingMoves(sq
)
724 // Initialize with normal moves
725 let moves
= this.getSlideNJumpMoves(sq
,
726 V
.steps
[V
.ROOK
].concat(V
.steps
[V
.BISHOP
]), "oneStep");
727 return moves
.concat(this.getCastleMoves(sq
));
730 getCastleMoves([x
,y
])
732 const c
= this.getColor(x
,y
);
733 if (x
!= (c
=="w" ? V
.size
.x
-1 : 0) || y
!= this.INIT_COL_KING
[c
])
734 return []; //x isn't first rank, or king has moved (shortcut)
737 const oppCol
= this.getOppCol(c
);
740 const finalSquares
= [ [2,3], [V
.size
.y
-2,V
.size
.y
-3] ]; //king, then rook
742 for (let castleSide
=0; castleSide
< 2; castleSide
++) //large, then small
744 if (!this.castleFlags
[c
][castleSide
])
746 // If this code is reached, rooks and king are on initial position
748 // Nothing on the path of the king ?
749 // (And no checks; OK also if y==finalSquare)
750 let step
= finalSquares
[castleSide
][0] < y
? -1 : 1;
751 for (i
=y
; i
!=finalSquares
[castleSide
][0]; i
+=step
)
753 if (this.isAttacked([x
,i
], [oppCol
]) || (this.board
[x
][i
] != V
.EMPTY
&&
754 // NOTE: next check is enough, because of chessboard constraints
755 (this.getColor(x
,i
) != c
756 || ![V
.KING
,V
.ROOK
].includes(this.getPiece(x
,i
)))))
758 continue castlingCheck
;
762 // Nothing on the path to the rook?
763 step
= castleSide
== 0 ? -1 : 1;
764 for (i
= y
+ step
; i
!= this.INIT_COL_ROOK
[c
][castleSide
]; i
+= step
)
766 if (this.board
[x
][i
] != V
.EMPTY
)
767 continue castlingCheck
;
769 const rookPos
= this.INIT_COL_ROOK
[c
][castleSide
];
771 // Nothing on final squares, except maybe king and castling rook?
774 if (this.board
[x
][finalSquares
[castleSide
][i
]] != V
.EMPTY
&&
775 this.getPiece(x
,finalSquares
[castleSide
][i
]) != V
.KING
&&
776 finalSquares
[castleSide
][i
] != rookPos
)
778 continue castlingCheck
;
782 // If this code is reached, castle is valid
783 moves
.push( new Move({
785 new PiPo({x:x
,y:finalSquares
[castleSide
][0],p:V
.KING
,c:c
}),
786 new PiPo({x:x
,y:finalSquares
[castleSide
][1],p:V
.ROOK
,c:c
})],
788 new PiPo({x:x
,y:y
,p:V
.KING
,c:c
}),
789 new PiPo({x:x
,y:rookPos
,p:V
.ROOK
,c:c
})],
790 end: Math
.abs(y
- rookPos
) <= 2
792 : {x:x
, y:y
+ 2 * (castleSide
==0 ? -1 : 1)}
802 // For the interface: possible moves for the current turn from square sq
803 getPossibleMovesFrom(sq
)
805 return this.filterValid( this.getPotentialMovesFrom(sq
) );
808 // TODO: promotions (into R,B,N,Q) should be filtered only once
811 if (moves
.length
== 0)
813 const color
= this.turn
;
814 return moves
.filter(m
=> {
816 const res
= !this.underCheck(color
);
822 // Search for all valid moves considering current turn
823 // (for engine and game end)
826 const color
= this.turn
;
827 const oppCol
= this.getOppCol(color
);
828 let potentialMoves
= [];
829 for (let i
=0; i
<V
.size
.x
; i
++)
831 for (let j
=0; j
<V
.size
.y
; j
++)
833 // Next condition "!= oppCol" to work with checkered variant
834 if (this.board
[i
][j
] != V
.EMPTY
&& this.getColor(i
,j
) != oppCol
)
836 Array
.prototype.push
.apply(potentialMoves
,
837 this.getPotentialMovesFrom([i
,j
]));
841 return this.filterValid(potentialMoves
);
844 // Stop at the first move found
847 const color
= this.turn
;
848 const oppCol
= this.getOppCol(color
);
849 for (let i
=0; i
<V
.size
.x
; i
++)
851 for (let j
=0; j
<V
.size
.y
; j
++)
853 if (this.board
[i
][j
] != V
.EMPTY
&& this.getColor(i
,j
) != oppCol
)
855 const moves
= this.getPotentialMovesFrom([i
,j
]);
856 if (moves
.length
> 0)
858 for (let k
=0; k
<moves
.length
; k
++)
860 if (this.filterValid([moves
[k
]]).length
> 0)
870 // Check if pieces of color in 'colors' are attacking (king) on square x,y
871 isAttacked(sq
, colors
)
873 return (this.isAttackedByPawn(sq
, colors
)
874 || this.isAttackedByRook(sq
, colors
)
875 || this.isAttackedByKnight(sq
, colors
)
876 || this.isAttackedByBishop(sq
, colors
)
877 || this.isAttackedByQueen(sq
, colors
)
878 || this.isAttackedByKing(sq
, colors
));
881 // Is square x,y attacked by 'colors' pawns ?
882 isAttackedByPawn([x
,y
], colors
)
884 for (let c
of colors
)
886 let pawnShift
= (c
=="w" ? 1 : -1);
887 if (x
+pawnShift
>=0 && x
+pawnShift
<V
.size
.x
)
889 for (let i
of [-1,1])
891 if (y
+i
>=0 && y
+i
<V
.size
.y
&& this.getPiece(x
+pawnShift
,y
+i
)==V
.PAWN
892 && this.getColor(x
+pawnShift
,y
+i
)==c
)
902 // Is square x,y attacked by 'colors' rooks ?
903 isAttackedByRook(sq
, colors
)
905 return this.isAttackedBySlideNJump(sq
, colors
, V
.ROOK
, V
.steps
[V
.ROOK
]);
908 // Is square x,y attacked by 'colors' knights ?
909 isAttackedByKnight(sq
, colors
)
911 return this.isAttackedBySlideNJump(sq
, colors
,
912 V
.KNIGHT
, V
.steps
[V
.KNIGHT
], "oneStep");
915 // Is square x,y attacked by 'colors' bishops ?
916 isAttackedByBishop(sq
, colors
)
918 return this.isAttackedBySlideNJump(sq
, colors
, V
.BISHOP
, V
.steps
[V
.BISHOP
]);
921 // Is square x,y attacked by 'colors' queens ?
922 isAttackedByQueen(sq
, colors
)
924 return this.isAttackedBySlideNJump(sq
, colors
, V
.QUEEN
,
925 V
.steps
[V
.ROOK
].concat(V
.steps
[V
.BISHOP
]));
928 // Is square x,y attacked by 'colors' king(s) ?
929 isAttackedByKing(sq
, colors
)
931 return this.isAttackedBySlideNJump(sq
, colors
, V
.KING
,
932 V
.steps
[V
.ROOK
].concat(V
.steps
[V
.BISHOP
]), "oneStep");
935 // Generic method for non-pawn pieces ("sliding or jumping"):
936 // is x,y attacked by a piece of color in array 'colors' ?
937 isAttackedBySlideNJump([x
,y
], colors
, piece
, steps
, oneStep
)
939 for (let step
of steps
)
941 let rx
= x
+step
[0], ry
= y
+step
[1];
942 while (V
.OnBoard(rx
,ry
) && this.board
[rx
][ry
] == V
.EMPTY
&& !oneStep
)
947 if (V
.OnBoard(rx
,ry
) && this.getPiece(rx
,ry
) === piece
948 && colors
.includes(this.getColor(rx
,ry
)))
956 // Is color under check after his move ?
959 return this.isAttacked(this.kingPos
[color
], [this.getOppCol(color
)]);
965 // Apply a move on board
966 static PlayOnBoard(board
, move)
968 for (let psq
of move.vanish
)
969 board
[psq
.x
][psq
.y
] = V
.EMPTY
;
970 for (let psq
of move.appear
)
971 board
[psq
.x
][psq
.y
] = psq
.c
+ psq
.p
;
973 // Un-apply the played move
974 static UndoOnBoard(board
, move)
976 for (let psq
of move.appear
)
977 board
[psq
.x
][psq
.y
] = V
.EMPTY
;
978 for (let psq
of move.vanish
)
979 board
[psq
.x
][psq
.y
] = psq
.c
+ psq
.p
;
982 // After move is played, update variables + flags
983 updateVariables(move)
985 let piece
= undefined;
987 if (move.vanish
.length
>= 1)
989 // Usual case, something is moved
990 piece
= move.vanish
[0].p
;
991 c
= move.vanish
[0].c
;
995 // Crazyhouse-like variants
996 piece
= move.appear
[0].p
;
997 c
= move.appear
[0].c
;
999 if (c
== "c") //if (!["w","b"].includes(c))
1001 // 'c = move.vanish[0].c' doesn't work for Checkered
1002 c
= this.getOppCol(this.turn
);
1004 const firstRank
= (c
== "w" ? V
.size
.x
-1 : 0);
1006 // Update king position + flags
1007 if (piece
== V
.KING
&& move.appear
.length
> 0)
1009 this.kingPos
[c
][0] = move.appear
[0].x
;
1010 this.kingPos
[c
][1] = move.appear
[0].y
;
1012 this.castleFlags
[c
] = [false,false];
1017 // Update castling flags if rooks are moved
1018 const oppCol
= this.getOppCol(c
);
1019 const oppFirstRank
= (V
.size
.x
-1) - firstRank
;
1020 if (move.start
.x
== firstRank
//our rook moves?
1021 && this.INIT_COL_ROOK
[c
].includes(move.start
.y
))
1023 const flagIdx
= (move.start
.y
== this.INIT_COL_ROOK
[c
][0] ? 0 : 1);
1024 this.castleFlags
[c
][flagIdx
] = false;
1026 else if (move.end
.x
== oppFirstRank
//we took opponent rook?
1027 && this.INIT_COL_ROOK
[oppCol
].includes(move.end
.y
))
1029 const flagIdx
= (move.end
.y
== this.INIT_COL_ROOK
[oppCol
][0] ? 0 : 1);
1030 this.castleFlags
[oppCol
][flagIdx
] = false;
1035 // After move is undo-ed *and flags resetted*, un-update other variables
1036 // TODO: more symmetry, by storing flags increment in move (?!)
1037 unupdateVariables(move)
1039 // (Potentially) Reset king position
1040 const c
= this.getColor(move.start
.x
,move.start
.y
);
1041 if (this.getPiece(move.start
.x
,move.start
.y
) == V
.KING
)
1042 this.kingPos
[c
] = [move.start
.x
, move.start
.y
];
1048 // if (!this.states) this.states = [];
1049 // const stateFen = this.getBaseFen() + this.getTurnFen() + this.getFlagsFen();
1050 // this.states.push(stateFen);
1053 move.flags
= JSON
.stringify(this.aggregateFlags()); //save flags (for undo)
1055 this.epSquares
.push( this.getEpSquare(move) );
1056 V
.PlayOnBoard(this.board
, move);
1057 this.turn
= this.getOppCol(this.turn
);
1059 this.updateVariables(move);
1065 this.epSquares
.pop();
1067 this.disaggregateFlags(JSON
.parse(move.flags
));
1068 V
.UndoOnBoard(this.board
, move);
1069 this.turn
= this.getOppCol(this.turn
);
1071 this.unupdateVariables(move);
1074 // const stateFen = this.getBaseFen() + this.getTurnFen() + this.getFlagsFen();
1075 // if (stateFen != this.states[this.states.length-1]) debugger;
1076 // this.states.pop();
1082 // What is the score ? (Interesting if game is over)
1085 if (this.atLeastOneMove()) // game not over
1089 const color
= this.turn
;
1090 // No valid move: stalemate or checkmate?
1091 if (!this.isAttacked(this.kingPos
[color
], [this.getOppCol(color
)]))
1094 return (color
== "w" ? "0-1" : "1-0");
1113 // "Checkmate" (unreachable eval)
1114 static get INFINITY() { return 9999; }
1116 // At this value or above, the game is over
1117 static get THRESHOLD_MATE() { return V
.INFINITY
; }
1119 // Search depth: 2 for high branching factor, 4 for small (Loser chess, eg.)
1120 static get SEARCH_DEPTH() { return 3; }
1122 // Assumption: at least one legal move
1123 // NOTE: works also for extinction chess because depth is 3...
1126 const maxeval
= V
.INFINITY
;
1127 const color
= this.turn
;
1128 // Some variants may show a bigger moves list to the human (Switching),
1129 // thus the argument "computer" below (which is generally ignored)
1130 let moves1
= this.getAllValidMoves("computer");
1132 // Can I mate in 1 ? (for Magnetic & Extinction)
1133 for (let i
of _
.shuffle(_
.range(moves1
.length
)))
1135 this.play(moves1
[i
]);
1136 let finish
= (Math
.abs(this.evalPosition()) >= V
.THRESHOLD_MATE
);
1139 const score
= this.getCurrentScore();
1140 if (["1-0","0-1"].includes(score
))
1143 this.undo(moves1
[i
]);
1148 // Rank moves using a min-max at depth 2
1149 for (let i
=0; i
<moves1
.length
; i
++)
1151 // Initial self evaluation is very low: "I'm checkmated"
1152 moves1
[i
].eval
= (color
=="w" ? -1 : 1) * maxeval
;
1153 this.play(moves1
[i
]);
1154 const score1
= this.getCurrentScore();
1155 let eval2
= undefined;
1158 // Initial enemy evaluation is very low too, for him
1159 eval2
= (color
=="w" ? 1 : -1) * maxeval
;
1160 // Second half-move:
1161 let moves2
= this.getAllValidMoves("computer");
1162 for (let j
=0; j
<moves2
.length
; j
++)
1164 this.play(moves2
[j
]);
1165 const score2
= this.getCurrentScore();
1166 const evalPos
= score2
== "*"
1167 ? this.evalPosition()
1168 : (score2
=="1/2" ? 0 : (score2
=="1-0" ? 1 : -1) * maxeval
);
1169 if ((color
== "w" && evalPos
< eval2
)
1170 || (color
=="b" && evalPos
> eval2
))
1174 this.undo(moves2
[j
]);
1178 eval2
= (score1
=="1/2" ? 0 : (score1
=="1-0" ? 1 : -1) * maxeval
);
1179 if ((color
=="w" && eval2
> moves1
[i
].eval
)
1180 || (color
=="b" && eval2
< moves1
[i
].eval
))
1182 moves1
[i
].eval
= eval2
;
1184 this.undo(moves1
[i
]);
1186 moves1
.sort( (a
,b
) => { return (color
=="w" ? 1 : -1) * (b
.eval
- a
.eval
); });
1188 let candidates
= [0]; //indices of candidates moves
1189 for (let j
=1; j
<moves1
.length
&& moves1
[j
].eval
== moves1
[0].eval
; j
++)
1191 let currentBest
= moves1
[_
.sample(candidates
, 1)];
1193 // From here, depth >= 3: may take a while, so we control time
1194 const timeStart
= Date
.now();
1196 // Skip depth 3+ if we found a checkmate (or if we are checkmated in 1...)
1197 if (V
.SEARCH_DEPTH
>= 3 && Math
.abs(moves1
[0].eval
) < V
.THRESHOLD_MATE
)
1199 for (let i
=0; i
<moves1
.length
; i
++)
1201 if (Date
.now()-timeStart
>= 5000) //more than 5 seconds
1202 return currentBest
; //depth 2 at least
1203 this.play(moves1
[i
]);
1204 // 0.1 * oldEval : heuristic to avoid some bad moves (not all...)
1205 moves1
[i
].eval
= 0.1*moves1
[i
].eval
+
1206 this.alphabeta(V
.SEARCH_DEPTH
-1, -maxeval
, maxeval
);
1207 this.undo(moves1
[i
]);
1209 moves1
.sort( (a
,b
) => {
1210 return (color
=="w" ? 1 : -1) * (b
.eval
- a
.eval
); });
1214 // console.log(moves1.map(m => { return [this.getNotation(m), m.eval]; }));
1217 for (let j
=1; j
<moves1
.length
&& moves1
[j
].eval
== moves1
[0].eval
; j
++)
1219 return moves1
[_
.sample(candidates
, 1)];
1222 alphabeta(depth
, alpha
, beta
)
1224 const maxeval
= V
.INFINITY
;
1225 const color
= this.turn
;
1226 const score
= this.getCurrentScore();
1228 return (score
=="1/2" ? 0 : (score
=="1-0" ? 1 : -1) * maxeval
);
1230 return this.evalPosition();
1231 const moves
= this.getAllValidMoves("computer");
1232 let v
= color
=="w" ? -maxeval : maxeval
;
1235 for (let i
=0; i
<moves
.length
; i
++)
1237 this.play(moves
[i
]);
1238 v
= Math
.max(v
, this.alphabeta(depth
-1, alpha
, beta
));
1239 this.undo(moves
[i
]);
1240 alpha
= Math
.max(alpha
, v
);
1242 break; //beta cutoff
1247 for (let i
=0; i
<moves
.length
; i
++)
1249 this.play(moves
[i
]);
1250 v
= Math
.min(v
, this.alphabeta(depth
-1, alpha
, beta
));
1251 this.undo(moves
[i
]);
1252 beta
= Math
.min(beta
, v
);
1254 break; //alpha cutoff
1263 // Just count material for now
1264 for (let i
=0; i
<V
.size
.x
; i
++)
1266 for (let j
=0; j
<V
.size
.y
; j
++)
1268 if (this.board
[i
][j
] != V
.EMPTY
)
1270 const sign
= this.getColor(i
,j
) == "w" ? 1 : -1;
1271 evaluation
+= sign
* V
.VALUES
[this.getPiece(i
,j
)];
1278 /////////////////////////
1279 // MOVES + GAME NOTATION
1280 /////////////////////////
1282 // Context: just before move is played, turn hasn't changed
1283 // TODO: un-ambiguous notation (switch on piece type, check directions...)
1286 if (move.appear
.length
== 2 && move.appear
[0].p
== V
.KING
) //castle
1287 return (move.end
.y
< move.start
.y
? "0-0-0" : "0-0");
1289 // Translate final square
1290 const finalSquare
= V
.CoordsToSquare(move.end
);
1292 const piece
= this.getPiece(move.start
.x
, move.start
.y
);
1293 if (piece
== V
.PAWN
)
1297 if (move.vanish
.length
> move.appear
.length
)
1300 const startColumn
= V
.CoordToColumn(move.start
.y
);
1301 notation
= startColumn
+ "x" + finalSquare
;
1304 notation
= finalSquare
;
1305 if (move.appear
.length
> 0 && move.appear
[0].p
!= V
.PAWN
) //promotion
1306 notation
+= "=" + move.appear
[0].p
.toUpperCase();
1313 return piece
.toUpperCase() +
1314 (move.vanish
.length
> move.appear
.length
? "x" : "") + finalSquare
;
1318 // Complete the usual notation, may be required for de-ambiguification
1319 getLongNotation(move)
1321 // Not encoding move. But short+long is enough
1322 return V
.CoordsToSquare(move.start
) + V
.CoordsToSquare(move.end
);
1325 // The score is already computed when calling this function
1326 getPGN(moves
, mycolor
, score
, fenStart
, mode
)
1329 pgn
+= '[Site "vchess.club"]\n';
1330 const opponent
= mode
=="human" ? "Anonymous" : "Computer";
1331 pgn
+= '[Variant "' + variant
+ '"]\n';
1332 pgn
+= '[Date "' + getDate(new Date()) + '"]\n';
1333 // TODO: later when users are a bit less anonymous, use better names
1334 const whiteName
= ["human","computer"].includes(mode
)
1335 ? (mycolor
=='w'?'Myself':opponent
)
1337 const blackName
= ["human","computer"].includes(mode
)
1338 ? (mycolor
=='b'?'Myself':opponent
)
1340 pgn
+= '[White "' + whiteName
+ '"]\n';
1341 pgn
+= '[Black "' + blackName
+ '"]\n';
1342 pgn
+= '[Fen "' + fenStart
+ '"]\n';
1343 pgn
+= '[Result "' + score
+ '"]\n\n';
1346 for (let i
=0; i
<moves
.length
; i
++)
1349 pgn
+= ((i
/2)+1) + ".";
1350 pgn
+= moves
[i
].notation
+ " ";