Commit | Line | Data |
---|---|---|
0c3fe8a6 BA |
1 | import { ChessRules } from "@/base_rules"; |
2 | ||
32f6285e | 3 | export class ZenRules extends ChessRules { |
7e8a7ea1 | 4 | |
ffeaef85 BA |
5 | getEpSquare(moveOrSquare) { |
6 | if (!moveOrSquare) return undefined; | |
7 | if (typeof moveOrSquare === "string") { | |
8 | const square = moveOrSquare; | |
9 | if (square == "-") return undefined; | |
10 | return V.SquareToCoords(square); | |
11 | } | |
12 | const move = moveOrSquare; | |
13 | const s = move.start, | |
14 | e = move.end; | |
15 | if ( | |
16 | // Exclude captures (of rooks for example) | |
17 | move.vanish.length == 1 && | |
18 | s.y == e.y && | |
19 | Math.abs(s.x - e.x) == 2 && | |
20 | move.appear[0].p == V.PAWN | |
21 | ) { | |
22 | return { | |
23 | x: (s.x + e.x) / 2, | |
24 | y: s.y | |
25 | }; | |
26 | } | |
27 | return undefined; | |
6808d7a1 | 28 | } |
dac39588 BA |
29 | |
30 | // TODO(?): some duplicated code in 2 next functions | |
6808d7a1 | 31 | getSlideNJumpMoves([x, y], steps, oneStep) { |
dac39588 | 32 | let moves = []; |
6808d7a1 | 33 | outerLoop: for (let loop = 0; loop < steps.length; loop++) { |
dac39588 BA |
34 | const step = steps[loop]; |
35 | let i = x + step[0]; | |
36 | let j = y + step[1]; | |
6808d7a1 BA |
37 | while (V.OnBoard(i, j) && this.board[i][j] == V.EMPTY) { |
38 | moves.push(this.getBasicMove([x, y], [i, j])); | |
39 | if (oneStep) continue outerLoop; | |
dac39588 BA |
40 | i += step[0]; |
41 | j += step[1]; | |
42 | } | |
43 | // No capture check: handled elsewhere (next method) | |
44 | } | |
45 | return moves; | |
46 | } | |
47 | ||
48 | // follow steps from x,y until something is met. | |
49 | // if met piece is opponent and same movement (asA): eat it! | |
6808d7a1 BA |
50 | findCaptures_aux([x, y], asA) { |
51 | const color = this.getColor(x, y); | |
9bd6786b | 52 | let moves = []; |
6808d7a1 BA |
53 | const steps = |
54 | asA != V.PAWN | |
55 | ? asA == V.QUEEN | |
56 | ? V.steps[V.ROOK].concat(V.steps[V.BISHOP]) | |
57 | : V.steps[asA] | |
58 | : color == "w" | |
59 | ? [ | |
60 | [-1, -1], | |
61 | [-1, 1] | |
62 | ] | |
63 | : [ | |
64 | [1, -1], | |
65 | [1, 1] | |
66 | ]; | |
9bd6786b | 67 | const oneStep = [V.KNIGHT,V.PAWN].includes(asA); //we don't capture king |
6808d7a1 BA |
68 | const lastRank = color == "w" ? 0 : V.size.x - 1; |
69 | const promotionPieces = [V.ROOK, V.KNIGHT, V.BISHOP, V.QUEEN]; | |
8ca6042e | 70 | const oppCol = V.GetOppCol(color); |
6808d7a1 | 71 | outerLoop: for (let loop = 0; loop < steps.length; loop++) { |
dac39588 BA |
72 | const step = steps[loop]; |
73 | let i = x + step[0]; | |
74 | let j = y + step[1]; | |
6808d7a1 BA |
75 | while (V.OnBoard(i, j) && this.board[i][j] == V.EMPTY) { |
76 | if (oneStep) continue outerLoop; | |
dac39588 BA |
77 | i += step[0]; |
78 | j += step[1]; | |
79 | } | |
6808d7a1 BA |
80 | if ( |
81 | V.OnBoard(i, j) && | |
8ca6042e | 82 | this.getColor(i, j) == oppCol && |
6808d7a1 BA |
83 | this.getPiece(i, j) == asA |
84 | ) { | |
dac39588 | 85 | // eat! |
6808d7a1 | 86 | if (this.getPiece(x, y) == V.PAWN && i == lastRank) { |
dac39588 BA |
87 | // Special case of promotion: |
88 | promotionPieces.forEach(p => { | |
6808d7a1 | 89 | moves.push(this.getBasicMove([x, y], [i, j], { c: color, p: p })); |
dac39588 | 90 | }); |
6808d7a1 | 91 | } else { |
dac39588 | 92 | // All other cases |
6808d7a1 | 93 | moves.push(this.getBasicMove([x, y], [i, j])); |
dac39588 BA |
94 | } |
95 | } | |
96 | } | |
97 | return moves; | |
98 | } | |
99 | ||
100 | // Find possible captures from a square: look in every direction! | |
6808d7a1 | 101 | findCaptures(sq) { |
dac39588 | 102 | let moves = []; |
dac39588 BA |
103 | Array.prototype.push.apply(moves, this.findCaptures_aux(sq, V.PAWN)); |
104 | Array.prototype.push.apply(moves, this.findCaptures_aux(sq, V.ROOK)); | |
105 | Array.prototype.push.apply(moves, this.findCaptures_aux(sq, V.KNIGHT)); | |
106 | Array.prototype.push.apply(moves, this.findCaptures_aux(sq, V.BISHOP)); | |
107 | Array.prototype.push.apply(moves, this.findCaptures_aux(sq, V.QUEEN)); | |
dac39588 BA |
108 | return moves; |
109 | } | |
110 | ||
e9b736ee BA |
111 | canTake(sq1, sq2) { |
112 | return false; //captures handled separately | |
113 | } | |
dac39588 | 114 | |
8ca6042e BA |
115 | getPotentialMovesFrom(sq) { |
116 | return super.getPotentialMovesFrom(sq).concat(this.findCaptures(sq)); | |
dac39588 BA |
117 | } |
118 | ||
6808d7a1 | 119 | getNotation(move) { |
dac39588 | 120 | // Recognize special moves first |
6808d7a1 | 121 | if (move.appear.length == 2) { |
dac39588 | 122 | // castle |
6808d7a1 BA |
123 | if (move.end.y < move.start.y) return "0-0-0"; |
124 | return "0-0"; | |
dac39588 BA |
125 | } |
126 | ||
2c5d7b20 | 127 | // Translate initial square (because pieces may fly unusually!) |
dac39588 BA |
128 | const initialSquare = V.CoordsToSquare(move.start); |
129 | ||
130 | // Translate final square | |
131 | const finalSquare = V.CoordsToSquare(move.end); | |
132 | ||
133 | let notation = ""; | |
134 | const piece = this.getPiece(move.start.x, move.start.y); | |
6808d7a1 | 135 | if (piece == V.PAWN) { |
dac39588 | 136 | // pawn move (TODO: enPassant indication) |
8ca6042e | 137 | if (move.vanish.length == 2) { |
dac39588 BA |
138 | // capture |
139 | notation = initialSquare + "x" + finalSquare; | |
8ca6042e | 140 | } |
6808d7a1 BA |
141 | else notation = finalSquare; |
142 | if (piece != move.appear[0].p) | |
143 | //promotion | |
dac39588 | 144 | notation += "=" + move.appear[0].p.toUpperCase(); |
8ca6042e BA |
145 | } |
146 | else { | |
dac39588 BA |
147 | // Piece movement |
148 | notation = piece.toUpperCase(); | |
6808d7a1 | 149 | if (move.vanish.length > 1) notation += initialSquare + "x"; |
dac39588 BA |
150 | notation += finalSquare; |
151 | } | |
152 | return notation; | |
153 | } | |
154 | ||
6808d7a1 | 155 | static get VALUES() { |
dac39588 | 156 | return { |
6808d7a1 BA |
157 | p: 1, |
158 | r: 3, | |
159 | n: 2, | |
160 | b: 2, | |
161 | q: 5, | |
162 | k: 1000 | |
163 | }; | |
dac39588 | 164 | } |
7e8a7ea1 | 165 | |
6808d7a1 | 166 | }; |