1 import { ChessRules
} from "@/base_rules";
2 import { ArrayFun
} from "@/utils/array";
3 import { shuffle
} from "@/utils/alea";
5 export class SuicideRules
extends ChessRules
{
6 static get HasFlags() {
10 static get PawnSpecs() {
14 { promotions: ChessRules
.PawnSpecs
.promotions
.concat([V
.KING
]) }
18 static IsGoodPosition(position
) {
19 if (position
.length
== 0) return false;
20 const rows
= position
.split("/");
21 if (rows
.length
!= V
.size
.x
) return false;
22 // Just check that at least one piece of each color is there:
23 let pieces
= { "w": 0, "b": 0 };
24 for (let row
of rows
) {
26 for (let i
= 0; i
< row
.length
; i
++) {
27 const lowerRi
= row
[i
].toLowerCase();
28 if (V
.PIECES
.includes(lowerRi
)) {
29 pieces
[row
[i
] == lowerRi
? "b" : "w"]++;
32 const num
= parseInt(row
[i
], 10);
33 if (isNaN(num
)) return false;
37 if (sumElts
!= V
.size
.y
) return false;
39 if (Object
.values(pieces
).some(v
=> v
== 0)) return false;
45 // Trim all non-capturing moves (not the most efficient, but easy)
46 static KeepCaptures(moves
) {
47 return moves
.filter(m
=> m
.vanish
.length
== 2);
50 // Stop at the first capture found (if any)
52 const color
= this.turn
;
53 for (let i
= 0; i
< V
.size
.x
; i
++) {
54 for (let j
= 0; j
< V
.size
.y
; j
++) {
56 this.board
[i
][j
] != V
.EMPTY
&&
57 this.getColor(i
, j
) == color
&&
58 this.getPotentialMovesFrom([i
, j
]).some(m
=> m
.vanish
.length
== 2)
67 getPossibleMovesFrom(sq
) {
68 let moves
= this.getPotentialMovesFrom(sq
);
69 const captureMoves
= V
.KeepCaptures(moves
);
70 if (captureMoves
.length
> 0) return captureMoves
;
71 if (this.atLeastOneCapture()) return [];
80 const moves
= super.getAllValidMoves();
81 if (moves
.some(m
=> m
.vanish
.length
== 2)) return V
.KeepCaptures(moves
);
86 const color
= this.turn
;
87 for (let i
= 0; i
< V
.size
.x
; i
++) {
88 for (let j
= 0; j
< V
.size
.y
; j
++) {
90 this.getColor(i
, j
) == color
&&
91 this.getPotentialMovesFrom([i
, j
]).length
> 0
104 // No variables update because no royal king + no castling
111 if (this.atLeastOneMove()) return "*";
112 // No valid move: the side who cannot move wins
113 return this.turn
== "w" ? "1-0" : "0-1";
116 static get VALUES() {
127 static get SEARCH_DEPTH() {
132 // Less material is better:
133 return -super.evalPosition();
136 static GenRandInitFen(randomness
) {
138 return "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w 0 -";
140 let pieces
= { w: new Array(8), b: new Array(8) };
141 for (let c
of ["w", "b"]) {
142 if (c
== 'b' && randomness
== 1) {
143 pieces
['b'] = pieces
['w'];
147 // Get random squares for every piece, totally freely
148 let positions
= shuffle(ArrayFun
.range(8));
149 const composition
= ['b', 'b', 'r', 'r', 'n', 'n', 'k', 'q'];
150 const rem2
= positions
[0] % 2;
151 if (rem2
== positions
[1] % 2) {
152 // Fix bishops (on different colors)
153 for (let i
=2; i
<8; i
++) {
154 if (positions
[i
] % 2 != rem2
)
155 [positions
[1], positions
[i
]] = [positions
[i
], positions
[1]];
158 for (let i
= 0; i
< 8; i
++) pieces
[c
][positions
[i
]] = composition
[i
];
161 pieces
["b"].join("") +
162 "/pppppppp/8/8/8/8/PPPPPPPP/" +
163 pieces
["w"].join("").toUpperCase() +
164 // En-passant allowed, but no flags