Draft Hiddenqueen, Grasshopper and Knightmate chess (rules unwritten)
[vchess.git] / client / src / variants / Wildebeest.js
CommitLineData
0c3fe8a6
BA
1import { ChessRules } from "@/base_rules";
2import { ArrayFun } from "@/utils/array";
3import { sample, randInt } from "@/utils/alea";
4
6808d7a1 5export const VariantRules = class WildebeestRules extends ChessRules {
6808d7a1
BA
6 static get size() {
7 return { x: 10, y: 11 };
8 }
8a196305 9
6808d7a1
BA
10 static get CAMEL() {
11 return "c";
12 }
13 static get WILDEBEEST() {
14 return "w";
15 }
a37076f1 16
6808d7a1
BA
17 static get PIECES() {
18 return ChessRules.PIECES.concat([V.CAMEL, V.WILDEBEEST]);
dac39588 19 }
7931e479 20
6808d7a1 21 static get steps() {
dac39588
BA
22 return Object.assign(
23 ChessRules.steps, //add camel moves:
6808d7a1
BA
24 {
25 c: [
26 [-3, -1],
27 [-3, 1],
28 [-1, -3],
29 [-1, 3],
30 [1, -3],
31 [1, 3],
32 [3, -1],
33 [3, 1]
34 ]
35 }
dac39588
BA
36 );
37 }
a37076f1 38
6808d7a1
BA
39 static IsGoodEnpassant(enpassant) {
40 if (enpassant != "-") {
dac39588 41 const squares = enpassant.split(",");
6808d7a1
BA
42 if (squares.length > 2) return false;
43 for (let sq of squares) {
dac39588 44 const ep = V.SquareToCoords(sq);
6808d7a1 45 if (isNaN(ep.x) || !V.OnBoard(ep)) return false;
dac39588
BA
46 }
47 }
48 return true;
49 }
6e62b1c7 50
241bf8f2
BA
51 getPpath(b) {
52 return ([V.CAMEL, V.WILDEBEEST].includes(b[1]) ? "Wildebeest/" : "") + b;
53 }
54
dac39588 55 // There may be 2 enPassant squares (if pawn jump 3 squares)
6808d7a1 56 getEnpassantFen() {
dac39588 57 const L = this.epSquares.length;
6808d7a1 58 if (!this.epSquares[L - 1]) return "-"; //no en-passant
dac39588 59 let res = "";
6808d7a1 60 this.epSquares[L - 1].forEach(sq => {
dac39588
BA
61 res += V.CoordsToSquare(sq) + ",";
62 });
6808d7a1 63 return res.slice(0, -1); //remove last comma
dac39588 64 }
2d7194bd 65
dac39588 66 // En-passant after 2-sq or 3-sq jumps
6808d7a1
BA
67 getEpSquare(moveOrSquare) {
68 if (!moveOrSquare) return undefined;
69 if (typeof moveOrSquare === "string") {
dac39588 70 const square = moveOrSquare;
6808d7a1 71 if (square == "-") return undefined;
dac39588
BA
72 let res = [];
73 square.split(",").forEach(sq => {
74 res.push(V.SquareToCoords(sq));
75 });
76 return res;
77 }
78 // Argument is a move:
79 const move = moveOrSquare;
6808d7a1
BA
80 const [sx, sy, ex] = [move.start.x, move.start.y, move.end.x];
81 if (this.getPiece(sx, sy) == V.PAWN && Math.abs(sx - ex) >= 2) {
82 const step = (ex - sx) / Math.abs(ex - sx);
83 let res = [
84 {
85 x: sx + step,
86 y: sy
87 }
88 ];
89 if (sx + 2 * step != ex) {
90 //3-squares move
dac39588 91 res.push({
6808d7a1 92 x: sx + 2 * step,
dac39588
BA
93 y: sy
94 });
95 }
96 return res;
97 }
98 return undefined; //default
99 }
a37076f1 100
6808d7a1
BA
101 getPotentialMovesFrom([x, y]) {
102 switch (this.getPiece(x, y)) {
dac39588 103 case V.CAMEL:
6808d7a1 104 return this.getPotentialCamelMoves([x, y]);
dac39588 105 case V.WILDEBEEST:
6808d7a1 106 return this.getPotentialWildebeestMoves([x, y]);
dac39588 107 default:
6808d7a1 108 return super.getPotentialMovesFrom([x, y]);
dac39588
BA
109 }
110 }
a37076f1 111
dac39588 112 // Pawns jump 2 or 3 squares, and promote to queen or wildebeest
6808d7a1 113 getPotentialPawnMoves([x, y]) {
dac39588
BA
114 const color = this.turn;
115 let moves = [];
6808d7a1
BA
116 const [sizeX, sizeY] = [V.size.x, V.size.y];
117 const shiftX = color == "w" ? -1 : 1;
118 const startRanks = color == "w" ? [sizeX - 2, sizeX - 3] : [1, 2];
119 const lastRank = color == "w" ? 0 : sizeX - 1;
e3ef199c
BA
120 const finalPieces = x + shiftX == lastRank
121 ? [V.WILDEBEEST, V.QUEEN]
122 : [V.PAWN];
a37076f1 123
6808d7a1 124 if (this.board[x + shiftX][y] == V.EMPTY) {
dac39588
BA
125 // One square forward
126 for (let piece of finalPieces)
6808d7a1
BA
127 moves.push(
128 this.getBasicMove([x, y], [x + shiftX, y], { c: color, p: piece })
129 );
130 if (startRanks.includes(x)) {
131 if (this.board[x + 2 * shiftX][y] == V.EMPTY) {
dac39588 132 // Two squares jump
6808d7a1
BA
133 moves.push(this.getBasicMove([x, y], [x + 2 * shiftX, y]));
134 if (x == startRanks[0] && this.board[x + 3 * shiftX][y] == V.EMPTY) {
dac39588 135 // Three squares jump
6808d7a1 136 moves.push(this.getBasicMove([x, y], [x + 3 * shiftX, y]));
dac39588
BA
137 }
138 }
139 }
140 }
141 // Captures
6808d7a1
BA
142 for (let shiftY of [-1, 1]) {
143 if (
144 y + shiftY >= 0 &&
145 y + shiftY < sizeY &&
146 this.board[x + shiftX][y + shiftY] != V.EMPTY &&
147 this.canTake([x, y], [x + shiftX, y + shiftY])
148 ) {
149 for (let piece of finalPieces) {
150 moves.push(
151 this.getBasicMove([x, y], [x + shiftX, y + shiftY], {
152 c: color,
153 p: piece
154 })
155 );
dac39588
BA
156 }
157 }
158 }
a37076f1 159
dac39588
BA
160 // En passant
161 const Lep = this.epSquares.length;
6808d7a1
BA
162 const epSquare = this.epSquares[Lep - 1];
163 if (epSquare) {
164 for (let epsq of epSquare) {
dac39588 165 // TODO: some redundant checks
6808d7a1
BA
166 if (epsq.x == x + shiftX && Math.abs(epsq.y - y) == 1) {
167 var enpassantMove = this.getBasicMove([x, y], [epsq.x, epsq.y]);
dac39588
BA
168 // WARNING: the captured pawn may be diagonally behind us,
169 // if it's a 3-squares jump and we take on 1st passing square
6808d7a1 170 const px = this.board[x][epsq.y] != V.EMPTY ? x : x - shiftX;
dac39588
BA
171 enpassantMove.vanish.push({
172 x: px,
173 y: epsq.y,
6808d7a1
BA
174 p: "p",
175 c: this.getColor(px, epsq.y)
dac39588
BA
176 });
177 moves.push(enpassantMove);
178 }
179 }
180 }
a37076f1 181
dac39588
BA
182 return moves;
183 }
a37076f1 184
dac39588 185 // TODO: wildebeest castle
8a196305 186
6808d7a1 187 getPotentialCamelMoves(sq) {
dac39588
BA
188 return this.getSlideNJumpMoves(sq, V.steps[V.CAMEL], "oneStep");
189 }
a37076f1 190
6808d7a1 191 getPotentialWildebeestMoves(sq) {
dac39588 192 return this.getSlideNJumpMoves(
6808d7a1
BA
193 sq,
194 V.steps[V.KNIGHT].concat(V.steps[V.CAMEL]),
195 "oneStep"
196 );
dac39588 197 }
a37076f1 198
6808d7a1
BA
199 isAttacked(sq, colors) {
200 return (
201 super.isAttacked(sq, colors) ||
202 this.isAttackedByCamel(sq, colors) ||
203 this.isAttackedByWildebeest(sq, colors)
204 );
dac39588 205 }
a37076f1 206
6808d7a1
BA
207 isAttackedByCamel(sq, colors) {
208 return this.isAttackedBySlideNJump(
209 sq,
210 colors,
211 V.CAMEL,
212 V.steps[V.CAMEL],
213 "oneStep"
214 );
dac39588 215 }
a37076f1 216
6808d7a1
BA
217 isAttackedByWildebeest(sq, colors) {
218 return this.isAttackedBySlideNJump(
219 sq,
220 colors,
221 V.WILDEBEEST,
222 V.steps[V.KNIGHT].concat(V.steps[V.CAMEL]),
223 "oneStep"
224 );
dac39588 225 }
a37076f1 226
6808d7a1
BA
227 getCurrentScore() {
228 if (this.atLeastOneMove())
229 // game not over
0c3fe8a6
BA
230 return "*";
231
dac39588 232 // No valid move: game is lost (stalemate is a win)
6808d7a1 233 return this.turn == "w" ? "0-1" : "1-0";
dac39588 234 }
efb20746 235
dac39588
BA
236 static get VALUES() {
237 return Object.assign(
a97bdbda
BA
238 { c: 3, w: 7 }, //experimental
239 ChessRules.VALUES
dac39588
BA
240 );
241 }
a37076f1 242
6808d7a1
BA
243 static get SEARCH_DEPTH() {
244 return 2;
245 }
3c09dc49 246
6808d7a1
BA
247 static GenRandInitFen() {
248 let pieces = { w: new Array(10), b: new Array(10) };
249 for (let c of ["w", "b"]) {
dac39588 250 let positions = ArrayFun.range(11);
a37076f1 251
dac39588 252 // Get random squares for bishops + camels (different colors)
6808d7a1
BA
253 let randIndexes = sample(ArrayFun.range(6), 2).map(i => {
254 return 2 * i;
255 });
dac39588
BA
256 let bishop1Pos = positions[randIndexes[0]];
257 let camel1Pos = positions[randIndexes[1]];
258 // The second bishop (camel) must be on a square of different color
6808d7a1
BA
259 let randIndexes_tmp = sample(ArrayFun.range(5), 2).map(i => {
260 return 2 * i + 1;
261 });
dac39588
BA
262 let bishop2Pos = positions[randIndexes_tmp[0]];
263 let camel2Pos = positions[randIndexes_tmp[1]];
6808d7a1
BA
264 for (let idx of randIndexes.concat(randIndexes_tmp).sort((a, b) => {
265 return b - a;
266 })) {
267 //largest indices first
dac39588
BA
268 positions.splice(idx, 1);
269 }
a37076f1 270
dac39588
BA
271 let randIndex = randInt(7);
272 let knight1Pos = positions[randIndex];
273 positions.splice(randIndex, 1);
274 randIndex = randInt(6);
275 let knight2Pos = positions[randIndex];
276 positions.splice(randIndex, 1);
a37076f1 277
dac39588
BA
278 randIndex = randInt(5);
279 let queenPos = positions[randIndex];
280 positions.splice(randIndex, 1);
8a196305 281
dac39588
BA
282 // Random square for wildebeest
283 randIndex = randInt(4);
284 let wildebeestPos = positions[randIndex];
285 positions.splice(randIndex, 1);
8a196305 286
dac39588
BA
287 let rook1Pos = positions[0];
288 let kingPos = positions[1];
289 let rook2Pos = positions[2];
a37076f1 290
6808d7a1
BA
291 pieces[c][rook1Pos] = "r";
292 pieces[c][knight1Pos] = "n";
293 pieces[c][bishop1Pos] = "b";
294 pieces[c][queenPos] = "q";
295 pieces[c][camel1Pos] = "c";
296 pieces[c][camel2Pos] = "c";
297 pieces[c][wildebeestPos] = "w";
298 pieces[c][kingPos] = "k";
299 pieces[c][bishop2Pos] = "b";
300 pieces[c][knight2Pos] = "n";
301 pieces[c][rook2Pos] = "r";
dac39588 302 }
6808d7a1
BA
303 return (
304 pieces["b"].join("") +
dac39588
BA
305 "/ppppppppppp/11/11/11/11/11/11/PPPPPPPPPPP/" +
306 pieces["w"].join("").toUpperCase() +
6808d7a1
BA
307 " w 0 1111 -"
308 );
dac39588 309 }
6808d7a1 310};