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?
100 // Allow to take (moving: not disappearing) own pieces?
101 get hasSelfCaptures() {
103 this.options
["recycle"] ||
104 (this.options
["teleport"] && this.subTurnTeleport
== 1)
110 !!this.options
["crazyhouse"] ||
111 (!!this.options
["recycle"] && !this.options
["teleport"])
114 // Some variants do not store reserve state (Align4, Chakart...)
115 get hasReserveFen() {
116 return this.hasReserve
;
120 return !!this.options
["dark"];
123 // Some variants use only click information
128 // Some variants reveal moves only after both players played
133 // Some variants do not flip board as black
135 return (this.playerColor
== 'b');
138 // Some variants use click infos:
140 if (typeof coords
.x
!= "number")
141 return null; //click on reserves
143 this.options
["teleport"] && this.subTurnTeleport
== 2 &&
144 this.board
[coords
.x
][coords
.y
] == ""
147 start: {x: this.captured
.x
, y: this.captured
.y
},
158 res
.drag
= {c: this.captured
.c
, p: this.captured
.p
};
167 // 3a --> {x:3, y:10}
168 static SquareToCoords(sq
) {
169 return ArrayFun
.toObject(["x", "y"],
170 [0, 1].map(i
=> parseInt(sq
[i
], 36)));
173 // {x:11, y:12} --> bc
174 static CoordsToSquare(cd
) {
175 return Object
.values(cd
).map(c
=> c
.toString(36)).join("");
179 if (typeof cd
.x
== "number") {
181 `${this.containerId}|sq-${cd.x.toString(36)}-${cd.y.toString(36)}`
185 return `${this.containerId}|rsq-${cd.x}-${cd.y}`;
188 idToCoords(targetId
) {
190 return null; //outside page, maybe...
191 const idParts
= targetId
.split('|'); //prefix|sq-2-3 (start at 0 => 3,4)
193 idParts
.length
< 2 ||
194 idParts
[0] != this.containerId
||
195 !idParts
[1].match(/sq-[0-9a-zA-Z]-[0-9a-zA-Z]/)
199 const squares
= idParts
[1].split('-');
200 if (squares
[0] == "sq")
201 return {x: parseInt(squares
[1], 36), y: parseInt(squares
[2], 36)};
202 // squares[0] == "rsq" : reserve, 'c' + 'p' (letters color & piece)
203 return {x: squares
[1], y: squares
[2]};
209 // Turn "wb" into "B" (for FEN)
211 return (b
[0] == "w" ? b
[1].toUpperCase() : b
[1]);
214 // Turn "p" into "bp" (for board)
216 return (f
.charCodeAt(0) <= 90 ? "w" + f
.toLowerCase() : "b" + f
);
219 genRandInitFen(seed
) {
220 Random
.setSeed(seed
); //may be unused
221 let baseFen
= this.genRandInitBaseFen();
222 baseFen
.o
= Object
.assign({init: true}, baseFen
.o
);
223 const parts
= this.getPartFen(baseFen
.o
);
225 baseFen
.fen
+ " w 0" +
226 (Object
.keys(parts
).length
> 0 ? (" " + JSON
.stringify(parts
)) : "")
230 // Setup the initial random-or-not (asymmetric-or-not) position
231 genRandInitBaseFen() {
232 const s
= FenUtil
.setupPieces(
233 ['r', 'n', 'b', 'q', 'k', 'b', 'n', 'r'],
235 randomness: this.options
["randomness"],
236 between: [{p1: 'k', p2: 'r'}],
242 fen: s
.b
.join("") + "/pppppppp/8/8/8/8/PPPPPPPP/" +
243 s
.w
.join("").toUpperCase(),
248 // "Parse" FEN: just return untransformed string data
250 const fenParts
= fen
.split(" ");
252 position: fenParts
[0],
254 movesCount: fenParts
[2]
256 if (fenParts
.length
> 3)
257 res
= Object
.assign(res
, JSON
.parse(fenParts
[3]));
261 // Return current fen (game state)
263 const parts
= this.getPartFen({});
266 (Object
.keys(parts
).length
> 0 ? (" " + JSON
.stringify(parts
)) : "")
271 return this.getPosition() + " " + this.turn
+ " " + this.movesCount
;
277 parts
["flags"] = o
.init
? o
.flags : this.getFlagsFen();
278 if (this.hasEnpassant
)
279 parts
["enpassant"] = o
.init
? "-" : this.getEnpassantFen();
280 if (this.hasReserveFen
)
281 parts
["reserve"] = this.getReserveFen(o
);
282 if (this.options
["crazyhouse"])
283 parts
["ispawn"] = this.getIspawnFen(o
);
287 static FenEmptySquares(count
) {
288 // if more than 9 consecutive free spaces, break the integer,
289 // otherwise FEN parsing will fail.
292 // Most boards of size < 18:
294 return "9" + (count
- 9);
296 return "99" + (count
- 18);
299 // Position part of the FEN string
302 for (let i
= 0; i
< this.size
.x
; i
++) {
304 for (let j
= 0; j
< this.size
.y
; j
++) {
305 if (this.board
[i
][j
] == "")
308 if (emptyCount
> 0) {
309 // Add empty squares in-between
310 position
+= C
.FenEmptySquares(emptyCount
);
313 position
+= this.board2fen(this.board
[i
][j
]);
318 position
+= C
.FenEmptySquares(emptyCount
);
319 if (i
< this.size
.x
- 1)
320 position
+= "/"; //separate rows
325 // Flags part of the FEN string
327 return ['w', 'b'].map(c
=> {
328 return this.castleFlags
[c
].map(x
=> x
.toString(36)).join("");
332 // Enpassant part of the FEN string
336 return C
.CoordsToSquare(this.epSquare
);
341 return "000000000000";
343 ['w', 'b'].map(c
=> Object
.values(this.reserve
[c
]).join("")).join("")
349 // NOTE: cannot merge because this.ispawn doesn't exist yet
351 const squares
= Object
.keys(this.ispawn
);
352 if (squares
.length
== 0)
354 return squares
.join(",");
357 // Set flags from fen (castle: white a,h then black a,h)
360 w: [0, 1].map(i
=> parseInt(fenflags
.charAt(i
), 36)),
361 b: [2, 3].map(i
=> parseInt(fenflags
.charAt(i
), 36))
369 this.options
= o
.options
;
370 // Fill missing options (always the case if random challenge)
371 (V
.Options
.select
|| []).concat(V
.Options
.input
|| []).forEach(opt
=> {
372 if (this.options
[opt
.variable
] === undefined)
373 this.options
[opt
.variable
] = opt
.defaut
;
377 this.playerColor
= o
.color
;
378 this.afterPlay
= o
.afterPlay
; //trigger some actions after playing a move
379 this.containerId
= o
.element
;
380 this.isDiagram
= o
.diagram
;
381 this.marks
= o
.marks
;
385 o
.fen
= this.genRandInitFen(o
.seed
);
386 this.re_initFromFen(o
.fen
);
387 this.graphicalInit();
390 re_initFromFen(fen
, oldBoard
) {
391 const fenParsed
= this.parseFen(fen
);
392 this.board
= oldBoard
|| this.getBoard(fenParsed
.position
);
393 this.turn
= fenParsed
.turn
;
394 this.movesCount
= parseInt(fenParsed
.movesCount
, 10);
395 this.setOtherVariables(fenParsed
);
398 // Turn position fen into double array ["wb","wp","bk",...]
400 const rows
= position
.split("/");
401 let board
= ArrayFun
.init(this.size
.x
, this.size
.y
, "");
402 for (let i
= 0; i
< rows
.length
; i
++) {
404 for (let indexInRow
= 0; indexInRow
< rows
[i
].length
; indexInRow
++) {
405 const character
= rows
[i
][indexInRow
];
406 const num
= parseInt(character
, 10);
407 // If num is a number, just shift j:
410 // Else: something at position i,j
412 board
[i
][j
++] = this.fen2board(character
);
418 // Some additional variables from FEN (variant dependant)
419 setOtherVariables(fenParsed
, pieceArray
) {
420 // Set flags and enpassant:
422 this.setFlags(fenParsed
.flags
);
423 if (this.hasEnpassant
)
424 this.epSquare
= this.getEpSquare(fenParsed
.enpassant
);
425 if (this.hasReserve
&& !this.isDiagram
)
426 this.initReserves(fenParsed
.reserve
, pieceArray
);
427 if (this.options
["crazyhouse"])
428 this.initIspawn(fenParsed
.ispawn
);
429 if (this.options
["teleport"]) {
430 this.subTurnTeleport
= 1;
431 this.captured
= null;
433 if (this.options
["dark"]) {
434 // Setup enlightened: squares reachable by player side
435 this.enlightened
= ArrayFun
.init(this.size
.x
, this.size
.y
, false);
436 this.updateEnlightened();
438 this.subTurn
= 1; //may be unused
439 if (!this.moveStack
) //avoid resetting (unwanted)
443 // ordering as in pieces() p,r,n,b,q,k
444 initReserves(reserveStr
, pieceArray
) {
446 pieceArray
= ['p', 'r', 'n', 'b', 'q', 'k'];
447 const counts
= reserveStr
.split("").map(c
=> parseInt(c
, 36));
448 const L
= pieceArray
.length
;
450 w: ArrayFun
.toObject(pieceArray
, counts
.slice(0, L
)),
451 b: ArrayFun
.toObject(pieceArray
, counts
.slice(L
, 2 * L
))
455 initIspawn(ispawnStr
) {
456 if (ispawnStr
!= "-")
457 this.ispawn
= ArrayFun
.toObject(ispawnStr
.split(","), true);
465 getPieceWidth(rwidth
) {
466 return (rwidth
/ this.size
.y
);
469 getReserveSquareSize(rwidth
, nbR
) {
470 const sqSize
= this.getPieceWidth(rwidth
);
471 return Math
.min(sqSize
, rwidth
/ nbR
);
474 getReserveNumId(color
, piece
) {
475 return `${this.containerId}|rnum-${color}${piece}`;
478 getNbReservePieces(color
) {
480 Object
.values(this.reserve
[color
]).reduce(
481 (oldV
,newV
) => oldV
+ (newV
> 0 ? 1 : 0), 0)
485 getRankInReserve(c
, p
) {
486 const pieces
= Object
.keys(this.pieces(c
, c
, p
));
487 const lastIndex
= pieces
.findIndex(pp
=> pp
== p
)
488 let toTest
= pieces
.slice(0, lastIndex
);
489 return toTest
.reduce(
490 (oldV
,newV
) => oldV
+ (this.reserve
[c
][newV
] > 0 ? 1 : 0), 0);
493 static AddClass_es(elt
, class_es
) {
494 if (!Array
.isArray(class_es
))
495 class_es
= [class_es
];
496 class_es
.forEach(cl
=> elt
.classList
.add(cl
));
499 static RemoveClass_es(elt
, class_es
) {
500 if (!Array
.isArray(class_es
))
501 class_es
= [class_es
];
502 class_es
.forEach(cl
=> elt
.classList
.remove(cl
));
505 // Generally light square bottom-right
506 getSquareColorClass(x
, y
) {
507 return ((x
+y
) % 2 == 0 ? "light-square": "dark-square");
511 // Works for all rectangular boards:
512 return Math
.sqrt(r
.width
** 2 + r
.height
** 2);
516 return (typeof x
== "string" ? this.r_pieces : this.g_pieces
)[x
][y
];
523 const g_init
= () => {
524 this.re_drawBoardElements();
525 if (!this.isDiagram
&& !this.mouseListeners
&& !this.touchListeners
)
526 this.initMouseEvents();
528 let container
= document
.getElementById(this.containerId
);
529 this.windowResizeObs
= new ResizeObserver(g_init
);
530 this.windowResizeObs
.observe(container
);
533 re_drawBoardElements() {
534 const board
= this.getSvgChessboard();
535 const container
= document
.getElementById(this.containerId
);
536 const rc
= container
.getBoundingClientRect();
537 let chessboard
= container
.querySelector(".chessboard");
538 chessboard
.innerHTML
= "";
539 chessboard
.insertAdjacentHTML('beforeend', board
);
540 // Compare window ratio width / height to aspectRatio:
541 const windowRatio
= rc
.width
/ rc
.height
;
542 let cbWidth
, cbHeight
;
543 const vRatio
= this.size
.ratio
|| 1;
544 if (windowRatio
<= vRatio
) {
545 // Limiting dimension is width:
546 cbWidth
= Math
.min(rc
.width
, 767);
547 cbHeight
= cbWidth
/ vRatio
;
550 // Limiting dimension is height:
551 cbHeight
= Math
.min(rc
.height
, 767);
552 cbWidth
= cbHeight
* vRatio
;
554 if (this.hasReserve
&& !this.isDiagram
) {
555 const sqSize
= cbWidth
/ this.size
.y
;
556 // NOTE: allocate space for reserves (up/down) even if they are empty
557 // Cannot use getReserveSquareSize() here, but sqSize is an upper bound.
558 if ((rc
.height
- cbHeight
) / 2 < sqSize
+ 5) {
559 cbHeight
= rc
.height
- 2 * (sqSize
+ 5);
560 cbWidth
= cbHeight
* vRatio
;
563 chessboard
.style
.width
= cbWidth
+ "px";
564 chessboard
.style
.height
= cbHeight
+ "px";
565 // Center chessboard:
566 const spaceLeft
= (rc
.width
- cbWidth
) / 2,
567 spaceTop
= (rc
.height
- cbHeight
) / 2;
568 chessboard
.style
.left
= spaceLeft
+ "px";
569 chessboard
.style
.top
= spaceTop
+ "px";
570 // Give sizes instead of recomputing them,
571 // because chessboard might not be drawn yet.
572 this.setupVisualPieces({
580 // Get SVG board (background, no pieces)
582 const flipped
= this.flippedBoard
;
585 viewBox="0 0 ${10*this.size.y} ${10*this.size.x}"
586 class="chessboard_SVG">`;
587 for (let i
=0; i
< this.size
.x
; i
++) {
588 for (let j
=0; j
< this.size
.y
; j
++) {
589 if (!this.onBoard(i
, j
))
591 const ii
= (flipped
? this.size
.x
- 1 - i : i
);
592 const jj
= (flipped
? this.size
.y
- 1 - j : j
);
593 let classes
= this.getSquareColorClass(ii
, jj
);
594 if (this.enlightened
&& !this.enlightened
[ii
][jj
])
595 classes
+= " in-shadow";
596 // NOTE: x / y reversed because coordinates system is reversed.
600 id="${this.coordsToId({x: ii, y: jj})}"
612 setupVisualPieces(r
) {
614 document
.getElementById(this.containerId
).querySelector(".chessboard");
616 r
= chessboard
.getBoundingClientRect();
617 const pieceWidth
= this.getPieceWidth(r
.width
);
618 const addPiece
= (i
, j
, arrName
, classes
) => {
619 this[arrName
][i
][j
] = document
.createElement("piece");
620 C
.AddClass_es(this[arrName
][i
][j
], classes
);
621 this[arrName
][i
][j
].style
.width
= pieceWidth
+ "px";
622 this[arrName
][i
][j
].style
.height
= pieceWidth
+ "px";
623 let [ip
, jp
] = this.getPixelPosition(i
, j
, r
);
624 // Translate coordinates to use chessboard as reference:
625 this[arrName
][i
][j
].style
.transform
=
626 `translate(${ip - r.x}px,${jp - r.y}px)`;
627 chessboard
.appendChild(this[arrName
][i
][j
]);
629 const conditionalReset
= (arrName
) => {
631 // Refreshing: delete old pieces first. This isn't necessary,
632 // but simpler (this method isn't called many times)
633 for (let i
=0; i
<this.size
.x
; i
++) {
634 for (let j
=0; j
<this.size
.y
; j
++) {
635 if (this[arrName
][i
][j
]) {
636 this[arrName
][i
][j
].remove();
637 this[arrName
][i
][j
] = null;
643 this[arrName
] = ArrayFun
.init(this.size
.x
, this.size
.y
, null);
644 if (arrName
== "d_pieces")
645 this.marks
.forEach(([i
, j
]) => addPiece(i
, j
, arrName
, "mark"));
648 conditionalReset("d_pieces");
649 conditionalReset("g_pieces");
650 for (let i
=0; i
< this.size
.x
; i
++) {
651 for (let j
=0; j
< this.size
.y
; j
++) {
652 if (this.board
[i
][j
] != "") {
653 const color
= this.getColor(i
, j
);
654 const piece
= this.getPiece(i
, j
);
655 addPiece(i
, j
, "g_pieces", this.pieces(color
, i
, j
)[piece
]["class"]);
656 this.g_pieces
[i
][j
].classList
.add(V
.GetColorClass(color
));
657 if (this.enlightened
&& !this.enlightened
[i
][j
])
658 this.g_pieces
[i
][j
].classList
.add("hidden");
660 if (this.marks
&& this.d_pieces
[i
][j
]) {
661 let classes
= ["mark"];
662 if (this.board
[i
][j
] != "")
663 classes
.push("transparent");
664 addPiece(i
, j
, "d_pieces", classes
);
668 if (this.hasReserve
&& !this.isDiagram
)
669 this.re_drawReserve(['w', 'b'], r
);
672 // NOTE: assume this.reserve != null
673 re_drawReserve(colors
, r
) {
675 // Remove (old) reserve pieces
676 for (let c
of colors
) {
677 Object
.keys(this.r_pieces
[c
]).forEach(p
=> {
678 this.r_pieces
[c
][p
].remove();
679 delete this.r_pieces
[c
][p
];
680 const numId
= this.getReserveNumId(c
, p
);
681 document
.getElementById(numId
).remove();
686 this.r_pieces
= { w: {}, b: {} };
687 let container
= document
.getElementById(this.containerId
);
689 r
= container
.querySelector(".chessboard").getBoundingClientRect();
690 for (let c
of colors
) {
691 let reservesDiv
= document
.getElementById("reserves_" + c
);
693 reservesDiv
.remove();
694 if (!this.reserve
[c
])
696 const nbR
= this.getNbReservePieces(c
);
699 const sqResSize
= this.getReserveSquareSize(r
.width
, nbR
);
701 const vShift
= (c
== this.playerColor
? r
.height
+ 5 : -sqResSize
- 5);
702 const [i0
, j0
] = [r
.x
, r
.y
+ vShift
];
703 let rcontainer
= document
.createElement("div");
704 rcontainer
.id
= "reserves_" + c
;
705 rcontainer
.classList
.add("reserves");
706 rcontainer
.style
.left
= i0
+ "px";
707 rcontainer
.style
.top
= j0
+ "px";
708 // NOTE: +1 fix display bug on Firefox at least
709 rcontainer
.style
.width
= (nbR
* sqResSize
+ 1) + "px";
710 rcontainer
.style
.height
= sqResSize
+ "px";
711 container
.appendChild(rcontainer
);
712 for (let p
of Object
.keys(this.reserve
[c
])) {
713 if (this.reserve
[c
][p
] == 0)
715 let r_cell
= document
.createElement("div");
716 r_cell
.id
= this.coordsToId({x: c
, y: p
});
717 r_cell
.classList
.add("reserve-cell");
718 r_cell
.style
.width
= sqResSize
+ "px";
719 r_cell
.style
.height
= sqResSize
+ "px";
720 rcontainer
.appendChild(r_cell
);
721 let piece
= document
.createElement("piece");
722 C
.AddClass_es(piece
, this.pieces(c
, c
, p
)[p
]["class"]);
723 piece
.classList
.add(V
.GetColorClass(c
));
724 piece
.style
.width
= "100%";
725 piece
.style
.height
= "100%";
726 this.r_pieces
[c
][p
] = piece
;
727 r_cell
.appendChild(piece
);
728 let number
= document
.createElement("div");
729 number
.textContent
= this.reserve
[c
][p
];
730 number
.classList
.add("reserve-num");
731 number
.id
= this.getReserveNumId(c
, p
);
732 const fontSize
= "1.3em";
733 number
.style
.fontSize
= fontSize
;
734 number
.style
.fontSize
= fontSize
;
735 r_cell
.appendChild(number
);
741 updateReserve(color
, piece
, count
) {
742 if (this.options
["cannibal"] && C
.CannibalKings
[piece
])
743 piece
= "k"; //capturing cannibal king: back to king form
744 const oldCount
= this.reserve
[color
][piece
];
745 this.reserve
[color
][piece
] = count
;
746 // Redrawing is much easier if count==0 (or undefined)
747 if ([oldCount
, count
].some(item
=> !item
))
748 this.re_drawReserve([color
]);
750 const numId
= this.getReserveNumId(color
, piece
);
751 document
.getElementById(numId
).textContent
= count
;
755 // Resize board: no need to destroy/recreate pieces
757 const container
= document
.getElementById(this.containerId
);
758 let chessboard
= container
.querySelector(".chessboard");
759 const rc
= container
.getBoundingClientRect(),
760 r
= chessboard
.getBoundingClientRect();
761 const multFact
= (mode
== "up" ? 1.05 : 0.95);
762 let [newWidth
, newHeight
] = [multFact
* r
.width
, multFact
* r
.height
];
764 const vRatio
= this.size
.ratio
|| 1;
765 if (newWidth
> rc
.width
) {
767 newHeight
= newWidth
/ vRatio
;
769 if (newHeight
> rc
.height
) {
770 newHeight
= rc
.height
;
771 newWidth
= newHeight
* vRatio
;
773 chessboard
.style
.width
= newWidth
+ "px";
774 chessboard
.style
.height
= newHeight
+ "px";
775 const newX
= (rc
.width
- newWidth
) / 2;
776 chessboard
.style
.left
= newX
+ "px";
777 const newY
= (rc
.height
- newHeight
) / 2;
778 chessboard
.style
.top
= newY
+ "px";
779 const newR
= {x: newX
, y: newY
, width: newWidth
, height: newHeight
};
780 const pieceWidth
= this.getPieceWidth(newWidth
);
781 // NOTE: next "if" for variants which use squares filling
782 // instead of "physical", moving pieces
784 for (let i
=0; i
< this.size
.x
; i
++) {
785 for (let j
=0; j
< this.size
.y
; j
++) {
786 if (this.g_pieces
[i
][j
]) {
787 // NOTE: could also use CSS transform "scale"
788 this.g_pieces
[i
][j
].style
.width
= pieceWidth
+ "px";
789 this.g_pieces
[i
][j
].style
.height
= pieceWidth
+ "px";
790 const [ip
, jp
] = this.getPixelPosition(i
, j
, newR
);
791 // Translate coordinates to use chessboard as reference:
792 this.g_pieces
[i
][j
].style
.transform
=
793 `translate(${ip - newX}px,${jp - newY}px)`;
799 this.rescaleReserve(newR
);
803 for (let c
of ['w','b']) {
804 if (!this.reserve
[c
])
806 const nbR
= this.getNbReservePieces(c
);
809 // Resize container first
810 const sqResSize
= this.getReserveSquareSize(r
.width
, nbR
);
811 const vShift
= (c
== this.playerColor
? r
.height
+ 5 : -sqResSize
- 5);
812 const [i0
, j0
] = [r
.x
, r
.y
+ vShift
];
813 let rcontainer
= document
.getElementById("reserves_" + c
);
814 rcontainer
.style
.left
= i0
+ "px";
815 rcontainer
.style
.top
= j0
+ "px";
816 rcontainer
.style
.width
= (nbR
* sqResSize
+ 1) + "px";
817 rcontainer
.style
.height
= sqResSize
+ "px";
818 // And then reserve cells:
819 const rpieceWidth
= this.getReserveSquareSize(r
.width
, nbR
);
820 Object
.keys(this.reserve
[c
]).forEach(p
=> {
821 if (this.reserve
[c
][p
] == 0)
823 let r_cell
= document
.getElementById(this.coordsToId({x: c
, y: p
}));
824 r_cell
.style
.width
= sqResSize
+ "px";
825 r_cell
.style
.height
= sqResSize
+ "px";
830 // Return the absolute pixel coordinates given current position.
831 // Our coordinate system differs from CSS one (x <--> y).
832 // We return here the CSS coordinates (more useful).
833 getPixelPosition(i
, j
, r
) {
835 return [0, 0]; //piece vanishes
837 if (typeof i
== "string") {
838 // Reserves: need to know the rank of piece
839 const nbR
= this.getNbReservePieces(i
);
840 const rsqSize
= this.getReserveSquareSize(r
.width
, nbR
);
841 x
= this.getRankInReserve(i
, j
) * rsqSize
;
842 y
= (this.playerColor
== i
? y
= r
.height
+ 5 : - 5 - rsqSize
);
845 const sqSize
= r
.width
/ this.size
.y
;
846 const flipped
= this.flippedBoard
;
847 x
= (flipped
? this.size
.y
- 1 - j : j
) * sqSize
;
848 y
= (flipped
? this.size
.x
- 1 - i : i
) * sqSize
;
850 return [r
.x
+ x
, r
.y
+ y
];
854 let container
= document
.getElementById(this.containerId
);
855 let chessboard
= container
.querySelector(".chessboard");
857 const getOffset
= e
=> {
860 return {x: e
.clientX
, y: e
.clientY
};
861 let touchLocation
= null;
862 if (e
.targetTouches
&& e
.targetTouches
.length
>= 1)
863 // Touch screen, dragstart
864 touchLocation
= e
.targetTouches
[0];
865 else if (e
.changedTouches
&& e
.changedTouches
.length
>= 1)
866 // Touch screen, dragend
867 touchLocation
= e
.changedTouches
[0];
869 return {x: touchLocation
.clientX
, y: touchLocation
.clientY
};
870 return {x: 0, y: 0}; //shouldn't reach here =)
873 const centerOnCursor
= (piece
, e
) => {
874 const centerShift
= this.getPieceWidth(r
.width
) / 2;
875 const offset
= getOffset(e
);
876 piece
.style
.left
= (offset
.x
- centerShift
) + "px";
877 piece
.style
.top
= (offset
.y
- centerShift
) + "px";
882 startPiece
, curPiece
= null,
884 const mousedown
= (e
) => {
885 // Disable zoom on smartphones:
886 if (e
.touches
&& e
.touches
.length
> 1)
888 r
= chessboard
.getBoundingClientRect();
889 pieceWidth
= this.getPieceWidth(r
.width
);
890 const cd
= this.idToCoords(e
.target
.id
);
892 const move = this.doClick(cd
);
894 this.buildMoveStack(move, r
);
895 else if (!this.clickOnly
) {
896 const [x
, y
] = Object
.values(cd
);
897 if (typeof x
!= "number")
898 startPiece
= this.r_pieces
[x
][y
];
900 startPiece
= this.g_pieces
[x
][y
];
901 if (startPiece
&& this.canIplay(x
, y
)) {
904 curPiece
= startPiece
.cloneNode();
905 curPiece
.style
.transform
= "none";
906 curPiece
.style
.zIndex
= 5;
907 curPiece
.style
.width
= pieceWidth
+ "px";
908 curPiece
.style
.height
= pieceWidth
+ "px";
909 centerOnCursor(curPiece
, e
);
910 container
.appendChild(curPiece
);
911 startPiece
.style
.opacity
= "0.4";
912 chessboard
.style
.cursor
= "none";
918 const mousemove
= (e
) => {
921 centerOnCursor(curPiece
, e
);
923 else if (e
.changedTouches
&& e
.changedTouches
.length
>= 1)
924 // Attempt to prevent horizontal swipe...
928 const mouseup
= (e
) => {
931 const [x
, y
] = [start
.x
, start
.y
];
934 chessboard
.style
.cursor
= "pointer";
935 startPiece
.style
.opacity
= "1";
936 const offset
= getOffset(e
);
937 const landingElt
= document
.elementFromPoint(offset
.x
, offset
.y
);
939 (landingElt
? this.idToCoords(landingElt
.id
) : undefined);
941 // NOTE: clearly suboptimal, but much easier, and not a big deal.
942 const potentialMoves
= this.getPotentialMovesFrom([x
, y
])
943 .filter(m
=> m
.end
.x
== cd
.x
&& m
.end
.y
== cd
.y
);
944 const moves
= this.filterValid(potentialMoves
);
945 if (moves
.length
>= 2)
946 this.showChoices(moves
, r
);
947 else if (moves
.length
== 1)
948 this.buildMoveStack(moves
[0], r
);
953 const resize
= (e
) => this.rescale(e
.deltaY
< 0 ? "up" : "down");
955 if ('onmousedown' in window
) {
956 this.mouseListeners
= [
957 {type: "mousedown", listener: mousedown
},
958 {type: "mousemove", listener: mousemove
},
959 {type: "mouseup", listener: mouseup
},
960 {type: "wheel", listener: resize
}
962 this.mouseListeners
.forEach(ml
=> {
963 document
.addEventListener(ml
.type
, ml
.listener
);
966 if ('ontouchstart' in window
) {
967 this.touchListeners
= [
968 {type: "touchstart", listener: mousedown
},
969 {type: "touchmove", listener: mousemove
},
970 {type: "touchend", listener: mouseup
}
972 this.touchListeners
.forEach(tl
=> {
973 // https://stackoverflow.com/a/42509310/12660887
974 document
.addEventListener(tl
.type
, tl
.listener
, {passive: false});
977 // TODO: onpointerdown/move/up ? See reveal.js /controllers/touch.js
980 // NOTE: not called if isDiagram
982 let container
= document
.getElementById(this.containerId
);
983 this.windowResizeObs
.unobserve(container
);
984 if ('onmousedown' in window
) {
985 this.mouseListeners
.forEach(ml
=> {
986 document
.removeEventListener(ml
.type
, ml
.listener
);
989 if ('ontouchstart' in window
) {
990 this.touchListeners
.forEach(tl
=> {
991 // https://stackoverflow.com/a/42509310/12660887
992 document
.removeEventListener(tl
.type
, tl
.listener
);
997 showChoices(moves
, r
) {
998 let container
= document
.getElementById(this.containerId
);
999 let chessboard
= container
.querySelector(".chessboard");
1000 let choices
= document
.createElement("div");
1001 choices
.id
= "choices";
1003 r
= chessboard
.getBoundingClientRect();
1004 choices
.style
.width
= r
.width
+ "px";
1005 choices
.style
.height
= r
.height
+ "px";
1006 choices
.style
.left
= r
.x
+ "px";
1007 choices
.style
.top
= r
.y
+ "px";
1008 chessboard
.style
.opacity
= "0.5";
1009 container
.appendChild(choices
);
1010 const squareWidth
= r
.width
/ this.size
.y
;
1011 const firstUpLeft
= (r
.width
- (moves
.length
* squareWidth
)) / 2;
1012 const firstUpTop
= (r
.height
- squareWidth
) / 2;
1013 const color
= moves
[0].appear
[0].c
;
1014 const callback
= (m
) => {
1015 chessboard
.style
.opacity
= "1";
1016 container
.removeChild(choices
);
1017 this.buildMoveStack(m
, r
);
1019 for (let i
=0; i
< moves
.length
; i
++) {
1020 let choice
= document
.createElement("div");
1021 choice
.classList
.add("choice");
1022 choice
.style
.width
= squareWidth
+ "px";
1023 choice
.style
.height
= squareWidth
+ "px";
1024 choice
.style
.left
= (firstUpLeft
+ i
* squareWidth
) + "px";
1025 choice
.style
.top
= firstUpTop
+ "px";
1026 choice
.style
.backgroundColor
= "lightyellow";
1027 choice
.onclick
= () => callback(moves
[i
]);
1028 const piece
= document
.createElement("piece");
1029 const cdisp
= moves
[i
].choice
|| moves
[i
].appear
[0].p
;
1030 C
.AddClass_es(piece
,
1031 this.pieces(color
, moves
[i
].end
.x
, moves
[i
].end
.y
)[cdisp
]["class"]);
1032 piece
.classList
.add(V
.GetColorClass(color
));
1033 piece
.style
.width
= "100%";
1034 piece
.style
.height
= "100%";
1035 choice
.appendChild(piece
);
1036 choices
.appendChild(choice
);
1040 displayMessage(elt
, msg
, classe_s
, timeout
) {
1042 // Fixed element, e.g. for Dice Chess
1043 elt
.innerHTML
= msg
;
1045 // Temporary div (Chakart, Apocalypse...)
1046 let divMsg
= document
.createElement("div");
1047 C
.AddClass_es(divMsg
, classe_s
);
1048 divMsg
.innerHTML
= msg
;
1049 let container
= document
.getElementById(this.containerId
);
1050 container
.appendChild(divMsg
);
1051 setTimeout(() => container
.removeChild(divMsg
), timeout
);
1058 updateEnlightened() {
1059 this.oldEnlightened
= this.enlightened
;
1060 this.enlightened
= ArrayFun
.init(this.size
.x
, this.size
.y
, false);
1061 // Add pieces positions + all squares reachable by moves (includes Zen):
1062 for (let x
=0; x
<this.size
.x
; x
++) {
1063 for (let y
=0; y
<this.size
.y
; y
++) {
1064 if (this.board
[x
][y
] != "" && this.getColor(x
, y
) == this.playerColor
)
1066 this.enlightened
[x
][y
] = true;
1067 this.getPotentialMovesFrom([x
, y
]).forEach(m
=> {
1068 this.enlightened
[m
.end
.x
][m
.end
.y
] = true;
1074 this.enlightEnpassant();
1077 // Include square of the en-passant capturing square:
1078 enlightEnpassant() {
1079 // NOTE: shortcut, pawn has only one attack type, doesn't depend on square
1080 // TODO: (0, 0) is wrong, would need to place an attacker here...
1081 const steps
= this.pieces(this.playerColor
, 0, 0)["p"].attack
[0].steps
;
1082 for (let step
of steps
) {
1083 const x
= this.epSquare
.x
- step
[0], //NOTE: epSquare.x not on edge
1084 y
= this.getY(this.epSquare
.y
- step
[1]);
1086 this.onBoard(x
, y
) &&
1087 this.getColor(x
, y
) == this.playerColor
&&
1088 this.getPieceType(x
, y
) == "p"
1090 this.enlightened
[x
][this.epSquare
.y
] = true;
1096 // Apply diff this.enlightened --> oldEnlightened on board
1097 graphUpdateEnlightened() {
1099 document
.getElementById(this.containerId
).querySelector(".chessboard");
1100 const r
= chessboard
.getBoundingClientRect();
1101 const pieceWidth
= this.getPieceWidth(r
.width
);
1102 for (let x
=0; x
<this.size
.x
; x
++) {
1103 for (let y
=0; y
<this.size
.y
; y
++) {
1104 if (!this.enlightened
[x
][y
] && this.oldEnlightened
[x
][y
]) {
1105 let elt
= document
.getElementById(this.coordsToId({x: x
, y: y
}));
1106 elt
.classList
.add("in-shadow");
1107 if (this.g_pieces
[x
][y
])
1108 this.g_pieces
[x
][y
].classList
.add("hidden");
1110 else if (this.enlightened
[x
][y
] && !this.oldEnlightened
[x
][y
]) {
1111 let elt
= document
.getElementById(this.coordsToId({x: x
, y: y
}));
1112 elt
.classList
.remove("in-shadow");
1113 if (this.g_pieces
[x
][y
])
1114 this.g_pieces
[x
][y
].classList
.remove("hidden");
1127 ratio: 1 //for rectangular board = y / x (optional, 1 = default)
1131 // Color of thing on square (i,j). '' if square is empty
1133 if (typeof i
== "string")
1134 return i
; //reserves
1135 return this.board
[i
][j
].charAt(0);
1138 static GetColorClass(c
) {
1143 return "other-color"; //unidentified color
1146 // Piece on i,j. '' if square is empty
1148 if (typeof j
== "string")
1149 return j
; //reserves
1150 return this.board
[i
][j
].charAt(1);
1153 // Piece type on square (i,j)
1154 getPieceType(x
, y
, p
) {
1156 p
= this.getPiece(x
, y
);
1157 return this.pieces(this.getColor(x
, y
), x
, y
)[p
].moveas
|| p
;
1162 p
= this.getPiece(x
, y
);
1163 if (!this.options
["cannibal"])
1165 return !!C
.CannibalKings
[p
];
1168 static GetOppTurn(color
) {
1169 return (color
== 'w' ? 'b' : 'w');
1172 // Get opponent color(s): may differ from turn (e.g. Checkered)
1174 return (color
== "w" ? "b" : "w");
1177 // Is (x,y) on the chessboard?
1179 return (x
>= 0 && x
< this.size
.x
&&
1180 y
>= 0 && y
< this.size
.y
);
1183 // Am I allowed to move thing at square x,y ?
1185 return (this.playerColor
== this.turn
&& this.getColor(x
, y
) == this.turn
);
1188 ////////////////////////
1189 // PIECES SPECIFICATIONS
1191 getPawnShift(color
) {
1192 return (color
== "w" ? -1 : 1);
1194 isPawnInitRank(x
, color
) {
1195 return (color
== 'w' && x
>= 6) || (color
== 'b' && x
<= 1);
1198 pieces(color
, x
, y
) {
1199 const pawnShift
= this.getPawnShift(color
|| 'w');
1205 steps: [[pawnShift
, 0]],
1206 range: (this.isPawnInitRank(x
, color
) ? 2 : 1)
1211 steps: [[pawnShift
, 1], [pawnShift
, -1]],
1219 {steps: [[0, 1], [0, -1], [1, 0], [-1, 0]]}
1227 [1, 2], [1, -2], [-1, 2], [-1, -2],
1228 [2, 1], [-2, 1], [2, -1], [-2, -1]
1237 {steps: [[1, 1], [1, -1], [-1, 1], [-1, -1]]}
1245 [0, 1], [0, -1], [1, 0], [-1, 0],
1246 [1, 1], [1, -1], [-1, 1], [-1, -1]
1256 [0, 1], [0, -1], [1, 0], [-1, 0],
1257 [1, 1], [1, -1], [-1, 1], [-1, -1]
1264 '!': {"class": "king-pawn", moveas: "p"},
1265 '#': {"class": "king-rook", moveas: "r"},
1266 '$': {"class": "king-knight", moveas: "n"},
1267 '%': {"class": "king-bishop", moveas: "b"},
1268 '*': {"class": "king-queen", moveas: "q"}
1272 // NOTE: using special symbols to not interfere with variants' pieces codes
1273 static get CannibalKings() {
1284 static get CannibalKingCode() {
1295 //////////////////////////
1296 // MOVES GENERATION UTILS
1298 // For Cylinder: get Y coordinate
1300 if (!this.options
["cylinder"])
1302 let res
= y
% this.size
.y
;
1309 return x
; //generally, no
1312 increment([x
, y
], step
) {
1314 this.getX(x
+ step
[0]),
1315 this.getY(y
+ step
[1])
1319 getSegments(curSeg
, segStart
, segEnd
) {
1320 if (curSeg
.length
== 0)
1322 let segments
= JSON
.parse(JSON
.stringify(curSeg
)); //not altering
1323 segments
.push([[segStart
[0], segStart
[1]], [segEnd
[0], segEnd
[1]]]);
1327 getStepSpec(color
, x
, y
, piece
) {
1328 let pieceType
= piece
;
1329 let allSpecs
= this.pieces(color
, x
, y
);
1331 pieceType
= this.getPieceType(x
, y
);
1332 else if (allSpecs
[piece
].moveas
)
1333 pieceType
= allSpecs
[piece
].moveas
;
1334 let res
= allSpecs
[pieceType
];
1344 // Can thing on square1 capture thing on square2?
1345 canTake([x1
, y1
], [x2
, y2
]) {
1346 return this.getColor(x1
, y1
) !== this.getColor(x2
, y2
);
1349 // Teleport & Recycle. Assumption: color(x1,y1) == color(x2,y2)
1350 canSelfTake([x1
, y1
], [x2
, y2
]) {
1351 return !this.isKing(x2
, y2
);
1354 canStepOver(i
, j
, p
) {
1355 // In some variants, objects on boards don't stop movement (Chakart)
1356 return this.board
[i
][j
] == "";
1359 canDrop([c
, p
], [i
, j
]) {
1361 this.board
[i
][j
] == "" &&
1362 (!this.enlightened
|| this.enlightened
[i
][j
]) &&
1365 (c
== 'w' && i
< this.size
.x
- 1) ||
1372 // (redefined in Baroque etc, where Madrasi condition doesn't make sense)
1373 isImmobilized([x
, y
]) {
1374 if (!this.options
["madrasi"])
1376 const color
= this.getColor(x
, y
);
1377 const oppCols
= this.getOppCols(color
);
1378 const piece
= this.getPieceType(x
, y
);
1379 const stepSpec
= this.getStepSpec(color
, x
, y
, piece
);
1380 const attacks
= stepSpec
.both
.concat(stepSpec
.attack
);
1381 for (let a
of attacks
) {
1382 outerLoop: for (let step
of a
.steps
) {
1383 let [i
, j
] = this.increment([x
, y
], step
);
1384 let stepCounter
= 0;
1385 while (this.onBoard(i
, j
) && this.board
[i
][j
] == "") {
1386 if (a
.range
<= stepCounter
++)
1388 [i
, j
] = this.increment([i
, j
], step
);
1391 this.onBoard(i
, j
) &&
1392 oppCols
.includes(this.getColor(i
, j
)) &&
1393 this.getPieceType(i
, j
) == piece
1402 // Stop at the first capture found
1403 atLeastOneCapture(color
) {
1404 const allowed
= (sq1
, sq2
) => {
1406 // NOTE: canTake is reversed for Zen.
1407 // Generally ok because of the symmetry. TODO?
1408 this.canTake(sq1
, sq2
) &&
1410 [this.getBasicMove(sq1
, sq2
)]).length
>= 1
1413 for (let i
=0; i
<this.size
.x
; i
++) {
1414 for (let j
=0; j
<this.size
.y
; j
++) {
1415 if (this.getColor(i
, j
) == color
) {
1418 !this.options
["zen"] &&
1419 this.findDestSquares(
1431 this.options
["zen"] &&
1432 this.findCapturesOn(
1448 compatibleStep([x1
, y1
], [x2
, y2
], step
, range
) {
1449 const epsilon
= 1e-7; //arbitrary small value
1451 if (this.options
["cylinder"])
1452 Array
.prototype.push
.apply(shifts
, [-this.size
.y
, this.size
.y
]);
1453 for (let sh
of shifts
) {
1454 const rx
= (x2
- x1
) / step
[0],
1455 ry
= (y2
+ sh
- y1
) / step
[1];
1457 // Zero step but non-zero interval => impossible
1458 (!Number
.isFinite(rx
) && !Number
.isNaN(rx
)) ||
1459 (!Number
.isFinite(ry
) && !Number
.isNaN(ry
)) ||
1460 // Negative number of step (impossible)
1461 (rx
< 0 || ry
< 0) ||
1462 // Not the same number of steps in both directions:
1463 (!Number
.isNaN(rx
) && !Number
.isNaN(ry
) && Math
.abs(rx
- ry
) > epsilon
)
1467 let distance
= (Number
.isNaN(rx
) ? ry : rx
);
1468 if (Math
.abs(distance
- Math
.round(distance
)) > epsilon
)
1470 distance
= Math
.round(distance
); //in case of (numerical...)
1471 if (!range
|| range
>= distance
)
1477 ////////////////////
1480 getDropMovesFrom([c
, p
]) {
1481 // NOTE: by design, this.reserve[c][p] >= 1 on user click
1482 // (but not necessarily otherwise: atLeastOneMove() etc)
1483 if (this.reserve
[c
][p
] == 0)
1486 for (let i
=0; i
<this.size
.x
; i
++) {
1487 for (let j
=0; j
<this.size
.y
; j
++) {
1488 if (this.onBoard(i
, j
) && this.canDrop([c
, p
], [i
, j
])) {
1490 start: {x: c
, y: p
},
1492 appear: [new PiPo({x: i
, y: j
, c: c
, p: p
})],
1495 if (this.board
[i
][j
] != "") {
1496 mv
.vanish
.push(new PiPo({
1499 c: this.getColor(i
, j
),
1500 p: this.getPiece(i
, j
)
1510 // All possible moves from selected square
1511 // TODO: generalize usage if arg "color" (e.g. Checkered)
1512 getPotentialMovesFrom([x
, y
], color
) {
1513 if (this.subTurnTeleport
== 2)
1515 if (typeof x
== "string")
1516 return this.getDropMovesFrom([x
, y
]);
1517 if (this.isImmobilized([x
, y
]))
1519 const piece
= this.getPieceType(x
, y
);
1520 let moves
= this.getPotentialMovesOf(piece
, [x
, y
]);
1521 if (piece
== "p" && this.hasEnpassant
&& this.epSquare
)
1522 Array
.prototype.push
.apply(moves
, this.getEnpassantCaptures([x
, y
]));
1523 if (this.isKing(0, 0, piece
) && this.hasCastle
)
1524 Array
.prototype.push
.apply(moves
, this.getCastleMoves([x
, y
]));
1525 return this.postProcessPotentialMoves(moves
);
1528 postProcessPotentialMoves(moves
) {
1529 if (moves
.length
== 0)
1531 const color
= this.getColor(moves
[0].start
.x
, moves
[0].start
.y
);
1532 const oppCols
= this.getOppCols(color
);
1534 if (this.options
["capture"] && this.atLeastOneCapture(color
))
1535 moves
= this.capturePostProcess(moves
, oppCols
);
1537 if (this.options
["atomic"])
1538 moves
= this.atomicPostProcess(moves
, color
, oppCols
);
1542 this.getPieceType(moves
[0].start
.x
, moves
[0].start
.y
) == "p"
1544 moves
= this.pawnPostProcess(moves
, color
, oppCols
);
1547 if (this.options
["cannibal"] && this.options
["rifle"])
1548 // In this case a rifle-capture from last rank may promote a pawn
1549 moves
= this.riflePromotePostProcess(moves
, color
);
1554 capturePostProcess(moves
, oppCols
) {
1555 // Filter out non-capturing moves (not using m.vanish because of
1556 // self captures of Recycle and Teleport).
1557 return moves
.filter(m
=> {
1559 this.board
[m
.end
.x
][m
.end
.y
] != "" &&
1560 oppCols
.includes(this.getColor(m
.end
.x
, m
.end
.y
))
1565 atomicPostProcess(moves
, color
, oppCols
) {
1566 moves
.forEach(m
=> {
1568 this.board
[m
.end
.x
][m
.end
.y
] != "" &&
1569 oppCols
.includes(this.getColor(m
.end
.x
, m
.end
.y
))
1582 let mNext
= new Move({
1588 for (let step
of steps
) {
1589 let [x
, y
] = this.increment([m
.end
.x
, m
.end
.y
], step
);
1591 this.onBoard(x
, y
) &&
1592 this.board
[x
][y
] != "" &&
1593 (x
!= m
.start
.x
|| y
!= m
.start
.y
) &&
1594 this.getPieceType(x
, y
) != "p"
1598 p: this.getPiece(x
, y
),
1599 c: this.getColor(x
, y
),
1606 if (!this.options
["rifle"]) {
1607 // The moving piece also vanish
1608 mNext
.vanish
.unshift(
1613 p: this.getPiece(m
.start
.x
, m
.start
.y
)
1623 pawnPostProcess(moves
, color
, oppCols
) {
1625 const lastRank
= (color
== "w" ? 0 : this.size
.x
- 1);
1626 const initPiece
= this.getPiece(moves
[0].start
.x
, moves
[0].start
.y
);
1627 moves
.forEach(m
=> {
1628 const [x1
, y1
] = [m
.start
.x
, m
.start
.y
];
1629 const [x2
, y2
] = [m
.end
.x
, m
.end
.y
];
1630 const promotionOk
= (
1632 (!this.options
["rifle"] || this.board
[x2
][y2
] == "")
1635 return; //nothing to do
1636 if (this.options
["pawnfall"]) {
1642 this.options
["cannibal"] &&
1643 this.board
[x2
][y2
] != "" &&
1644 oppCols
.includes(this.getColor(x2
, y2
))
1646 finalPieces
= [this.getPieceType(x2
, y2
)];
1649 finalPieces
= this.pawnPromotions
;
1650 m
.appear
[0].p
= finalPieces
[0];
1651 if (initPiece
== "!") //cannibal king-pawn
1652 m
.appear
[0].p
= C
.CannibalKingCode
[finalPieces
[0]];
1653 for (let i
=1; i
<finalPieces
.length
; i
++) {
1654 let newMove
= JSON
.parse(JSON
.stringify(m
));
1655 const piece
= finalPieces
[i
];
1656 m
.appear
[0].p
= (initPiece
!= "!" ? piece : C
.CannibalKingCode
[piece
]);
1657 moreMoves
.push(newMove
);
1660 return moves
.concat(moreMoves
);
1663 riflePromotePostProcess(moves
, color
) {
1664 const lastRank
= (color
== "w" ? 0 : this.size
.x
- 1);
1666 moves
.forEach(m
=> {
1668 m
.start
.x
== lastRank
&&
1669 m
.appear
.length
>= 1 &&
1670 m
.appear
[0].p
== "p" &&
1671 m
.appear
[0].x
== m
.start
.x
&&
1672 m
.appear
[0].y
== m
.start
.y
1674 m
.appear
[0].p
= this.pawnPromotions
[0];
1675 for (let i
=1; i
<this.pawnPromotions
.length
; i
++) {
1676 let newMv
= JSON
.parse(JSON
.stringify(m
));
1677 newMv
.appear
[0].p
= this.pawnPromotions
[i
];
1678 newMoves
.push(newMv
);
1682 return moves
.concat(newMoves
);
1685 // Generic method to find possible moves of "sliding or jumping" pieces
1686 getPotentialMovesOf(piece
, [x
, y
]) {
1687 const color
= this.getColor(x
, y
);
1688 const stepSpec
= this.getStepSpec(color
, x
, y
, piece
);
1690 if (stepSpec
.attack
) {
1691 squares
= this.findDestSquares(
1697 ([i1
, j1
], [i2
, j2
]) => {
1699 (!this.options
["zen"] || this.isKing(i2
, j2
)) &&
1700 this.canTake([i1
, j1
], [i2
, j2
])
1705 const noSpecials
= this.findDestSquares(
1708 moveOnly: !!stepSpec
.attack
|| this.options
["zen"],
1712 Array
.prototype.push
.apply(squares
, noSpecials
);
1713 if (this.options
["zen"]) {
1714 let zenCaptures
= this.findCapturesOn(
1716 {}, //byCol: default is ok
1717 ([i1
, j1
], [i2
, j2
]) =>
1718 !this.isKing(i1
, j1
) && this.canTake([i2
, j2
], [i1
, j1
])
1720 // Technical step: segments (if any) are reversed
1721 zenCaptures
.forEach(z
=> {
1723 z
.segments
= z
.segments
.reverse().map(s
=> s
.reverse())
1725 Array
.prototype.push
.apply(squares
, zenCaptures
);
1727 if (this.hasSelfCaptures
) {
1728 const selfCaptures
= this.findDestSquares(
1734 ([i1
, j1
], [i2
, j2
]) => {
1736 this.getColor(i2
, j2
) == color
&&
1737 this.canSelfTake([i1
, j1
], [i2
, j2
])
1741 Array
.prototype.push
.apply(squares
, selfCaptures
);
1743 return squares
.map(s
=> {
1744 let mv
= this.getBasicMove([x
, y
], s
.sq
);
1746 mv
.segments
= s
.segments
;
1751 findDestSquares([x
, y
], o
, allowed
) {
1753 allowed
= (sq1
, sq2
) => this.canTake(sq1
, sq2
);
1754 const apparentPiece
= this.getPiece(x
, y
); //how it looks
1756 // Next 3 for Cylinder mode or circular (useless otherwise)
1760 const addSquare
= ([i
, j
]) => {
1761 let elt
= {sq: [i
, j
]};
1762 if (segments
.length
>= 1)
1763 elt
.segments
= this.getSegments(segments
, segStart
, [i
, j
]);
1766 const exploreSteps
= (stepArray
, mode
) => {
1767 for (let s
of stepArray
) {
1768 outerLoop: for (let step
of s
.steps
) {
1771 let [i
, j
] = [x
, y
];
1772 let stepCounter
= 0;
1774 this.onBoard(i
, j
) &&
1775 ((i
== x
&& j
== y
) || this.canStepOver(i
, j
, apparentPiece
))
1777 if (!explored
[i
+ "." + j
] && (i
!= x
|| j
!= y
)) {
1778 explored
[i
+ "." + j
] = true;
1781 (o
.captureTarget
[0] == i
&& o
.captureTarget
[1] == j
)
1783 if (o
.one
&& mode
!= "attack")
1785 if (mode
!= "attack")
1786 addSquare(!o
.captureTarget
? [i
, j
] : [x
, y
]);
1787 if (o
.captureTarget
)
1791 if (s
.range
<= stepCounter
++)
1793 const oldIJ
= [i
, j
];
1794 [i
, j
] = this.increment([i
, j
], step
);
1795 if (Math
.abs(j
- oldIJ
[1]) > 1 || Math
.abs(i
- oldIJ
[0]) > 1) {
1796 // Boundary between segments (cylinder or circular mode)
1797 segments
.push([[segStart
[0], segStart
[1]], oldIJ
]);
1801 if (!this.onBoard(i
, j
))
1803 const pieceIJ
= this.getPieceType(i
, j
);
1804 if (!explored
[i
+ "." + j
]) {
1805 explored
[i
+ "." + j
] = true;
1806 if (allowed([x
, y
], [i
, j
])) {
1807 if (o
.one
&& mode
!= "moves")
1809 if (mode
!= "moves")
1810 addSquare(!o
.captureTarget
? [i
, j
] : [x
, y
]);
1813 o
.captureTarget
[0] == i
&& o
.captureTarget
[1] == j
1821 return undefined; //default, but let's explicit it
1823 if (o
.captureTarget
)
1824 return exploreSteps(o
.captureSteps
, "attack");
1827 o
.stepSpec
|| this.getStepSpec(this.getColor(x
, y
), x
, y
);
1830 outOne
= exploreSteps(stepSpec
.both
.concat(stepSpec
.moves
), "moves");
1831 if (!outOne
&& !o
.moveOnly
)
1832 outOne
= exploreSteps(stepSpec
.both
.concat(stepSpec
.attack
), "attack");
1833 return (o
.one
? outOne : res
);
1837 // Search for enemy (or not) pieces attacking [x, y]
1838 findCapturesOn([x
, y
], o
, allowed
) {
1840 o
.byCol
= this.getOppCols(this.getColor(x
, y
) || this.turn
);
1842 for (let i
=0; i
<this.size
.x
; i
++) {
1843 for (let j
=0; j
<this.size
.y
; j
++) {
1844 const colIJ
= this.getColor(i
, j
);
1846 this.board
[i
][j
] != "" &&
1847 o
.byCol
.includes(colIJ
) &&
1848 !this.isImmobilized([i
, j
])
1850 const apparentPiece
= this.getPiece(i
, j
);
1851 // Quick check: does this potential attacker target x,y ?
1852 if (this.canStepOver(x
, y
, apparentPiece
))
1854 const stepSpec
= this.getStepSpec(colIJ
, i
, j
);
1855 const attacks
= stepSpec
.attack
.concat(stepSpec
.both
);
1856 for (let a
of attacks
) {
1857 for (let s
of a
.steps
) {
1858 // Quick check: if step isn't compatible, don't even try
1859 if (!this.compatibleStep([i
, j
], [x
, y
], s
, a
.range
))
1861 // Finally verify that nothing stand in-between
1862 const out
= this.findDestSquares(
1865 captureTarget: [x
, y
],
1866 captureSteps: [{steps: [s
], range: a
.range
}],
1880 return (o
.one
? false : res
);
1883 // Build a regular move from its initial and destination squares.
1884 // tr: transformation
1885 getBasicMove([sx
, sy
], [ex
, ey
], tr
) {
1886 const initColor
= this.getColor(sx
, sy
);
1887 const initPiece
= this.getPiece(sx
, sy
);
1888 const destColor
= (this.board
[ex
][ey
] != "" ? this.getColor(ex
, ey
) : "");
1892 start: {x: sx
, y: sy
},
1896 !this.options
["rifle"] ||
1897 this.board
[ex
][ey
] == "" ||
1898 destColor
== initColor
//Recycle, Teleport
1904 c: !!tr
? tr
.c : initColor
,
1905 p: !!tr
? tr
.p : initPiece
1917 if (this.board
[ex
][ey
] != "") {
1922 c: this.getColor(ex
, ey
),
1923 p: this.getPiece(ex
, ey
)
1926 if (this.options
["cannibal"] && destColor
!= initColor
) {
1927 const lastIdx
= mv
.vanish
.length
- 1; //think "Rifle+Cannibal"
1928 let trPiece
= mv
.vanish
[lastIdx
].p
;
1929 if (this.isKing(sx
, sy
))
1930 trPiece
= C
.CannibalKingCode
[trPiece
];
1931 if (mv
.appear
.length
>= 1)
1932 mv
.appear
[0].p
= trPiece
;
1933 else if (this.options
["rifle"]) {
1956 // En-passant square, if any
1957 getEpSquare(moveOrSquare
) {
1958 if (typeof moveOrSquare
=== "string") {
1959 const square
= moveOrSquare
;
1962 return C
.SquareToCoords(square
);
1964 // Argument is a move:
1965 const move = moveOrSquare
;
1966 const s
= move.start
,
1970 Math
.abs(s
.x
- e
.x
) == 2 &&
1971 // Next conditions for variants like Atomic or Rifle, Recycle...
1973 move.appear
.length
> 0 &&
1974 this.getPieceType(0, 0, move.appear
[0].p
) == 'p'
1978 move.vanish
.length
> 0 &&
1979 this.getPieceType(0, 0, move.vanish
[0].p
) == 'p'
1987 return undefined; //default
1990 // Special case of en-passant captures: treated separately
1991 getEnpassantCaptures([x
, y
]) {
1992 const color
= this.getColor(x
, y
);
1993 const shiftX
= (color
== 'w' ? -1 : 1);
1994 const oppCols
= this.getOppCols(color
);
1997 this.epSquare
.x
== x
+ shiftX
&& //NOTE: epSquare.x not on edge
1998 Math
.abs(this.getY(this.epSquare
.y
- y
)) == 1 &&
1999 // Doublemove (and Progressive?) guards:
2000 this.board
[this.epSquare
.x
][this.epSquare
.y
] == "" &&
2001 oppCols
.includes(this.getColor(x
, this.epSquare
.y
))
2003 const [epx
, epy
] = [this.epSquare
.x
, this.epSquare
.y
];
2004 this.board
[epx
][epy
] = this.board
[x
][this.epSquare
.y
];
2005 let enpassantMove
= this.getBasicMove([x
, y
], [epx
, epy
]);
2006 this.board
[epx
][epy
] = "";
2007 const lastIdx
= enpassantMove
.vanish
.length
- 1; //think Rifle
2008 enpassantMove
.vanish
[lastIdx
].x
= x
;
2009 return [enpassantMove
];
2014 getCastleMoves([x
, y
], finalSquares
, castleWith
, castleFlags
) {
2015 const c
= this.getColor(x
, y
);
2016 castleFlags
= castleFlags
|| this.castleFlags
[c
];
2019 const oppCols
= this.getOppCols(c
);
2023 finalSquares
|| [ [2, 3], [this.size
.y
- 2, this.size
.y
- 3] ];
2024 const castlingKing
= this.getPiece(x
, y
);
2025 castlingCheck: for (
2028 castleSide
++ //large, then small
2030 if (castleFlags
[castleSide
] >= this.size
.y
)
2032 // If this code is reached, rook and king are on initial position
2034 // NOTE: in some variants this is not a rook
2035 const rookPos
= castleFlags
[castleSide
];
2036 const castlingPiece
= this.getPiece(x
, rookPos
);
2038 this.board
[x
][rookPos
] == "" ||
2039 this.getColor(x
, rookPos
) != c
||
2040 (castleWith
&& !castleWith
.includes(castlingPiece
))
2042 // Rook is not here, or changed color (see Benedict)
2045 // Nothing on the path of the king ? (and no checks)
2046 const finDist
= finalSquares
[castleSide
][0] - y
;
2047 let step
= finDist
/ Math
.max(1, Math
.abs(finDist
));
2051 // NOTE: next weird test because underCheck() verification
2052 // will be executed in filterValid() later.
2054 i
!= finalSquares
[castleSide
][0] &&
2055 this.underCheck([[x
, i
]], oppCols
)
2059 this.board
[x
][i
] != "" &&
2060 // NOTE: next check is enough, because of chessboard constraints
2061 (this.getColor(x
, i
) != c
|| ![rookPos
, y
].includes(i
))
2064 continue castlingCheck
;
2067 } while (i
!= finalSquares
[castleSide
][0]);
2068 // Nothing on the path to the rook?
2069 step
= (castleSide
== 0 ? -1 : 1);
2070 for (i
= y
+ step
; i
!= rookPos
; i
+= step
) {
2071 if (this.board
[x
][i
] != "")
2072 continue castlingCheck
;
2075 // Nothing on final squares, except maybe king and castling rook?
2076 for (i
= 0; i
< 2; i
++) {
2078 finalSquares
[castleSide
][i
] != rookPos
&&
2079 this.board
[x
][finalSquares
[castleSide
][i
]] != "" &&
2081 finalSquares
[castleSide
][i
] != y
||
2082 this.getColor(x
, finalSquares
[castleSide
][i
]) != c
2085 continue castlingCheck
;
2089 // If this code is reached, castle is potentially valid
2095 y: finalSquares
[castleSide
][0],
2101 y: finalSquares
[castleSide
][1],
2107 // King might be initially disguised (Titan...)
2108 new PiPo({ x: x
, y: y
, p: castlingKing
, c: c
}),
2109 new PiPo({ x: x
, y: rookPos
, p: castlingPiece
, c: c
})
2112 Math
.abs(y
- rookPos
) <= 2
2113 ? {x: x
, y: rookPos
}
2114 : {x: x
, y: y
+ 2 * (castleSide
== 0 ? -1 : 1)}
2122 ////////////////////
2125 // Is piece (or square) at given position attacked by "oppCol(s)" ?
2126 underAttack([x
, y
], oppCols
) {
2127 // An empty square is considered as king,
2128 // since it's used only in getCastleMoves (TODO?)
2129 const king
= this.board
[x
][y
] == "" || this.isKing(x
, y
);
2132 (!this.options
["zen"] || king
) &&
2133 this.findCapturesOn(
2143 (!!this.options
["zen"] && !king
) &&
2144 this.findDestSquares(
2150 ([i1
, j1
], [i2
, j2
]) => oppCols
.includes(this.getColor(i2
, j2
))
2156 // Argument is (very generally) an array of squares (= arrays)
2157 underCheck(square_s
, oppCols
) {
2158 if (this.options
["taking"] || this.options
["dark"])
2160 return square_s
.some(sq
=> this.underAttack(sq
, oppCols
));
2163 // Scan board for king(s)
2164 searchKingPos(color
) {
2166 for (let i
=0; i
< this.size
.x
; i
++) {
2167 for (let j
=0; j
< this.size
.y
; j
++) {
2168 if (this.getColor(i
, j
) == color
&& this.isKing(i
, j
))
2175 // cb: callback returning a boolean (false if king missing)
2176 trackKingWrap(move, kingPos
, cb
) {
2177 if (move.appear
.length
== 0 && move.vanish
.length
== 0)
2180 (move.vanish
.length
> 0 ? move.vanish
[0].c : move.appear
[0].c
);
2181 let newKingPP
= null,
2183 res
= true; //a priori valid
2185 move.vanish
.find(v
=> this.isKing(0, 0, v
.p
) && v
.c
== color
);
2187 // Search king in appear array:
2189 move.appear
.find(a
=> this.isKing(0, 0, a
.p
) && a
.c
== color
);
2191 sqIdx
= kingPos
.findIndex(kp
=>
2192 kp
[0] == oldKingPP
.x
&& kp
[1] == oldKingPP
.y
);
2193 kingPos
[sqIdx
] = [newKingPP
.x
, newKingPP
.y
];
2196 res
= false; //king vanished
2198 res
&&= cb(kingPos
);
2199 if (oldKingPP
&& newKingPP
)
2200 kingPos
[sqIdx
] = [oldKingPP
.x
, oldKingPP
.y
];
2204 // 'color' arg because some variants (e.g. Refusal) check opponent moves
2205 filterValid(moves
, color
) {
2208 const oppCols
= this.getOppCols(color
);
2209 let kingPos
= this.searchKingPos(color
);
2210 return moves
.filter(m
=> {
2211 this.playOnBoard(m
);
2212 const res
= this.trackKingWrap(m
, kingPos
, (kp
) => {
2213 return !this.underCheck(kp
, oppCols
);
2215 this.undoOnBoard(m
);
2223 // Apply a move on board
2225 for (let psq
of move.vanish
)
2226 this.board
[psq
.x
][psq
.y
] = "";
2227 for (let psq
of move.appear
)
2228 this.board
[psq
.x
][psq
.y
] = psq
.c
+ psq
.p
;
2230 // Un-apply the played move
2232 for (let psq
of move.appear
)
2233 this.board
[psq
.x
][psq
.y
] = "";
2234 for (let psq
of move.vanish
)
2235 this.board
[psq
.x
][psq
.y
] = psq
.c
+ psq
.p
;
2238 // NOTE: arg "castleFlags" for Coregal or Twokings
2239 updateCastleFlags(move, castleFlags
, king
) {
2240 castleFlags
= castleFlags
|| this.castleFlags
;
2241 // If flags already off, no need to re-check:
2243 Object
.values(castleFlags
).every(cvals
=>
2244 cvals
.every(val
=> val
>= this.size
.y
))
2248 // Update castling flags if start or arrive from/at rook/king locations
2249 move.appear
.concat(move.vanish
).forEach(psq
=> {
2250 if ((!!king
&& psq
.p
== king
) || this.isKing(0, 0, psq
.p
))
2251 castleFlags
[psq
.c
] = [this.size
.y
, this.size
.y
];
2252 // NOTE: not "else if" because king can capture enemy rook...
2256 else if (psq
.x
== this.size
.x
- 1)
2259 const fidx
= castleFlags
[c
].findIndex(f
=> f
== psq
.y
);
2261 castleFlags
[c
][fidx
] = this.size
.y
;
2268 this.updateCastleFlags(move);
2269 if (this.options
["crazyhouse"]) {
2270 move.vanish
.forEach(v
=> {
2271 const square
= C
.CoordsToSquare({x: v
.x
, y: v
.y
});
2272 if (this.ispawn
[square
])
2273 delete this.ispawn
[square
];
2275 if (move.appear
.length
> 0 && move.vanish
.length
> 0) {
2276 // Assumption: something is moving
2277 const initSquare
= C
.CoordsToSquare(move.start
);
2278 const destSquare
= C
.CoordsToSquare(move.end
);
2280 this.ispawn
[initSquare
] ||
2281 (move.vanish
[0].p
== 'p' && move.appear
[0].p
!= 'p')
2283 this.ispawn
[destSquare
] = true;
2286 this.ispawn
[destSquare
] &&
2287 this.getColor(move.end
.x
, move.end
.y
) != move.vanish
[0].c
2289 move.vanish
[1].p
= 'p';
2290 delete this.ispawn
[destSquare
];
2294 const minSize
= Math
.min(move.appear
.length
, move.vanish
.length
);
2297 // Warning; atomic pawn removal isn't a capture
2298 (!this.options
["atomic"] || !this.rempawn
|| this.movesCount
>= 1)
2300 const color
= this.turn
;
2301 for (let i
=minSize
; i
<move.appear
.length
; i
++) {
2302 // Something appears = dropped on board (some exceptions, Chakart...)
2303 if (move.appear
[i
].c
== color
) {
2304 const piece
= move.appear
[i
].p
;
2305 this.updateReserve(color
, piece
, this.reserve
[color
][piece
] - 1);
2308 for (let i
=minSize
; i
<move.vanish
.length
; i
++) {
2309 // Something vanish: add to reserve except if recycle & opponent
2311 this.options
["crazyhouse"] ||
2312 (this.options
["recycle"] && move.vanish
[i
].c
== color
)
2314 const piece
= move.vanish
[i
].p
;
2315 this.updateReserve(color
, piece
, this.reserve
[color
][piece
] + 1);
2323 if (this.hasEnpassant
)
2324 this.epSquare
= this.getEpSquare(move);
2325 this.playOnBoard(move);
2326 this.postPlay(move);
2330 if (this.options
["dark"])
2331 this.updateEnlightened();
2332 if (this.options
["teleport"]) {
2334 this.subTurnTeleport
== 1 &&
2335 move.vanish
.length
> move.appear
.length
&&
2336 move.vanish
[1].c
== this.turn
2338 const v
= move.vanish
[move.vanish
.length
- 1];
2339 this.captured
= {x: v
.x
, y: v
.y
, c: v
.c
, p: v
.p
};
2340 this.subTurnTeleport
= 2;
2343 this.subTurnTeleport
= 1;
2344 this.captured
= null;
2346 this.tryChangeTurn(move);
2349 tryChangeTurn(move) {
2350 if (this.isLastMove(move)) {
2351 this.turn
= C
.GetOppTurn(this.turn
);
2355 else if (!move.next
)
2362 const color
= this.turn
;
2363 const oppKingPos
= this.searchKingPos(C
.GetOppTurn(color
));
2364 if (oppKingPos
.length
== 0 || this.underCheck(oppKingPos
, [color
]))
2368 !this.options
["balance"] ||
2369 ![1, 2].includes(this.movesCount
) ||
2374 !this.options
["doublemove"] ||
2375 this.movesCount
== 0 ||
2380 !this.options
["progressive"] ||
2381 this.subTurn
== this.movesCount
+ 1
2386 // "Stop at the first move found"
2387 atLeastOneMove(color
) {
2388 for (let i
= 0; i
< this.size
.x
; i
++) {
2389 for (let j
= 0; j
< this.size
.y
; j
++) {
2390 if (this.board
[i
][j
] != "" && this.getColor(i
, j
) == color
) {
2391 // NOTE: in fact searching for all potential moves from i,j.
2392 // I don't believe this is an issue, for now at least.
2393 const moves
= this.getPotentialMovesFrom([i
, j
], color
);
2394 if (moves
.some(m
=> this.filterValid([m
]).length
>= 1))
2399 if (this.hasReserve
&& this.reserve
[color
]) {
2400 for (let p
of Object
.keys(this.reserve
[color
])) {
2401 const moves
= this.getDropMovesFrom([color
, p
]);
2402 if (moves
.some(m
=> this.filterValid([m
]).length
>= 1))
2409 // What is the score ? (Interesting if game is over)
2410 getCurrentScore(move_s
) {
2411 const move = move_s
[move_s
.length
- 1];
2412 // Shortcut in case the score was computed before:
2415 const oppTurn
= C
.GetOppTurn(this.turn
);
2417 w: this.searchKingPos('w'),
2418 b: this.searchKingPos('b')
2420 if (kingPos
[this.turn
].length
== 0 && kingPos
[oppTurn
].length
== 0)
2422 if (kingPos
[this.turn
].length
== 0)
2423 return (this.turn
== "w" ? "0-1" : "1-0");
2424 if (kingPos
[oppTurn
].length
== 0)
2425 return (this.turn
== "w" ? "1-0" : "0-1");
2426 if (this.atLeastOneMove(this.turn
))
2428 // No valid move: stalemate or checkmate?
2429 if (!this.underCheck(kingPos
[this.turn
], this.getOppCols(this.turn
)))
2432 return (this.turn
== "w" ? "0-1" : "1-0");
2435 playVisual(move, r
) {
2436 move.vanish
.forEach(v
=> {
2437 if (this.g_pieces
[v
.x
][v
.y
]) //can be null (e.g. Apocalypse)
2438 this.g_pieces
[v
.x
][v
.y
].remove();
2439 this.g_pieces
[v
.x
][v
.y
] = null;
2442 document
.getElementById(this.containerId
).querySelector(".chessboard");
2444 r
= chessboard
.getBoundingClientRect();
2445 const pieceWidth
= this.getPieceWidth(r
.width
);
2446 move.appear
.forEach(a
=> {
2447 this.g_pieces
[a
.x
][a
.y
] = document
.createElement("piece");
2448 C
.AddClass_es(this.g_pieces
[a
.x
][a
.y
],
2449 this.pieces(a
.c
, a
.x
, a
.y
)[a
.p
]["class"]);
2450 this.g_pieces
[a
.x
][a
.y
].classList
.add(V
.GetColorClass(a
.c
));
2451 this.g_pieces
[a
.x
][a
.y
].style
.width
= pieceWidth
+ "px";
2452 this.g_pieces
[a
.x
][a
.y
].style
.height
= pieceWidth
+ "px";
2453 const [ip
, jp
] = this.getPixelPosition(a
.x
, a
.y
, r
);
2454 // Translate coordinates to use chessboard as reference:
2455 this.g_pieces
[a
.x
][a
.y
].style
.transform
=
2456 `translate(${ip - r.x}px,${jp - r.y}px)`;
2457 if (this.enlightened
&& !this.enlightened
[a
.x
][a
.y
])
2458 this.g_pieces
[a
.x
][a
.y
].classList
.add("hidden");
2459 chessboard
.appendChild(this.g_pieces
[a
.x
][a
.y
]);
2461 if (this.options
["dark"])
2462 this.graphUpdateEnlightened();
2465 // TODO: send stack receive stack, or allow incremental? (good/bad points)
2466 buildMoveStack(move, r
) {
2467 this.moveStack
.push(move);
2468 this.computeNextMove(move);
2469 const then
= () => {
2470 const newTurn
= this.turn
;
2471 if (this.moveStack
.length
== 1 && !this.hideMoves
)
2472 this.playVisual(move, r
);
2476 board: JSON
.parse(JSON
.stringify(this.board
)) //easier
2478 this.buildMoveStack(move.next
, r
);
2481 if (this.moveStack
.length
== 1) {
2482 // Usual case (one normal move)
2483 this.afterPlay(this.moveStack
, newTurn
, {send: true, res: true});
2484 this.moveStack
= [];
2487 this.afterPlay(this.moveStack
, newTurn
, {send: true, res: false});
2488 this.re_initFromFen(this.gameState
.fen
, this.gameState
.board
);
2489 this.playReceivedMove(this.moveStack
.slice(1), () => {
2490 this.afterPlay(this.moveStack
, newTurn
, {send: false, res: true});
2491 this.moveStack
= [];
2496 // If hiding moves, then they are revealed in play() with callback
2497 this.play(move, this.hideMoves
? then : null);
2498 if (!this.hideMoves
)
2502 // Implemented in variants using (automatic) moveStack
2503 computeNextMove(move) {}
2505 animateMoving(start
, end
, drag
, segments
, cb
) {
2506 let initPiece
= this.getDomPiece(start
.x
, start
.y
);
2507 if (!initPiece
) { //TODO: shouldn't occur!
2511 // NOTE: cloning often not required, but light enough, and simpler
2512 let movingPiece
= initPiece
.cloneNode();
2513 initPiece
.style
.opacity
= "0";
2515 document
.getElementById(this.containerId
)
2516 const r
= container
.querySelector(".chessboard").getBoundingClientRect();
2517 if (typeof start
.x
== "string") {
2518 // Need to bound width/height (was 100% for reserve pieces)
2519 const pieceWidth
= this.getPieceWidth(r
.width
);
2520 movingPiece
.style
.width
= pieceWidth
+ "px";
2521 movingPiece
.style
.height
= pieceWidth
+ "px";
2523 const maxDist
= this.getMaxDistance(r
);
2524 const apparentColor
= this.getColor(start
.x
, start
.y
);
2525 const pieces
= this.pieces(apparentColor
, start
.x
, start
.y
);
2527 const startCode
= this.getPiece(start
.x
, start
.y
);
2528 C
.RemoveClass_es(movingPiece
, pieces
[startCode
]["class"]);
2529 C
.AddClass_es(movingPiece
, pieces
[drag
.p
]["class"]);
2530 if (apparentColor
!= drag
.c
) {
2531 movingPiece
.classList
.remove(V
.GetColorClass(apparentColor
));
2532 movingPiece
.classList
.add(V
.GetColorClass(drag
.c
));
2535 container
.appendChild(movingPiece
);
2536 const animateSegment
= (index
, cb
) => {
2537 // NOTE: move.drag could be generalized per-segment (usage?)
2538 const [i1
, j1
] = segments
[index
][0];
2539 const [i2
, j2
] = segments
[index
][1];
2540 const dep
= this.getPixelPosition(i1
, j1
, r
);
2541 const arr
= this.getPixelPosition(i2
, j2
, r
);
2542 movingPiece
.style
.transitionDuration
= "0s";
2543 movingPiece
.style
.transform
= `translate(${dep[0]}px, ${dep[1]}px)`;
2545 Math
.sqrt((arr
[0] - dep
[0]) ** 2 + (arr
[1] - dep
[1]) ** 2);
2546 const duration
= 0.2 + (distance
/ maxDist
) * 0.3;
2547 // TODO: unclear why we need this new delay below:
2549 movingPiece
.style
.transitionDuration
= duration
+ "s";
2550 // movingPiece is child of container: no need to adjust coordinates
2551 movingPiece
.style
.transform
= `translate(${arr[0]}px, ${arr[1]}px)`;
2552 setTimeout(cb
, duration
* 1000);
2556 const animateSegmentCallback
= () => {
2557 if (index
< segments
.length
)
2558 animateSegment(index
++, animateSegmentCallback
);
2560 movingPiece
.remove();
2561 initPiece
.style
.opacity
= "1";
2565 animateSegmentCallback();
2568 // Input array of objects with at least fields x,y (e.g. PiPo)
2569 animateFading(arr
, cb
) {
2570 const animLength
= 350; //TODO: 350ms? More? Less?
2572 let fadingPiece
= this.getDomPiece(v
.x
, v
.y
);
2573 fadingPiece
.style
.transitionDuration
= (animLength
/ 1000) + "s";
2574 fadingPiece
.style
.opacity
= "0";
2576 setTimeout(cb
, animLength
);
2579 animate(move, callback
) {
2580 if (this.noAnimate
|| move.noAnimate
) {
2584 let segments
= move.segments
;
2586 segments
= [ [[move.start
.x
, move.start
.y
], [move.end
.x
, move.end
.y
]] ];
2587 let targetObj
= new TargetObj(callback
);
2588 if (move.start
.x
!= move.end
.x
|| move.start
.y
!= move.end
.y
) {
2590 this.animateMoving(move.start
, move.end
, move.drag
, segments
,
2591 () => targetObj
.increment());
2593 if (move.vanish
.length
> move.appear
.length
) {
2594 const arr
= move.vanish
.slice(move.appear
.length
)
2595 // Ignore disappearing pieces hidden by some appearing ones:
2596 .filter(v
=> move.appear
.every(a
=> a
.x
!= v
.x
|| a
.y
!= v
.y
));
2597 if (arr
.length
> 0) {
2599 this.animateFading(arr
, () => targetObj
.increment());
2603 this.tryAnimateCastle(move, () => targetObj
.increment());
2605 this.customAnimate(move, segments
, () => targetObj
.increment());
2606 if (targetObj
.target
== 0)
2610 tryAnimateCastle(move, cb
) {
2613 move.vanish
.length
== 2 &&
2614 move.appear
.length
== 2 &&
2615 this.isKing(0, 0, move.vanish
[0].p
) &&
2616 this.isKing(0, 0, move.appear
[0].p
)
2618 const start
= {x: move.vanish
[1].x
, y: move.vanish
[1].y
},
2619 end
= {x: move.appear
[1].x
, y: move.appear
[1].y
};
2620 const segments
= [ [[start
.x
, start
.y
], [end
.x
, end
.y
]] ];
2621 this.animateMoving(start
, end
, null, segments
, cb
);
2627 // Potential other animations (e.g. for Suction variant)
2628 customAnimate(move, segments
, cb
) {
2629 return 0; //nb of targets
2632 launchAnimation(moves
, container
, callback
) {
2633 if (this.hideMoves
) {
2634 for (let i
=0; i
<moves
.length
; i
++)
2635 // If hiding moves, they are revealed into play():
2636 this.play(moves
[i
], i
== moves
.length
- 1 ? callback : () => {});
2639 const r
= container
.querySelector(".chessboard").getBoundingClientRect();
2640 const animateRec
= i
=> {
2641 this.animate(moves
[i
], () => {
2642 this.play(moves
[i
]);
2643 this.playVisual(moves
[i
], r
);
2644 if (i
< moves
.length
- 1)
2645 setTimeout(() => animateRec(i
+1), 300);
2653 playReceivedMove(moves
, callback
) {
2654 // Delay if user wasn't focused:
2655 const checkDisplayThenAnimate
= (delay
) => {
2656 if (container
.style
.display
== "none") {
2657 alert("New move! Let's go back to game...");
2658 document
.getElementById("gameInfos").style
.display
= "none";
2659 container
.style
.display
= "block";
2661 () => this.launchAnimation(moves
, container
, callback
),
2667 () => this.launchAnimation(moves
, container
, callback
),
2672 let container
= document
.getElementById(this.containerId
);
2673 if (document
.hidden
) {
2674 document
.onvisibilitychange
= () => {
2675 // TODO here: page reload ?! (some issues if tab changed...)
2676 document
.onvisibilitychange
= undefined;
2677 checkDisplayThenAnimate(700);
2681 checkDisplayThenAnimate();