9b60a5f6d7072a2755eaf7a21baf800d1a41a3cb
[vchess.git] / client / src / variants / Allmate2.js
1 import { ChessRules, PiPo, Move } from "@/base_rules";
2
3 export class Allmate2Rules extends ChessRules {
4 static get HasEnpassant() {
5 return false;
6 }
7
8 getCheckSquares() {
9 // No notion of check
10 return [];
11 }
12
13 static GenRandInitFen(randomness) {
14 return ChessRules.GenRandInitFen(randomness).slice(0, -2);
15 }
16
17 getPotentialMovesFrom([x, y]) {
18 let moves = super.getPotentialMovesFrom([x, y]);
19 // Remove standard captures (without removing castling):
20 moves = moves.filter(m => {
21 return m.vanish.length == 1 || m.appear.length == 2;
22 });
23
24 // Augment moves with "mate-captures":
25 // TODO: this is coded in a highly inefficient way...
26 const color = this.turn;
27 const oppCol = V.GetOppCol(this.turn);
28 moves.forEach(m => {
29 this.play(m);
30
31 // 1) What is attacked?
32 let attacked = {};
33 for (let i=0; i<V.size.x; i++) {
34 for (let j=0; j<V.size.y; j++) {
35 if (this.getColor(i,j) == oppCol && this.isAttacked([i,j], color))
36 attacked[i+"_"+j] = [i,j];
37 }
38 }
39
40 // 2) Among attacked pieces, which cannot escape capture?
41 // --> without (normal-)capturing: difference with Allmate1 variant
42 // Avoid "oppMoves = this.getAllValidMoves();" => infinite recursion
43 outerLoop: for (let i=0; i<V.size.x; i++) {
44 for (let j=0; j<V.size.y; j++) {
45 if (this.getColor(i,j) == oppCol) {
46 let oppMoves = [];
47 switch (this.getPiece(i, j)) {
48 case V.PAWN:
49 oppMoves = this.getPotentialPawnMoves([i, j]);
50 break;
51 case V.ROOK:
52 oppMoves = this.getPotentialRookMoves([i, j]);
53 break;
54 case V.KNIGHT:
55 oppMoves = this.getPotentialKnightMoves([i, j]);
56 break;
57 case V.BISHOP:
58 oppMoves = this.getPotentialBishopMoves([i, j]);
59 break;
60 case V.QUEEN:
61 oppMoves = this.getPotentialQueenMoves([i, j]);
62 break;
63 case V.KING:
64 // Do not allow castling to escape from check
65 oppMoves = super.getSlideNJumpMoves(
66 [x, y],
67 V.steps[V.ROOK].concat(V.steps[V.BISHOP]),
68 "oneStep"
69 );
70 break;
71 }
72 for (let om of oppMoves) {
73 if (om.vanish.length == 2)
74 // Skip captures: forbidden in this mode
75 continue;
76 V.PlayOnBoard(this.board, om);
77 Object.values(attacked).forEach(sq => {
78 const origSq = [sq[0], sq[1]];
79 if (om.start.x == sq[0] && om.start.y == sq[1])
80 // Piece moved:
81 sq = [om.appear[0].x, om.appear[0].y];
82 if (!this.isAttacked(sq, color))
83 delete attacked[origSq[0]+"_"+origSq[1]];
84 });
85 V.UndoOnBoard(this.board, om);
86 if (Object.keys(attacked).length == 0)
87 // No need to explore more moves
88 break outerLoop;
89 }
90 }
91 }
92 }
93 this.undo(m);
94
95 // 3) Add mate-captures:
96 Object.values(attacked).forEach(sq => {
97 m.vanish.push(new PiPo({
98 x: sq[0],
99 y: sq[1],
100 c: oppCol,
101 p: this.getPiece(sq[0], sq[1])
102 }));
103 });
104 });
105
106 return moves;
107 }
108
109 // No "under check" conditions in castling
110 getCastleMoves(sq) {
111 return super.getCastleMoves(sq, "castleInCheck");
112 }
113
114 // TODO: allow pieces to "commit suicide"? (Currently yes except king)
115 filterValid(moves) {
116 // Remove moves which let the king mate-captured:
117 if (moves.length == 0) return [];
118 const color = this.turn;
119 const oppCol = V.GetOppCol(color);
120 return moves.filter(m => {
121 let res = true;
122 this.play(m);
123 if (this.underCheck(color)) {
124 res = false;
125 const attacked = this.kingPos[color];
126 // Try to find a move to escape check
127 // TODO: very inefficient method.
128 outerLoop: for (let i=0; i<V.size.x; i++) {
129 for (let j=0; j<V.size.y; j++) {
130 if (this.getColor(i,j) == color) {
131 let emoves = [];
132 // Artficial turn change to "play twice":
133 this.turn = color;
134 switch (this.getPiece(i, j)) {
135 case V.PAWN:
136 emoves = this.getPotentialPawnMoves([i, j]);
137 break;
138 case V.ROOK:
139 emoves = this.getPotentialRookMoves([i, j]);
140 break;
141 case V.KNIGHT:
142 emoves = this.getPotentialKnightMoves([i, j]);
143 break;
144 case V.BISHOP:
145 emoves = this.getPotentialBishopMoves([i, j]);
146 break;
147 case V.QUEEN:
148 emoves = this.getPotentialQueenMoves([i, j]);
149 break;
150 case V.KING:
151 emoves = this.getPotentialKingMoves([i, j]);
152 break;
153 }
154 this.turn = oppCol;
155 for (let em of emoves) {
156 V.PlayOnBoard(this.board, em);
157 let sq = attacked;
158 if (em.start.x == attacked[0] && em.start.y == attacked[1])
159 // King moved:
160 sq = [em.appear[0].x, em.appear[0].y];
161 if (!this.isAttacked(sq, oppCol))
162 res = true;
163 V.UndoOnBoard(this.board, em);
164 if (res)
165 // No need to explore more moves
166 break outerLoop;
167 }
168 }
169 }
170 }
171 }
172 this.undo(m);
173 return res;
174 });
175 }
176
177 postPlay(move) {
178 super.postPlay(move);
179 if (move.vanish.length >= 2 && move.appear.length == 1) {
180 for (let i = 1; i<move.vanish.length; i++) {
181 const v = move.vanish[i];
182 // Did opponent king disappeared?
183 if (v.p == V.KING)
184 this.kingPos[this.turn] = [-1, -1];
185 // Or maybe a rook?
186 else if (v.p == V.ROOK) {
187 if (v.y < this.INIT_COL_KING[v.c])
188 this.castleFlags[v.c][0] = 8;
189 else
190 // v.y > this.INIT_COL_KING[v.c]
191 this.castleFlags[v.c][1] = 8;
192 }
193 }
194 }
195 }
196
197 preUndo(move) {
198 super.preUndo(move);
199 const oppCol = this.turn;
200 if (move.vanish.length >= 2 && move.appear.length == 1) {
201 // Did opponent king disappeared?
202 const psq = move.vanish.find(v => v.p == V.KING && v.c == oppCol)
203 if (psq)
204 this.kingPos[psq.c] = [psq.x, psq.y];
205 }
206 }
207
208 getCurrentScore() {
209 const color = this.turn;
210 const kp = this.kingPos[color];
211 if (kp[0] < 0)
212 // King disappeared
213 return color == "w" ? "0-1" : "1-0";
214 if (this.atLeastOneMove()) return "*";
215 // Kings still there, no moves:
216 return "1/2";
217 }
218
219 static get SEARCH_DEPTH() {
220 return 1;
221 }
222
223 getNotation(move) {
224 let notation = super.getNotation(move);
225 // Add a capture mark (not describing what is captured...):
226 if (move.vanish.length > 1 && move.appear.length == 1) {
227 if (!!(notation.match(/^[a-h]x/)))
228 // Pawn capture: remove initial "b" in bxc4 for example
229 notation = notation.substr(1);
230 notation = notation.replace("x","") + "X";
231 }
232 return notation;
233 }
234 };