const variants = [
- // TODO: https://mancala.fandom.com/wiki/William_Daniel_Troyka Cleopatra chess
{name: 'Absorption', desc: 'Absorb powers'},
{name: 'Alapo', desc: 'Geometric Chess'},
// {name: 'Alice', desc: 'Both sides of the mirror'},
static get Options() {
return {
select: C.Options.select,
+ input: [
+ {
+ label: "Cleopatra",
+ variable: "cleopatra",
+ type: "checkbox",
+ defaut: false
+ }
+ ],
styles: [
"balance",
"cylinder",
return false;
}
+ pieces(color, x, y) {
+ if (!this.options["cleopatra"])
+ return super.pieces(color, x, y);
+ return Object.assign({}, super.pieces(color, x, y), {
+ 'q': {
+ "class": "cleopatra",
+ moves: [
+ {
+ steps: [
+ [0, 1], [0, -1], [1, 0], [-1, 0],
+ [1, 1], [1, -1], [-1, 1], [-1, -1]
+ ]
+ }
+ ]
+ },
+ });
+ }
+
// Find potential captures from a square
// follow steps from x,y until something is met.
findAttacks([x, y]) {
postProcessPotentialMoves(moves) {
moves.forEach(m => {
- super.playOnBoard(m);
- let attacks = this.findAttacks([m.end.x, m.end.y])
- if (this.options["zen"]) {
- let endSquares = {};
- super.findCapturesOn([m.end.x, m.end.y], {zen: true}).forEach(c => {
- endSquares[C.CoordsToSquare(c.end)] = true;
+ m.flips = [];
+ if (!this.options["cleopatra"] || m.vanish[0].p == 'q') {
+ super.playOnBoard(m);
+ let attacks = this.findAttacks([m.end.x, m.end.y])
+ if (this.options["zen"]) {
+ let endSquares = {};
+ super.findCapturesOn([m.end.x, m.end.y], {zen: true}).forEach(c => {
+ endSquares[C.CoordsToSquare(c.end)] = true;
+ });
+ Array.prototype.push.apply(attacks, Object.keys(endSquares));
+ }
+ super.undoOnBoard(m);
+ attacks.map(C.SquareToCoords).forEach(a => {
+ m.flips.push({x: a.x, y: a.y});
});
- Array.prototype.push.apply(attacks, Object.keys(endSquares));
}
- super.undoOnBoard(m);
- m.flips = [];
- attacks.map(C.SquareToCoords).forEach(a => {
- m.flips.push({x: a.x, y: a.y});
- });
});
return moves;
}