Allow to set also randomness against computer
[vchess.git] / client / src / variants / Antiking.js
1 import { ChessRules } from "@/base_rules";
2 import { ArrayFun } from "@/utils/array";
3 import { randInt } from "@/utils/alea";
4
5 export const VariantRules = class AntikingRules extends ChessRules {
6 static get ANTIKING() {
7 return "a";
8 }
9
10 static get PIECES() {
11 return ChessRules.PIECES.concat([V.ANTIKING]);
12 }
13
14 getPpath(b) {
15 return b[1] == "a" ? "Antiking/" + b : b;
16 }
17
18 setOtherVariables(fen) {
19 super.setOtherVariables(fen);
20 this.antikingPos = { w: [-1, -1], b: [-1, -1] };
21 const rows = V.ParseFen(fen).position.split("/");
22 for (let i = 0; i < rows.length; i++) {
23 let k = 0;
24 for (let j = 0; j < rows[i].length; j++) {
25 switch (rows[i].charAt(j)) {
26 case "a":
27 this.antikingPos["b"] = [i, k];
28 break;
29 case "A":
30 this.antikingPos["w"] = [i, k];
31 break;
32 default: {
33 const num = parseInt(rows[i].charAt(j));
34 if (!isNaN(num)) k += num - 1;
35 }
36 }
37 k++;
38 }
39 }
40 }
41
42 canTake([x1, y1], [x2, y2]) {
43 const piece1 = this.getPiece(x1, y1);
44 const piece2 = this.getPiece(x2, y2);
45 const color1 = this.getColor(x1, y1);
46 const color2 = this.getColor(x2, y2);
47 return (
48 piece2 != "a" &&
49 ((piece1 != "a" && color1 != color2) ||
50 (piece1 == "a" && color1 == color2))
51 );
52 }
53
54 getPotentialMovesFrom([x, y]) {
55 switch (this.getPiece(x, y)) {
56 case V.ANTIKING:
57 return this.getPotentialAntikingMoves([x, y]);
58 default:
59 return super.getPotentialMovesFrom([x, y]);
60 }
61 }
62
63 getPotentialAntikingMoves(sq) {
64 return this.getSlideNJumpMoves(
65 sq,
66 V.steps[V.ROOK].concat(V.steps[V.BISHOP]),
67 "oneStep"
68 );
69 }
70
71 isAttacked(sq, colors) {
72 return (
73 super.isAttacked(sq, colors) || this.isAttackedByAntiking(sq, colors)
74 );
75 }
76
77 isAttackedByKing([x, y], colors) {
78 if (this.getPiece(x, y) == V.ANTIKING) return false; //antiking is not attacked by king
79 return this.isAttackedBySlideNJump(
80 [x, y],
81 colors,
82 V.KING,
83 V.steps[V.ROOK].concat(V.steps[V.BISHOP]),
84 "oneStep"
85 );
86 }
87
88 isAttackedByAntiking([x, y], colors) {
89 if ([V.KING, V.ANTIKING].includes(this.getPiece(x, y))) return false; //(anti)king is not attacked by antiking
90 return this.isAttackedBySlideNJump(
91 [x, y],
92 colors,
93 V.ANTIKING,
94 V.steps[V.ROOK].concat(V.steps[V.BISHOP]),
95 "oneStep"
96 );
97 }
98
99 underCheck(color) {
100 const oppCol = V.GetOppCol(color);
101 let res =
102 this.isAttacked(this.kingPos[color], [oppCol]) ||
103 !this.isAttacked(this.antikingPos[color], [oppCol]);
104 return res;
105 }
106
107 getCheckSquares(color) {
108 let res = super.getCheckSquares(color);
109 if (!this.isAttacked(this.antikingPos[color], [V.GetOppCol(color)]))
110 res.push(JSON.parse(JSON.stringify(this.antikingPos[color])));
111 return res;
112 }
113
114 updateVariables(move) {
115 super.updateVariables(move);
116 const piece = move.vanish[0].p;
117 const c = move.vanish[0].c;
118 // Update antiking position
119 if (piece == V.ANTIKING) {
120 this.antikingPos[c][0] = move.appear[0].x;
121 this.antikingPos[c][1] = move.appear[0].y;
122 }
123 }
124
125 unupdateVariables(move) {
126 super.unupdateVariables(move);
127 const c = move.vanish[0].c;
128 if (move.vanish[0].p == V.ANTIKING)
129 this.antikingPos[c] = [move.start.x, move.start.y];
130 }
131
132 getCurrentScore() {
133 if (this.atLeastOneMove())
134 return "*";
135
136 const color = this.turn;
137 const oppCol = V.GetOppCol(color);
138 if (
139 !this.isAttacked(this.kingPos[color], [oppCol]) &&
140 this.isAttacked(this.antikingPos[color], [oppCol])
141 ) {
142 return "1/2";
143 }
144 return color == "w" ? "0-1" : "1-0";
145 }
146
147 static get VALUES() {
148 return Object.assign(
149 { a: 1000 },
150 ChessRules.VALUES
151 );
152 }
153
154 static GenRandInitFen(randomness) {
155 if (randomness == 0)
156 return "rnbqkbnr/pppppppp/3A4/8/8/3a4/PPPPPPPP/RNBQKBNR w 0 1111 -";
157
158 let pieces = { w: new Array(8), b: new Array(8) };
159 let antikingPos = { w: -1, b: -1 };
160 for (let c of ["w", "b"]) {
161 if (c == 'b' && randomness == 1) {
162 pieces['b'] = pieces['w'];
163 break;
164 }
165
166 let positions = ArrayFun.range(8);
167
168 // Get random squares for bishops, but avoid corners; because,
169 // if an antiking blocks a cornered bishop, it can never be checkmated
170 let randIndex = 2 * randInt(1, 4);
171 const bishop1Pos = positions[randIndex];
172 let randIndex_tmp = 2 * randInt(3) + 1;
173 const bishop2Pos = positions[randIndex_tmp];
174 positions.splice(Math.max(randIndex, randIndex_tmp), 1);
175 positions.splice(Math.min(randIndex, randIndex_tmp), 1);
176
177 randIndex = randInt(6);
178 const knight1Pos = positions[randIndex];
179 positions.splice(randIndex, 1);
180 randIndex = randInt(5);
181 const knight2Pos = positions[randIndex];
182 positions.splice(randIndex, 1);
183
184 randIndex = randInt(4);
185 const queenPos = positions[randIndex];
186 positions.splice(randIndex, 1);
187
188 const rook1Pos = positions[0];
189 const kingPos = positions[1];
190 const rook2Pos = positions[2];
191
192 // Random squares for antikings
193 antikingPos[c] = randInt(8);
194
195 pieces[c][rook1Pos] = "r";
196 pieces[c][knight1Pos] = "n";
197 pieces[c][bishop1Pos] = "b";
198 pieces[c][queenPos] = "q";
199 pieces[c][kingPos] = "k";
200 pieces[c][bishop2Pos] = "b";
201 pieces[c][knight2Pos] = "n";
202 pieces[c][rook2Pos] = "r";
203 }
204 const ranks23_black =
205 "pppppppp/" +
206 (antikingPos["w"] > 0 ? antikingPos["w"] : "") +
207 "A" +
208 (antikingPos["w"] < 7 ? 7 - antikingPos["w"] : "");
209 const ranks23_white =
210 (antikingPos["b"] > 0 ? antikingPos["b"] : "") +
211 "a" +
212 (antikingPos["b"] < 7 ? 7 - antikingPos["b"] : "") +
213 "/PPPPPPPP";
214 return (
215 pieces["b"].join("") +
216 "/" +
217 ranks23_black +
218 "/8/8/" +
219 ranks23_white +
220 "/" +
221 pieces["w"].join("").toUpperCase() +
222 " w 0 1111 -"
223 );
224 }
225 };