X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=client%2Fsrc%2Fvariants%2FFootball.js;h=b0678e16b63bda59de09dcd928fbe1e67c1965e6;hp=2acb24f4bb87f66730dd1c86b0d01b31bd1889b2;hb=b9ce3d0fbe6cf8cba01912706ad578144bc9b42f;hpb=8948a2876de183467f610a703d8c7f6d7c2df570 diff --git a/client/src/variants/Football.js b/client/src/variants/Football.js index 2acb24f4..b0678e16 100644 --- a/client/src/variants/Football.js +++ b/client/src/variants/Football.js @@ -77,4 +77,37 @@ export class FootballRules extends ChessRules { if (this.atLeastOneMove()) return "*"; return "1/2"; } + + static GenRandInitFen(randomness) { + if (randomness == 0) + return "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w 0 -"; + + let pieces = { w: new Array(8), b: new Array(8) }; + for (let c of ["w", "b"]) { + if (c == 'b' && randomness == 1) { + pieces['b'] = pieces['w']; + break; + } + + // Get random squares for every piece, totally freely + let positions = shuffle(ArrayFun.range(8)); + const composition = ['b', 'b', 'r', 'r', 'n', 'n', 'k', 'q']; + const rem2 = positions[0] % 2; + if (rem2 == positions[1] % 2) { + // Fix bishops (on different colors) + for (let i=2; i<8; i++) { + if (positions[i] % 2 != rem2) + [positions[1], positions[i]] = [positions[i], positions[1]]; + } + } + for (let i = 0; i < 8; i++) pieces[c][positions[i]] = composition[i]; + } + return ( + pieces["b"].join("") + + "/pppppppp/8/8/8/8/PPPPPPPP/" + + pieces["w"].join("").toUpperCase() + + // En-passant allowed, but no flags + " w 0 -" + ); + } };