X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fvariants%2FAlice.js;h=57de5683b4b22d01402c77832207f6fe48612832;hb=1be09254408b05e3c1dd43b34e4c06cebd50af72;hp=3fd02a323805beab4e48db84699ebe9a1e7fe5be;hpb=1c15969ecec2a86ee7dffe570e53dfd61fd06b22;p=vchess.git diff --git a/client/src/variants/Alice.js b/client/src/variants/Alice.js index 3fd02a32..57de5683 100644 --- a/client/src/variants/Alice.js +++ b/client/src/variants/Alice.js @@ -191,6 +191,31 @@ export class AliceRules extends ChessRules { return res; } + getEnpassantCaptures([x, y], shiftX) { + const Lep = this.epSquares.length; + const epSquare = this.epSquares[Lep - 1]; //always at least one element + let enpassantMove = null; + if ( + !!epSquare && + epSquare.x == x + shiftX && + Math.abs(epSquare.y - y) == 1 + ) { + enpassantMove = this.getBasicMove([x, y], [epSquare.x, epSquare.y]); + // May capture in same world or different: + const capturedPiece = + this.board[x][epSquare.y] != V.EMPTY + ? this.getPiece(x, epSquare.y) + : ['p','s'][1 - "ps".indexOf(this.getPiece(x, y))]; + enpassantMove.vanish.push({ + x: x, + y: epSquare.y, + p: capturedPiece, + c: V.GetOppCol(this.turn) + }); + } + return !!enpassantMove ? [enpassantMove] : []; + } + filterValid(moves, sideBoard) { if (moves.length == 0) return []; if (!sideBoard) sideBoard = [this.getSideBoard(1), this.getSideBoard(2)];