Implement Wildebeest castling rule (well... almost correct)
[vchess.git] / client / src / variants / Wildebeest.js
CommitLineData
83cecc0f 1import { ChessRules, Move, PiPo } from "@/base_rules";
0c3fe8a6
BA
2import { ArrayFun } from "@/utils/array";
3import { sample, randInt } from "@/utils/alea";
4
32f6285e 5export class WildebeestRules extends ChessRules {
7e8a7ea1 6
6808d7a1
BA
7 static get size() {
8 return { x: 10, y: 11 };
9 }
8a196305 10
6808d7a1
BA
11 static get CAMEL() {
12 return "c";
13 }
14 static get WILDEBEEST() {
15 return "w";
16 }
a37076f1 17
6808d7a1
BA
18 static get PIECES() {
19 return ChessRules.PIECES.concat([V.CAMEL, V.WILDEBEEST]);
dac39588 20 }
7931e479 21
6808d7a1 22 static get steps() {
dac39588 23 return Object.assign(
6f2f9437
BA
24 {},
25 ChessRules.steps,
26 // Add camel moves:
6808d7a1
BA
27 {
28 c: [
29 [-3, -1],
30 [-3, 1],
31 [-1, -3],
32 [-1, 3],
33 [1, -3],
34 [1, 3],
35 [3, -1],
36 [3, 1]
37 ]
38 }
dac39588
BA
39 );
40 }
a37076f1 41
6808d7a1 42 static IsGoodEnpassant(enpassant) {
472c0c4f 43 if (enpassant != "-") return !!enpassant.match(/^([a-j][0-9]{1,2},?)+$/);
dac39588
BA
44 return true;
45 }
6e62b1c7 46
241bf8f2
BA
47 getPpath(b) {
48 return ([V.CAMEL, V.WILDEBEEST].includes(b[1]) ? "Wildebeest/" : "") + b;
49 }
50
dac39588 51 // There may be 2 enPassant squares (if pawn jump 3 squares)
6808d7a1 52 getEnpassantFen() {
dac39588 53 const L = this.epSquares.length;
6808d7a1 54 if (!this.epSquares[L - 1]) return "-"; //no en-passant
dac39588 55 let res = "";
6808d7a1 56 this.epSquares[L - 1].forEach(sq => {
dac39588
BA
57 res += V.CoordsToSquare(sq) + ",";
58 });
6808d7a1 59 return res.slice(0, -1); //remove last comma
dac39588 60 }
2d7194bd 61
dac39588 62 // En-passant after 2-sq or 3-sq jumps
6808d7a1
BA
63 getEpSquare(moveOrSquare) {
64 if (!moveOrSquare) return undefined;
65 if (typeof moveOrSquare === "string") {
dac39588 66 const square = moveOrSquare;
6808d7a1 67 if (square == "-") return undefined;
dac39588
BA
68 let res = [];
69 square.split(",").forEach(sq => {
70 res.push(V.SquareToCoords(sq));
71 });
72 return res;
73 }
74 // Argument is a move:
75 const move = moveOrSquare;
6808d7a1
BA
76 const [sx, sy, ex] = [move.start.x, move.start.y, move.end.x];
77 if (this.getPiece(sx, sy) == V.PAWN && Math.abs(sx - ex) >= 2) {
78 const step = (ex - sx) / Math.abs(ex - sx);
79 let res = [
80 {
81 x: sx + step,
82 y: sy
83 }
84 ];
85 if (sx + 2 * step != ex) {
86 //3-squares move
dac39588 87 res.push({
6808d7a1 88 x: sx + 2 * step,
dac39588
BA
89 y: sy
90 });
91 }
92 return res;
93 }
94 return undefined; //default
95 }
a37076f1 96
6808d7a1
BA
97 getPotentialMovesFrom([x, y]) {
98 switch (this.getPiece(x, y)) {
dac39588 99 case V.CAMEL:
6808d7a1 100 return this.getPotentialCamelMoves([x, y]);
dac39588 101 case V.WILDEBEEST:
6808d7a1 102 return this.getPotentialWildebeestMoves([x, y]);
dac39588 103 default:
6808d7a1 104 return super.getPotentialMovesFrom([x, y]);
dac39588
BA
105 }
106 }
a37076f1 107
dac39588 108 // Pawns jump 2 or 3 squares, and promote to queen or wildebeest
6808d7a1 109 getPotentialPawnMoves([x, y]) {
dac39588
BA
110 const color = this.turn;
111 let moves = [];
6808d7a1
BA
112 const [sizeX, sizeY] = [V.size.x, V.size.y];
113 const shiftX = color == "w" ? -1 : 1;
114 const startRanks = color == "w" ? [sizeX - 2, sizeX - 3] : [1, 2];
115 const lastRank = color == "w" ? 0 : sizeX - 1;
e3ef199c
BA
116 const finalPieces = x + shiftX == lastRank
117 ? [V.WILDEBEEST, V.QUEEN]
118 : [V.PAWN];
a37076f1 119
6808d7a1 120 if (this.board[x + shiftX][y] == V.EMPTY) {
dac39588
BA
121 // One square forward
122 for (let piece of finalPieces)
6808d7a1
BA
123 moves.push(
124 this.getBasicMove([x, y], [x + shiftX, y], { c: color, p: piece })
125 );
126 if (startRanks.includes(x)) {
127 if (this.board[x + 2 * shiftX][y] == V.EMPTY) {
dac39588 128 // Two squares jump
6808d7a1
BA
129 moves.push(this.getBasicMove([x, y], [x + 2 * shiftX, y]));
130 if (x == startRanks[0] && this.board[x + 3 * shiftX][y] == V.EMPTY) {
dac39588 131 // Three squares jump
6808d7a1 132 moves.push(this.getBasicMove([x, y], [x + 3 * shiftX, y]));
dac39588
BA
133 }
134 }
135 }
136 }
137 // Captures
6808d7a1
BA
138 for (let shiftY of [-1, 1]) {
139 if (
140 y + shiftY >= 0 &&
141 y + shiftY < sizeY &&
142 this.board[x + shiftX][y + shiftY] != V.EMPTY &&
143 this.canTake([x, y], [x + shiftX, y + shiftY])
144 ) {
145 for (let piece of finalPieces) {
146 moves.push(
147 this.getBasicMove([x, y], [x + shiftX, y + shiftY], {
148 c: color,
149 p: piece
150 })
151 );
dac39588
BA
152 }
153 }
154 }
a37076f1 155
dac39588
BA
156 // En passant
157 const Lep = this.epSquares.length;
6808d7a1 158 const epSquare = this.epSquares[Lep - 1];
472c0c4f 159 if (!!epSquare) {
6808d7a1 160 for (let epsq of epSquare) {
dac39588 161 // TODO: some redundant checks
6808d7a1 162 if (epsq.x == x + shiftX && Math.abs(epsq.y - y) == 1) {
f52671e5 163 let enpassantMove = this.getBasicMove([x, y], [epsq.x, epsq.y]);
dac39588
BA
164 // WARNING: the captured pawn may be diagonally behind us,
165 // if it's a 3-squares jump and we take on 1st passing square
6808d7a1 166 const px = this.board[x][epsq.y] != V.EMPTY ? x : x - shiftX;
dac39588
BA
167 enpassantMove.vanish.push({
168 x: px,
169 y: epsq.y,
6808d7a1
BA
170 p: "p",
171 c: this.getColor(px, epsq.y)
dac39588
BA
172 });
173 moves.push(enpassantMove);
174 }
175 }
176 }
a37076f1 177
dac39588
BA
178 return moves;
179 }
a37076f1 180
6808d7a1 181 getPotentialCamelMoves(sq) {
dac39588
BA
182 return this.getSlideNJumpMoves(sq, V.steps[V.CAMEL], "oneStep");
183 }
a37076f1 184
6808d7a1 185 getPotentialWildebeestMoves(sq) {
dac39588 186 return this.getSlideNJumpMoves(
6808d7a1
BA
187 sq,
188 V.steps[V.KNIGHT].concat(V.steps[V.CAMEL]),
189 "oneStep"
190 );
dac39588 191 }
a37076f1 192
83cecc0f
BA
193 getPPpath(m) {
194 if (
195 m.appear.length == 2 && m.vanish.length == 2 &&
196 Math.abs(m.end.y - m.start.y) == 1 &&
197 this.board[m.end.x][m.end.y] == V.EMPTY
198 ) {
199 // Castle, king moved by one square only, not directly onto rook
200 return "Wildebeest/castle";
201 }
202 return super.getPPpath(m);
203 }
204
205 // Special Wildebeest castling rules:
206 getCastleMoves([x, y]) {
207 const c = this.getColor(x, y);
208 const oppCol = V.GetOppCol(c);
209 let moves = [];
210 let i = 0;
211 const castlingKing = this.board[x][y].charAt(1);
212 castlingCheck: for (
213 let castleSide = 0;
214 castleSide < 2;
215 castleSide++ //"large", then "small"
216 ) {
217 if (this.castleFlags[c][castleSide] >= V.size.y) continue;
218 // Rook and king are on initial position
219 const rookPos = this.castleFlags[c][castleSide];
220 const range = (castleSide == 0 ? [rookPos, y] : [y, rookPos]);
221
222 // King and rook must be connected:
223 for (let i = range[0] + 1; i <= range[1] - 1; i++) {
224 if (this.board[x][i] != V.EMPTY) continue castlingCheck;
225 }
226 const step = 2 * castleSide - 1;
227 // No attacks on the path of the king ?
228 for (let i = range[0]; i <= range[1]; i++) {
229 if (i != rookPos && this.isAttacked([x, i], oppCol))
230 continue castlingCheck;
231 if (i != y) {
232 // Found a possible castle move:
233 moves.push(
234 new Move({
235 appear: [
236 new PiPo({
237 x: x,
238 y: i,
239 p: V.KING,
240 c: c
241 }),
242 new PiPo({
243 x: x,
244 y: i - step,
245 p: V.ROOK,
246 c: c
247 })
248 ],
249 vanish: [
250 new PiPo({ x: x, y: y, p: V.KING, c: c }),
251 new PiPo({ x: x, y: rookPos, p: V.ROOK, c: c })
252 ]
253 })
254 );
255 }
256 }
257 }
258
259 return moves;
260 }
261
68e19a44 262 isAttacked(sq, color) {
6808d7a1 263 return (
68e19a44
BA
264 super.isAttacked(sq, color) ||
265 this.isAttackedByCamel(sq, color) ||
266 this.isAttackedByWildebeest(sq, color)
6808d7a1 267 );
dac39588 268 }
a37076f1 269
68e19a44 270 isAttackedByCamel(sq, color) {
6808d7a1
BA
271 return this.isAttackedBySlideNJump(
272 sq,
68e19a44 273 color,
6808d7a1
BA
274 V.CAMEL,
275 V.steps[V.CAMEL],
276 "oneStep"
277 );
dac39588 278 }
a37076f1 279
68e19a44 280 isAttackedByWildebeest(sq, color) {
6808d7a1
BA
281 return this.isAttackedBySlideNJump(
282 sq,
68e19a44 283 color,
6808d7a1
BA
284 V.WILDEBEEST,
285 V.steps[V.KNIGHT].concat(V.steps[V.CAMEL]),
286 "oneStep"
287 );
dac39588 288 }
a37076f1 289
6808d7a1 290 getCurrentScore() {
bb688df5 291 if (this.atLeastOneMove()) return "*";
dac39588 292 // No valid move: game is lost (stalemate is a win)
6808d7a1 293 return this.turn == "w" ? "0-1" : "1-0";
dac39588 294 }
efb20746 295
dac39588
BA
296 static get VALUES() {
297 return Object.assign(
a97bdbda
BA
298 { c: 3, w: 7 }, //experimental
299 ChessRules.VALUES
dac39588
BA
300 );
301 }
a37076f1 302
6808d7a1
BA
303 static get SEARCH_DEPTH() {
304 return 2;
305 }
3c09dc49 306
7ba4a5bc
BA
307 static GenRandInitFen(randomness) {
308 if (!randomness) randomness = 2;
2c5d7b20
BA
309 if (randomness == 0) {
310 return (
311 "rnccwkqbbnr/ppppppppppp/92/92/92/92/92/92/PPPPPPPPPPP/RNBBQKWCCNR " +
312 "w 0 akak -"
313 );
314 }
7ba4a5bc 315
6f2f9437 316 let pieces = { w: new Array(11), b: new Array(11) };
3a2a7b5f 317 let flags = "";
6808d7a1 318 for (let c of ["w", "b"]) {
7ba4a5bc
BA
319 if (c == 'b' && randomness == 1) {
320 pieces['b'] = pieces['w'];
3a2a7b5f 321 flags += flags;
7ba4a5bc
BA
322 break;
323 }
324
dac39588 325 let positions = ArrayFun.range(11);
a37076f1 326
dac39588 327 // Get random squares for bishops + camels (different colors)
6808d7a1
BA
328 let randIndexes = sample(ArrayFun.range(6), 2).map(i => {
329 return 2 * i;
330 });
dac39588
BA
331 let bishop1Pos = positions[randIndexes[0]];
332 let camel1Pos = positions[randIndexes[1]];
333 // The second bishop (camel) must be on a square of different color
6808d7a1
BA
334 let randIndexes_tmp = sample(ArrayFun.range(5), 2).map(i => {
335 return 2 * i + 1;
336 });
dac39588
BA
337 let bishop2Pos = positions[randIndexes_tmp[0]];
338 let camel2Pos = positions[randIndexes_tmp[1]];
6808d7a1
BA
339 for (let idx of randIndexes.concat(randIndexes_tmp).sort((a, b) => {
340 return b - a;
341 })) {
7ba4a5bc 342 // Largest indices first
dac39588
BA
343 positions.splice(idx, 1);
344 }
a37076f1 345
dac39588
BA
346 let randIndex = randInt(7);
347 let knight1Pos = positions[randIndex];
348 positions.splice(randIndex, 1);
349 randIndex = randInt(6);
350 let knight2Pos = positions[randIndex];
351 positions.splice(randIndex, 1);
a37076f1 352
dac39588
BA
353 randIndex = randInt(5);
354 let queenPos = positions[randIndex];
355 positions.splice(randIndex, 1);
8a196305 356
dac39588
BA
357 // Random square for wildebeest
358 randIndex = randInt(4);
359 let wildebeestPos = positions[randIndex];
360 positions.splice(randIndex, 1);
8a196305 361
dac39588
BA
362 let rook1Pos = positions[0];
363 let kingPos = positions[1];
364 let rook2Pos = positions[2];
a37076f1 365
6808d7a1
BA
366 pieces[c][rook1Pos] = "r";
367 pieces[c][knight1Pos] = "n";
368 pieces[c][bishop1Pos] = "b";
369 pieces[c][queenPos] = "q";
370 pieces[c][camel1Pos] = "c";
371 pieces[c][camel2Pos] = "c";
372 pieces[c][wildebeestPos] = "w";
373 pieces[c][kingPos] = "k";
374 pieces[c][bishop2Pos] = "b";
375 pieces[c][knight2Pos] = "n";
376 pieces[c][rook2Pos] = "r";
3a2a7b5f 377 flags += V.CoordToColumn(rook1Pos) + V.CoordToColumn(rook2Pos);
dac39588 378 }
6808d7a1
BA
379 return (
380 pieces["b"].join("") +
6f2f9437 381 "/ppppppppppp/92/92/92/92/92/92/PPPPPPPPPPP/" +
dac39588 382 pieces["w"].join("").toUpperCase() +
3a2a7b5f 383 " w 0 " + flags + " -"
6808d7a1 384 );
dac39588 385 }
7e8a7ea1 386
6808d7a1 387};