X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fvariants%2FLosers.js;h=3ac46c2fdee410f1aea42a6940a8f5f6b6a87a06;hb=5d416f0fb2e4c41b38d089d569c464496524ada8;hp=daabbab4d1a646d0e6301cbf653781dcfbf58324;hpb=57d9b2c4f08948bd5a5fc4a01a0b62d4c80523e2;p=vchess.git diff --git a/client/src/variants/Losers.js b/client/src/variants/Losers.js index daabbab4..3ac46c2f 100644 --- a/client/src/variants/Losers.js +++ b/client/src/variants/Losers.js @@ -8,18 +8,21 @@ export class LosersRules extends ChessRules { return moves.filter(m => m.vanish.length == 2 && m.appear.length == 1); } - // Stop at the first capture found (if any) + // Stop at the first capture found (if any) atLeastOneCapture() { const color = this.turn; - const oppCol = V.GetOppCol(color); for (let i = 0; i < V.size.x; i++) { for (let j = 0; j < V.size.y; j++) { if ( this.board[i][j] != V.EMPTY && - this.getColor(i, j) != oppCol && - this.getPotentialMovesFrom([i, j]).some(m => - // Warning: discard castle moves - m.vanish.length == 2 && m.appear.length == 1) + this.getColor(i, j) == color && + this.getPotentialMovesFrom([i, j]).some(m => { + return ( + // Warning: discard castle moves + m.vanish.length == 2 && m.appear.length == 1 && + this.filterValid([m]).length == 1 + ); + }) ) { return true; } @@ -31,6 +34,9 @@ export class LosersRules extends ChessRules { getPossibleMovesFrom(sq) { let moves = this.filterValid(this.getPotentialMovesFrom(sq)); const captureMoves = V.KeepCaptures(moves); + +console.log(this.atLeastOneCapture()); + if (captureMoves.length > 0) return captureMoves; if (this.atLeastOneCapture()) return []; return moves;