Commit | Line | Data |
---|---|---|
829f6574 | 1 | import { ChessRules } from "@/base_rules"; |
5fde3a01 | 2 | import { randInt } from "@/utils/alea"; |
829f6574 | 3 | |
6808d7a1 BA |
4 | export const VariantRules = class MarseilleRules extends ChessRules { |
5 | static IsGoodEnpassant(enpassant) { | |
e71161fb BA |
6 | const squares = enpassant.split(","); |
7 | if (squares.length > 2) return false; | |
8 | for (let sq of squares) { | |
9 | if (sq != "-") { | |
dac39588 | 10 | const ep = V.SquareToCoords(sq); |
6808d7a1 | 11 | if (isNaN(ep.x) || !V.OnBoard(ep)) return false; |
dac39588 BA |
12 | } |
13 | } | |
14 | return true; | |
15 | } | |
6e62b1c7 | 16 | |
6808d7a1 | 17 | getTurnFen() { |
dac39588 BA |
18 | return this.turn + this.subTurn; |
19 | } | |
6e62b1c7 | 20 | |
dac39588 | 21 | // There may be 2 enPassant squares (if 2 pawns jump 2 squares in same turn) |
6808d7a1 | 22 | getEnpassantFen() { |
e71161fb BA |
23 | return this.epSquares[this.epSquares.length - 1].map( |
24 | epsq => epsq === undefined | |
25 | ? "-" //no en-passant | |
26 | : V.CoordsToSquare(epsq) | |
27 | ).join(","); | |
dac39588 | 28 | } |
6e62b1c7 | 29 | |
6808d7a1 | 30 | setOtherVariables(fen) { |
dac39588 BA |
31 | const parsedFen = V.ParseFen(fen); |
32 | this.setFlags(parsedFen.flags); | |
e71161fb BA |
33 | this.epSquares = [parsedFen.enpassant.split(",").map(sq => { |
34 | if (sq != "-") return V.SquareToCoords(sq); | |
35 | return undefined; | |
36 | })]; | |
dac39588 BA |
37 | this.scanKingsRooks(fen); |
38 | // Extract subTurn from turn indicator: "w" (first move), or | |
39 | // "w1" or "w2" white subturn 1 or 2, and same for black | |
40 | const fullTurn = V.ParseFen(fen).turn; | |
41 | this.turn = fullTurn[0]; | |
6808d7a1 | 42 | this.subTurn = fullTurn[1] || 0; //"w0" = special code for first move in game |
dac39588 | 43 | } |
6e62b1c7 | 44 | |
6808d7a1 | 45 | getPotentialPawnMoves([x, y]) { |
dac39588 BA |
46 | const color = this.turn; |
47 | let moves = []; | |
6808d7a1 BA |
48 | const [sizeX, sizeY] = [V.size.x, V.size.y]; |
49 | const shiftX = color == "w" ? -1 : 1; | |
50 | const firstRank = color == "w" ? sizeX - 1 : 0; | |
51 | const startRank = color == "w" ? sizeX - 2 : 1; | |
52 | const lastRank = color == "w" ? 0 : sizeX - 1; | |
53 | const finalPieces = | |
54 | x + shiftX == lastRank ? [V.ROOK, V.KNIGHT, V.BISHOP, V.QUEEN] : [V.PAWN]; | |
6e62b1c7 | 55 | |
dac39588 | 56 | // One square forward |
6808d7a1 BA |
57 | if (this.board[x + shiftX][y] == V.EMPTY) { |
58 | for (let piece of finalPieces) { | |
59 | moves.push( | |
60 | this.getBasicMove([x, y], [x + shiftX, y], { c: color, p: piece }) | |
61 | ); | |
dac39588 BA |
62 | } |
63 | // Next condition because pawns on 1st rank can generally jump | |
6808d7a1 BA |
64 | if ( |
65 | [startRank, firstRank].includes(x) && | |
66 | this.board[x + 2 * shiftX][y] == V.EMPTY | |
67 | ) { | |
dac39588 | 68 | // Two squares jump |
6808d7a1 | 69 | moves.push(this.getBasicMove([x, y], [x + 2 * shiftX, y])); |
dac39588 BA |
70 | } |
71 | } | |
72 | // Captures | |
6808d7a1 BA |
73 | for (let shiftY of [-1, 1]) { |
74 | if ( | |
75 | y + shiftY >= 0 && | |
76 | y + shiftY < sizeY && | |
77 | this.board[x + shiftX][y + shiftY] != V.EMPTY && | |
78 | this.canTake([x, y], [x + shiftX, y + shiftY]) | |
79 | ) { | |
80 | for (let piece of finalPieces) { | |
81 | moves.push( | |
82 | this.getBasicMove([x, y], [x + shiftX, y + shiftY], { | |
83 | c: color, | |
84 | p: piece | |
85 | }) | |
86 | ); | |
dac39588 BA |
87 | } |
88 | } | |
89 | } | |
6e62b1c7 | 90 | |
dac39588 BA |
91 | // En passant: always OK if subturn 1, |
92 | // OK on subturn 2 only if enPassant was played at subturn 1 | |
93 | // (and if there are two e.p. squares available). | |
94 | const Lep = this.epSquares.length; | |
6808d7a1 | 95 | const epSquares = this.epSquares[Lep - 1]; //always at least one element |
dac39588 BA |
96 | let epSqs = []; |
97 | epSquares.forEach(sq => { | |
6808d7a1 | 98 | if (sq) epSqs.push(sq); |
dac39588 | 99 | }); |
6808d7a1 | 100 | if (epSqs.length == 0) return moves; |
dac39588 | 101 | const oppCol = V.GetOppCol(color); |
6808d7a1 BA |
102 | for (let sq of epSqs) { |
103 | if ( | |
104 | this.subTurn == 1 || | |
105 | (epSqs.length == 2 && | |
106 | // Was this en-passant capture already played at subturn 1 ? | |
107 | // (Or maybe the opponent filled the en-passant square with a piece) | |
108 | this.board[epSqs[0].x][epSqs[0].y] != V.EMPTY) | |
109 | ) { | |
110 | if ( | |
111 | sq.x == x + shiftX && | |
112 | Math.abs(sq.y - y) == 1 && | |
dac39588 | 113 | // Add condition "enemy pawn must be present" |
6808d7a1 BA |
114 | this.getPiece(x, sq.y) == V.PAWN && |
115 | this.getColor(x, sq.y) == oppCol | |
116 | ) { | |
117 | let epMove = this.getBasicMove([x, y], [sq.x, sq.y]); | |
dac39588 BA |
118 | epMove.vanish.push({ |
119 | x: x, | |
120 | y: sq.y, | |
6808d7a1 | 121 | p: "p", |
dac39588 BA |
122 | c: oppCol |
123 | }); | |
124 | moves.push(epMove); | |
125 | } | |
126 | } | |
127 | } | |
6e62b1c7 | 128 | |
dac39588 BA |
129 | return moves; |
130 | } | |
6e62b1c7 | 131 | |
6808d7a1 | 132 | play(move) { |
dac39588 BA |
133 | move.flags = JSON.stringify(this.aggregateFlags()); |
134 | move.turn = this.turn + this.subTurn; | |
135 | V.PlayOnBoard(this.board, move); | |
136 | const epSq = this.getEpSquare(move); | |
6808d7a1 BA |
137 | if (this.subTurn == 0) { |
138 | //first move in game | |
dac39588 | 139 | this.turn = "b"; |
829f6574 | 140 | this.subTurn = 1; |
dac39588 BA |
141 | this.epSquares.push([epSq]); |
142 | } | |
143 | // Does this move give check on subturn 1? If yes, skip subturn 2 | |
6808d7a1 | 144 | else if (this.subTurn == 1 && this.underCheck(V.GetOppCol(this.turn))) { |
dac39588 BA |
145 | this.turn = V.GetOppCol(this.turn); |
146 | this.epSquares.push([epSq]); | |
147 | move.checkOnSubturn1 = true; | |
6808d7a1 BA |
148 | } else { |
149 | if (this.subTurn == 2) { | |
dac39588 | 150 | this.turn = V.GetOppCol(this.turn); |
6808d7a1 | 151 | let lastEpsq = this.epSquares[this.epSquares.length - 1]; |
dac39588 | 152 | lastEpsq.push(epSq); |
6808d7a1 | 153 | } else this.epSquares.push([epSq]); |
dac39588 BA |
154 | this.subTurn = 3 - this.subTurn; |
155 | } | |
156 | this.updateVariables(move); | |
157 | } | |
6e62b1c7 | 158 | |
6808d7a1 | 159 | undo(move) { |
dac39588 BA |
160 | this.disaggregateFlags(JSON.parse(move.flags)); |
161 | V.UndoOnBoard(this.board, move); | |
6808d7a1 | 162 | if (move.turn[1] == "0" || move.checkOnSubturn1 || this.subTurn == 2) |
dac39588 | 163 | this.epSquares.pop(); |
6808d7a1 | 164 | else { |
e71161fb | 165 | // this.subTurn == 1 |
6808d7a1 | 166 | let lastEpsq = this.epSquares[this.epSquares.length - 1]; |
dac39588 BA |
167 | lastEpsq.pop(); |
168 | } | |
169 | this.turn = move.turn[0]; | |
170 | this.subTurn = parseInt(move.turn[1]); | |
171 | this.unupdateVariables(move); | |
172 | } | |
6e62b1c7 | 173 | |
dac39588 BA |
174 | // NOTE: GenRandInitFen() is OK, |
175 | // since at first move turn indicator is just "w" | |
6e62b1c7 | 176 | |
6808d7a1 | 177 | static get VALUES() { |
dac39588 | 178 | return { |
6808d7a1 BA |
179 | p: 1, |
180 | r: 5, | |
181 | n: 3, | |
182 | b: 3, | |
183 | q: 7, //slightly less than in orthodox game | |
184 | k: 1000 | |
dac39588 BA |
185 | }; |
186 | } | |
0596f5e7 | 187 | |
dac39588 | 188 | // No alpha-beta here, just adapted min-max at depth 2(+1) |
6808d7a1 | 189 | getComputerMove() { |
dac39588 BA |
190 | const maxeval = V.INFINITY; |
191 | const color = this.turn; | |
192 | const oppCol = V.GetOppCol(this.turn); | |
51882959 | 193 | |
dac39588 BA |
194 | // Search best (half) move for opponent turn |
195 | const getBestMoveEval = () => { | |
dac39588 | 196 | let score = this.getCurrentScore(); |
6808d7a1 BA |
197 | if (score != "*") { |
198 | if (score == "1/2") return 0; | |
dac39588 BA |
199 | return maxeval * (score == "1-0" ? 1 : -1); |
200 | } | |
201 | let moves = this.getAllValidMoves(); | |
6808d7a1 BA |
202 | let res = oppCol == "w" ? -maxeval : maxeval; |
203 | for (let m of moves) { | |
dac39588 BA |
204 | this.play(m); |
205 | score = this.getCurrentScore(); | |
206 | // Now turn is oppCol,2 if m doesn't give check | |
207 | // Otherwise it's color,1. In both cases the next test makes sense | |
6808d7a1 | 208 | if (score != "*") { |
dac39588 | 209 | if (score == "1/2") |
6808d7a1 BA |
210 | res = oppCol == "w" ? Math.max(res, 0) : Math.min(res, 0); |
211 | else { | |
dac39588 BA |
212 | // Found a mate |
213 | this.undo(m); | |
214 | return maxeval * (score == "1-0" ? 1 : -1); | |
215 | } | |
216 | } | |
217 | const evalPos = this.evalPosition(); | |
6808d7a1 | 218 | res = oppCol == "w" ? Math.max(res, evalPos) : Math.min(res, evalPos); |
dac39588 BA |
219 | this.undo(m); |
220 | } | |
221 | return res; | |
222 | }; | |
6e62b1c7 | 223 | |
dac39588 BA |
224 | let moves11 = this.getAllValidMoves(); |
225 | let doubleMoves = []; | |
226 | // Rank moves using a min-max at depth 2 | |
6808d7a1 | 227 | for (let i = 0; i < moves11.length; i++) { |
dac39588 | 228 | this.play(moves11[i]); |
6808d7a1 | 229 | if (this.turn != color) { |
dac39588 | 230 | // We gave check with last move: search the best opponent move |
6808d7a1 BA |
231 | doubleMoves.push({ moves: [moves11[i]], eval: getBestMoveEval() }); |
232 | } else { | |
dac39588 | 233 | let moves12 = this.getAllValidMoves(); |
6808d7a1 | 234 | for (let j = 0; j < moves12.length; j++) { |
dac39588 BA |
235 | this.play(moves12[j]); |
236 | doubleMoves.push({ | |
6808d7a1 BA |
237 | moves: [moves11[i], moves12[j]], |
238 | eval: getBestMoveEval() | |
239 | }); | |
dac39588 BA |
240 | this.undo(moves12[j]); |
241 | } | |
242 | } | |
243 | this.undo(moves11[i]); | |
244 | } | |
6e62b1c7 | 245 | |
6808d7a1 BA |
246 | doubleMoves.sort((a, b) => { |
247 | return (color == "w" ? 1 : -1) * (b.eval - a.eval); | |
248 | }); | |
dac39588 | 249 | let candidates = [0]; //indices of candidates moves |
6808d7a1 BA |
250 | for ( |
251 | let i = 1; | |
252 | i < doubleMoves.length && doubleMoves[i].eval == doubleMoves[0].eval; | |
253 | i++ | |
254 | ) { | |
dac39588 BA |
255 | candidates.push(i); |
256 | } | |
78bab51e | 257 | |
dac39588 | 258 | const selected = doubleMoves[randInt(candidates.length)].moves; |
6808d7a1 | 259 | if (selected.length == 1) return selected[0]; |
dac39588 BA |
260 | return selected; |
261 | } | |
6808d7a1 | 262 | }; |