0c316ebddadbe3516c19601b70e47ac450bcb687
1 import {Random
} from "/utils/alea.js";
2 import {ArrayFun
} from "/utils/array.js";
3 import {FenUtil
} from "/utils/setupPieces.js";
4 import PiPo
from "/utils/PiPo.js";
5 import Move
from "/utils/Move.js";
7 // Helper class for move animation
10 constructor(callOnComplete
) {
13 this.callOnComplete
= callOnComplete
;
16 if (++this.value
== this.target
)
17 this.callOnComplete();
22 // NOTE: x coords: top to bottom (white perspective); y: left to right
23 // NOTE: ChessRules is aliased as window.C, and variants as window.V
24 export default class ChessRules
{
26 static get Aliases() {
27 return {'C': ChessRules
};
30 /////////////////////////
31 // VARIANT SPECIFICATIONS
33 // Some variants have specific options, like the number of pawns in Monster,
34 // or the board size for Pandemonium.
35 // Users can generally select a randomness level from 0 to 2.
36 static get Options() {
40 variable: "randomness",
43 {label: "Deterministic", value: 0},
44 {label: "Symmetric random", value: 1},
45 {label: "Asymmetric random", value: 2}
50 label: "Capture king",
56 label: "Falling pawn",
62 // Game modifiers (using "elementary variants"). Default: false
65 "balance", //takes precedence over doublemove & progressive
69 "cylinder", //ok with all
73 "progressive", //(natural) priority over doublemove
82 get pawnPromotions() {
83 return ['q', 'r', 'n', 'b'];
86 // Some variants don't have flags:
95 // En-passant captures allowed?
102 !!this.options
["crazyhouse"] ||
103 (!!this.options
["recycle"] && !this.options
["teleport"])
106 // Some variants do not store reserve state (Align4, Chakart...)
107 get hasReserveFen() {
108 return this.hasReserve
;
112 return !!this.options
["dark"];
115 // Some variants use only click information
120 // Some variants reveal moves only after both players played
125 // Some variants use click infos:
127 if (typeof coords
.x
!= "number")
128 return null; //click on reserves
130 this.options
["teleport"] && this.subTurnTeleport
== 2 &&
131 this.board
[coords
.x
][coords
.y
] == ""
134 start: {x: this.captured
.x
, y: this.captured
.y
},
145 res
.drag
= {c: this.captured
.c
, p: this.captured
.p
};
154 // 3a --> {x:3, y:10}
155 static SquareToCoords(sq
) {
156 return ArrayFun
.toObject(["x", "y"],
157 [0, 1].map(i
=> parseInt(sq
[i
], 36)));
160 // {x:11, y:12} --> bc
161 static CoordsToSquare(cd
) {
162 return Object
.values(cd
).map(c
=> c
.toString(36)).join("");
166 if (typeof cd
.x
== "number") {
168 `${this.containerId}|sq-${cd.x.toString(36)}-${cd.y.toString(36)}`
172 return `${this.containerId}|rsq-${cd.x}-${cd.y}`;
175 idToCoords(targetId
) {
177 return null; //outside page, maybe...
178 const idParts
= targetId
.split('|'); //prefix|sq-2-3 (start at 0 => 3,4)
180 idParts
.length
< 2 ||
181 idParts
[0] != this.containerId
||
182 !idParts
[1].match(/sq-[0-9a-zA-Z]-[0-9a-zA-Z]/)
186 const squares
= idParts
[1].split('-');
187 if (squares
[0] == "sq")
188 return {x: parseInt(squares
[1], 36), y: parseInt(squares
[2], 36)};
189 // squares[0] == "rsq" : reserve, 'c' + 'p' (letters color & piece)
190 return {x: squares
[1], y: squares
[2]};
196 // Turn "wb" into "B" (for FEN)
198 return (b
[0] == "w" ? b
[1].toUpperCase() : b
[1]);
201 // Turn "p" into "bp" (for board)
203 return (f
.charCodeAt(0) <= 90 ? "w" + f
.toLowerCase() : "b" + f
);
206 genRandInitFen(seed
) {
207 Random
.setSeed(seed
); //may be unused
208 let baseFen
= this.genRandInitBaseFen();
209 baseFen
.o
= Object
.assign({init: true}, baseFen
.o
);
210 const parts
= this.getPartFen(baseFen
.o
);
212 baseFen
.fen
+ " w 0" +
213 (Object
.keys(parts
).length
> 0 ? (" " + JSON
.stringify(parts
)) : "")
217 // Setup the initial random-or-not (asymmetric-or-not) position
218 genRandInitBaseFen() {
219 const s
= FenUtil
.setupPieces(
220 ['r', 'n', 'b', 'q', 'k', 'b', 'n', 'r'],
222 randomness: this.options
["randomness"],
223 between: {p1: 'k', p2: 'r'},
229 fen: s
.b
.join("") + "/pppppppp/8/8/8/8/PPPPPPPP/" +
230 s
.w
.join("").toUpperCase(),
235 // "Parse" FEN: just return untransformed string data
237 const fenParts
= fen
.split(" ");
239 position: fenParts
[0],
241 movesCount: fenParts
[2]
243 if (fenParts
.length
> 3)
244 res
= Object
.assign(res
, JSON
.parse(fenParts
[3]));
248 // Return current fen (game state)
250 const parts
= this.getPartFen({});
253 (Object
.keys(parts
).length
> 0 ? (" " + JSON
.stringify(parts
)) : "")
258 return this.getPosition() + " " + this.turn
+ " " + this.movesCount
;
264 parts
["flags"] = o
.init
? o
.flags : this.getFlagsFen();
265 if (this.hasEnpassant
)
266 parts
["enpassant"] = o
.init
? "-" : this.getEnpassantFen();
267 if (this.hasReserveFen
)
268 parts
["reserve"] = this.getReserveFen(o
);
269 if (this.options
["crazyhouse"])
270 parts
["ispawn"] = this.getIspawnFen(o
);
274 static FenEmptySquares(count
) {
275 // if more than 9 consecutive free spaces, break the integer,
276 // otherwise FEN parsing will fail.
279 // Most boards of size < 18:
281 return "9" + (count
- 9);
283 return "99" + (count
- 18);
286 // Position part of the FEN string
289 for (let i
= 0; i
< this.size
.x
; i
++) {
291 for (let j
= 0; j
< this.size
.y
; j
++) {
292 if (this.board
[i
][j
] == "")
295 if (emptyCount
> 0) {
296 // Add empty squares in-between
297 position
+= C
.FenEmptySquares(emptyCount
);
300 position
+= this.board2fen(this.board
[i
][j
]);
305 position
+= C
.FenEmptySquares(emptyCount
);
306 if (i
< this.size
.x
- 1)
307 position
+= "/"; //separate rows
312 // Flags part of the FEN string
314 return ["w", "b"].map(c
=> {
315 return this.castleFlags
[c
].map(x
=> x
.toString(36)).join("");
319 // Enpassant part of the FEN string
323 return C
.CoordsToSquare(this.epSquare
);
328 return "000000000000";
330 ["w","b"].map(c
=> Object
.values(this.reserve
[c
]).join("")).join("")
336 // NOTE: cannot merge because this.ispawn doesn't exist yet
338 const squares
= Object
.keys(this.ispawn
);
339 if (squares
.length
== 0)
341 return squares
.join(",");
344 // Set flags from fen (castle: white a,h then black a,h)
347 w: [0, 1].map(i
=> parseInt(fenflags
.charAt(i
), 36)),
348 b: [2, 3].map(i
=> parseInt(fenflags
.charAt(i
), 36))
356 this.options
= o
.options
;
357 // Fill missing options (always the case if random challenge)
358 (V
.Options
.select
|| []).concat(V
.Options
.input
|| []).forEach(opt
=> {
359 if (this.options
[opt
.variable
] === undefined)
360 this.options
[opt
.variable
] = opt
.defaut
;
364 this.playerColor
= o
.color
;
365 this.afterPlay
= o
.afterPlay
; //trigger some actions after playing a move
366 this.containerId
= o
.element
;
367 this.isDiagram
= o
.diagram
;
368 this.marks
= o
.marks
;
372 o
.fen
= this.genRandInitFen(o
.seed
);
373 this.re_initFromFen(o
.fen
);
374 this.graphicalInit();
377 re_initFromFen(fen
, oldBoard
) {
378 const fenParsed
= this.parseFen(fen
);
379 this.board
= oldBoard
|| this.getBoard(fenParsed
.position
);
380 this.turn
= fenParsed
.turn
;
381 this.movesCount
= parseInt(fenParsed
.movesCount
, 10);
382 this.setOtherVariables(fenParsed
);
385 // Turn position fen into double array ["wb","wp","bk",...]
387 const rows
= position
.split("/");
388 let board
= ArrayFun
.init(this.size
.x
, this.size
.y
, "");
389 for (let i
= 0; i
< rows
.length
; i
++) {
391 for (let indexInRow
= 0; indexInRow
< rows
[i
].length
; indexInRow
++) {
392 const character
= rows
[i
][indexInRow
];
393 const num
= parseInt(character
, 10);
394 // If num is a number, just shift j:
397 // Else: something at position i,j
399 board
[i
][j
++] = this.fen2board(character
);
405 // Some additional variables from FEN (variant dependant)
406 setOtherVariables(fenParsed
) {
407 // Set flags and enpassant:
409 this.setFlags(fenParsed
.flags
);
410 if (this.hasEnpassant
)
411 this.epSquare
= this.getEpSquare(fenParsed
.enpassant
);
412 if (this.hasReserve
&& !this.isDiagram
)
413 this.initReserves(fenParsed
.reserve
);
414 if (this.options
["crazyhouse"])
415 this.initIspawn(fenParsed
.ispawn
);
416 if (this.options
["teleport"]) {
417 this.subTurnTeleport
= 1;
418 this.captured
= null;
420 if (this.options
["dark"]) {
421 // Setup enlightened: squares reachable by player side
422 this.enlightened
= ArrayFun
.init(this.size
.x
, this.size
.y
, false);
423 this.updateEnlightened();
425 this.subTurn
= 1; //may be unused
426 if (!this.moveStack
) //avoid resetting (unwanted)
430 // ordering as in pieces() p,r,n,b,q,k
431 initReserves(reserveStr
, pieceArray
) {
433 pieceArray
= ['p', 'r', 'n', 'b', 'q', 'k'];
434 const counts
= reserveStr
.split("").map(c
=> parseInt(c
, 36));
435 const L
= pieceArray
.length
;
437 w: ArrayFun
.toObject(pieceArray
, counts
.slice(0, L
)),
438 b: ArrayFun
.toObject(pieceArray
, counts
.slice(L
, 2 * L
))
442 initIspawn(ispawnStr
) {
443 if (ispawnStr
!= "-")
444 this.ispawn
= ArrayFun
.toObject(ispawnStr
.split(","), true);
452 getPieceWidth(rwidth
) {
453 return (rwidth
/ this.size
.y
);
456 getReserveSquareSize(rwidth
, nbR
) {
457 const sqSize
= this.getPieceWidth(rwidth
);
458 return Math
.min(sqSize
, rwidth
/ nbR
);
461 getReserveNumId(color
, piece
) {
462 return `${this.containerId}|rnum-${color}${piece}`;
465 getNbReservePieces(color
) {
467 Object
.values(this.reserve
[color
]).reduce(
468 (oldV
,newV
) => oldV
+ (newV
> 0 ? 1 : 0), 0)
472 getRankInReserve(c
, p
) {
473 const pieces
= Object
.keys(this.pieces(c
, c
, p
));
474 const lastIndex
= pieces
.findIndex(pp
=> pp
== p
)
475 let toTest
= pieces
.slice(0, lastIndex
);
476 return toTest
.reduce(
477 (oldV
,newV
) => oldV
+ (this.reserve
[c
][newV
] > 0 ? 1 : 0), 0);
480 static AddClass_es(elt
, class_es
) {
481 if (!Array
.isArray(class_es
))
482 class_es
= [class_es
];
483 class_es
.forEach(cl
=> elt
.classList
.add(cl
));
486 static RemoveClass_es(elt
, class_es
) {
487 if (!Array
.isArray(class_es
))
488 class_es
= [class_es
];
489 class_es
.forEach(cl
=> elt
.classList
.remove(cl
));
492 // Generally light square bottom-right
493 getSquareColorClass(x
, y
) {
494 return ((x
+y
) % 2 == 0 ? "light-square": "dark-square");
498 // Works for all rectangular boards:
499 return Math
.sqrt(r
.width
** 2 + r
.height
** 2);
503 return (typeof x
== "string" ? this.r_pieces : this.g_pieces
)[x
][y
];
510 const g_init
= () => {
511 this.re_drawBoardElements();
512 if (!this.isDiagram
&& !this.mouseListeners
&& !this.touchListeners
)
513 this.initMouseEvents();
515 let container
= document
.getElementById(this.containerId
);
516 this.windowResizeObs
= new ResizeObserver(g_init
);
517 this.windowResizeObs
.observe(container
);
520 re_drawBoardElements() {
521 const board
= this.getSvgChessboard();
522 const container
= document
.getElementById(this.containerId
);
523 const rc
= container
.getBoundingClientRect();
524 let chessboard
= container
.querySelector(".chessboard");
525 chessboard
.innerHTML
= "";
526 chessboard
.insertAdjacentHTML('beforeend', board
);
527 // Compare window ratio width / height to aspectRatio:
528 const windowRatio
= rc
.width
/ rc
.height
;
529 let cbWidth
, cbHeight
;
530 const vRatio
= this.size
.ratio
|| 1;
531 if (windowRatio
<= vRatio
) {
532 // Limiting dimension is width:
533 cbWidth
= Math
.min(rc
.width
, 767);
534 cbHeight
= cbWidth
/ vRatio
;
537 // Limiting dimension is height:
538 cbHeight
= Math
.min(rc
.height
, 767);
539 cbWidth
= cbHeight
* vRatio
;
541 if (this.hasReserve
&& !this.isDiagram
) {
542 const sqSize
= cbWidth
/ this.size
.y
;
543 // NOTE: allocate space for reserves (up/down) even if they are empty
544 // Cannot use getReserveSquareSize() here, but sqSize is an upper bound.
545 if ((rc
.height
- cbHeight
) / 2 < sqSize
+ 5) {
546 cbHeight
= rc
.height
- 2 * (sqSize
+ 5);
547 cbWidth
= cbHeight
* vRatio
;
550 chessboard
.style
.width
= cbWidth
+ "px";
551 chessboard
.style
.height
= cbHeight
+ "px";
552 // Center chessboard:
553 const spaceLeft
= (rc
.width
- cbWidth
) / 2,
554 spaceTop
= (rc
.height
- cbHeight
) / 2;
555 chessboard
.style
.left
= spaceLeft
+ "px";
556 chessboard
.style
.top
= spaceTop
+ "px";
557 // Give sizes instead of recomputing them,
558 // because chessboard might not be drawn yet.
559 this.setupVisualPieces({
567 // Get SVG board (background, no pieces)
569 const flipped
= (this.playerColor
== 'b');
572 viewBox="0 0 ${10*this.size.y} ${10*this.size.x}"
573 class="chessboard_SVG">`;
574 for (let i
=0; i
< this.size
.x
; i
++) {
575 for (let j
=0; j
< this.size
.y
; j
++) {
576 if (!this.onBoard(i
, j
))
578 const ii
= (flipped
? this.size
.x
- 1 - i : i
);
579 const jj
= (flipped
? this.size
.y
- 1 - j : j
);
580 let classes
= this.getSquareColorClass(ii
, jj
);
581 if (this.enlightened
&& !this.enlightened
[ii
][jj
])
582 classes
+= " in-shadow";
583 // NOTE: x / y reversed because coordinates system is reversed.
587 id="${this.coordsToId({x: ii, y: jj})}"
599 setupVisualPieces(r
) {
601 document
.getElementById(this.containerId
).querySelector(".chessboard");
603 r
= chessboard
.getBoundingClientRect();
604 const pieceWidth
= this.getPieceWidth(r
.width
);
605 const addPiece
= (i
, j
, arrName
, classes
) => {
606 this[arrName
][i
][j
] = document
.createElement("piece");
607 C
.AddClass_es(this[arrName
][i
][j
], classes
);
608 this[arrName
][i
][j
].style
.width
= pieceWidth
+ "px";
609 this[arrName
][i
][j
].style
.height
= pieceWidth
+ "px";
610 let [ip
, jp
] = this.getPixelPosition(i
, j
, r
);
611 // Translate coordinates to use chessboard as reference:
612 this[arrName
][i
][j
].style
.transform
=
613 `translate(${ip - r.x}px,${jp - r.y}px)`;
614 chessboard
.appendChild(this[arrName
][i
][j
]);
616 const conditionalReset
= (arrName
) => {
618 // Refreshing: delete old pieces first. This isn't necessary,
619 // but simpler (this method isn't called many times)
620 for (let i
=0; i
<this.size
.x
; i
++) {
621 for (let j
=0; j
<this.size
.y
; j
++) {
622 if (this[arrName
][i
][j
]) {
623 this[arrName
][i
][j
].remove();
624 this[arrName
][i
][j
] = null;
630 this[arrName
] = ArrayFun
.init(this.size
.x
, this.size
.y
, null);
631 if (arrName
== "d_pieces")
632 this.marks
.forEach(([i
, j
]) => addPiece(i
, j
, arrName
, "mark"));
635 conditionalReset("d_pieces");
636 conditionalReset("g_pieces");
637 for (let i
=0; i
< this.size
.x
; i
++) {
638 for (let j
=0; j
< this.size
.y
; j
++) {
639 if (this.board
[i
][j
] != "") {
640 const color
= this.getColor(i
, j
);
641 const piece
= this.getPiece(i
, j
);
642 addPiece(i
, j
, "g_pieces", this.pieces(color
, i
, j
)[piece
]["class"]);
643 this.g_pieces
[i
][j
].classList
.add(V
.GetColorClass(color
));
644 if (this.enlightened
&& !this.enlightened
[i
][j
])
645 this.g_pieces
[i
][j
].classList
.add("hidden");
647 if (this.marks
&& this.d_pieces
[i
][j
]) {
648 let classes
= ["mark"];
649 if (this.board
[i
][j
] != "")
650 classes
.push("transparent");
651 addPiece(i
, j
, "d_pieces", classes
);
655 if (this.hasReserve
&& !this.isDiagram
)
656 this.re_drawReserve(['w', 'b'], r
);
659 // NOTE: assume this.reserve != null
660 re_drawReserve(colors
, r
) {
662 // Remove (old) reserve pieces
663 for (let c
of colors
) {
664 Object
.keys(this.r_pieces
[c
]).forEach(p
=> {
665 this.r_pieces
[c
][p
].remove();
666 delete this.r_pieces
[c
][p
];
667 const numId
= this.getReserveNumId(c
, p
);
668 document
.getElementById(numId
).remove();
673 this.r_pieces
= { w: {}, b: {} };
674 let container
= document
.getElementById(this.containerId
);
676 r
= container
.querySelector(".chessboard").getBoundingClientRect();
677 for (let c
of colors
) {
678 let reservesDiv
= document
.getElementById("reserves_" + c
);
680 reservesDiv
.remove();
681 if (!this.reserve
[c
])
683 const nbR
= this.getNbReservePieces(c
);
686 const sqResSize
= this.getReserveSquareSize(r
.width
, nbR
);
688 const vShift
= (c
== this.playerColor
? r
.height
+ 5 : -sqResSize
- 5);
689 const [i0
, j0
] = [r
.x
, r
.y
+ vShift
];
690 let rcontainer
= document
.createElement("div");
691 rcontainer
.id
= "reserves_" + c
;
692 rcontainer
.classList
.add("reserves");
693 rcontainer
.style
.left
= i0
+ "px";
694 rcontainer
.style
.top
= j0
+ "px";
695 // NOTE: +1 fix display bug on Firefox at least
696 rcontainer
.style
.width
= (nbR
* sqResSize
+ 1) + "px";
697 rcontainer
.style
.height
= sqResSize
+ "px";
698 container
.appendChild(rcontainer
);
699 for (let p
of Object
.keys(this.reserve
[c
])) {
700 if (this.reserve
[c
][p
] == 0)
702 let r_cell
= document
.createElement("div");
703 r_cell
.id
= this.coordsToId({x: c
, y: p
});
704 r_cell
.classList
.add("reserve-cell");
705 r_cell
.style
.width
= sqResSize
+ "px";
706 r_cell
.style
.height
= sqResSize
+ "px";
707 rcontainer
.appendChild(r_cell
);
708 let piece
= document
.createElement("piece");
709 C
.AddClass_es(piece
, this.pieces(c
, c
, p
)[p
]["class"]);
710 piece
.classList
.add(V
.GetColorClass(c
));
711 piece
.style
.width
= "100%";
712 piece
.style
.height
= "100%";
713 this.r_pieces
[c
][p
] = piece
;
714 r_cell
.appendChild(piece
);
715 let number
= document
.createElement("div");
716 number
.textContent
= this.reserve
[c
][p
];
717 number
.classList
.add("reserve-num");
718 number
.id
= this.getReserveNumId(c
, p
);
719 const fontSize
= "1.3em";
720 number
.style
.fontSize
= fontSize
;
721 number
.style
.fontSize
= fontSize
;
722 r_cell
.appendChild(number
);
728 updateReserve(color
, piece
, count
) {
729 if (this.options
["cannibal"] && C
.CannibalKings
[piece
])
730 piece
= "k"; //capturing cannibal king: back to king form
731 const oldCount
= this.reserve
[color
][piece
];
732 this.reserve
[color
][piece
] = count
;
733 // Redrawing is much easier if count==0 (or undefined)
734 if ([oldCount
, count
].some(item
=> !item
))
735 this.re_drawReserve([color
]);
737 const numId
= this.getReserveNumId(color
, piece
);
738 document
.getElementById(numId
).textContent
= count
;
742 // Resize board: no need to destroy/recreate pieces
744 const container
= document
.getElementById(this.containerId
);
745 let chessboard
= container
.querySelector(".chessboard");
746 const rc
= container
.getBoundingClientRect(),
747 r
= chessboard
.getBoundingClientRect();
748 const multFact
= (mode
== "up" ? 1.05 : 0.95);
749 let [newWidth
, newHeight
] = [multFact
* r
.width
, multFact
* r
.height
];
751 const vRatio
= this.size
.ratio
|| 1;
752 if (newWidth
> rc
.width
) {
754 newHeight
= newWidth
/ vRatio
;
756 if (newHeight
> rc
.height
) {
757 newHeight
= rc
.height
;
758 newWidth
= newHeight
* vRatio
;
760 chessboard
.style
.width
= newWidth
+ "px";
761 chessboard
.style
.height
= newHeight
+ "px";
762 const newX
= (rc
.width
- newWidth
) / 2;
763 chessboard
.style
.left
= newX
+ "px";
764 const newY
= (rc
.height
- newHeight
) / 2;
765 chessboard
.style
.top
= newY
+ "px";
766 const newR
= {x: newX
, y: newY
, width: newWidth
, height: newHeight
};
767 const pieceWidth
= this.getPieceWidth(newWidth
);
768 // NOTE: next "if" for variants which use squares filling
769 // instead of "physical", moving pieces
771 for (let i
=0; i
< this.size
.x
; i
++) {
772 for (let j
=0; j
< this.size
.y
; j
++) {
773 if (this.g_pieces
[i
][j
]) {
774 // NOTE: could also use CSS transform "scale"
775 this.g_pieces
[i
][j
].style
.width
= pieceWidth
+ "px";
776 this.g_pieces
[i
][j
].style
.height
= pieceWidth
+ "px";
777 const [ip
, jp
] = this.getPixelPosition(i
, j
, newR
);
778 // Translate coordinates to use chessboard as reference:
779 this.g_pieces
[i
][j
].style
.transform
=
780 `translate(${ip - newX}px,${jp - newY}px)`;
786 this.rescaleReserve(newR
);
790 for (let c
of ['w','b']) {
791 if (!this.reserve
[c
])
793 const nbR
= this.getNbReservePieces(c
);
796 // Resize container first
797 const sqResSize
= this.getReserveSquareSize(r
.width
, nbR
);
798 const vShift
= (c
== this.playerColor
? r
.height
+ 5 : -sqResSize
- 5);
799 const [i0
, j0
] = [r
.x
, r
.y
+ vShift
];
800 let rcontainer
= document
.getElementById("reserves_" + c
);
801 rcontainer
.style
.left
= i0
+ "px";
802 rcontainer
.style
.top
= j0
+ "px";
803 rcontainer
.style
.width
= (nbR
* sqResSize
+ 1) + "px";
804 rcontainer
.style
.height
= sqResSize
+ "px";
805 // And then reserve cells:
806 const rpieceWidth
= this.getReserveSquareSize(r
.width
, nbR
);
807 Object
.keys(this.reserve
[c
]).forEach(p
=> {
808 if (this.reserve
[c
][p
] == 0)
810 let r_cell
= document
.getElementById(this.coordsToId({x: c
, y: p
}));
811 r_cell
.style
.width
= sqResSize
+ "px";
812 r_cell
.style
.height
= sqResSize
+ "px";
817 // Return the absolute pixel coordinates given current position.
818 // Our coordinate system differs from CSS one (x <--> y).
819 // We return here the CSS coordinates (more useful).
820 getPixelPosition(i
, j
, r
) {
822 return [0, 0]; //piece vanishes
824 if (typeof i
== "string") {
825 // Reserves: need to know the rank of piece
826 const nbR
= this.getNbReservePieces(i
);
827 const rsqSize
= this.getReserveSquareSize(r
.width
, nbR
);
828 x
= this.getRankInReserve(i
, j
) * rsqSize
;
829 y
= (this.playerColor
== i
? y
= r
.height
+ 5 : - 5 - rsqSize
);
832 const sqSize
= r
.width
/ this.size
.y
;
833 const flipped
= (this.playerColor
== 'b');
834 x
= (flipped
? this.size
.y
- 1 - j : j
) * sqSize
;
835 y
= (flipped
? this.size
.x
- 1 - i : i
) * sqSize
;
837 return [r
.x
+ x
, r
.y
+ y
];
841 let container
= document
.getElementById(this.containerId
);
842 let chessboard
= container
.querySelector(".chessboard");
844 const getOffset
= e
=> {
847 return {x: e
.clientX
, y: e
.clientY
};
848 let touchLocation
= null;
849 if (e
.targetTouches
&& e
.targetTouches
.length
>= 1)
850 // Touch screen, dragstart
851 touchLocation
= e
.targetTouches
[0];
852 else if (e
.changedTouches
&& e
.changedTouches
.length
>= 1)
853 // Touch screen, dragend
854 touchLocation
= e
.changedTouches
[0];
856 return {x: touchLocation
.clientX
, y: touchLocation
.clientY
};
857 return {x: 0, y: 0}; //shouldn't reach here =)
860 const centerOnCursor
= (piece
, e
) => {
861 const centerShift
= this.getPieceWidth(r
.width
) / 2;
862 const offset
= getOffset(e
);
863 piece
.style
.left
= (offset
.x
- centerShift
) + "px";
864 piece
.style
.top
= (offset
.y
- centerShift
) + "px";
869 startPiece
, curPiece
= null,
871 const mousedown
= (e
) => {
872 // Disable zoom on smartphones:
873 if (e
.touches
&& e
.touches
.length
> 1)
875 r
= chessboard
.getBoundingClientRect();
876 pieceWidth
= this.getPieceWidth(r
.width
);
877 const cd
= this.idToCoords(e
.target
.id
);
879 const move = this.doClick(cd
);
881 this.buildMoveStack(move, r
);
882 else if (!this.clickOnly
) {
883 const [x
, y
] = Object
.values(cd
);
884 if (typeof x
!= "number")
885 startPiece
= this.r_pieces
[x
][y
];
887 startPiece
= this.g_pieces
[x
][y
];
888 if (startPiece
&& this.canIplay(x
, y
)) {
891 curPiece
= startPiece
.cloneNode();
892 curPiece
.style
.transform
= "none";
893 curPiece
.style
.zIndex
= 5;
894 curPiece
.style
.width
= pieceWidth
+ "px";
895 curPiece
.style
.height
= pieceWidth
+ "px";
896 centerOnCursor(curPiece
, e
);
897 container
.appendChild(curPiece
);
898 startPiece
.style
.opacity
= "0.4";
899 chessboard
.style
.cursor
= "none";
905 const mousemove
= (e
) => {
908 centerOnCursor(curPiece
, e
);
910 else if (e
.changedTouches
&& e
.changedTouches
.length
>= 1)
911 // Attempt to prevent horizontal swipe...
915 const mouseup
= (e
) => {
918 const [x
, y
] = [start
.x
, start
.y
];
921 chessboard
.style
.cursor
= "pointer";
922 startPiece
.style
.opacity
= "1";
923 const offset
= getOffset(e
);
924 const landingElt
= document
.elementFromPoint(offset
.x
, offset
.y
);
926 (landingElt
? this.idToCoords(landingElt
.id
) : undefined);
928 // NOTE: clearly suboptimal, but much easier, and not a big deal.
929 const potentialMoves
= this.getPotentialMovesFrom([x
, y
])
930 .filter(m
=> m
.end
.x
== cd
.x
&& m
.end
.y
== cd
.y
);
931 const moves
= this.filterValid(potentialMoves
);
932 if (moves
.length
>= 2)
933 this.showChoices(moves
, r
);
934 else if (moves
.length
== 1)
935 this.buildMoveStack(moves
[0], r
);
940 const resize
= (e
) => this.rescale(e
.deltaY
< 0 ? "up" : "down");
942 if ('onmousedown' in window
) {
943 this.mouseListeners
= [
944 {type: "mousedown", listener: mousedown
},
945 {type: "mousemove", listener: mousemove
},
946 {type: "mouseup", listener: mouseup
},
947 {type: "wheel", listener: resize
}
949 this.mouseListeners
.forEach(ml
=> {
950 document
.addEventListener(ml
.type
, ml
.listener
);
953 if ('ontouchstart' in window
) {
954 this.touchListeners
= [
955 {type: "touchstart", listener: mousedown
},
956 {type: "touchmove", listener: mousemove
},
957 {type: "touchend", listener: mouseup
}
959 this.touchListeners
.forEach(tl
=> {
960 // https://stackoverflow.com/a/42509310/12660887
961 document
.addEventListener(tl
.type
, tl
.listener
, {passive: false});
964 // TODO: onpointerdown/move/up ? See reveal.js /controllers/touch.js
967 // NOTE: not called if isDiagram
969 let container
= document
.getElementById(this.containerId
);
970 this.windowResizeObs
.unobserve(container
);
971 if ('onmousedown' in window
) {
972 this.mouseListeners
.forEach(ml
=> {
973 document
.removeEventListener(ml
.type
, ml
.listener
);
976 if ('ontouchstart' in window
) {
977 this.touchListeners
.forEach(tl
=> {
978 // https://stackoverflow.com/a/42509310/12660887
979 document
.removeEventListener(tl
.type
, tl
.listener
);
984 showChoices(moves
, r
) {
985 let container
= document
.getElementById(this.containerId
);
986 let chessboard
= container
.querySelector(".chessboard");
987 let choices
= document
.createElement("div");
988 choices
.id
= "choices";
990 r
= chessboard
.getBoundingClientRect();
991 choices
.style
.width
= r
.width
+ "px";
992 choices
.style
.height
= r
.height
+ "px";
993 choices
.style
.left
= r
.x
+ "px";
994 choices
.style
.top
= r
.y
+ "px";
995 chessboard
.style
.opacity
= "0.5";
996 container
.appendChild(choices
);
997 const squareWidth
= r
.width
/ this.size
.y
;
998 const firstUpLeft
= (r
.width
- (moves
.length
* squareWidth
)) / 2;
999 const firstUpTop
= (r
.height
- squareWidth
) / 2;
1000 const color
= moves
[0].appear
[0].c
;
1001 const callback
= (m
) => {
1002 chessboard
.style
.opacity
= "1";
1003 container
.removeChild(choices
);
1004 this.buildMoveStack(m
, r
);
1006 for (let i
=0; i
< moves
.length
; i
++) {
1007 let choice
= document
.createElement("div");
1008 choice
.classList
.add("choice");
1009 choice
.style
.width
= squareWidth
+ "px";
1010 choice
.style
.height
= squareWidth
+ "px";
1011 choice
.style
.left
= (firstUpLeft
+ i
* squareWidth
) + "px";
1012 choice
.style
.top
= firstUpTop
+ "px";
1013 choice
.style
.backgroundColor
= "lightyellow";
1014 choice
.onclick
= () => callback(moves
[i
]);
1015 const piece
= document
.createElement("piece");
1016 const cdisp
= moves
[i
].choice
|| moves
[i
].appear
[0].p
;
1017 C
.AddClass_es(piece
,
1018 this.pieces(color
, moves
[i
].end
.x
, moves
[i
].end
.y
)[cdisp
]["class"]);
1019 piece
.classList
.add(V
.GetColorClass(color
));
1020 piece
.style
.width
= "100%";
1021 piece
.style
.height
= "100%";
1022 choice
.appendChild(piece
);
1023 choices
.appendChild(choice
);
1027 displayMessage(elt
, msg
, classe_s
, timeout
) {
1029 // Fixed element, e.g. for Dice Chess
1030 elt
.innerHTML
= msg
;
1032 // Temporary div (Chakart, Apocalypse...)
1033 let divMsg
= document
.createElement("div");
1034 C
.AddClass_es(divMsg
, classe_s
);
1035 divMsg
.innerHTML
= msg
;
1036 let container
= document
.getElementById(this.containerId
);
1037 container
.appendChild(divMsg
);
1038 setTimeout(() => container
.removeChild(divMsg
), timeout
);
1045 updateEnlightened() {
1046 this.oldEnlightened
= this.enlightened
;
1047 this.enlightened
= ArrayFun
.init(this.size
.x
, this.size
.y
, false);
1048 // Add pieces positions + all squares reachable by moves (includes Zen):
1049 for (let x
=0; x
<this.size
.x
; x
++) {
1050 for (let y
=0; y
<this.size
.y
; y
++) {
1051 if (this.board
[x
][y
] != "" && this.getColor(x
, y
) == this.playerColor
)
1053 this.enlightened
[x
][y
] = true;
1054 this.getPotentialMovesFrom([x
, y
]).forEach(m
=> {
1055 this.enlightened
[m
.end
.x
][m
.end
.y
] = true;
1061 this.enlightEnpassant();
1064 // Include square of the en-passant capturing square:
1065 enlightEnpassant() {
1066 // NOTE: shortcut, pawn has only one attack type, doesn't depend on square
1067 // TODO: (0, 0) is wrong, would need to place an attacker here...
1068 const steps
= this.pieces(this.playerColor
, 0, 0)["p"].attack
[0].steps
;
1069 for (let step
of steps
) {
1070 const x
= this.epSquare
.x
- step
[0],
1071 y
= this.getY(this.epSquare
.y
- step
[1]);
1073 this.onBoard(x
, y
) &&
1074 this.getColor(x
, y
) == this.playerColor
&&
1075 this.getPieceType(x
, y
) == "p"
1077 this.enlightened
[x
][this.epSquare
.y
] = true;
1083 // Apply diff this.enlightened --> oldEnlightened on board
1084 graphUpdateEnlightened() {
1086 document
.getElementById(this.containerId
).querySelector(".chessboard");
1087 const r
= chessboard
.getBoundingClientRect();
1088 const pieceWidth
= this.getPieceWidth(r
.width
);
1089 for (let x
=0; x
<this.size
.x
; x
++) {
1090 for (let y
=0; y
<this.size
.y
; y
++) {
1091 if (!this.enlightened
[x
][y
] && this.oldEnlightened
[x
][y
]) {
1092 let elt
= document
.getElementById(this.coordsToId({x: x
, y: y
}));
1093 elt
.classList
.add("in-shadow");
1094 if (this.g_pieces
[x
][y
])
1095 this.g_pieces
[x
][y
].classList
.add("hidden");
1097 else if (this.enlightened
[x
][y
] && !this.oldEnlightened
[x
][y
]) {
1098 let elt
= document
.getElementById(this.coordsToId({x: x
, y: y
}));
1099 elt
.classList
.remove("in-shadow");
1100 if (this.g_pieces
[x
][y
])
1101 this.g_pieces
[x
][y
].classList
.remove("hidden");
1114 ratio: 1 //for rectangular board = y / x (optional, 1 = default)
1118 // Color of thing on square (i,j). '' if square is empty
1120 if (typeof i
== "string")
1121 return i
; //reserves
1122 return this.board
[i
][j
].charAt(0);
1125 static GetColorClass(c
) {
1130 return "other-color"; //unidentified color
1133 // Piece on i,j. '' if square is empty
1135 if (typeof j
== "string")
1136 return j
; //reserves
1137 return this.board
[i
][j
].charAt(1);
1140 // Piece type on square (i,j)
1141 getPieceType(x
, y
, p
) {
1143 p
= this.getPiece(x
, y
);
1144 return this.pieces(this.getColor(x
, y
), x
, y
)[p
].moveas
|| p
;
1149 p
= this.getPiece(x
, y
);
1150 if (!this.options
["cannibal"])
1152 return !!C
.CannibalKings
[p
];
1155 static GetOppTurn(color
) {
1156 return (color
== 'w' ? 'b' : 'w');
1159 // Get opponent color(s): may differ from turn (e.g. Checkered)
1161 return (color
== "w" ? "b" : "w");
1164 // Is (x,y) on the chessboard?
1166 return (x
>= 0 && x
< this.size
.x
&&
1167 y
>= 0 && y
< this.size
.y
);
1170 // Am I allowed to move thing at square x,y ?
1172 return (this.playerColor
== this.turn
&& this.getColor(x
, y
) == this.turn
);
1175 ////////////////////////
1176 // PIECES SPECIFICATIONS
1178 getPawnShift(color
) {
1179 return (color
== "w" ? -1 : 1);
1182 pieces(color
, x
, y
) {
1183 const pawnShift
= this.getPawnShift(color
);
1184 // NOTE: jump 2 squares from first rank (pawns can be here sometimes)
1185 const initRank
= ((color
== 'w' && x
>= 6) || (color
== 'b' && x
<= 1));
1191 steps: [[pawnShift
, 0]],
1192 range: (initRank
? 2 : 1)
1197 steps: [[pawnShift
, 1], [pawnShift
, -1]],
1205 {steps: [[0, 1], [0, -1], [1, 0], [-1, 0]]}
1213 [1, 2], [1, -2], [-1, 2], [-1, -2],
1214 [2, 1], [-2, 1], [2, -1], [-2, -1]
1223 {steps: [[1, 1], [1, -1], [-1, 1], [-1, -1]]}
1231 [0, 1], [0, -1], [1, 0], [-1, 0],
1232 [1, 1], [1, -1], [-1, 1], [-1, -1]
1242 [0, 1], [0, -1], [1, 0], [-1, 0],
1243 [1, 1], [1, -1], [-1, 1], [-1, -1]
1250 '!': {"class": "king-pawn", moveas: "p"},
1251 '#': {"class": "king-rook", moveas: "r"},
1252 '$': {"class": "king-knight", moveas: "n"},
1253 '%': {"class": "king-bishop", moveas: "b"},
1254 '*': {"class": "king-queen", moveas: "q"}
1258 // NOTE: using special symbols to not interfere with variants' pieces codes
1259 static get CannibalKings() {
1270 static get CannibalKingCode() {
1281 //////////////////////////
1282 // MOVES GENERATION UTILS
1284 // For Cylinder: get Y coordinate
1286 if (!this.options
["cylinder"])
1288 let res
= y
% this.size
.y
;
1294 getSegments(curSeg
, segStart
, segEnd
) {
1295 if (curSeg
.length
== 0)
1297 let segments
= JSON
.parse(JSON
.stringify(curSeg
)); //not altering
1298 segments
.push([[segStart
[0], segStart
[1]], [segEnd
[0], segEnd
[1]]]);
1302 getStepSpec(color
, x
, y
, piece
) {
1303 let pieceType
= piece
;
1304 let allSpecs
= this.pieces(color
, x
, y
);
1306 pieceType
= this.getPieceType(x
, y
);
1307 else if (allSpecs
[piece
].moveas
)
1308 pieceType
= allSpecs
[piece
].moveas
;
1309 let res
= allSpecs
[pieceType
];
1319 // Can thing on square1 capture thing on square2?
1320 canTake([x1
, y1
], [x2
, y2
]) {
1321 return this.getColor(x1
, y1
) !== this.getColor(x2
, y2
);
1324 // Teleport & Recycle. Assumption: color(x1,y1) == color(x2,y2)
1325 canSelfTake([x1
, y1
], [x2
, y2
]) {
1326 return !this.isKing(x2
, y2
);
1329 canStepOver(i
, j
, p
) {
1330 // In some variants, objects on boards don't stop movement (Chakart)
1331 return this.board
[i
][j
] == "";
1334 canDrop([c
, p
], [i
, j
]) {
1336 this.board
[i
][j
] == "" &&
1337 (!this.enlightened
|| this.enlightened
[i
][j
]) &&
1340 (c
== 'w' && i
< this.size
.x
- 1) ||
1347 // (redefined in Baroque etc, where Madrasi condition doesn't make sense)
1348 isImmobilized([x
, y
]) {
1349 if (!this.options
["madrasi"])
1351 const color
= this.getColor(x
, y
);
1352 const oppCols
= this.getOppCols(color
);
1353 const piece
= this.getPieceType(x
, y
);
1354 const stepSpec
= this.getStepSpec(color
, x
, y
, piece
);
1355 const attacks
= stepSpec
.both
.concat(stepSpec
.attack
);
1356 for (let a
of attacks
) {
1357 outerLoop: for (let step
of a
.steps
) {
1358 let [i
, j
] = [x
+ step
[0], y
+ step
[1]];
1359 let stepCounter
= 1;
1360 while (this.onBoard(i
, j
) && this.board
[i
][j
] == "") {
1361 if (a
.range
<= stepCounter
++)
1364 j
= this.getY(j
+ step
[1]);
1367 this.onBoard(i
, j
) &&
1368 oppCols
.includes(this.getColor(i
, j
)) &&
1369 this.getPieceType(i
, j
) == piece
1378 // Stop at the first capture found
1379 atLeastOneCapture(color
) {
1380 const allowed
= (sq1
, sq2
) => {
1382 // NOTE: canTake is reversed for Zen.
1383 // Generally ok because of the symmetry. TODO?
1384 this.canTake(sq1
, sq2
) &&
1386 [this.getBasicMove(sq1
, sq2
)]).length
>= 1
1389 for (let i
=0; i
<this.size
.x
; i
++) {
1390 for (let j
=0; j
<this.size
.y
; j
++) {
1391 if (this.getColor(i
, j
) == color
) {
1394 !this.options
["zen"] &&
1395 this.findDestSquares(
1400 segments: this.options
["cylinder"]
1408 this.options
["zen"] &&
1409 this.findCapturesOn(
1413 segments: this.options
["cylinder"]
1428 compatibleStep([x1
, y1
], [x2
, y2
], step
, range
) {
1429 const epsilon
= 1e-7; //arbitrary small value
1431 if (this.options
["cylinder"])
1432 Array
.prototype.push
.apply(shifts
, [-this.size
.y
, this.size
.y
]);
1433 for (let sh
of shifts
) {
1434 const rx
= (x2
- x1
) / step
[0],
1435 ry
= (y2
+ sh
- y1
) / step
[1];
1437 // Zero step but non-zero interval => impossible
1438 (!Number
.isFinite(rx
) && !Number
.isNaN(rx
)) ||
1439 (!Number
.isFinite(ry
) && !Number
.isNaN(ry
)) ||
1440 // Negative number of step (impossible)
1441 (rx
< 0 || ry
< 0) ||
1442 // Not the same number of steps in both directions:
1443 (!Number
.isNaN(rx
) && !Number
.isNaN(ry
) && Math
.abs(rx
- ry
) > epsilon
)
1447 let distance
= (Number
.isNaN(rx
) ? ry : rx
);
1448 if (Math
.abs(distance
- Math
.round(distance
)) > epsilon
)
1450 distance
= Math
.round(distance
); //in case of (numerical...)
1451 if (!range
|| range
>= distance
)
1457 ////////////////////
1460 getDropMovesFrom([c
, p
]) {
1461 // NOTE: by design, this.reserve[c][p] >= 1 on user click
1462 // (but not necessarily otherwise: atLeastOneMove() etc)
1463 if (this.reserve
[c
][p
] == 0)
1466 for (let i
=0; i
<this.size
.x
; i
++) {
1467 for (let j
=0; j
<this.size
.y
; j
++) {
1468 if (this.onBoard(i
, j
) && this.canDrop([c
, p
], [i
, j
])) {
1470 start: {x: c
, y: p
},
1472 appear: [new PiPo({x: i
, y: j
, c: c
, p: p
})],
1475 if (this.board
[i
][j
] != "") {
1476 mv
.vanish
.push(new PiPo({
1479 c: this.getColor(i
, j
),
1480 p: this.getPiece(i
, j
)
1490 // All possible moves from selected square
1491 // TODO: generalize usage if arg "color" (e.g. Checkered)
1492 getPotentialMovesFrom([x
, y
], color
) {
1493 if (this.subTurnTeleport
== 2)
1495 if (typeof x
== "string")
1496 return this.getDropMovesFrom([x
, y
]);
1497 if (this.isImmobilized([x
, y
]))
1499 const piece
= this.getPieceType(x
, y
);
1500 let moves
= this.getPotentialMovesOf(piece
, [x
, y
]);
1501 if (piece
== "p" && this.hasEnpassant
&& this.epSquare
)
1502 Array
.prototype.push
.apply(moves
, this.getEnpassantCaptures([x
, y
]));
1504 this.isKing(0, 0, piece
) && this.hasCastle
&&
1505 this.castleFlags
[color
|| this.turn
].some(v
=> v
< this.size
.y
)
1507 Array
.prototype.push
.apply(moves
, this.getCastleMoves([x
, y
]));
1509 return this.postProcessPotentialMoves(moves
);
1512 postProcessPotentialMoves(moves
) {
1513 if (moves
.length
== 0)
1515 const color
= this.getColor(moves
[0].start
.x
, moves
[0].start
.y
);
1516 const oppCols
= this.getOppCols(color
);
1518 if (this.options
["capture"] && this.atLeastOneCapture(color
))
1519 moves
= this.capturePostProcess(moves
, oppCols
);
1521 if (this.options
["atomic"])
1522 moves
= this.atomicPostProcess(moves
, color
, oppCols
);
1526 this.getPieceType(moves
[0].start
.x
, moves
[0].start
.y
) == "p"
1528 moves
= this.pawnPostProcess(moves
, color
, oppCols
);
1531 if (this.options
["cannibal"] && this.options
["rifle"])
1532 // In this case a rifle-capture from last rank may promote a pawn
1533 moves
= this.riflePromotePostProcess(moves
, color
);
1538 capturePostProcess(moves
, oppCols
) {
1539 // Filter out non-capturing moves (not using m.vanish because of
1540 // self captures of Recycle and Teleport).
1541 return moves
.filter(m
=> {
1543 this.board
[m
.end
.x
][m
.end
.y
] != "" &&
1544 oppCols
.includes(this.getColor(m
.end
.x
, m
.end
.y
))
1549 atomicPostProcess(moves
, color
, oppCols
) {
1550 moves
.forEach(m
=> {
1552 this.board
[m
.end
.x
][m
.end
.y
] != "" &&
1553 oppCols
.includes(this.getColor(m
.end
.x
, m
.end
.y
))
1566 let mNext
= new Move({
1572 for (let step
of steps
) {
1573 let x
= m
.end
.x
+ step
[0];
1574 let y
= this.getY(m
.end
.y
+ step
[1]);
1576 this.onBoard(x
, y
) &&
1577 this.board
[x
][y
] != "" &&
1578 (x
!= m
.start
.x
|| y
!= m
.start
.y
) &&
1579 this.getPieceType(x
, y
) != "p"
1583 p: this.getPiece(x
, y
),
1584 c: this.getColor(x
, y
),
1591 if (!this.options
["rifle"]) {
1592 // The moving piece also vanish
1593 mNext
.vanish
.unshift(
1598 p: this.getPiece(m
.start
.x
, m
.start
.y
)
1608 pawnPostProcess(moves
, color
, oppCols
) {
1610 const lastRank
= (color
== "w" ? 0 : this.size
.x
- 1);
1611 const initPiece
= this.getPiece(moves
[0].start
.x
, moves
[0].start
.y
);
1612 moves
.forEach(m
=> {
1613 const [x1
, y1
] = [m
.start
.x
, m
.start
.y
];
1614 const [x2
, y2
] = [m
.end
.x
, m
.end
.y
];
1615 const promotionOk
= (
1617 (!this.options
["rifle"] || this.board
[x2
][y2
] == "")
1620 return; //nothing to do
1621 if (this.options
["pawnfall"]) {
1627 this.options
["cannibal"] &&
1628 this.board
[x2
][y2
] != "" &&
1629 oppCols
.includes(this.getColor(x2
, y2
))
1631 finalPieces
= [this.getPieceType(x2
, y2
)];
1634 finalPieces
= this.pawnPromotions
;
1635 m
.appear
[0].p
= finalPieces
[0];
1636 if (initPiece
== "!") //cannibal king-pawn
1637 m
.appear
[0].p
= C
.CannibalKingCode
[finalPieces
[0]];
1638 for (let i
=1; i
<finalPieces
.length
; i
++) {
1639 let newMove
= JSON
.parse(JSON
.stringify(m
));
1640 const piece
= finalPieces
[i
];
1641 m
.appear
[0].p
= (initPiece
!= "!" ? piece : C
.CannibalKingCode
[piece
]);
1642 moreMoves
.push(newMove
);
1645 return moves
.concat(moreMoves
);
1648 riflePromotePostProcess(moves
, color
) {
1649 const lastRank
= (color
== "w" ? 0 : this.size
.x
- 1);
1651 moves
.forEach(m
=> {
1653 m
.start
.x
== lastRank
&&
1654 m
.appear
.length
>= 1 &&
1655 m
.appear
[0].p
== "p" &&
1656 m
.appear
[0].x
== m
.start
.x
&&
1657 m
.appear
[0].y
== m
.start
.y
1659 m
.appear
[0].p
= this.pawnPromotions
[0];
1660 for (let i
=1; i
<this.pawnPromotions
.length
; i
++) {
1661 let newMv
= JSON
.parse(JSON
.stringify(m
));
1662 newMv
.appear
[0].p
= this.pawnSpecs
.promotions
[i
];
1663 newMoves
.push(newMv
);
1667 return moves
.concat(newMoves
);
1670 // Generic method to find possible moves of "sliding or jumping" pieces
1671 getPotentialMovesOf(piece
, [x
, y
]) {
1672 const color
= this.getColor(x
, y
);
1673 const stepSpec
= this.getStepSpec(color
, x
, y
, piece
);
1675 if (stepSpec
.attack
) {
1676 squares
= this.findDestSquares(
1680 segments: this.options
["cylinder"],
1683 ([i1
, j1
], [i2
, j2
]) => {
1685 (!this.options
["zen"] || this.isKing(i2
, j2
)) &&
1686 this.canTake([i1
, j1
], [i2
, j2
])
1691 const noSpecials
= this.findDestSquares(
1694 moveOnly: !!stepSpec
.attack
|| this.options
["zen"],
1695 segments: this.options
["cylinder"],
1699 Array
.prototype.push
.apply(squares
, noSpecials
);
1700 if (this.options
["zen"]) {
1701 let zenCaptures
= this.findCapturesOn(
1703 {}, //byCol: default is ok
1704 ([i1
, j1
], [i2
, j2
]) =>
1705 !this.isKing(i1
, j1
) && this.canTake([i2
, j2
], [i1
, j1
])
1707 // Technical step: segments (if any) are reversed
1708 if (this.options
["cylinder"]) {
1709 zenCaptures
.forEach(z
=> {
1710 z
.segments
= z
.segments
.reverse().map(s
=> s
.reverse())
1713 Array
.prototype.push
.apply(squares
, zenCaptures
);
1716 this.options
["recycle"] ||
1717 (this.options
["teleport"] && this.subTurnTeleport
== 1)
1719 const selfCaptures
= this.findDestSquares(
1723 segments: this.options
["cylinder"],
1726 ([i1
, j1
], [i2
, j2
]) => {
1728 this.getColor(i2
, j2
) == color
&&
1729 this.canSelfTake([i1
, j1
], [i2
, j2
])
1733 Array
.prototype.push
.apply(squares
, selfCaptures
);
1735 return squares
.map(s
=> {
1736 let mv
= this.getBasicMove([x
, y
], s
.sq
);
1737 if (this.options
["cylinder"] && !!s
.segments
&& s
.segments
.length
>= 2)
1738 mv
.segments
= s
.segments
;
1743 findDestSquares([x
, y
], o
, allowed
) {
1745 allowed
= (sq1
, sq2
) => this.canTake(sq1
, sq2
);
1746 const apparentPiece
= this.getPiece(x
, y
); //how it looks
1748 // Next 3 for Cylinder mode: (unused if !o.segments)
1752 const addSquare
= ([i
, j
]) => {
1753 let elt
= {sq: [i
, j
]};
1755 elt
.segments
= this.getSegments(segments
, segStart
, [i
, j
]);
1758 const exploreSteps
= (stepArray
, mode
) => {
1759 for (let s
of stepArray
) {
1760 outerLoop: for (let step
of s
.steps
) {
1765 let [i
, j
] = [x
, y
];
1766 let stepCounter
= 0;
1768 this.onBoard(i
, j
) &&
1769 ((i
== x
&& j
== y
) || this.canStepOver(i
, j
, apparentPiece
))
1771 if (!explored
[i
+ "." + j
] && (i
!= x
|| j
!= y
)) {
1772 explored
[i
+ "." + j
] = true;
1775 (o
.captureTarget
[0] == i
&& o
.captureTarget
[1] == j
)
1777 if (o
.one
&& mode
!= "attack")
1779 if (mode
!= "attack")
1780 addSquare(!o
.captureTarget
? [i
, j
] : [x
, y
]);
1781 if (o
.captureTarget
)
1785 if (s
.range
<= stepCounter
++)
1787 const oldIJ
= [i
, j
];
1789 j
= this.getY(j
+ step
[1]);
1790 if (o
.segments
&& Math
.abs(j
- oldIJ
[1]) > 1) {
1791 // Boundary between segments (cylinder mode)
1792 segments
.push([[segStart
[0], segStart
[1]], oldIJ
]);
1796 if (!this.onBoard(i
, j
))
1798 const pieceIJ
= this.getPieceType(i
, j
);
1799 if (!explored
[i
+ "." + j
]) {
1800 explored
[i
+ "." + j
] = true;
1801 if (allowed([x
, y
], [i
, j
])) {
1802 if (o
.one
&& mode
!= "moves")
1804 if (mode
!= "moves")
1805 addSquare(!o
.captureTarget
? [i
, j
] : [x
, y
]);
1808 o
.captureTarget
[0] == i
&& o
.captureTarget
[1] == j
1816 return undefined; //default, but let's explicit it
1818 if (o
.captureTarget
)
1819 return exploreSteps(o
.captureSteps
, "attack");
1822 o
.stepSpec
|| this.getStepSpec(this.getColor(x
, y
), x
, y
);
1825 outOne
= exploreSteps(stepSpec
.both
.concat(stepSpec
.moves
), "moves");
1826 if (!outOne
&& !o
.moveOnly
)
1827 outOne
= exploreSteps(stepSpec
.both
.concat(stepSpec
.attack
), "attack");
1828 return (o
.one
? outOne : res
);
1832 // Search for enemy (or not) pieces attacking [x, y]
1833 findCapturesOn([x
, y
], o
, allowed
) {
1835 o
.byCol
= this.getOppCols(this.getColor(x
, y
) || this.turn
);
1837 for (let i
=0; i
<this.size
.x
; i
++) {
1838 for (let j
=0; j
<this.size
.y
; j
++) {
1839 const colIJ
= this.getColor(i
, j
);
1841 this.board
[i
][j
] != "" &&
1842 o
.byCol
.includes(colIJ
) &&
1843 !this.isImmobilized([i
, j
])
1845 const apparentPiece
= this.getPiece(i
, j
);
1846 // Quick check: does this potential attacker target x,y ?
1847 if (this.canStepOver(x
, y
, apparentPiece
))
1849 const stepSpec
= this.getStepSpec(colIJ
, i
, j
);
1850 const attacks
= stepSpec
.attack
.concat(stepSpec
.both
);
1851 for (let a
of attacks
) {
1852 for (let s
of a
.steps
) {
1853 // Quick check: if step isn't compatible, don't even try
1854 if (!this.compatibleStep([i
, j
], [x
, y
], s
, a
.range
))
1856 // Finally verify that nothing stand in-between
1857 const out
= this.findDestSquares(
1860 captureTarget: [x
, y
],
1861 captureSteps: [{steps: [s
], range: a
.range
}],
1862 segments: o
.segments
1876 return (o
.one
? false : res
);
1879 // Build a regular move from its initial and destination squares.
1880 // tr: transformation
1881 getBasicMove([sx
, sy
], [ex
, ey
], tr
) {
1882 const initColor
= this.getColor(sx
, sy
);
1883 const initPiece
= this.getPiece(sx
, sy
);
1884 const destColor
= (this.board
[ex
][ey
] != "" ? this.getColor(ex
, ey
) : "");
1888 start: {x: sx
, y: sy
},
1892 !this.options
["rifle"] ||
1893 this.board
[ex
][ey
] == "" ||
1894 destColor
== initColor
//Recycle, Teleport
1900 c: !!tr
? tr
.c : initColor
,
1901 p: !!tr
? tr
.p : initPiece
1913 if (this.board
[ex
][ey
] != "") {
1918 c: this.getColor(ex
, ey
),
1919 p: this.getPiece(ex
, ey
)
1922 if (this.options
["cannibal"] && destColor
!= initColor
) {
1923 const lastIdx
= mv
.vanish
.length
- 1; //think "Rifle+Cannibal"
1924 let trPiece
= mv
.vanish
[lastIdx
].p
;
1925 if (this.isKing(sx
, sy
))
1926 trPiece
= C
.CannibalKingCode
[trPiece
];
1927 if (mv
.appear
.length
>= 1)
1928 mv
.appear
[0].p
= trPiece
;
1929 else if (this.options
["rifle"]) {
1952 // En-passant square, if any
1953 getEpSquare(moveOrSquare
) {
1954 if (typeof moveOrSquare
=== "string") {
1955 const square
= moveOrSquare
;
1958 return C
.SquareToCoords(square
);
1960 // Argument is a move:
1961 const move = moveOrSquare
;
1962 const s
= move.start
,
1966 Math
.abs(s
.x
- e
.x
) == 2 &&
1967 // Next conditions for variants like Atomic or Rifle, Recycle...
1969 move.appear
.length
> 0 &&
1970 this.getPieceType(0, 0, move.appear
[0].p
) == 'p'
1974 move.vanish
.length
> 0 &&
1975 this.getPieceType(0, 0, move.vanish
[0].p
) == 'p'
1983 return undefined; //default
1986 // Special case of en-passant captures: treated separately
1987 getEnpassantCaptures([x
, y
]) {
1988 const color
= this.getColor(x
, y
);
1989 const shiftX
= (color
== 'w' ? -1 : 1);
1990 const oppCols
= this.getOppCols(color
);
1993 this.epSquare
.x
== x
+ shiftX
&&
1994 Math
.abs(this.getY(this.epSquare
.y
- y
)) == 1 &&
1995 // Doublemove (and Progressive?) guards:
1996 this.board
[this.epSquare
.x
][this.epSquare
.y
] == "" &&
1997 oppCols
.includes(this.getColor(x
, this.epSquare
.y
))
1999 const [epx
, epy
] = [this.epSquare
.x
, this.epSquare
.y
];
2000 this.board
[epx
][epy
] = this.board
[x
][this.epSquare
.y
];
2001 let enpassantMove
= this.getBasicMove([x
, y
], [epx
, epy
]);
2002 this.board
[epx
][epy
] = "";
2003 const lastIdx
= enpassantMove
.vanish
.length
- 1; //think Rifle
2004 enpassantMove
.vanish
[lastIdx
].x
= x
;
2005 return [enpassantMove
];
2010 getCastleMoves([x
, y
], finalSquares
, castleWith
) {
2011 const c
= this.getColor(x
, y
);
2014 const oppCols
= this.getOppCols(c
);
2018 finalSquares
|| [ [2, 3], [this.size
.y
- 2, this.size
.y
- 3] ];
2019 const castlingKing
= this.getPiece(x
, y
);
2020 castlingCheck: for (
2023 castleSide
++ //large, then small
2025 if (this.castleFlags
[c
][castleSide
] >= this.size
.y
)
2027 // If this code is reached, rook and king are on initial position
2029 // NOTE: in some variants this is not a rook
2030 const rookPos
= this.castleFlags
[c
][castleSide
];
2031 const castlingPiece
= this.getPiece(x
, rookPos
);
2033 this.board
[x
][rookPos
] == "" ||
2034 this.getColor(x
, rookPos
) != c
||
2035 (castleWith
&& !castleWith
.includes(castlingPiece
))
2037 // Rook is not here, or changed color (see Benedict)
2040 // Nothing on the path of the king ? (and no checks)
2041 const finDist
= finalSquares
[castleSide
][0] - y
;
2042 let step
= finDist
/ Math
.max(1, Math
.abs(finDist
));
2046 // NOTE: next weird test because underCheck() verification
2047 // will be executed in filterValid() later.
2049 i
!= finalSquares
[castleSide
][0] &&
2050 this.underCheck([[x
, i
]], oppCols
)
2054 this.board
[x
][i
] != "" &&
2055 // NOTE: next check is enough, because of chessboard constraints
2056 (this.getColor(x
, i
) != c
|| ![rookPos
, y
].includes(i
))
2059 continue castlingCheck
;
2062 } while (i
!= finalSquares
[castleSide
][0]);
2063 // Nothing on the path to the rook?
2064 step
= (castleSide
== 0 ? -1 : 1);
2065 for (i
= y
+ step
; i
!= rookPos
; i
+= step
) {
2066 if (this.board
[x
][i
] != "")
2067 continue castlingCheck
;
2070 // Nothing on final squares, except maybe king and castling rook?
2071 for (i
= 0; i
< 2; i
++) {
2073 finalSquares
[castleSide
][i
] != rookPos
&&
2074 this.board
[x
][finalSquares
[castleSide
][i
]] != "" &&
2076 finalSquares
[castleSide
][i
] != y
||
2077 this.getColor(x
, finalSquares
[castleSide
][i
]) != c
2080 continue castlingCheck
;
2084 // If this code is reached, castle is potentially valid
2090 y: finalSquares
[castleSide
][0],
2096 y: finalSquares
[castleSide
][1],
2102 // King might be initially disguised (Titan...)
2103 new PiPo({ x: x
, y: y
, p: castlingKing
, c: c
}),
2104 new PiPo({ x: x
, y: rookPos
, p: castlingPiece
, c: c
})
2107 Math
.abs(y
- rookPos
) <= 2
2108 ? {x: x
, y: rookPos
}
2109 : {x: x
, y: y
+ 2 * (castleSide
== 0 ? -1 : 1)}
2117 ////////////////////
2120 // Is piece (or square) at given position attacked by "oppCol(s)" ?
2121 underAttack([x
, y
], oppCols
) {
2122 // An empty square is considered as king,
2123 // since it's used only in getCastleMoves (TODO?)
2124 const king
= this.board
[x
][y
] == "" || this.isKing(x
, y
);
2127 (!this.options
["zen"] || king
) &&
2128 this.findCapturesOn(
2132 segments: this.options
["cylinder"],
2139 (!!this.options
["zen"] && !king
) &&
2140 this.findDestSquares(
2144 segments: this.options
["cylinder"],
2147 ([i1
, j1
], [i2
, j2
]) => oppCols
.includes(this.getColor(i2
, j2
))
2153 // Argument is (very generally) an array of squares (= arrays)
2154 underCheck(square_s
, oppCols
) {
2155 if (this.options
["taking"] || this.options
["dark"])
2157 return square_s
.some(sq
=> this.underAttack(sq
, oppCols
));
2160 // Scan board for king(s)
2161 searchKingPos(color
) {
2163 for (let i
=0; i
< this.size
.x
; i
++) {
2164 for (let j
=0; j
< this.size
.y
; j
++) {
2165 if (this.getColor(i
, j
) == color
&& this.isKing(i
, j
))
2172 // cb: callback returning a boolean (false if king missing)
2173 trackKingWrap(move, kingPos
, cb
) {
2174 let newKingPP
= null,
2176 res
= true; //a priori valid
2178 move.vanish
.find(v
=> this.isKing(0, 0, v
.p
) && v
.c
== color
);
2180 // Search king in appear array:
2182 move.appear
.find(a
=> this.isKing(0, 0, a
.p
) && a
.c
== color
);
2184 sqIdx
= kingPos
.findIndex(kp
=>
2185 kp
[0] == oldKingPP
.x
&& kp
[1] == oldKingPP
.y
);
2186 kingPos
[sqIdx
] = [newKingPP
.x
, newKingPP
.y
];
2189 res
= false; //king vanished
2191 res
&&= cb(kingPos
);
2192 if (oldKingPP
&& newKingPP
)
2193 kingPos
[sqIdx
] = [oldKingPP
.x
, oldKingPP
.y
];
2197 // 'color' arg because some variants (e.g. Refusal) check opponent moves
2198 filterValid(moves
, color
) {
2201 const oppCols
= this.getOppCols(color
);
2202 let kingPos
= this.searchKingPos(color
);
2203 return moves
.filter(m
=> {
2204 this.playOnBoard(m
);
2205 const res
= this.trackKingWrap(m
, kingPos
, (kp
) => {
2206 return !this.underCheck(kp
, oppCols
);
2208 this.undoOnBoard(m
);
2216 // Apply a move on board
2218 for (let psq
of move.vanish
)
2219 this.board
[psq
.x
][psq
.y
] = "";
2220 for (let psq
of move.appear
)
2221 this.board
[psq
.x
][psq
.y
] = psq
.c
+ psq
.p
;
2223 // Un-apply the played move
2225 for (let psq
of move.appear
)
2226 this.board
[psq
.x
][psq
.y
] = "";
2227 for (let psq
of move.vanish
)
2228 this.board
[psq
.x
][psq
.y
] = psq
.c
+ psq
.p
;
2231 updateCastleFlags(move) {
2232 // Update castling flags if start or arrive from/at rook/king locations
2233 move.appear
.concat(move.vanish
).forEach(psq
=> {
2234 if (this.isKing(0, 0, psq
.p
))
2235 this.castleFlags
[psq
.c
] = [this.size
.y
, this.size
.y
];
2236 // NOTE: not "else if" because king can capture enemy rook...
2240 else if (psq
.x
== this.size
.x
- 1)
2243 const fidx
= this.castleFlags
[c
].findIndex(f
=> f
== psq
.y
);
2245 this.castleFlags
[c
][fidx
] = this.size
.y
;
2253 // If flags already off, no need to re-check:
2254 Object
.values(this.castleFlags
).some(cvals
=>
2255 cvals
.some(val
=> val
< this.size
.y
))
2257 this.updateCastleFlags(move);
2259 if (this.options
["crazyhouse"]) {
2260 move.vanish
.forEach(v
=> {
2261 const square
= C
.CoordsToSquare({x: v
.x
, y: v
.y
});
2262 if (this.ispawn
[square
])
2263 delete this.ispawn
[square
];
2265 if (move.appear
.length
> 0 && move.vanish
.length
> 0) {
2266 // Assumption: something is moving
2267 const initSquare
= C
.CoordsToSquare(move.start
);
2268 const destSquare
= C
.CoordsToSquare(move.end
);
2270 this.ispawn
[initSquare
] ||
2271 (move.vanish
[0].p
== 'p' && move.appear
[0].p
!= 'p')
2273 this.ispawn
[destSquare
] = true;
2276 this.ispawn
[destSquare
] &&
2277 this.getColor(move.end
.x
, move.end
.y
) != move.vanish
[0].c
2279 move.vanish
[1].p
= 'p';
2280 delete this.ispawn
[destSquare
];
2284 const minSize
= Math
.min(move.appear
.length
, move.vanish
.length
);
2287 // Warning; atomic pawn removal isn't a capture
2288 (!this.options
["atomic"] || !this.rempawn
|| this.movesCount
>= 1)
2290 const color
= this.turn
;
2291 for (let i
=minSize
; i
<move.appear
.length
; i
++) {
2292 // Something appears = dropped on board (some exceptions, Chakart...)
2293 if (move.appear
[i
].c
== color
) {
2294 const piece
= move.appear
[i
].p
;
2295 this.updateReserve(color
, piece
, this.reserve
[color
][piece
] - 1);
2298 for (let i
=minSize
; i
<move.vanish
.length
; i
++) {
2299 // Something vanish: add to reserve except if recycle & opponent
2301 this.options
["crazyhouse"] ||
2302 (this.options
["recycle"] && move.vanish
[i
].c
== color
)
2304 const piece
= move.vanish
[i
].p
;
2305 this.updateReserve(color
, piece
, this.reserve
[color
][piece
] + 1);
2313 if (this.hasEnpassant
)
2314 this.epSquare
= this.getEpSquare(move);
2315 this.playOnBoard(move);
2316 this.postPlay(move);
2320 if (this.options
["dark"])
2321 this.updateEnlightened();
2322 if (this.options
["teleport"]) {
2324 this.subTurnTeleport
== 1 &&
2325 move.vanish
.length
> move.appear
.length
&&
2326 move.vanish
[1].c
== this.turn
2328 const v
= move.vanish
[move.vanish
.length
- 1];
2329 this.captured
= {x: v
.x
, y: v
.y
, c: v
.c
, p: v
.p
};
2330 this.subTurnTeleport
= 2;
2333 this.subTurnTeleport
= 1;
2334 this.captured
= null;
2336 this.tryChangeTurn(move);
2339 tryChangeTurn(move) {
2340 if (this.isLastMove(move)) {
2341 this.turn
= C
.GetOppTurn(this.turn
);
2345 else if (!move.next
)
2352 const color
= this.turn
;
2353 const oppKingPos
= this.searchKingPos(C
.GetOppTurn(color
));
2354 if (oppKingPos
.length
== 0 || this.underCheck(oppKingPos
, [color
]))
2358 !this.options
["balance"] ||
2359 ![1, 2].includes(this.movesCount
) ||
2364 !this.options
["doublemove"] ||
2365 this.movesCount
== 0 ||
2370 !this.options
["progressive"] ||
2371 this.subTurn
== this.movesCount
+ 1
2376 // "Stop at the first move found"
2377 atLeastOneMove(color
) {
2378 for (let i
= 0; i
< this.size
.x
; i
++) {
2379 for (let j
= 0; j
< this.size
.y
; j
++) {
2380 if (this.board
[i
][j
] != "" && this.getColor(i
, j
) == color
) {
2381 // NOTE: in fact searching for all potential moves from i,j.
2382 // I don't believe this is an issue, for now at least.
2383 const moves
= this.getPotentialMovesFrom([i
, j
], color
);
2384 if (moves
.some(m
=> this.filterValid([m
]).length
>= 1))
2389 if (this.hasReserve
&& this.reserve
[color
]) {
2390 for (let p
of Object
.keys(this.reserve
[color
])) {
2391 const moves
= this.getDropMovesFrom([color
, p
]);
2392 if (moves
.some(m
=> this.filterValid([m
]).length
>= 1))
2399 // What is the score ? (Interesting if game is over)
2400 getCurrentScore(move_s
) {
2401 const move = move_s
[move_s
.length
- 1];
2402 // Shortcut in case the score was computed before:
2405 const oppTurn
= C
.GetOppTurn(this.turn
);
2407 w: this.searchKingPos('w'),
2408 b: this.searchKingPos('b')
2410 if (kingPos
[this.turn
].length
== 0 && kingPos
[oppTurn
].length
== 0)
2412 if (kingPos
[this.turn
].length
== 0)
2413 return (this.turn
== "w" ? "0-1" : "1-0");
2414 if (kingPos
[oppTurn
].length
== 0)
2415 return (this.turn
== "w" ? "1-0" : "0-1");
2416 if (this.atLeastOneMove(this.turn
))
2418 // No valid move: stalemate or checkmate?
2419 if (!this.underCheck(kingPos
[this.turn
], this.getOppCols(this.turn
)))
2422 return (this.turn
== "w" ? "0-1" : "1-0");
2425 playVisual(move, r
) {
2426 move.vanish
.forEach(v
=> {
2427 if (this.g_pieces
[v
.x
][v
.y
]) //can be null (e.g. Apocalypse)
2428 this.g_pieces
[v
.x
][v
.y
].remove();
2429 this.g_pieces
[v
.x
][v
.y
] = null;
2432 document
.getElementById(this.containerId
).querySelector(".chessboard");
2434 r
= chessboard
.getBoundingClientRect();
2435 const pieceWidth
= this.getPieceWidth(r
.width
);
2436 move.appear
.forEach(a
=> {
2437 this.g_pieces
[a
.x
][a
.y
] = document
.createElement("piece");
2438 C
.AddClass_es(this.g_pieces
[a
.x
][a
.y
],
2439 this.pieces(a
.c
, a
.x
, a
.y
)[a
.p
]["class"]);
2440 this.g_pieces
[a
.x
][a
.y
].classList
.add(V
.GetColorClass(a
.c
));
2441 this.g_pieces
[a
.x
][a
.y
].style
.width
= pieceWidth
+ "px";
2442 this.g_pieces
[a
.x
][a
.y
].style
.height
= pieceWidth
+ "px";
2443 const [ip
, jp
] = this.getPixelPosition(a
.x
, a
.y
, r
);
2444 // Translate coordinates to use chessboard as reference:
2445 this.g_pieces
[a
.x
][a
.y
].style
.transform
=
2446 `translate(${ip - r.x}px,${jp - r.y}px)`;
2447 if (this.enlightened
&& !this.enlightened
[a
.x
][a
.y
])
2448 this.g_pieces
[a
.x
][a
.y
].classList
.add("hidden");
2449 chessboard
.appendChild(this.g_pieces
[a
.x
][a
.y
]);
2451 if (this.options
["dark"])
2452 this.graphUpdateEnlightened();
2455 // TODO: send stack receive stack, or allow incremental? (good/bad points)
2456 buildMoveStack(move, r
) {
2457 this.moveStack
.push(move);
2458 this.computeNextMove(move);
2459 const then
= () => {
2460 const newTurn
= this.turn
;
2461 if (this.moveStack
.length
== 1 && !this.hideMoves
)
2462 this.playVisual(move, r
);
2466 board: JSON
.parse(JSON
.stringify(this.board
)) //easier
2468 this.buildMoveStack(move.next
, r
);
2471 if (this.moveStack
.length
== 1) {
2472 // Usual case (one normal move)
2473 this.afterPlay(this.moveStack
, newTurn
, {send: true, res: true});
2474 this.moveStack
= [];
2477 this.afterPlay(this.moveStack
, newTurn
, {send: true, res: false});
2478 this.re_initFromFen(this.gameState
.fen
, this.gameState
.board
);
2479 this.playReceivedMove(this.moveStack
.slice(1), () => {
2480 this.afterPlay(this.moveStack
, newTurn
, {send: false, res: true});
2481 this.moveStack
= [];
2486 // If hiding moves, then they are revealed in play() with callback
2487 this.play(move, this.hideMoves
? then : null);
2488 if (!this.hideMoves
)
2492 // Implemented in variants using (automatic) moveStack
2493 computeNextMove(move) {}
2495 animateMoving(start
, end
, drag
, segments
, cb
) {
2496 let initPiece
= this.getDomPiece(start
.x
, start
.y
);
2497 if (!initPiece
) { //TODO: shouldn't occur!
2501 // NOTE: cloning often not required, but light enough, and simpler
2502 let movingPiece
= initPiece
.cloneNode();
2503 initPiece
.style
.opacity
= "0";
2505 document
.getElementById(this.containerId
)
2506 const r
= container
.querySelector(".chessboard").getBoundingClientRect();
2507 if (typeof start
.x
== "string") {
2508 // Need to bound width/height (was 100% for reserve pieces)
2509 const pieceWidth
= this.getPieceWidth(r
.width
);
2510 movingPiece
.style
.width
= pieceWidth
+ "px";
2511 movingPiece
.style
.height
= pieceWidth
+ "px";
2513 const maxDist
= this.getMaxDistance(r
);
2514 const apparentColor
= this.getColor(start
.x
, start
.y
);
2515 const pieces
= this.pieces(apparentColor
, start
.x
, start
.y
);
2517 const startCode
= this.getPiece(start
.x
, start
.y
);
2518 C
.RemoveClass_es(movingPiece
, pieces
[startCode
]["class"]);
2519 C
.AddClass_es(movingPiece
, pieces
[drag
.p
]["class"]);
2520 if (apparentColor
!= drag
.c
) {
2521 movingPiece
.classList
.remove(V
.GetColorClass(apparentColor
));
2522 movingPiece
.classList
.add(V
.GetColorClass(drag
.c
));
2525 container
.appendChild(movingPiece
);
2526 const animateSegment
= (index
, cb
) => {
2527 // NOTE: move.drag could be generalized per-segment (usage?)
2528 const [i1
, j1
] = segments
[index
][0];
2529 const [i2
, j2
] = segments
[index
][1];
2530 const dep
= this.getPixelPosition(i1
, j1
, r
);
2531 const arr
= this.getPixelPosition(i2
, j2
, r
);
2532 movingPiece
.style
.transitionDuration
= "0s";
2533 movingPiece
.style
.transform
= `translate(${dep[0]}px, ${dep[1]}px)`;
2535 Math
.sqrt((arr
[0] - dep
[0]) ** 2 + (arr
[1] - dep
[1]) ** 2);
2536 const duration
= 0.2 + (distance
/ maxDist
) * 0.3;
2537 // TODO: unclear why we need this new delay below:
2539 movingPiece
.style
.transitionDuration
= duration
+ "s";
2540 // movingPiece is child of container: no need to adjust coordinates
2541 movingPiece
.style
.transform
= `translate(${arr[0]}px, ${arr[1]}px)`;
2542 setTimeout(cb
, duration
* 1000);
2546 const animateSegmentCallback
= () => {
2547 if (index
< segments
.length
)
2548 animateSegment(index
++, animateSegmentCallback
);
2550 movingPiece
.remove();
2551 initPiece
.style
.opacity
= "1";
2555 animateSegmentCallback();
2558 // Input array of objects with at least fields x,y (e.g. PiPo)
2559 animateFading(arr
, cb
) {
2560 const animLength
= 350; //TODO: 350ms? More? Less?
2562 let fadingPiece
= this.getDomPiece(v
.x
, v
.y
);
2563 fadingPiece
.style
.transitionDuration
= (animLength
/ 1000) + "s";
2564 fadingPiece
.style
.opacity
= "0";
2566 setTimeout(cb
, animLength
);
2569 animate(move, callback
) {
2570 if (this.noAnimate
|| move.noAnimate
) {
2574 let segments
= move.segments
;
2576 segments
= [ [[move.start
.x
, move.start
.y
], [move.end
.x
, move.end
.y
]] ];
2577 let targetObj
= new TargetObj(callback
);
2578 if (move.start
.x
!= move.end
.x
|| move.start
.y
!= move.end
.y
) {
2580 this.animateMoving(move.start
, move.end
, move.drag
, segments
,
2581 () => targetObj
.increment());
2583 if (move.vanish
.length
> move.appear
.length
) {
2584 const arr
= move.vanish
.slice(move.appear
.length
)
2585 // Ignore disappearing pieces hidden by some appearing ones:
2586 .filter(v
=> move.appear
.every(a
=> a
.x
!= v
.x
|| a
.y
!= v
.y
));
2587 if (arr
.length
> 0) {
2589 this.animateFading(arr
, () => targetObj
.increment());
2593 this.tryAnimateCastle(move, () => targetObj
.increment());
2595 this.customAnimate(move, segments
, () => targetObj
.increment());
2596 if (targetObj
.target
== 0)
2600 tryAnimateCastle(move, cb
) {
2603 move.vanish
.length
== 2 &&
2604 move.appear
.length
== 2 &&
2605 this.isKing(0, 0, move.vanish
[0].p
) &&
2606 this.isKing(0, 0, move.appear
[0].p
)
2608 const start
= {x: move.vanish
[1].x
, y: move.vanish
[1].y
},
2609 end
= {x: move.appear
[1].x
, y: move.appear
[1].y
};
2610 const segments
= [ [[start
.x
, start
.y
], [end
.x
, end
.y
]] ];
2611 this.animateMoving(start
, end
, null, segments
, cb
);
2617 // Potential other animations (e.g. for Suction variant)
2618 customAnimate(move, segments
, cb
) {
2619 return 0; //nb of targets
2622 launchAnimation(moves
, container
, callback
) {
2623 if (this.hideMoves
) {
2624 for (let i
=0; i
<moves
.length
; i
++)
2625 // If hiding moves, they are revealed into play():
2626 this.play(moves
[i
], i
== moves
.length
- 1 ? callback : () => {});
2629 const r
= container
.querySelector(".chessboard").getBoundingClientRect();
2630 const animateRec
= i
=> {
2631 this.animate(moves
[i
], () => {
2632 this.play(moves
[i
]);
2633 this.playVisual(moves
[i
], r
);
2634 if (i
< moves
.length
- 1)
2635 setTimeout(() => animateRec(i
+1), 300);
2643 playReceivedMove(moves
, callback
) {
2644 // Delay if user wasn't focused:
2645 const checkDisplayThenAnimate
= (delay
) => {
2646 if (container
.style
.display
== "none") {
2647 alert("New move! Let's go back to game...");
2648 document
.getElementById("gameInfos").style
.display
= "none";
2649 container
.style
.display
= "block";
2651 () => this.launchAnimation(moves
, container
, callback
),
2657 () => this.launchAnimation(moves
, container
, callback
),
2662 let container
= document
.getElementById(this.containerId
);
2663 if (document
.hidden
) {
2664 document
.onvisibilitychange
= () => {
2665 // TODO here: page reload ?! (some issues if tab changed...)
2666 document
.onvisibilitychange
= undefined;
2667 checkDisplayThenAnimate(700);
2671 checkDisplayThenAnimate();