X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fvariants%2FMonster.js;h=6e3e10c5d61874a6051c7cb39b2ddcb6b73bea2b;hb=964eda04ad6415b4ec95387ea08b63a3d0f0f9cc;hp=071c8db072866105adae0c63f87ac9e26ec6e911;hpb=bc0b9205e41c5db0552e4ccf060b945342e36ed0;p=vchess.git diff --git a/client/src/variants/Monster.js b/client/src/variants/Monster.js index 071c8db0..6e3e10c5 100644 --- a/client/src/variants/Monster.js +++ b/client/src/variants/Monster.js @@ -45,7 +45,7 @@ export class MonsterRules extends ChessRules { ); } - isAttacked(sq, color, castling) { + isAttacked() { // Goal is king capture => no checks return false; } @@ -72,9 +72,17 @@ export class MonsterRules extends ChessRules { V.PlayOnBoard(this.board, move); if (this.turn == 'w') { if (this.subTurn == 1) this.movesCount++; - else this.turn = 'b'; - this.subTurn = 3 - this.subTurn; - } else { + if ( + this.subTurn == 2 || + // King captured + (move.vanish.length == 2 && move.vanish[1].p == V.KING) + ) { + this.turn = 'b'; + this.subTurn = 1; + } + else this.subTurn = 2; + } + else { this.turn = 'w'; this.movesCount++; } @@ -108,9 +116,11 @@ export class MonsterRules extends ChessRules { const piece = move.vanish[0].p; if (piece == V.KING) this.kingPos[c] = [move.appear[0].x, move.appear[0].y]; - if (move.vanish.length == 2 && move.vanish[1].p == V.KING) + if (move.vanish.length == 2 && move.vanish[1].p == V.KING) { // Opponent's king is captured, game over this.kingPos[move.vanish[1].c] = [-1, -1]; + move.captureKing = true; //for undo + } this.updateCastleFlags(move, piece); } @@ -125,7 +135,7 @@ export class MonsterRules extends ChessRules { } else { this.turn = 'w'; - this.subTurn = 2; + this.subTurn = (!move.captureKing ? 2 : 1); } this.postUndo(move); }