X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fvariants%2FBicolour.js;h=c426b811e2c90aeb50d6de2ef66ddcc3518af7b5;hb=HEAD;hp=eaa66d17fb973b690bcf41ef0c9da0fc4b63282c;hpb=107dc1bd5361e2538b1551bdcc37c1e90a444b83;p=vchess.git diff --git a/client/src/variants/Bicolour.js b/client/src/variants/Bicolour.js index eaa66d17..c426b811 100644 --- a/client/src/variants/Bicolour.js +++ b/client/src/variants/Bicolour.js @@ -3,6 +3,7 @@ import { randInt } from "@/utils/alea"; import { ArrayFun } from "@/utils/array"; export class BicolourRules extends ChessRules { + static get HasFlags() { return false; } @@ -13,8 +14,8 @@ export class BicolourRules extends ChessRules { ); } - static GenRandInitFen(randomness) { - if (randomness == 0) + static GenRandInitFen(options) { + if (options.randomness == 0) return "rqbnkbnr/pppppppp/8/8/8/8/PPPPPPPP/RQBNKBNR w 0 -"; // Place pieces at random but the king cannot be next to a rook or queen. @@ -22,7 +23,7 @@ export class BicolourRules extends ChessRules { let pieces = { w: new Array(8), b: new Array(8) }; let flags = ""; for (let c of ["w", "b"]) { - if (c == 'b' && randomness == 1) { + if (c == 'b' && options.randomness == 1) { pieces['b'] = pieces['w']; break; } @@ -108,4 +109,5 @@ export class BicolourRules extends ChessRules { this.isAttacked(this.kingPos[color], 'b') ); } + };