X-Git-Url: https://git.auder.net/?a=blobdiff_plain;ds=sidebyside;f=client%2Fsrc%2Fvariants%2FAlice.js;h=15e629a4024f9e42c30d3918e6f16bbdb080d213;hb=8948a2876de183467f610a703d8c7f6d7c2df570;hp=d6fb0ac6954965162aa05931d0f84f3714ea072f;hpb=af34341d92d47d14f396e7f4adb81f2a7e9d9a61;p=vchess.git diff --git a/client/src/variants/Alice.js b/client/src/variants/Alice.js index d6fb0ac6..15e629a4 100644 --- a/client/src/variants/Alice.js +++ b/client/src/variants/Alice.js @@ -34,6 +34,32 @@ export class AliceRules extends ChessRules { return (Object.keys(V.ALICE_PIECES).includes(b[1]) ? "Alice/" : "") + b; } + getEpSquare(moveOrSquare) { + if (!moveOrSquare) return undefined; + if (typeof moveOrSquare === "string") { + const square = moveOrSquare; + if (square == "-") return undefined; + return V.SquareToCoords(square); + } + // Argument is a move: + const move = moveOrSquare; + const s = move.start, + e = move.end; + if ( + s.y == e.y && + Math.abs(s.x - e.x) == 2 && + // Special conditions: a pawn can be on the other side + ['p','s'].includes(move.appear[0].p) && + ['p','s'].includes(move.vanish[0].p) + ) { + return { + x: (s.x + e.x) / 2, + y: s.y + }; + } + return undefined; //default + } + setOtherVariables(fen) { super.setOtherVariables(fen); const rows = V.ParseFen(fen).position.split("/"); @@ -147,18 +173,9 @@ export class AliceRules extends ChessRules { m.vanish.length == 2 && this.board[m.end.x][m.end.y] == V.EMPTY ) { - m.vanish[1].c = V.GetOppCol(this.getColor(x, y)); - // In the special case of en-passant, if - // - board1 takes board2 : vanish[1] --> Alice - // - board2 takes board1 : vanish[1] --> normal - let van = m.vanish[1]; - if (mirrorSide == 1 && codes.includes(this.getPiece(van.x, van.y))) - van.p = V.ALICE_CODES[van.p]; - else if ( - mirrorSide == 2 && - pieces.includes(this.getPiece(van.x, van.y)) - ) - van.p = V.ALICE_PIECES[van.p]; + m.vanish[1].c = V.GetOppCol(this.turn); + const [epX, epY] = [m.vanish[1].x, m.vanish[1].y]; + m.vanish[1].p = this.getPiece(epX, epY); } return true; });