X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=variants%2F_Antiking%2Fclass.js;h=2797cadd27e8846f4e8470f387fb8f6162b86fef;hb=a55fde41f82207bf401c54b158dd6d0182799fd3;hp=e92edab21f1c67d1b016bd520af8731ee99a7fb6;hpb=f3e90e30b6e7ff416afe288bc9dd865e5daf9860;p=xogo.git diff --git a/variants/_Antiking/class.js b/variants/_Antiking/class.js index e92edab..2797cad 100644 --- a/variants/_Antiking/class.js +++ b/variants/_Antiking/class.js @@ -26,17 +26,9 @@ export default class AbstractAntikingRules extends ChessRules { } pieces(color, x, y) { - return Object.assign( - { - 'a': { - // Move like a king, no attacks - "class": "antiking", - moves: super.pieces(color, x, y)['k'].moves, - attack: [] - } - }, - super.pieces(color, x, y) - ); + let antikingSpec = super.pieces(color, x, y)['k']; + antikingSpec["class"] = "antiking"; + return Object.assign({'a': antikingSpec}, super.pieces(color, x, y)); } isKing(x, y, p) { @@ -45,8 +37,8 @@ export default class AbstractAntikingRules extends ChessRules { return ['k', 'a'].includes(p); } - // NOTE: canTake includes (wrong) captures of antiking, - // to not go to low-level using findDestSquares() + // NOTE: canTake includes (wrong) captures of (anti)king, + // to detect attacks on (anti)kings. canTake([x1, y1], [x2, y2]) { const piece1 = this.getPiece(x1, y1); const color1 = this.getColor(x1, y1); @@ -57,21 +49,21 @@ export default class AbstractAntikingRules extends ChessRules { ); } - // Remove captures of antiking (see above) + // Remove captures of (anti)king (see above) getPotentialMovesFrom([x, y]) { return super.getPotentialMovesFrom([x, y]).filter(m => - m.vanish.length == 1 || m.vanish[1].p != 'a'); + m.vanish.length == 1 || !['k', 'a'].includes(m.vanish[1].p)); } - underCheck(squares, color) { + underCheck(square_s, color) { let res = false; - squares.forEach(sq => { + square_s.forEach(sq => { switch (this.getPiece(sq[0], sq[1])) { case 'k': - res ||= super.underAttack(sq, color); + res ||= super.underAttack(sq, [color]); break; case 'a': - res ||= !super.underAttack(sq, color); + res ||= !super.underAttack(sq, [color]); break; } });