Cosmetics
[vchess.git] / client / src / variants / Crazyhouse.js
CommitLineData
0c3fe8a6 1import { ChessRules, PiPo, Move } from "@/base_rules";
6808d7a1 2import { ArrayFun } from "@/utils/array";
0c3fe8a6 3
6808d7a1
BA
4export const VariantRules = class CrazyhouseRules extends ChessRules {
5 static IsGoodFen(fen) {
6 if (!ChessRules.IsGoodFen(fen)) return false;
dac39588
BA
7 const fenParsed = V.ParseFen(fen);
8 // 5) Check reserves
9 if (!fenParsed.reserve || !fenParsed.reserve.match(/^[0-9]{10,10}$/))
10 return false;
11 // 6) Check promoted array
6808d7a1
BA
12 if (!fenParsed.promoted) return false;
13 if (fenParsed.promoted == "-") return true; //no promoted piece on board
dac39588 14 const squares = fenParsed.promoted.split(",");
6808d7a1 15 for (let square of squares) {
dac39588
BA
16 const c = V.SquareToCoords(square);
17 if (c.y < 0 || c.y > V.size.y || isNaN(c.x) || c.x < 0 || c.x > V.size.x)
18 return false;
19 }
20 return true;
21 }
2d7194bd 22
6808d7a1 23 static ParseFen(fen) {
dac39588 24 const fenParts = fen.split(" ");
6808d7a1
BA
25 return Object.assign(ChessRules.ParseFen(fen), {
26 reserve: fenParts[5],
27 promoted: fenParts[6]
28 });
dac39588 29 }
fb6ceeff 30
7ba4a5bc
BA
31 static GenRandInitFen(randomness) {
32 return ChessRules.GenRandInitFen(randomness) + " 0000000000 -";
dac39588 33 }
2d7194bd 34
6808d7a1
BA
35 getFen() {
36 return (
37 super.getFen() + " " + this.getReserveFen() + " " + this.getPromotedFen()
38 );
dac39588 39 }
2d7194bd 40
f9c36b2d
BA
41 getFenForRepeat() {
42 return (
43 this.getBaseFen() + "_" +
44 this.getTurnFen() + "_" +
45 this.getFlagsFen() + "_" +
46 this.getEnpassantFen() + "_" +
47 this.getReserveFen() + "_" +
48 this.getPromotedFen()
49 );
50 }
51
6808d7a1 52 getReserveFen() {
dac39588 53 let counts = new Array(10);
6808d7a1
BA
54 for (
55 let i = 0;
56 i < V.PIECES.length - 1;
57 i++ //-1: no king reserve
58 ) {
dac39588 59 counts[i] = this.reserve["w"][V.PIECES[i]];
6808d7a1 60 counts[5 + i] = this.reserve["b"][V.PIECES[i]];
dac39588
BA
61 }
62 return counts.join("");
63 }
2d7194bd 64
6808d7a1 65 getPromotedFen() {
dac39588 66 let res = "";
6808d7a1
BA
67 for (let i = 0; i < V.size.x; i++) {
68 for (let j = 0; j < V.size.y; j++) {
c292ebb2 69 if (this.promoted[i][j]) res += V.CoordsToSquare({ x: i, y: j }) + ",";
dac39588
BA
70 }
71 }
c292ebb2 72 // Remove last comma:
6808d7a1 73 if (res.length > 0) res = res.slice(0, -1);
6808d7a1 74 else res = "-";
dac39588
BA
75 return res;
76 }
2d7194bd 77
6808d7a1 78 setOtherVariables(fen) {
dac39588
BA
79 super.setOtherVariables(fen);
80 const fenParsed = V.ParseFen(fen);
81 // Also init reserves (used by the interface to show landable pieces)
6808d7a1
BA
82 this.reserve = {
83 w: {
dac39588
BA
84 [V.PAWN]: parseInt(fenParsed.reserve[0]),
85 [V.ROOK]: parseInt(fenParsed.reserve[1]),
86 [V.KNIGHT]: parseInt(fenParsed.reserve[2]),
87 [V.BISHOP]: parseInt(fenParsed.reserve[3]),
6808d7a1 88 [V.QUEEN]: parseInt(fenParsed.reserve[4])
dac39588 89 },
6808d7a1 90 b: {
dac39588
BA
91 [V.PAWN]: parseInt(fenParsed.reserve[5]),
92 [V.ROOK]: parseInt(fenParsed.reserve[6]),
93 [V.KNIGHT]: parseInt(fenParsed.reserve[7]),
94 [V.BISHOP]: parseInt(fenParsed.reserve[8]),
6808d7a1 95 [V.QUEEN]: parseInt(fenParsed.reserve[9])
dac39588
BA
96 }
97 };
98 this.promoted = ArrayFun.init(V.size.x, V.size.y, false);
6808d7a1
BA
99 if (fenParsed.promoted != "-") {
100 for (let square of fenParsed.promoted.split(",")) {
c292ebb2
BA
101 const coords = V.SquareToCoords(square);
102 this.promoted[coords.x][coords.y] = true;
dac39588
BA
103 }
104 }
105 }
5c42c64e 106
6808d7a1
BA
107 getColor(i, j) {
108 if (i >= V.size.x) return i == V.size.x ? "w" : "b";
dac39588
BA
109 return this.board[i][j].charAt(0);
110 }
2d7194bd 111
6808d7a1
BA
112 getPiece(i, j) {
113 if (i >= V.size.x) return V.RESERVE_PIECES[j];
dac39588
BA
114 return this.board[i][j].charAt(1);
115 }
a6abf094 116
dac39588 117 // Used by the interface:
241bf8f2 118 getReservePpath(index, color) {
dac39588
BA
119 return color + V.RESERVE_PIECES[index];
120 }
a6abf094 121
dac39588 122 // Ordering on reserve pieces
6808d7a1
BA
123 static get RESERVE_PIECES() {
124 return [V.PAWN, V.ROOK, V.KNIGHT, V.BISHOP, V.QUEEN];
dac39588 125 }
1221ac47 126
6808d7a1 127 getReserveMoves([x, y]) {
dac39588
BA
128 const color = this.turn;
129 const p = V.RESERVE_PIECES[y];
6808d7a1 130 if (this.reserve[color][p] == 0) return [];
dac39588 131 let moves = [];
6808d7a1
BA
132 const pawnShift = p == V.PAWN ? 1 : 0;
133 for (let i = pawnShift; i < V.size.x - pawnShift; i++) {
134 for (let j = 0; j < V.size.y; j++) {
135 if (this.board[i][j] == V.EMPTY) {
dac39588
BA
136 let mv = new Move({
137 appear: [
138 new PiPo({
139 x: i,
140 y: j,
141 c: color,
142 p: p
143 })
144 ],
145 vanish: [],
6808d7a1
BA
146 start: { x: x, y: y }, //a bit artificial...
147 end: { x: i, y: j }
dac39588
BA
148 });
149 moves.push(mv);
150 }
151 }
152 }
153 return moves;
154 }
a6abf094 155
6808d7a1
BA
156 getPotentialMovesFrom([x, y]) {
157 if (x >= V.size.x) {
dac39588 158 // Reserves, outside of board: x == sizeX(+1)
6808d7a1 159 return this.getReserveMoves([x, y]);
dac39588
BA
160 }
161 // Standard moves
6808d7a1 162 return super.getPotentialMovesFrom([x, y]);
dac39588 163 }
a6abf094 164
6808d7a1 165 getAllValidMoves() {
dac39588
BA
166 let moves = super.getAllValidMoves();
167 const color = this.turn;
6808d7a1
BA
168 for (let i = 0; i < V.RESERVE_PIECES.length; i++)
169 moves = moves.concat(
170 this.getReserveMoves([V.size.x + (color == "w" ? 0 : 1), i])
171 );
dac39588
BA
172 return this.filterValid(moves);
173 }
a6abf094 174
6808d7a1
BA
175 atLeastOneMove() {
176 if (!super.atLeastOneMove()) {
dac39588 177 // Search one reserve move
6808d7a1 178 for (let i = 0; i < V.RESERVE_PIECES.length; i++) {
dac39588 179 let moves = this.filterValid(
6808d7a1
BA
180 this.getReserveMoves([V.size.x + (this.turn == "w" ? 0 : 1), i])
181 );
182 if (moves.length > 0) return true;
dac39588
BA
183 }
184 return false;
185 }
186 return true;
187 }
a6abf094 188
6808d7a1 189 updateVariables(move) {
dac39588 190 super.updateVariables(move);
6808d7a1 191 if (move.vanish.length == 2 && move.appear.length == 2) return; //skip castle
dac39588 192 const color = move.appear[0].c;
6808d7a1 193 if (move.vanish.length == 0) {
dac39588
BA
194 this.reserve[color][move.appear[0].p]--;
195 return;
196 }
197 move.movePromoted = this.promoted[move.start.x][move.start.y];
6808d7a1 198 move.capturePromoted = this.promoted[move.end.x][move.end.y];
dac39588 199 this.promoted[move.start.x][move.start.y] = false;
6808d7a1
BA
200 this.promoted[move.end.x][move.end.y] =
201 move.movePromoted ||
202 (move.vanish[0].p == V.PAWN && move.appear[0].p != V.PAWN);
203 if (move.capturePromoted) this.reserve[color][V.PAWN]++;
204 else if (move.vanish.length == 2) this.reserve[color][move.vanish[1].p]++;
dac39588 205 }
1221ac47 206
6808d7a1 207 unupdateVariables(move) {
dac39588 208 super.unupdateVariables(move);
6808d7a1 209 if (move.vanish.length == 2 && move.appear.length == 2) return;
dac39588 210 const color = this.turn;
6808d7a1 211 if (move.vanish.length == 0) {
dac39588
BA
212 this.reserve[color][move.appear[0].p]++;
213 return;
214 }
6808d7a1 215 if (move.movePromoted) this.promoted[move.start.x][move.start.y] = true;
dac39588 216 this.promoted[move.end.x][move.end.y] = move.capturePromoted;
6808d7a1
BA
217 if (move.capturePromoted) this.reserve[color][V.PAWN]--;
218 else if (move.vanish.length == 2) this.reserve[color][move.vanish[1].p]--;
dac39588 219 }
a6abf094 220
6808d7a1 221 static get SEARCH_DEPTH() {
78d64531 222 // High branching factor
6808d7a1 223 return 2;
78d64531 224 }
a6abf094 225
6808d7a1 226 evalPosition() {
dac39588
BA
227 let evaluation = super.evalPosition();
228 // Add reserves:
6808d7a1 229 for (let i = 0; i < V.RESERVE_PIECES.length; i++) {
dac39588
BA
230 const p = V.RESERVE_PIECES[i];
231 evaluation += this.reserve["w"][p] * V.VALUES[p];
232 evaluation -= this.reserve["b"][p] * V.VALUES[p];
233 }
234 return evaluation;
235 }
6752407b 236
6808d7a1
BA
237 getNotation(move) {
238 if (move.vanish.length > 0) return super.getNotation(move);
dac39588
BA
239 // Rebirth:
240 const piece =
6808d7a1 241 move.appear[0].p != V.PAWN ? move.appear[0].p.toUpperCase() : "";
dac39588
BA
242 return piece + "@" + V.CoordsToSquare(move.end);
243 }
6808d7a1 244};