1 import { ChessRules
} from "@/base_rules";
3 export class ZenRules
extends ChessRules
{
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
);
12 const move = moveOrSquare
;
16 // Exclude captures (of rooks for example)
17 move.vanish
.length
== 1 &&
19 Math
.abs(s
.x
- e
.x
) == 2 &&
20 move.appear
[0].p
== V
.PAWN
30 // TODO(?): some duplicated code in 2 next functions
31 getSlideNJumpMoves([x
, y
], steps
, oneStep
) {
33 outerLoop: for (let loop
= 0; loop
< steps
.length
; loop
++) {
34 const step
= steps
[loop
];
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
;
43 // No capture check: handled elsewhere (next method)
48 // follow steps from x,y until something is met.
49 // if met piece is opponent and same movement (asA): eat it!
50 findCaptures_aux([x
, y
], asA
) {
51 const color
= this.getColor(x
, y
);
56 ? V
.steps
[V
.ROOK
].concat(V
.steps
[V
.BISHOP
])
67 const oneStep
= [V
.KNIGHT
,V
.PAWN
].includes(asA
); //we don't capture king
68 const lastRank
= color
== "w" ? 0 : V
.size
.x
- 1;
69 const promotionPieces
= [V
.ROOK
, V
.KNIGHT
, V
.BISHOP
, V
.QUEEN
];
70 const oppCol
= V
.GetOppCol(color
);
71 outerLoop: for (let loop
= 0; loop
< steps
.length
; loop
++) {
72 const step
= steps
[loop
];
75 while (V
.OnBoard(i
, j
) && this.board
[i
][j
] == V
.EMPTY
) {
76 if (oneStep
) continue outerLoop
;
82 this.getColor(i
, j
) == oppCol
&&
83 this.getPiece(i
, j
) == asA
86 if (this.getPiece(x
, y
) == V
.PAWN
&& i
== lastRank
) {
87 // Special case of promotion:
88 promotionPieces
.forEach(p
=> {
89 moves
.push(this.getBasicMove([x
, y
], [i
, j
], { c: color
, p: p
}));
93 moves
.push(this.getBasicMove([x
, y
], [i
, j
]));
100 // Find possible captures from a square: look in every direction!
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
));
112 return false; //captures handled separately
115 getPotentialMovesFrom(sq
) {
116 return super.getPotentialMovesFrom(sq
).concat(this.findCaptures(sq
));
120 // Recognize special moves first
121 if (move.appear
.length
== 2) {
123 if (move.end
.y
< move.start
.y
) return "0-0-0";
127 // Translate initial square (because pieces may fly unusually!)
128 const initialSquare
= V
.CoordsToSquare(move.start
);
130 // Translate final square
131 const finalSquare
= V
.CoordsToSquare(move.end
);
134 const piece
= this.getPiece(move.start
.x
, move.start
.y
);
135 if (piece
== V
.PAWN
) {
136 // pawn move (TODO: enPassant indication)
137 if (move.vanish
.length
== 2) {
139 notation
= initialSquare
+ "x" + finalSquare
;
141 else notation
= finalSquare
;
142 if (piece
!= move.appear
[0].p
)
144 notation
+= "=" + move.appear
[0].p
.toUpperCase();
148 notation
= piece
.toUpperCase();
149 if (move.vanish
.length
> 1) notation
+= initialSquare
+ "x";
150 notation
+= finalSquare
;
155 static get VALUES() {