X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=variants%2FBenedict%2Fclass.js;h=bf15ee66d0e8e263be572a892a296c7e5d50f654;hb=af9c9be34f416500f9e025e28f39fe89a8c7c345;hp=c0fffcc00f203c88d59626c4ab9dae8112b225a3;hpb=41534b92f0bcfc8ef5f58d8040706a5e7ce088c6;p=xogo.git diff --git a/variants/Benedict/class.js b/variants/Benedict/class.js index c0fffcc..bf15ee6 100644 --- a/variants/Benedict/class.js +++ b/variants/Benedict/class.js @@ -5,16 +5,23 @@ export default class BenedictRules extends ChessRules { static get Options() { return { - select: ChessRules.Options.select, - check: [], - styles: ( - ChessRules.Options.styles.filter(s => { - return ( - ["balance", "cylinder", "dark", "doublemove", "progressive", "zen"] - .includes(s) - ); - }) - ) + select: C.Options.select, + input: [ + { + label: "Cleopatra", + variable: "cleopatra", + type: "checkbox", + defaut: false + } + ], + styles: [ + "balance", + "cylinder", + "dark", + "doublemove", + "progressive", + "zen" + ] }; } @@ -22,77 +29,77 @@ export default class BenedictRules extends ChessRules { return false; } - get pawnSpecs() { - return Object.assign( - {}, - super.pawnSpecs, - { canCapture: false } - ); - } - canTake() { return false; } - // Find potential captures from a square - // follow steps from x,y until something is met. - findAttacks([x, y]) { - const [color, piece] = [this.getColor(x, y), this.getPiece(x, y)]; - const oppCol = ChessRules.GetOppCol(color); - let squares = {}; - const specs = this.pieces(color)[piece]; - const steps = specs.attack || specs.steps; - outerLoop: for (let step of steps) { - let [i, j] = [x + step[0], this.computeY(y + step[1])]; - let nbSteps = 1; - while (this.onBoard(i, j) && this.board[i][j] == "") { - if (specs.range <= nbSteps++) continue outerLoop; - i += step[0]; - j = this.computeY(j + step[1]); - } - if (this.onBoard(i, j) && this.getColor(i, j) == oppCol) - squares[ChessRules.CoordsToSquare({x: i, y: j})] = true; - } - return Object.keys(squares); + pieces(color, x, y) { + if (!this.options["cleopatra"]) + return super.pieces(color, x, y); + const allSpecs = super.pieces(color, x, y); + return Object.assign({}, + allSpecs, + {'q': Object.assign({}, allSpecs['q'], {"class": "cleopatra"})} + ); } postProcessPotentialMoves(moves) { - if (moves.length == 0) return moves; - const [x, y] = [moves[0].end.x, moves[0].end.y]; - const color = this.getColor(moves[0].start.x, moves[0].start.y); - const oppCol = ChessRules.GetOppCol(color); - moves = super.postProcessPotentialMoves(moves); moves.forEach(m => { - this.playOnBoard(m); - let attacks; - if (this.options["zen"]) { - let endSquares = {}; - super.getZenCaptures(x, y).forEach(c => { - endSquares[ChessRules.CoordsToSquare(c.end)] = true; - }); - attacks = Object.keys(endSquares); + m.flips = []; + if (!this.options["cleopatra"] || m.vanish[0].p == 'q') { + super.playOnBoard(m); + let attacks = super.findDestSquares( + [m.end.x, m.end.y], + {attackOnly: true, segments: false}, + ([x, y] => this.canTake([m.end.x, m.end.y], [x, y])) + ); + if (this.options["zen"]) { + const zenAttacks = super.findCapturesOn( + [m.end.x, m.end.y], + {segments: false}, + ([x, y] => this.canTake([m.end.x, m.end.y], [x, y])) + ); + Array.prototype.push.apply(attacks, zenAttacks); + } + super.undoOnBoard(m); + attacks.forEach(a => m.flips.push({x: a.sq[0], y: a.sq[1]})); } - else attacks = this.findAttacks([m.end.x, m.end.y]) - this.undoOnBoard(m); - attacks.map(ChessRules.SquareToCoords).forEach(a => { - const p = this.getPiece(a.x, a.y); - m.appear.push(new PiPo({x: a.x, y: a.y, c: color, p: p})); - m.vanish.push(new PiPo({x: a.x, y: a.y, c: oppCol, p: p})); - }); }); return moves; } - // Moves cannot flip our king's color, so (almost) all are valid + playOnBoard(move) { + super.playOnBoard(move); + this.flipColorOf(move.flips); + } + undoOnBoard(move) { + super.undoOnBoard(move); + this.flipColorOf(move.flips); + } + + flipColorOf(flips) { + for (let xy of flips) { + const newColor = C.GetOppCol(this.getColor(xy.x, xy.y)); + this.board[xy.x][xy.y] = newColor + this.board[xy.x][xy.y][1]; + } + } + + // Moves cannot flip our king's color, so all are valid filterValid(moves) { - if (this.options["balance"] && [1, 3].includes(this.movesCount)) - return moves.filter(m => m.vanish.every(v => v.p != ChessRules.KING)); return moves; } - // Since it's used just for the king, and there are no captures: - underCheck(square, color) { + // A king under (regular) check flips color, and the game is over. + underCheck() { return false; } + playVisual(move, r) { + super.playVisual(move, r); + move.flips.forEach(f => { + this.g_pieces[f.x][f.y].classList.toggle("white"); + this.g_pieces[f.x][f.y].classList.toggle("black"); + }); + } + };