c44c2cac4b8e25f75cfba1dfec8a742eb45f2f4f
[vchess.git] / client / src / variants / Atomic1.js
1 import { ChessRules, PiPo } from "@/base_rules";
2
3 export class Atomic1Rules extends ChessRules {
4
5 getPotentialMovesFrom([x, y]) {
6 let moves = super.getPotentialMovesFrom([x, y]);
7
8 // Handle explosions
9 moves.forEach(m => {
10 // NOTE: if vanish.length==2 and appear.length==2, this is castle
11 if (m.vanish.length > 1 && m.appear.length <= 1) {
12 // Explosion! (TODO?: drop moves which explode our king here)
13 let steps = [
14 [-1, -1],
15 [-1, 0],
16 [-1, 1],
17 [0, -1],
18 [0, 1],
19 [1, -1],
20 [1, 0],
21 [1, 1]
22 ];
23 for (let step of steps) {
24 let x = m.end.x + step[0];
25 let y = m.end.y + step[1];
26 if (
27 V.OnBoard(x, y) &&
28 this.board[x][y] != V.EMPTY &&
29 this.getPiece(x, y) != V.PAWN
30 ) {
31 m.vanish.push(
32 new PiPo({
33 p: this.getPiece(x, y),
34 c: this.getColor(x, y),
35 x: x,
36 y: y
37 })
38 );
39 }
40 }
41 m.end = { x: m.appear[0].x, y: m.appear[0].y };
42 m.appear.pop(); //Nothin appears in this case
43 }
44 });
45
46 return moves;
47 }
48
49 getPotentialKingMoves([x, y]) {
50 // King cannot capture:
51 let moves = [];
52 const steps = V.steps[V.ROOK].concat(V.steps[V.BISHOP]);
53 for (let step of steps) {
54 const i = x + step[0];
55 const j = y + step[1];
56 if (V.OnBoard(i, j) && this.board[i][j] == V.EMPTY)
57 moves.push(this.getBasicMove([x, y], [i, j]));
58 }
59 return moves.concat(this.getCastleMoves([x, y]));
60 }
61
62 isAttacked(sq, color) {
63 if (
64 this.getPiece(sq[0], sq[1]) == V.KING &&
65 this.isAttackedByKing(sq, color)
66 ) {
67 // A king next to the enemy king is immune to attacks
68 return false;
69 }
70 return (
71 this.isAttackedByPawn(sq, color) ||
72 this.isAttackedByRook(sq, color) ||
73 this.isAttackedByKnight(sq, color) ||
74 this.isAttackedByBishop(sq, color) ||
75 this.isAttackedByQueen(sq, color)
76 // No "attackedByKing": it cannot take
77 );
78 }
79
80 postPlay(move) {
81 super.postPlay(move);
82 // NOTE: (harmless) condition on movesCount for Atomic2
83 if (move.appear.length == 0 && this.movesCount >= 2) {
84 // Capture
85 const firstRank = { w: 7, b: 0 };
86 for (let c of ["w", "b"]) {
87 // Did we explode king of color c ? (TODO: remove move earlier)
88 if (
89 Math.abs(this.kingPos[c][0] - move.end.x) <= 1 &&
90 Math.abs(this.kingPos[c][1] - move.end.y) <= 1
91 ) {
92 this.kingPos[c] = [-1, -1];
93 this.castleFlags[c] = [8, 8];
94 }
95 else {
96 // Now check if init rook(s) exploded
97 if (Math.abs(move.end.x - firstRank[c]) <= 1) {
98 if (Math.abs(move.end.y - this.castleFlags[c][0]) <= 1)
99 this.castleFlags[c][0] = 8;
100 if (Math.abs(move.end.y - this.castleFlags[c][1]) <= 1)
101 this.castleFlags[c][1] = 8;
102 }
103 }
104 }
105 }
106 }
107
108 postUndo(move) {
109 super.postUndo(move);
110 const c = this.turn;
111 const oppCol = V.GetOppCol(c);
112 // NOTE: condition on movesCount for Atomic2
113 if (
114 this.movesCount >= 1 &&
115 [this.kingPos[c][0], this.kingPos[oppCol][0]].some(e => e < 0)
116 ) {
117 // There is a chance that last move blowed some king away..
118 for (let psq of move.vanish) {
119 if (psq.p == "k")
120 this.kingPos[psq.c == c ? c : oppCol] = [psq.x, psq.y];
121 }
122 }
123 }
124
125 underCheck(color) {
126 const oppCol = V.GetOppCol(color);
127 let res = undefined;
128 // If our king disappeared, move is not valid
129 if (this.kingPos[color][0] < 0) res = true;
130 // If opponent king disappeared, move is valid
131 else if (this.kingPos[oppCol][0] < 0) res = false;
132 // Otherwise, if we remain under check, move is not valid
133 else res = this.isAttacked(this.kingPos[color], oppCol);
134 return res;
135 }
136
137 getCheckSquares() {
138 const color = this.turn;
139 let res = [];
140 if (
141 this.kingPos[color][0] >= 0 && //king might have exploded
142 this.isAttacked(this.kingPos[color], V.GetOppCol(color))
143 ) {
144 res = [JSON.parse(JSON.stringify(this.kingPos[color]))];
145 }
146 return res;
147 }
148
149 getCurrentScore() {
150 const color = this.turn;
151 const kp = this.kingPos[color];
152 if (kp[0] < 0)
153 // King disappeared
154 return color == "w" ? "0-1" : "1-0";
155 if (this.atLeastOneMove()) return "*";
156 if (!this.isAttacked(kp, V.GetOppCol(color))) return "1/2";
157 return color == "w" ? "0-1" : "1-0"; //checkmate
158 }
159
160 };