Add Gomoku + Atarigo
[vchess.git] / client / src / base_rules.js
1 // (Orthodox) Chess rules are defined in ChessRules class.
2 // Variants generally inherit from it, and modify some parts.
3
4 import { ArrayFun } from "@/utils/array";
5 import { randInt, shuffle } from "@/utils/alea";
6
7 // class "PiPo": Piece + Position
8 export const PiPo = class PiPo {
9 // o: {piece[p], color[c], posX[x], posY[y]}
10 constructor(o) {
11 this.p = o.p;
12 this.c = o.c;
13 this.x = o.x;
14 this.y = o.y;
15 }
16 };
17
18 export const Move = class Move {
19 // o: {appear, vanish, [start,] [end,]}
20 // appear,vanish = arrays of PiPo
21 // start,end = coordinates to apply to trigger move visually (think castle)
22 constructor(o) {
23 this.appear = o.appear;
24 this.vanish = o.vanish;
25 this.start = o.start || { x: o.vanish[0].x, y: o.vanish[0].y };
26 this.end = o.end || { x: o.appear[0].x, y: o.appear[0].y };
27 }
28 };
29
30 // NOTE: x coords = top to bottom; y = left to right
31 // (from white player perspective)
32 export const ChessRules = class ChessRules {
33
34 //////////////
35 // MISC UTILS
36
37 // Some variants don't have flags:
38 static get HasFlags() {
39 return true;
40 }
41
42 // Or castle
43 static get HasCastle() {
44 return V.HasFlags;
45 }
46
47 // Pawns specifications
48 static get PawnSpecs() {
49 return {
50 directions: { 'w': -1, 'b': 1 },
51 initShift: { w: 1, b: 1 },
52 twoSquares: true,
53 threeSquares: false,
54 promotions: [V.ROOK, V.KNIGHT, V.BISHOP, V.QUEEN],
55 canCapture: true,
56 captureBackward: false,
57 bidirectional: false
58 };
59 }
60
61 // En-passant captures need a stack of squares:
62 static get HasEnpassant() {
63 return true;
64 }
65
66 // Some variants cannot have analyse mode
67 static get CanAnalyze() {
68 return true;
69 }
70 // Patch: issues with javascript OOP, objects can't access static fields.
71 get canAnalyze() {
72 return V.CanAnalyze;
73 }
74
75 // Some variants show incomplete information,
76 // and thus show only a partial moves list or no list at all.
77 static get ShowMoves() {
78 return "all";
79 }
80 get showMoves() {
81 return V.ShowMoves;
82 }
83
84 // Sometimes moves must remain hidden until game ends
85 static get SomeHiddenMoves() {
86 return false;
87 }
88 get someHiddenMoves() {
89 return V.SomeHiddenMoves;
90 }
91
92 // Generally true, unless the variant includes random effects
93 static get CorrConfirm() {
94 return true;
95 }
96
97 // Used for Monochrome variant (TODO: harmonize: !canFlip ==> showFirstTurn)
98 get showFirstTurn() {
99 return false;
100 }
101
102 // Some variants always show the same orientation
103 static get CanFlip() {
104 return true;
105 }
106 get canFlip() {
107 return V.CanFlip;
108 }
109
110 // For (generally old) variants without checkered board
111 static get Monochrome() {
112 return false;
113 }
114
115 // Some games are drawn unusually (bottom right corner is black)
116 static get DarkBottomRight() {
117 return false;
118 }
119
120 // Some variants require lines drawing
121 static get Lines() {
122 if (V.Monochrome) {
123 let lines = [];
124 // Draw all inter-squares lines
125 for (let i = 0; i <= V.size.x; i++)
126 lines.push([[i, 0], [i, V.size.y]]);
127 for (let j = 0; j <= V.size.y; j++)
128 lines.push([[0, j], [V.size.x, j]]);
129 return lines;
130 }
131 return null;
132 }
133
134 // In some variants, the player who repeat a position loses
135 static get LoseOnRepetition() {
136 return false;
137 }
138
139 // At some stages, some games could wait clicks only:
140 onlyClick() {
141 return false;
142 }
143
144 // Some variants use click infos:
145 doClick() {
146 return null;
147 }
148
149 // Some variants may need to highlight squares on hover (Hamilton, Weiqi...)
150 hoverHighlight() {
151 return false;
152 }
153
154 static get IMAGE_EXTENSION() {
155 // All pieces should be in the SVG format
156 return ".svg";
157 }
158
159 // Turn "wb" into "B" (for FEN)
160 static board2fen(b) {
161 return b[0] == "w" ? b[1].toUpperCase() : b[1];
162 }
163
164 // Turn "p" into "bp" (for board)
165 static fen2board(f) {
166 return f.charCodeAt(0) <= 90 ? "w" + f.toLowerCase() : "b" + f;
167 }
168
169 // Check if FEN describes a board situation correctly
170 static IsGoodFen(fen) {
171 const fenParsed = V.ParseFen(fen);
172 // 1) Check position
173 if (!V.IsGoodPosition(fenParsed.position)) return false;
174 // 2) Check turn
175 if (!fenParsed.turn || !V.IsGoodTurn(fenParsed.turn)) return false;
176 // 3) Check moves count
177 if (!fenParsed.movesCount || !(parseInt(fenParsed.movesCount, 10) >= 0))
178 return false;
179 // 4) Check flags
180 if (V.HasFlags && (!fenParsed.flags || !V.IsGoodFlags(fenParsed.flags)))
181 return false;
182 // 5) Check enpassant
183 if (
184 V.HasEnpassant &&
185 (!fenParsed.enpassant || !V.IsGoodEnpassant(fenParsed.enpassant))
186 ) {
187 return false;
188 }
189 return true;
190 }
191
192 // Is position part of the FEN a priori correct?
193 static IsGoodPosition(position) {
194 if (position.length == 0) return false;
195 const rows = position.split("/");
196 if (rows.length != V.size.x) return false;
197 let kings = { "k": 0, "K": 0 };
198 for (let row of rows) {
199 let sumElts = 0;
200 for (let i = 0; i < row.length; i++) {
201 if (['K','k'].includes(row[i])) kings[row[i]]++;
202 if (V.PIECES.includes(row[i].toLowerCase())) sumElts++;
203 else {
204 const num = parseInt(row[i], 10);
205 if (isNaN(num) || num <= 0) return false;
206 sumElts += num;
207 }
208 }
209 if (sumElts != V.size.y) return false;
210 }
211 // Both kings should be on board. Exactly one per color.
212 if (Object.values(kings).some(v => v != 1)) return false;
213 return true;
214 }
215
216 // For FEN checking
217 static IsGoodTurn(turn) {
218 return ["w", "b"].includes(turn);
219 }
220
221 // For FEN checking
222 static IsGoodFlags(flags) {
223 // NOTE: a little too permissive to work with more variants
224 return !!flags.match(/^[a-z]{4,4}$/);
225 }
226
227 // NOTE: not with regexp to adapt to different board sizes. (TODO?)
228 static IsGoodEnpassant(enpassant) {
229 if (enpassant != "-") {
230 const ep = V.SquareToCoords(enpassant);
231 if (isNaN(ep.x) || !V.OnBoard(ep)) return false;
232 }
233 return true;
234 }
235
236 // 3 --> d (column number to letter)
237 static CoordToColumn(colnum) {
238 return String.fromCharCode(97 + colnum);
239 }
240
241 // d --> 3 (column letter to number)
242 static ColumnToCoord(column) {
243 return column.charCodeAt(0) - 97;
244 }
245
246 // a4 --> {x:3,y:0}
247 static SquareToCoords(sq) {
248 return {
249 // NOTE: column is always one char => max 26 columns
250 // row is counted from black side => subtraction
251 x: V.size.x - parseInt(sq.substr(1), 10),
252 y: sq[0].charCodeAt() - 97
253 };
254 }
255
256 // {x:0,y:4} --> e8
257 static CoordsToSquare(coords) {
258 return V.CoordToColumn(coords.y) + (V.size.x - coords.x);
259 }
260
261 // Path to pieces (standard ones in pieces/ folder)
262 getPpath(b) {
263 return b;
264 }
265
266 // Path to promotion pieces (usually the same)
267 getPPpath(m) {
268 return this.getPpath(m.appear[0].c + m.appear[0].p);
269 }
270
271 // Aggregates flags into one object
272 aggregateFlags() {
273 return this.castleFlags;
274 }
275
276 // Reverse operation
277 disaggregateFlags(flags) {
278 this.castleFlags = flags;
279 }
280
281 // En-passant square, if any
282 getEpSquare(moveOrSquare) {
283 if (!moveOrSquare) return undefined; //TODO: necessary line?!
284 if (typeof moveOrSquare === "string") {
285 const square = moveOrSquare;
286 if (square == "-") return undefined;
287 return V.SquareToCoords(square);
288 }
289 // Argument is a move:
290 const move = moveOrSquare;
291 const s = move.start,
292 e = move.end;
293 if (
294 s.y == e.y &&
295 Math.abs(s.x - e.x) == 2 &&
296 // Next conditions for variants like Atomic or Rifle, Recycle...
297 (move.appear.length > 0 && move.appear[0].p == V.PAWN) &&
298 (move.vanish.length > 0 && move.vanish[0].p == V.PAWN)
299 ) {
300 return {
301 x: (s.x + e.x) / 2,
302 y: s.y
303 };
304 }
305 return undefined; //default
306 }
307
308 // Can thing on square1 take thing on square2
309 canTake([x1, y1], [x2, y2]) {
310 return this.getColor(x1, y1) !== this.getColor(x2, y2);
311 }
312
313 // Is (x,y) on the chessboard?
314 static OnBoard(x, y) {
315 return x >= 0 && x < V.size.x && y >= 0 && y < V.size.y;
316 }
317
318 // Used in interface: 'side' arg == player color
319 canIplay(side, [x, y]) {
320 return this.turn == side && this.getColor(x, y) == side;
321 }
322
323 // On which squares is color under check ? (for interface)
324 getCheckSquares() {
325 const color = this.turn;
326 return (
327 this.underCheck(color)
328 // kingPos must be duplicated, because it may change:
329 ? [JSON.parse(JSON.stringify(this.kingPos[color]))]
330 : []
331 );
332 }
333
334 /////////////
335 // FEN UTILS
336
337 // Setup the initial random (asymmetric) position
338 static GenRandInitFen(randomness) {
339 if (randomness == 0)
340 // Deterministic:
341 return "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w 0 ahah -";
342
343 let pieces = { w: new Array(8), b: new Array(8) };
344 let flags = "";
345 // Shuffle pieces on first (and last rank if randomness == 2)
346 for (let c of ["w", "b"]) {
347 if (c == 'b' && randomness == 1) {
348 pieces['b'] = pieces['w'];
349 flags += flags;
350 break;
351 }
352
353 let positions = ArrayFun.range(8);
354
355 // Get random squares for bishops
356 let randIndex = 2 * randInt(4);
357 const bishop1Pos = positions[randIndex];
358 // The second bishop must be on a square of different color
359 let randIndex_tmp = 2 * randInt(4) + 1;
360 const bishop2Pos = positions[randIndex_tmp];
361 // Remove chosen squares
362 positions.splice(Math.max(randIndex, randIndex_tmp), 1);
363 positions.splice(Math.min(randIndex, randIndex_tmp), 1);
364
365 // Get random squares for knights
366 randIndex = randInt(6);
367 const knight1Pos = positions[randIndex];
368 positions.splice(randIndex, 1);
369 randIndex = randInt(5);
370 const knight2Pos = positions[randIndex];
371 positions.splice(randIndex, 1);
372
373 // Get random square for queen
374 randIndex = randInt(4);
375 const queenPos = positions[randIndex];
376 positions.splice(randIndex, 1);
377
378 // Rooks and king positions are now fixed,
379 // because of the ordering rook-king-rook
380 const rook1Pos = positions[0];
381 const kingPos = positions[1];
382 const rook2Pos = positions[2];
383
384 // Finally put the shuffled pieces in the board array
385 pieces[c][rook1Pos] = "r";
386 pieces[c][knight1Pos] = "n";
387 pieces[c][bishop1Pos] = "b";
388 pieces[c][queenPos] = "q";
389 pieces[c][kingPos] = "k";
390 pieces[c][bishop2Pos] = "b";
391 pieces[c][knight2Pos] = "n";
392 pieces[c][rook2Pos] = "r";
393 flags += V.CoordToColumn(rook1Pos) + V.CoordToColumn(rook2Pos);
394 }
395 // Add turn + flags + enpassant
396 return (
397 pieces["b"].join("") +
398 "/pppppppp/8/8/8/8/PPPPPPPP/" +
399 pieces["w"].join("").toUpperCase() +
400 " w 0 " + flags + " -"
401 );
402 }
403
404 // "Parse" FEN: just return untransformed string data
405 static ParseFen(fen) {
406 const fenParts = fen.split(" ");
407 let res = {
408 position: fenParts[0],
409 turn: fenParts[1],
410 movesCount: fenParts[2]
411 };
412 let nextIdx = 3;
413 if (V.HasFlags) Object.assign(res, { flags: fenParts[nextIdx++] });
414 if (V.HasEnpassant) Object.assign(res, { enpassant: fenParts[nextIdx] });
415 return res;
416 }
417
418 // Return current fen (game state)
419 getFen() {
420 return (
421 this.getBaseFen() + " " +
422 this.getTurnFen() + " " +
423 this.movesCount +
424 (V.HasFlags ? " " + this.getFlagsFen() : "") +
425 (V.HasEnpassant ? " " + this.getEnpassantFen() : "")
426 );
427 }
428
429 getFenForRepeat() {
430 // Omit movesCount, only variable allowed to differ
431 return (
432 this.getBaseFen() + "_" +
433 this.getTurnFen() +
434 (V.HasFlags ? "_" + this.getFlagsFen() : "") +
435 (V.HasEnpassant ? "_" + this.getEnpassantFen() : "")
436 );
437 }
438
439 // Position part of the FEN string
440 getBaseFen() {
441 const format = (count) => {
442 // if more than 9 consecutive free spaces, break the integer,
443 // otherwise FEN parsing will fail.
444 if (count <= 9) return count;
445 // Most boards of size < 18:
446 if (count <= 18) return "9" + (count - 9);
447 // Except Gomoku:
448 return "99" + (count - 18);
449 };
450 let position = "";
451 for (let i = 0; i < V.size.x; i++) {
452 let emptyCount = 0;
453 for (let j = 0; j < V.size.y; j++) {
454 if (this.board[i][j] == V.EMPTY) emptyCount++;
455 else {
456 if (emptyCount > 0) {
457 // Add empty squares in-between
458 position += format(emptyCount);
459 emptyCount = 0;
460 }
461 position += V.board2fen(this.board[i][j]);
462 }
463 }
464 if (emptyCount > 0) {
465 // "Flush remainder"
466 position += format(emptyCount);
467 }
468 if (i < V.size.x - 1) position += "/"; //separate rows
469 }
470 return position;
471 }
472
473 getTurnFen() {
474 return this.turn;
475 }
476
477 // Flags part of the FEN string
478 getFlagsFen() {
479 let flags = "";
480 // Castling flags
481 for (let c of ["w", "b"])
482 flags += this.castleFlags[c].map(V.CoordToColumn).join("");
483 return flags;
484 }
485
486 // Enpassant part of the FEN string
487 getEnpassantFen() {
488 const L = this.epSquares.length;
489 if (!this.epSquares[L - 1]) return "-"; //no en-passant
490 return V.CoordsToSquare(this.epSquares[L - 1]);
491 }
492
493 // Turn position fen into double array ["wb","wp","bk",...]
494 static GetBoard(position) {
495 const rows = position.split("/");
496 let board = ArrayFun.init(V.size.x, V.size.y, "");
497 for (let i = 0; i < rows.length; i++) {
498 let j = 0;
499 for (let indexInRow = 0; indexInRow < rows[i].length; indexInRow++) {
500 const character = rows[i][indexInRow];
501 const num = parseInt(character, 10);
502 // If num is a number, just shift j:
503 if (!isNaN(num)) j += num;
504 // Else: something at position i,j
505 else board[i][j++] = V.fen2board(character);
506 }
507 }
508 return board;
509 }
510
511 // Extract (relevant) flags from fen
512 setFlags(fenflags) {
513 // white a-castle, h-castle, black a-castle, h-castle
514 this.castleFlags = { w: [-1, -1], b: [-1, -1] };
515 for (let i = 0; i < 4; i++) {
516 this.castleFlags[i < 2 ? "w" : "b"][i % 2] =
517 V.ColumnToCoord(fenflags.charAt(i));
518 }
519 }
520
521 //////////////////
522 // INITIALIZATION
523
524 // Fen string fully describes the game state
525 constructor(fen) {
526 if (!fen)
527 // In printDiagram() fen isn't supply because only getPpath() is used
528 // TODO: find a better solution!
529 return;
530 const fenParsed = V.ParseFen(fen);
531 this.board = V.GetBoard(fenParsed.position);
532 this.turn = fenParsed.turn;
533 this.movesCount = parseInt(fenParsed.movesCount, 10);
534 this.setOtherVariables(fen);
535 }
536
537 // Scan board for kings positions
538 // TODO: should be done from board, no need for the complete FEN
539 scanKings(fen) {
540 // Squares of white and black king:
541 this.kingPos = { w: [-1, -1], b: [-1, -1] };
542 const fenRows = V.ParseFen(fen).position.split("/");
543 for (let i = 0; i < fenRows.length; i++) {
544 let k = 0; //column index on board
545 for (let j = 0; j < fenRows[i].length; j++) {
546 switch (fenRows[i].charAt(j)) {
547 case "k":
548 this.kingPos["b"] = [i, k];
549 break;
550 case "K":
551 this.kingPos["w"] = [i, k];
552 break;
553 default: {
554 const num = parseInt(fenRows[i].charAt(j), 10);
555 if (!isNaN(num)) k += num - 1;
556 }
557 }
558 k++;
559 }
560 }
561 }
562
563 // Some additional variables from FEN (variant dependant)
564 setOtherVariables(fen) {
565 // Set flags and enpassant:
566 const parsedFen = V.ParseFen(fen);
567 if (V.HasFlags) this.setFlags(parsedFen.flags);
568 if (V.HasEnpassant) {
569 const epSq =
570 parsedFen.enpassant != "-"
571 ? this.getEpSquare(parsedFen.enpassant)
572 : undefined;
573 this.epSquares = [epSq];
574 }
575 // Search for kings positions:
576 this.scanKings(fen);
577 }
578
579 /////////////////////
580 // GETTERS & SETTERS
581
582 static get size() {
583 return { x: 8, y: 8 };
584 }
585
586 // Color of thing on square (i,j). 'undefined' if square is empty
587 getColor(i, j) {
588 return this.board[i][j].charAt(0);
589 }
590
591 // Piece type on square (i,j). 'undefined' if square is empty
592 getPiece(i, j) {
593 return this.board[i][j].charAt(1);
594 }
595
596 // Get opponent color
597 static GetOppCol(color) {
598 return color == "w" ? "b" : "w";
599 }
600
601 // Pieces codes (for a clearer code)
602 static get PAWN() {
603 return "p";
604 }
605 static get ROOK() {
606 return "r";
607 }
608 static get KNIGHT() {
609 return "n";
610 }
611 static get BISHOP() {
612 return "b";
613 }
614 static get QUEEN() {
615 return "q";
616 }
617 static get KING() {
618 return "k";
619 }
620
621 // For FEN checking:
622 static get PIECES() {
623 return [V.PAWN, V.ROOK, V.KNIGHT, V.BISHOP, V.QUEEN, V.KING];
624 }
625
626 // Empty square
627 static get EMPTY() {
628 return "";
629 }
630
631 // Some pieces movements
632 static get steps() {
633 return {
634 r: [
635 [-1, 0],
636 [1, 0],
637 [0, -1],
638 [0, 1]
639 ],
640 n: [
641 [-1, -2],
642 [-1, 2],
643 [1, -2],
644 [1, 2],
645 [-2, -1],
646 [-2, 1],
647 [2, -1],
648 [2, 1]
649 ],
650 b: [
651 [-1, -1],
652 [-1, 1],
653 [1, -1],
654 [1, 1]
655 ]
656 };
657 }
658
659 ////////////////////
660 // MOVES GENERATION
661
662 // All possible moves from selected square
663 getPotentialMovesFrom(sq) {
664 switch (this.getPiece(sq[0], sq[1])) {
665 case V.PAWN: return this.getPotentialPawnMoves(sq);
666 case V.ROOK: return this.getPotentialRookMoves(sq);
667 case V.KNIGHT: return this.getPotentialKnightMoves(sq);
668 case V.BISHOP: return this.getPotentialBishopMoves(sq);
669 case V.QUEEN: return this.getPotentialQueenMoves(sq);
670 case V.KING: return this.getPotentialKingMoves(sq);
671 }
672 return []; //never reached (but some variants may use it: Bario...)
673 }
674
675 // Build a regular move from its initial and destination squares.
676 // tr: transformation
677 getBasicMove([sx, sy], [ex, ey], tr) {
678 const initColor = this.getColor(sx, sy);
679 const initPiece = this.board[sx][sy].charAt(1);
680 let mv = new Move({
681 appear: [
682 new PiPo({
683 x: ex,
684 y: ey,
685 c: !!tr ? tr.c : initColor,
686 p: !!tr ? tr.p : initPiece
687 })
688 ],
689 vanish: [
690 new PiPo({
691 x: sx,
692 y: sy,
693 c: initColor,
694 p: initPiece
695 })
696 ]
697 });
698
699 // The opponent piece disappears if we take it
700 if (this.board[ex][ey] != V.EMPTY) {
701 mv.vanish.push(
702 new PiPo({
703 x: ex,
704 y: ey,
705 c: this.getColor(ex, ey),
706 p: this.board[ex][ey].charAt(1)
707 })
708 );
709 }
710
711 return mv;
712 }
713
714 // Generic method to find possible moves of non-pawn pieces:
715 // "sliding or jumping"
716 getSlideNJumpMoves([x, y], steps, oneStep) {
717 let moves = [];
718 outerLoop: for (let step of steps) {
719 let i = x + step[0];
720 let j = y + step[1];
721 while (V.OnBoard(i, j) && this.board[i][j] == V.EMPTY) {
722 moves.push(this.getBasicMove([x, y], [i, j]));
723 if (!!oneStep) continue outerLoop;
724 i += step[0];
725 j += step[1];
726 }
727 if (V.OnBoard(i, j) && this.canTake([x, y], [i, j]))
728 moves.push(this.getBasicMove([x, y], [i, j]));
729 }
730 return moves;
731 }
732
733 // Special case of en-passant captures: treated separately
734 getEnpassantCaptures([x, y], shiftX) {
735 const Lep = this.epSquares.length;
736 const epSquare = this.epSquares[Lep - 1]; //always at least one element
737 let enpassantMove = null;
738 if (
739 !!epSquare &&
740 epSquare.x == x + shiftX &&
741 Math.abs(epSquare.y - y) == 1
742 ) {
743 enpassantMove = this.getBasicMove([x, y], [epSquare.x, epSquare.y]);
744 enpassantMove.vanish.push({
745 x: x,
746 y: epSquare.y,
747 p: this.board[x][epSquare.y].charAt(1),
748 c: this.getColor(x, epSquare.y)
749 });
750 }
751 return !!enpassantMove ? [enpassantMove] : [];
752 }
753
754 // Consider all potential promotions:
755 addPawnMoves([x1, y1], [x2, y2], moves, promotions) {
756 let finalPieces = [V.PAWN];
757 const color = this.turn; //this.getColor(x1, y1);
758 const lastRank = (color == "w" ? 0 : V.size.x - 1);
759 if (x2 == lastRank) {
760 // promotions arg: special override for Hiddenqueen variant
761 if (!!promotions) finalPieces = promotions;
762 else if (!!V.PawnSpecs.promotions) finalPieces = V.PawnSpecs.promotions;
763 }
764 let tr = null;
765 for (let piece of finalPieces) {
766 tr = (piece != V.PAWN ? { c: color, p: piece } : null);
767 moves.push(this.getBasicMove([x1, y1], [x2, y2], tr));
768 }
769 }
770
771 // What are the pawn moves from square x,y ?
772 getPotentialPawnMoves([x, y], promotions) {
773 const color = this.turn; //this.getColor(x, y);
774 const [sizeX, sizeY] = [V.size.x, V.size.y];
775 const pawnShiftX = V.PawnSpecs.directions[color];
776 const firstRank = (color == "w" ? sizeX - 1 : 0);
777 const forward = (color == 'w' ? -1 : 1);
778
779 // Pawn movements in shiftX direction:
780 const getPawnMoves = (shiftX) => {
781 let moves = [];
782 // NOTE: next condition is generally true (no pawn on last rank)
783 if (x + shiftX >= 0 && x + shiftX < sizeX) {
784 if (this.board[x + shiftX][y] == V.EMPTY) {
785 // One square forward (or backward)
786 this.addPawnMoves([x, y], [x + shiftX, y], moves, promotions);
787 // Next condition because pawns on 1st rank can generally jump
788 if (
789 V.PawnSpecs.twoSquares &&
790 (
791 (color == 'w' && x >= V.size.x - 1 - V.PawnSpecs.initShift['w'])
792 ||
793 (color == 'b' && x <= V.PawnSpecs.initShift['b'])
794 )
795 ) {
796 if (
797 shiftX == forward &&
798 this.board[x + 2 * shiftX][y] == V.EMPTY
799 ) {
800 // Two squares jump
801 moves.push(this.getBasicMove([x, y], [x + 2 * shiftX, y]));
802 if (
803 V.PawnSpecs.threeSquares &&
804 this.board[x + 3 * shiftX][y] == V.EMPTY
805 ) {
806 // Three squares jump
807 moves.push(this.getBasicMove([x, y], [x + 3 * shiftX, y]));
808 }
809 }
810 }
811 }
812 // Captures
813 if (V.PawnSpecs.canCapture) {
814 for (let shiftY of [-1, 1]) {
815 if (y + shiftY >= 0 && y + shiftY < sizeY) {
816 if (
817 this.board[x + shiftX][y + shiftY] != V.EMPTY &&
818 this.canTake([x, y], [x + shiftX, y + shiftY])
819 ) {
820 this.addPawnMoves(
821 [x, y], [x + shiftX, y + shiftY],
822 moves, promotions
823 );
824 }
825 if (
826 V.PawnSpecs.captureBackward && shiftX == forward &&
827 x - shiftX >= 0 && x - shiftX < V.size.x &&
828 this.board[x - shiftX][y + shiftY] != V.EMPTY &&
829 this.canTake([x, y], [x - shiftX, y + shiftY])
830 ) {
831 this.addPawnMoves(
832 [x, y], [x - shiftX, y + shiftY],
833 moves, promotions
834 );
835 }
836 }
837 }
838 }
839 }
840 return moves;
841 }
842
843 let pMoves = getPawnMoves(pawnShiftX);
844 if (V.PawnSpecs.bidirectional)
845 pMoves = pMoves.concat(getPawnMoves(-pawnShiftX));
846
847 if (V.HasEnpassant) {
848 // NOTE: backward en-passant captures are not considered
849 // because no rules define them (for now).
850 Array.prototype.push.apply(
851 pMoves,
852 this.getEnpassantCaptures([x, y], pawnShiftX)
853 );
854 }
855
856 return pMoves;
857 }
858
859 // What are the rook moves from square x,y ?
860 getPotentialRookMoves(sq) {
861 return this.getSlideNJumpMoves(sq, V.steps[V.ROOK]);
862 }
863
864 // What are the knight moves from square x,y ?
865 getPotentialKnightMoves(sq) {
866 return this.getSlideNJumpMoves(sq, V.steps[V.KNIGHT], "oneStep");
867 }
868
869 // What are the bishop moves from square x,y ?
870 getPotentialBishopMoves(sq) {
871 return this.getSlideNJumpMoves(sq, V.steps[V.BISHOP]);
872 }
873
874 // What are the queen moves from square x,y ?
875 getPotentialQueenMoves(sq) {
876 return this.getSlideNJumpMoves(
877 sq,
878 V.steps[V.ROOK].concat(V.steps[V.BISHOP])
879 );
880 }
881
882 // What are the king moves from square x,y ?
883 getPotentialKingMoves(sq) {
884 // Initialize with normal moves
885 let moves = this.getSlideNJumpMoves(
886 sq,
887 V.steps[V.ROOK].concat(V.steps[V.BISHOP]),
888 "oneStep"
889 );
890 if (V.HasCastle && this.castleFlags[this.turn].some(v => v < V.size.y))
891 moves = moves.concat(this.getCastleMoves(sq));
892 return moves;
893 }
894
895 // "castleInCheck" arg to let some variants castle under check
896 getCastleMoves([x, y], finalSquares, castleInCheck, castleWith) {
897 const c = this.getColor(x, y);
898
899 // Castling ?
900 const oppCol = V.GetOppCol(c);
901 let moves = [];
902 // King, then rook:
903 finalSquares = finalSquares || [ [2, 3], [V.size.y - 2, V.size.y - 3] ];
904 const castlingKing = this.board[x][y].charAt(1);
905 castlingCheck: for (
906 let castleSide = 0;
907 castleSide < 2;
908 castleSide++ //large, then small
909 ) {
910 if (this.castleFlags[c][castleSide] >= V.size.y) continue;
911 // If this code is reached, rook and king are on initial position
912
913 // NOTE: in some variants this is not a rook
914 const rookPos = this.castleFlags[c][castleSide];
915 const castlingPiece = this.board[x][rookPos].charAt(1);
916 if (
917 this.board[x][rookPos] == V.EMPTY ||
918 this.getColor(x, rookPos) != c ||
919 (!!castleWith && !castleWith.includes(castlingPiece))
920 ) {
921 // Rook is not here, or changed color (see Benedict)
922 continue;
923 }
924
925 // Nothing on the path of the king ? (and no checks)
926 const finDist = finalSquares[castleSide][0] - y;
927 let step = finDist / Math.max(1, Math.abs(finDist));
928 let i = y;
929 do {
930 if (
931 (!castleInCheck && this.isAttacked([x, i], oppCol)) ||
932 (
933 this.board[x][i] != V.EMPTY &&
934 // NOTE: next check is enough, because of chessboard constraints
935 (this.getColor(x, i) != c || ![y, rookPos].includes(i))
936 )
937 ) {
938 continue castlingCheck;
939 }
940 i += step;
941 } while (i != finalSquares[castleSide][0]);
942
943 // Nothing on the path to the rook?
944 step = castleSide == 0 ? -1 : 1;
945 for (i = y + step; i != rookPos; i += step) {
946 if (this.board[x][i] != V.EMPTY) continue castlingCheck;
947 }
948
949 // Nothing on final squares, except maybe king and castling rook?
950 for (i = 0; i < 2; i++) {
951 if (
952 finalSquares[castleSide][i] != rookPos &&
953 this.board[x][finalSquares[castleSide][i]] != V.EMPTY &&
954 (
955 finalSquares[castleSide][i] != y ||
956 this.getColor(x, finalSquares[castleSide][i]) != c
957 )
958 ) {
959 continue castlingCheck;
960 }
961 }
962
963 // If this code is reached, castle is valid
964 moves.push(
965 new Move({
966 appear: [
967 new PiPo({
968 x: x,
969 y: finalSquares[castleSide][0],
970 p: castlingKing,
971 c: c
972 }),
973 new PiPo({
974 x: x,
975 y: finalSquares[castleSide][1],
976 p: castlingPiece,
977 c: c
978 })
979 ],
980 vanish: [
981 // King might be initially disguised (Titan...)
982 new PiPo({ x: x, y: y, p: castlingKing, c: c }),
983 new PiPo({ x: x, y: rookPos, p: castlingPiece, c: c })
984 ],
985 end:
986 Math.abs(y - rookPos) <= 2
987 ? { x: x, y: rookPos }
988 : { x: x, y: y + 2 * (castleSide == 0 ? -1 : 1) }
989 })
990 );
991 }
992
993 return moves;
994 }
995
996 ////////////////////
997 // MOVES VALIDATION
998
999 // For the interface: possible moves for the current turn from square sq
1000 getPossibleMovesFrom(sq) {
1001 return this.filterValid(this.getPotentialMovesFrom(sq));
1002 }
1003
1004 // TODO: promotions (into R,B,N,Q) should be filtered only once
1005 filterValid(moves) {
1006 if (moves.length == 0) return [];
1007 const color = this.turn;
1008 return moves.filter(m => {
1009 this.play(m);
1010 const res = !this.underCheck(color);
1011 this.undo(m);
1012 return res;
1013 });
1014 }
1015
1016 getAllPotentialMoves() {
1017 const color = this.turn;
1018 let potentialMoves = [];
1019 for (let i = 0; i < V.size.x; i++) {
1020 for (let j = 0; j < V.size.y; j++) {
1021 if (this.board[i][j] != V.EMPTY && this.getColor(i, j) == color) {
1022 Array.prototype.push.apply(
1023 potentialMoves,
1024 this.getPotentialMovesFrom([i, j])
1025 );
1026 }
1027 }
1028 }
1029 return potentialMoves;
1030 }
1031
1032 // Search for all valid moves considering current turn
1033 // (for engine and game end)
1034 getAllValidMoves() {
1035 return this.filterValid(this.getAllPotentialMoves());
1036 }
1037
1038 // Stop at the first move found
1039 // TODO: not really, it explores all moves from a square (one is enough).
1040 // Possible fix: add extra arg "oneMove" to getPotentialMovesFrom,
1041 // and then return only boolean true at first move found
1042 // (in all getPotentialXXXMoves() ... for all variants ...)
1043 atLeastOneMove() {
1044 const color = this.turn;
1045 for (let i = 0; i < V.size.x; i++) {
1046 for (let j = 0; j < V.size.y; j++) {
1047 if (this.board[i][j] != V.EMPTY && this.getColor(i, j) == color) {
1048 const moves = this.getPotentialMovesFrom([i, j]);
1049 if (moves.length > 0) {
1050 for (let k = 0; k < moves.length; k++)
1051 if (this.filterValid([moves[k]]).length > 0) return true;
1052 }
1053 }
1054 }
1055 }
1056 return false;
1057 }
1058
1059 // Check if pieces of given color are attacking (king) on square x,y
1060 isAttacked(sq, color) {
1061 return (
1062 this.isAttackedByPawn(sq, color) ||
1063 this.isAttackedByRook(sq, color) ||
1064 this.isAttackedByKnight(sq, color) ||
1065 this.isAttackedByBishop(sq, color) ||
1066 this.isAttackedByQueen(sq, color) ||
1067 this.isAttackedByKing(sq, color)
1068 );
1069 }
1070
1071 // Generic method for non-pawn pieces ("sliding or jumping"):
1072 // is x,y attacked by a piece of given color ?
1073 isAttackedBySlideNJump([x, y], color, piece, steps, oneStep) {
1074 for (let step of steps) {
1075 let rx = x + step[0],
1076 ry = y + step[1];
1077 while (V.OnBoard(rx, ry) && this.board[rx][ry] == V.EMPTY && !oneStep) {
1078 rx += step[0];
1079 ry += step[1];
1080 }
1081 if (
1082 V.OnBoard(rx, ry) &&
1083 this.board[rx][ry] != V.EMPTY &&
1084 this.getPiece(rx, ry) == piece &&
1085 this.getColor(rx, ry) == color
1086 ) {
1087 return true;
1088 }
1089 }
1090 return false;
1091 }
1092
1093 // Is square x,y attacked by 'color' pawns ?
1094 isAttackedByPawn(sq, color) {
1095 const pawnShift = (color == "w" ? 1 : -1);
1096 return this.isAttackedBySlideNJump(
1097 sq,
1098 color,
1099 V.PAWN,
1100 [[pawnShift, 1], [pawnShift, -1]],
1101 "oneStep"
1102 );
1103 }
1104
1105 // Is square x,y attacked by 'color' rooks ?
1106 isAttackedByRook(sq, color) {
1107 return this.isAttackedBySlideNJump(sq, color, V.ROOK, V.steps[V.ROOK]);
1108 }
1109
1110 // Is square x,y attacked by 'color' knights ?
1111 isAttackedByKnight(sq, color) {
1112 return this.isAttackedBySlideNJump(
1113 sq,
1114 color,
1115 V.KNIGHT,
1116 V.steps[V.KNIGHT],
1117 "oneStep"
1118 );
1119 }
1120
1121 // Is square x,y attacked by 'color' bishops ?
1122 isAttackedByBishop(sq, color) {
1123 return this.isAttackedBySlideNJump(sq, color, V.BISHOP, V.steps[V.BISHOP]);
1124 }
1125
1126 // Is square x,y attacked by 'color' queens ?
1127 isAttackedByQueen(sq, color) {
1128 return this.isAttackedBySlideNJump(
1129 sq,
1130 color,
1131 V.QUEEN,
1132 V.steps[V.ROOK].concat(V.steps[V.BISHOP])
1133 );
1134 }
1135
1136 // Is square x,y attacked by 'color' king(s) ?
1137 isAttackedByKing(sq, color) {
1138 return this.isAttackedBySlideNJump(
1139 sq,
1140 color,
1141 V.KING,
1142 V.steps[V.ROOK].concat(V.steps[V.BISHOP]),
1143 "oneStep"
1144 );
1145 }
1146
1147 // Is color under check after his move ?
1148 underCheck(color) {
1149 return this.isAttacked(this.kingPos[color], V.GetOppCol(color));
1150 }
1151
1152 /////////////////
1153 // MOVES PLAYING
1154
1155 // Apply a move on board
1156 static PlayOnBoard(board, move) {
1157 for (let psq of move.vanish) board[psq.x][psq.y] = V.EMPTY;
1158 for (let psq of move.appear) board[psq.x][psq.y] = psq.c + psq.p;
1159 }
1160 // Un-apply the played move
1161 static UndoOnBoard(board, move) {
1162 for (let psq of move.appear) board[psq.x][psq.y] = V.EMPTY;
1163 for (let psq of move.vanish) board[psq.x][psq.y] = psq.c + psq.p;
1164 }
1165
1166 prePlay() {}
1167
1168 play(move) {
1169 // DEBUG:
1170 // if (!this.states) this.states = [];
1171 // const stateFen = this.getFen() + JSON.stringify(this.kingPos);
1172 // this.states.push(stateFen);
1173
1174 this.prePlay(move);
1175 // Save flags (for undo)
1176 if (V.HasFlags) move.flags = JSON.stringify(this.aggregateFlags());
1177 if (V.HasEnpassant) this.epSquares.push(this.getEpSquare(move));
1178 V.PlayOnBoard(this.board, move);
1179 this.turn = V.GetOppCol(this.turn);
1180 this.movesCount++;
1181 this.postPlay(move);
1182 }
1183
1184 updateCastleFlags(move, piece, color) {
1185 // TODO: check flags. If already off, no need to always re-evaluate
1186 const c = color || V.GetOppCol(this.turn);
1187 const firstRank = (c == "w" ? V.size.x - 1 : 0);
1188 // Update castling flags if rooks are moved
1189 const oppCol = this.turn;
1190 const oppFirstRank = V.size.x - 1 - firstRank;
1191 if (piece == V.KING && move.appear.length > 0)
1192 this.castleFlags[c] = [V.size.y, V.size.y];
1193 else if (
1194 move.start.x == firstRank && //our rook moves?
1195 this.castleFlags[c].includes(move.start.y)
1196 ) {
1197 const flagIdx = (move.start.y == this.castleFlags[c][0] ? 0 : 1);
1198 this.castleFlags[c][flagIdx] = V.size.y;
1199 }
1200 // NOTE: not "else if" because a rook could take an opposing rook
1201 if (
1202 move.end.x == oppFirstRank && //we took opponent rook?
1203 this.castleFlags[oppCol].includes(move.end.y)
1204 ) {
1205 const flagIdx = (move.end.y == this.castleFlags[oppCol][0] ? 0 : 1);
1206 this.castleFlags[oppCol][flagIdx] = V.size.y;
1207 }
1208 }
1209
1210 // After move is played, update variables + flags
1211 postPlay(move) {
1212 const c = V.GetOppCol(this.turn);
1213 let piece = undefined;
1214 if (move.vanish.length >= 1)
1215 // Usual case, something is moved
1216 piece = move.vanish[0].p;
1217 else
1218 // Crazyhouse-like variants
1219 piece = move.appear[0].p;
1220
1221 // Update king position + flags
1222 if (piece == V.KING && move.appear.length > 0)
1223 this.kingPos[c] = [move.appear[0].x, move.appear[0].y];
1224 if (V.HasCastle) this.updateCastleFlags(move, piece);
1225 }
1226
1227 preUndo() {}
1228
1229 undo(move) {
1230 this.preUndo(move);
1231 if (V.HasEnpassant) this.epSquares.pop();
1232 if (V.HasFlags) this.disaggregateFlags(JSON.parse(move.flags));
1233 V.UndoOnBoard(this.board, move);
1234 this.turn = V.GetOppCol(this.turn);
1235 this.movesCount--;
1236 this.postUndo(move);
1237
1238 // DEBUG:
1239 // const stateFen = this.getFen() + JSON.stringify(this.kingPos);
1240 // if (stateFen != this.states[this.states.length-1]) debugger;
1241 // this.states.pop();
1242 }
1243
1244 // After move is undo-ed *and flags resetted*, un-update other variables
1245 // TODO: more symmetry, by storing flags increment in move (?!)
1246 postUndo(move) {
1247 // (Potentially) Reset king position
1248 const c = this.getColor(move.start.x, move.start.y);
1249 if (this.getPiece(move.start.x, move.start.y) == V.KING)
1250 this.kingPos[c] = [move.start.x, move.start.y];
1251 }
1252
1253 ///////////////
1254 // END OF GAME
1255
1256 // What is the score ? (Interesting if game is over)
1257 getCurrentScore() {
1258 if (this.atLeastOneMove()) return "*";
1259 // Game over
1260 const color = this.turn;
1261 // No valid move: stalemate or checkmate?
1262 if (!this.underCheck(color)) return "1/2";
1263 // OK, checkmate
1264 return (color == "w" ? "0-1" : "1-0");
1265 }
1266
1267 ///////////////
1268 // ENGINE PLAY
1269
1270 // Pieces values
1271 static get VALUES() {
1272 return {
1273 p: 1,
1274 r: 5,
1275 n: 3,
1276 b: 3,
1277 q: 9,
1278 k: 1000
1279 };
1280 }
1281
1282 // "Checkmate" (unreachable eval)
1283 static get INFINITY() {
1284 return 9999;
1285 }
1286
1287 // At this value or above, the game is over
1288 static get THRESHOLD_MATE() {
1289 return V.INFINITY;
1290 }
1291
1292 // Search depth: 1,2 for e.g. higher branching factor, 4 for smaller
1293 static get SEARCH_DEPTH() {
1294 return 3;
1295 }
1296
1297 // 'movesList' arg for some variants to provide a custom list
1298 getComputerMove(movesList) {
1299 const maxeval = V.INFINITY;
1300 const color = this.turn;
1301 let moves1 = movesList || this.getAllValidMoves();
1302
1303 if (moves1.length == 0)
1304 // TODO: this situation should not happen
1305 return null;
1306
1307 // Rank moves using a min-max at depth 2 (if search_depth >= 2!)
1308 for (let i = 0; i < moves1.length; i++) {
1309 this.play(moves1[i]);
1310 const score1 = this.getCurrentScore();
1311 if (score1 != "*") {
1312 moves1[i].eval =
1313 score1 == "1/2"
1314 ? 0
1315 : (score1 == "1-0" ? 1 : -1) * maxeval;
1316 }
1317 if (V.SEARCH_DEPTH == 1 || score1 != "*") {
1318 if (!moves1[i].eval) moves1[i].eval = this.evalPosition();
1319 this.undo(moves1[i]);
1320 continue;
1321 }
1322 // Initial self evaluation is very low: "I'm checkmated"
1323 moves1[i].eval = (color == "w" ? -1 : 1) * maxeval;
1324 // Initial enemy evaluation is very low too, for him
1325 let eval2 = (color == "w" ? 1 : -1) * maxeval;
1326 // Second half-move:
1327 let moves2 = this.getAllValidMoves();
1328 for (let j = 0; j < moves2.length; j++) {
1329 this.play(moves2[j]);
1330 const score2 = this.getCurrentScore();
1331 let evalPos = 0; //1/2 value
1332 switch (score2) {
1333 case "*":
1334 evalPos = this.evalPosition();
1335 break;
1336 case "1-0":
1337 evalPos = maxeval;
1338 break;
1339 case "0-1":
1340 evalPos = -maxeval;
1341 break;
1342 }
1343 if (
1344 (color == "w" && evalPos < eval2) ||
1345 (color == "b" && evalPos > eval2)
1346 ) {
1347 eval2 = evalPos;
1348 }
1349 this.undo(moves2[j]);
1350 }
1351 if (
1352 (color == "w" && eval2 > moves1[i].eval) ||
1353 (color == "b" && eval2 < moves1[i].eval)
1354 ) {
1355 moves1[i].eval = eval2;
1356 }
1357 this.undo(moves1[i]);
1358 }
1359 moves1.sort((a, b) => {
1360 return (color == "w" ? 1 : -1) * (b.eval - a.eval);
1361 });
1362 // console.log(moves1.map(m => { return [this.getNotation(m), m.eval]; }));
1363
1364 // Skip depth 3+ if we found a checkmate (or if we are checkmated in 1...)
1365 if (V.SEARCH_DEPTH >= 3 && Math.abs(moves1[0].eval) < V.THRESHOLD_MATE) {
1366 for (let i = 0; i < moves1.length; i++) {
1367 this.play(moves1[i]);
1368 // 0.1 * oldEval : heuristic to avoid some bad moves (not all...)
1369 moves1[i].eval =
1370 0.1 * moves1[i].eval +
1371 this.alphabeta(V.SEARCH_DEPTH - 1, -maxeval, maxeval);
1372 this.undo(moves1[i]);
1373 }
1374 moves1.sort((a, b) => {
1375 return (color == "w" ? 1 : -1) * (b.eval - a.eval);
1376 });
1377 }
1378
1379 let candidates = [0];
1380 for (let i = 1; i < moves1.length && moves1[i].eval == moves1[0].eval; i++)
1381 candidates.push(i);
1382 return moves1[candidates[randInt(candidates.length)]];
1383 }
1384
1385 alphabeta(depth, alpha, beta) {
1386 const maxeval = V.INFINITY;
1387 const color = this.turn;
1388 const score = this.getCurrentScore();
1389 if (score != "*")
1390 return score == "1/2" ? 0 : (score == "1-0" ? 1 : -1) * maxeval;
1391 if (depth == 0) return this.evalPosition();
1392 const moves = this.getAllValidMoves();
1393 let v = color == "w" ? -maxeval : maxeval;
1394 if (color == "w") {
1395 for (let i = 0; i < moves.length; i++) {
1396 this.play(moves[i]);
1397 v = Math.max(v, this.alphabeta(depth - 1, alpha, beta));
1398 this.undo(moves[i]);
1399 alpha = Math.max(alpha, v);
1400 if (alpha >= beta) break; //beta cutoff
1401 }
1402 }
1403 else {
1404 // color=="b"
1405 for (let i = 0; i < moves.length; i++) {
1406 this.play(moves[i]);
1407 v = Math.min(v, this.alphabeta(depth - 1, alpha, beta));
1408 this.undo(moves[i]);
1409 beta = Math.min(beta, v);
1410 if (alpha >= beta) break; //alpha cutoff
1411 }
1412 }
1413 return v;
1414 }
1415
1416 evalPosition() {
1417 let evaluation = 0;
1418 // Just count material for now
1419 for (let i = 0; i < V.size.x; i++) {
1420 for (let j = 0; j < V.size.y; j++) {
1421 if (this.board[i][j] != V.EMPTY) {
1422 const sign = this.getColor(i, j) == "w" ? 1 : -1;
1423 evaluation += sign * V.VALUES[this.getPiece(i, j)];
1424 }
1425 }
1426 }
1427 return evaluation;
1428 }
1429
1430 /////////////////////////
1431 // MOVES + GAME NOTATION
1432 /////////////////////////
1433
1434 // Context: just before move is played, turn hasn't changed
1435 // TODO: un-ambiguous notation (switch on piece type, check directions...)
1436 getNotation(move) {
1437 if (move.appear.length == 2 && move.appear[0].p == V.KING)
1438 // Castle
1439 return move.end.y < move.start.y ? "0-0-0" : "0-0";
1440
1441 // Translate final square
1442 const finalSquare = V.CoordsToSquare(move.end);
1443
1444 const piece = this.getPiece(move.start.x, move.start.y);
1445 if (piece == V.PAWN) {
1446 // Pawn move
1447 let notation = "";
1448 if (move.vanish.length > move.appear.length) {
1449 // Capture
1450 const startColumn = V.CoordToColumn(move.start.y);
1451 notation = startColumn + "x" + finalSquare;
1452 }
1453 else notation = finalSquare;
1454 if (move.appear.length > 0 && move.appear[0].p != V.PAWN)
1455 // Promotion
1456 notation += "=" + move.appear[0].p.toUpperCase();
1457 return notation;
1458 }
1459 // Piece movement
1460 return (
1461 piece.toUpperCase() +
1462 (move.vanish.length > move.appear.length ? "x" : "") +
1463 finalSquare
1464 );
1465 }
1466
1467 static GetUnambiguousNotation(move) {
1468 // Machine-readable format with all the informations about the move
1469 return (
1470 (!!move.start && V.OnBoard(move.start.x, move.start.y)
1471 ? V.CoordsToSquare(move.start)
1472 : "-"
1473 ) + "." +
1474 (!!move.end && V.OnBoard(move.end.x, move.end.y)
1475 ? V.CoordsToSquare(move.end)
1476 : "-"
1477 ) + " " +
1478 (!!move.appear && move.appear.length > 0
1479 ? move.appear.map(a =>
1480 a.c + a.p + V.CoordsToSquare({ x: a.x, y: a.y })).join(".")
1481 : "-"
1482 ) + "/" +
1483 (!!move.vanish && move.vanish.length > 0
1484 ? move.vanish.map(a =>
1485 a.c + a.p + V.CoordsToSquare({ x: a.x, y: a.y })).join(".")
1486 : "-"
1487 )
1488 );
1489 }
1490
1491 };