Finish Chakart. Debug now
[vchess.git] / client / src / components / BaseGame.vue
CommitLineData
a6088c90 1<template lang="pug">
e71161fb 2div#baseGame
7e355d68 3 input#modalEog.modal(type="checkbox")
6808d7a1
BA
4 div#eogDiv(
5 role="dialog"
6 data-checkbox="modalEog"
7 )
9a3049f3 8 .card.text-center
7e355d68 9 label.modal-close(for="modalEog")
9a3049f3 10 h3.section {{ endgameMessage }}
cf94b843
BA
11 #gameContainer
12 #boardContainer
6808d7a1 13 Board(
a6836242 14 ref="board"
6808d7a1
BA
15 :vr="vr"
16 :last-move="lastMove"
07052665 17 :analyze="mode=='analyze'"
20620465 18 :score="game.score"
6808d7a1
BA
19 :user-color="game.mycolor"
20 :orientation="orientation"
21 :vname="game.vname"
22 :incheck="incheck"
23 @play-move="play"
61656127 24 @click-square="clickSquare"
6808d7a1 25 )
20620465 26 #turnIndicator(v-if="showTurn") {{ turn }}
b1e46b33 27 #controls.button-group
b9a5fe01
BA
28 button(@click="gotoBegin()")
29 img.inline(src="/images/icons/fast-forward_rev.svg")
30 button(@click="undo()")
31 img.inline(src="/images/icons/play_rev.svg")
32 button(v-if="canFlip" @click="flip()")
33 img.inline(src="/images/icons/flip.svg")
54ec15eb
BA
34 button(
35 @click="runAutoplay()"
36 :class="{'in-autoplay': autoplay}"
37 )
38 img.inline(src="/images/icons/autoplay.svg")
b9a5fe01
BA
39 button(@click="play()")
40 img.inline(src="/images/icons/play.svg")
41 button(@click="gotoEnd()")
42 img.inline(src="/images/icons/fast-forward.svg")
5fc82c80 43 p#fenAnalyze(v-show="showFen") {{ (!!vr ? vr.getFen() : "") }}
cf94b843 44 #movesList
6808d7a1 45 MoveList(
933fd1f9 46 :show="showMoves"
feaf1bf7
BA
47 :canAnalyze="canAnalyze"
48 :canDownload="allowDownloadPGN"
6808d7a1
BA
49 :score="game.score"
50 :message="game.scoreMsg"
51 :firstNum="firstMoveNumber"
52 :moves="moves"
53 :cursor="cursor"
feaf1bf7
BA
54 @download="download"
55 @showrules="showRules"
07052665 56 @analyze="toggleAnalyze"
6808d7a1 57 @goto-move="gotoMove"
107dc1bd 58 @redraw-board="redrawBoard"
6808d7a1 59 )
41c80bb6 60 .clearer
a6088c90
BA
61</template>
62
63<script>
64import Board from "@/components/Board.vue";
f21cd6d9 65import MoveList from "@/components/MoveList.vue";
2c5d7b20 66import params from "@/parameters";
a6088c90
BA
67import { store } from "@/store";
68import { getSquareId } from "@/utils/squareId";
d4036efe 69import { getDate } from "@/utils/datetime";
602d6bef 70import { processModalClick } from "@/utils/modalClick";
77c50966 71import { getScoreMessage } from "@/utils/scoring";
e71161fb
BA
72import { getFullNotation } from "@/utils/notation";
73import { undoMove } from "@/utils/playUndo";
a6088c90 74export default {
6808d7a1 75 name: "my-base-game",
a6088c90
BA
76 components: {
77 Board,
6808d7a1 78 MoveList
a6088c90 79 },
e71161fb 80 props: ["game"],
a6088c90
BA
81 data: function() {
82 return {
83 st: store.state,
b7c32f1a 84 // NOTE: all following variables must be reset at the beginning of a game
e71161fb 85 vr: null, //VariantRules object, game state
a6088c90
BA
86 endgameMessage: "",
87 orientation: "w",
07052665 88 mode: "",
a6088c90 89 score: "*", //'*' means 'unfinished'
b7c32f1a 90 moves: [],
a6088c90
BA
91 cursor: -1, //index of the move just played
92 lastMove: null,
5157ce0b 93 firstMoveNumber: 0, //for printing
e71161fb 94 incheck: [], //for Board
57eb158f 95 inMultimove: false,
54ec15eb 96 autoplay: false,
57eb158f
BA
97 inPlay: false,
98 stackToPlay: []
a6088c90
BA
99 };
100 },
101 computed: {
6b9378a6
BA
102 turn: function() {
103 if (!this.vr) return "";
104 if (this.vr.showMoves != "all") {
105 return this.st.tr[
106 (this.vr.turn == 'w' ? "White" : "Black") + " to move"];
107 }
5246b49d 108 // Cannot flip (racing king or circular chess), or Monochrome
6b9378a6
BA
109 return (
110 this.vr.movesCount == 0 && this.game.mycolor == "w"
111 ? this.st.tr["It's your turn!"]
112 : ""
113 );
114 },
07052665
BA
115 showFen: function() {
116 return (
117 this.mode == "analyze" &&
118 this.$router.currentRoute.path.indexOf("/analyse") === -1
119 );
120 },
1ef65040 121 // TODO: is it OK to pass "computed" as properties?
6b9378a6 122 // Also, some are seemingly not recomputed when vr is initialized.
a6088c90 123 showMoves: function() {
933fd1f9
BA
124 return this.game.score != "*"
125 ? "all"
6b9378a6 126 : (!!this.vr ? this.vr.showMoves : "none");
20620465
BA
127 },
128 showTurn: function() {
71ef1664
BA
129 return (
130 this.game.score == '*' &&
5246b49d
BA
131 !!this.vr &&
132 (
133 this.vr.showMoves != "all" ||
134 !this.vr.canFlip ||
135 this.vr.showFirstTurn
136 )
71ef1664 137 );
a6088c90 138 },
20620465 139 canAnalyze: function() {
6b9378a6
BA
140 return (
141 this.game.mode != "analyze" &&
142 !!this.vr && this.vr.canAnalyze
143 );
20620465 144 },
71ef1664 145 canFlip: function() {
6b9378a6 146 return !!this.vr && this.vr.canFlip;
71ef1664 147 },
20620465 148 allowDownloadPGN: function() {
6b9378a6
BA
149 return (
150 this.game.score != "*" ||
151 (!!this.vr && this.vr.showMoves == "all")
152 );
6808d7a1 153 }
a6088c90 154 },
4b0384fa 155 created: function() {
b1e46b33 156 if (!!this.game.fenStart) this.re_setVariables();
4b0384fa 157 },
cf94b843 158 mounted: function() {
e71161fb
BA
159 if (!("ontouchstart" in window)) {
160 // Desktop browser:
161 const baseGameDiv = document.getElementById("baseGame");
162 baseGameDiv.tabIndex = 0;
163 baseGameDiv.addEventListener("click", this.focusBg);
164 baseGameDiv.addEventListener("keydown", this.handleKeys);
165 baseGameDiv.addEventListener("wheel", this.handleScroll);
166 }
42a92848
BA
167 document.getElementById("eogDiv")
168 .addEventListener("click", processModalClick);
cf94b843 169 },
54ec15eb 170 beforeDestroy: function() {
5b18515f
BA
171 // TODO: probably not required
172 this.autoplay = false;
54ec15eb 173 },
a6088c90 174 methods: {
9ca1e26b 175 focusBg: function() {
9ca1e26b
BA
176 document.getElementById("baseGame").focus();
177 },
178 handleKeys: function(e) {
6808d7a1
BA
179 if ([32, 37, 38, 39, 40].includes(e.keyCode)) e.preventDefault();
180 switch (e.keyCode) {
9ca1e26b
BA
181 case 37:
182 this.undo();
183 break;
184 case 39:
185 this.play();
186 break;
5701c228 187 case 38:
9ca1e26b
BA
188 this.gotoBegin();
189 break;
190 case 40:
191 this.gotoEnd();
192 break;
193 case 32:
9ca1e26b
BA
194 this.flip();
195 break;
196 }
197 },
dcd68c41 198 handleScroll: function(e) {
e71161fb
BA
199 e.preventDefault();
200 if (e.deltaY < 0) this.undo();
201 else if (e.deltaY > 0) this.play();
dcd68c41 202 },
107dc1bd
BA
203 redrawBoard: function() {
204 this.$refs["board"].re_setDrawings();
49dad261 205 },
0e16cb26 206 showRules: function() {
07052665
BA
207 // The button is here only on Game page:
208 document.getElementById("modalRules").checked = true;
0e16cb26 209 },
b1e46b33
BA
210 re_setVariables: function(game) {
211 if (!game) game = this.game; //in case of...
4b0384fa 212 this.endgameMessage = "";
8477e53d 213 // "w": default orientation for observed games
b1e46b33 214 this.orientation = game.mycolor || "w";
07052665 215 this.mode = game.mode || game.type; //TODO: merge...
b1e46b33 216 this.moves = JSON.parse(JSON.stringify(game.moves || []));
e71161fb 217 // Post-processing: decorate each move with notation and FEN
b1e46b33 218 this.vr = new V(game.fenStart);
cd49e617 219 this.inMultimove = false; //in case of
6c7cbfed
BA
220 if (!!this.$refs["board"])
221 // Also in case of:
222 this.$refs["board"].resetCurrentAttempt();
cd49e617
BA
223 let analyseBtn = document.getElementById("analyzeBtn");
224 if (!!analyseBtn) analyseBtn.classList.remove("active");
b1e46b33 225 const parsedFen = V.ParseFen(game.fenStart);
8477e53d 226 const firstMoveColor = parsedFen.turn;
6e0c0bcb 227 this.firstMoveNumber = Math.floor(parsedFen.movesCount / 2) + 1;
f54f4c26 228 let L = this.moves.length;
5b18515f 229 if (L == 0) {
6c7cbfed
BA
230 // Could be started on a random position in analysis mode:
231 this.incheck = this.vr.getCheckSquares();
232 this.score = this.vr.getCurrentScore();
233 if (this.score != '*') {
234 // Show score on screen
235 const message = getScoreMessage(this.score);
236 this.showEndgameMsg(this.score + " . " + this.st.tr[message]);
237 }
5b18515f 238 }
6c7cbfed
BA
239 else {
240 this.moves.forEach((move,idx) => {
241 // Strategy working also for multi-moves:
242 if (!Array.isArray(move)) move = [move];
243 const Lm = move.length;
244 move.forEach((m,idxM) => {
245 m.notation = this.vr.getNotation(m);
246 m.unambiguous = V.GetUnambiguousNotation(m);
247 this.vr.play(m);
248 const checkSquares = this.vr.getCheckSquares();
249 if (checkSquares.length > 0) m.notation += "+";
250 if (idxM == Lm - 1) m.fen = this.vr.getFen();
251 if (idx == L - 1 && idxM == Lm - 1) {
252 this.incheck = checkSquares;
253 this.score = this.vr.getCurrentScore();
254 if (["1-0", "0-1"].includes(this.score)) m.notation += "#";
255 }
256 });
e71161fb 257 });
6c7cbfed 258 }
8477e53d 259 if (firstMoveColor == "b") {
311cba76 260 // 'start' & 'end' is required for Board component
6808d7a1 261 this.moves.unshift({
6808d7a1 262 notation: "...",
2c5d7b20 263 unambiguous: "...",
311cba76 264 start: { x: -1, y: -1 },
3a2a7b5f
BA
265 end: { x: -1, y: -1 },
266 fen: game.fenStart
6808d7a1 267 });
f54f4c26 268 L++;
697ee580 269 }
af34341d 270 this.positionCursorTo(L - 1);
4b0384fa 271 },
e71161fb
BA
272 positionCursorTo: function(index) {
273 this.cursor = index;
af34341d
BA
274 // Note: last move in moves array might be a multi-move
275 if (index >= 0) this.lastMove = this.moves[index];
276 else this.lastMove = null;
e71161fb 277 },
07052665 278 toggleAnalyze: function() {
8506fc3b 279 // Freeze while choices are shown (and autoplay has priority)
b967d5ba
BA
280 if (
281 this.inPlay ||
282 this.$refs["board"].choices.length > 0 ||
283 this.autoplay
284 ) {
285 return;
286 }
07052665
BA
287 if (this.mode != "analyze") {
288 // Enter analyze mode:
b967d5ba 289 this.mode = "analyze";
e0f26496 290 if (this.inMultimove) this.cancelCurrentMultimove();
07052665 291 this.gameMode = this.mode; //was not 'analyze'
07052665
BA
292 this.gameCursor = this.cursor;
293 this.gameMoves = JSON.parse(JSON.stringify(this.moves));
294 document.getElementById("analyzeBtn").classList.add("active");
295 }
296 else {
297 // Exit analyze mode:
298 this.mode = this.gameMode ;
299 this.cursor = this.gameCursor;
300 this.moves = this.gameMoves;
301 let fen = this.game.fenStart;
302 if (this.cursor >= 0) {
303 let mv = this.moves[this.cursor];
304 if (!Array.isArray(mv)) mv = [mv];
305 fen = mv[mv.length-1].fen;
306 }
307 this.vr = new V(fen);
0e912cb2 308 this.inMultimove = false; //in case of
8506fc3b 309 this.$refs["board"].resetCurrentAttempt(); //also in case of
0f0552a7 310 this.incheck = this.vr.getCheckSquares();
8aa314fa
BA
311 if (this.cursor >= 0) this.lastMove = this.moves[this.cursor];
312 else this.lastMove = null;
07052665
BA
313 document.getElementById("analyzeBtn").classList.remove("active");
314 }
603b8a8b 315 },
a6088c90
BA
316 download: function() {
317 const content = this.getPgn();
318 // Prepare and trigger download link
319 let downloadAnchor = document.getElementById("download");
320 downloadAnchor.setAttribute("download", "game.pgn");
6808d7a1
BA
321 downloadAnchor.href =
322 "data:text/plain;charset=utf-8," + encodeURIComponent(content);
a6088c90
BA
323 downloadAnchor.click();
324 },
325 getPgn: function() {
326 let pgn = "";
327 pgn += '[Site "vchess.club"]\n';
834c202a 328 pgn += '[Variant "' + this.game.vname + '"]\n';
1ef65040
BA
329 const gdt = getDate(new Date(this.game.created || Date.now()));
330 pgn += '[Date "' + gdt + '"]\n';
d4036efe
BA
331 pgn += '[White "' + this.game.players[0].name + '"]\n';
332 pgn += '[Black "' + this.game.players[1].name + '"]\n';
834c202a 333 pgn += '[Fen "' + this.game.fenStart + '"]\n';
2c5d7b20 334 pgn += '[Result "' + this.game.score + '"]\n';
fef153df 335 if (!!this.game.id)
1ef65040 336 pgn += '[Url "' + params.serverUrl + '/game/' + this.game.id + '"]\n';
fef153df
BA
337 if (!!this.game.cadence)
338 pgn += '[Cadence "' + this.game.cadence + '"]\n';
2c5d7b20 339 pgn += '\n';
e71161fb 340 for (let i = 0; i < this.moves.length; i += 2) {
2c5d7b20 341 if (i > 0) pgn += " ";
49dad261
BA
342 // Adjust dots notation for a better display:
343 let fullNotation = getFullNotation(this.moves[i]);
344 if (fullNotation == "...") fullNotation = "..";
6e0c0bcb 345 pgn += (i / 2 + this.firstMoveNumber) + "." + fullNotation;
e71161fb 346 if (i+1 < this.moves.length)
2c5d7b20 347 pgn += " " + getFullNotation(this.moves[i+1]);
a6088c90 348 }
2c5d7b20
BA
349 pgn += "\n\n";
350 for (let i = 0; i < this.moves.length; i += 2) {
6e0c0bcb 351 const moveNumber = i / 2 + this.firstMoveNumber;
1ef65040
BA
352 // Skip "dots move", useless for machine reading:
353 if (this.moves[i].notation != "...") {
354 pgn += moveNumber + ".w " +
355 getFullNotation(this.moves[i], "unambiguous") + "\n";
356 }
49dad261 357 if (i+1 < this.moves.length) {
1ef65040 358 pgn += moveNumber + ".b " +
49dad261
BA
359 getFullNotation(this.moves[i+1], "unambiguous") + "\n";
360 }
2c5d7b20
BA
361 }
362 return pgn;
a6088c90 363 },
b988c726
BA
364 showEndgameMsg: function(message) {
365 this.endgameMessage = message;
aae89b49 366 document.getElementById("modalEog").checked = true;
a6088c90 367 },
54ec15eb 368 runAutoplay: function() {
54ec15eb
BA
369 if (this.autoplay) {
370 this.autoplay = false;
5b18515f
BA
371 if (this.stackToPlay.length > 0)
372 // Move(s) arrived in-between
373 this.play(this.stackToPlay.pop(), "received");
374 }
375 else if (this.cursor < this.moves.length - 1) {
54ec15eb 376 this.autoplay = true;
5fc82c80 377 this.play(null, null, null, "autoplay");
54ec15eb
BA
378 }
379 },
e71161fb 380 // Animate an elementary move
63ca2b89 381 animateMove: function(move, callback) {
a6088c90 382 let startSquare = document.getElementById(getSquareId(move.start));
f9c36b2d 383 if (!startSquare) return; //shouldn't happen but...
a6088c90
BA
384 let endSquare = document.getElementById(getSquareId(move.end));
385 let rectStart = startSquare.getBoundingClientRect();
386 let rectEnd = endSquare.getBoundingClientRect();
6808d7a1
BA
387 let translation = {
388 x: rectEnd.x - rectStart.x,
389 y: rectEnd.y - rectStart.y
390 };
391 let movingPiece = document.querySelector(
392 "#" + getSquareId(move.start) + " > img.piece"
393 );
efdfb4c7 394 // For some unknown reasons Opera get "movingPiece == null" error
2c5d7b20 395 // TODO: is it calling 'animate()' twice ? One extra time ?
efdfb4c7 396 if (!movingPiece) return;
a6088c90 397 const squares = document.getElementsByClassName("board");
6808d7a1 398 for (let i = 0; i < squares.length; i++) {
a6088c90 399 let square = squares.item(i);
2c5d7b20
BA
400 if (square.id != getSquareId(move.start))
401 // HACK for animation:
402 // (with positive translate, image slides "under background")
403 square.style.zIndex = "-1";
a6088c90 404 }
6808d7a1
BA
405 movingPiece.style.transform =
406 "translate(" + translation.x + "px," + translation.y + "px)";
910d631b 407 movingPiece.style.transitionDuration = "0.25s";
a6088c90 408 movingPiece.style.zIndex = "3000";
6808d7a1
BA
409 setTimeout(() => {
410 for (let i = 0; i < squares.length; i++)
a6088c90
BA
411 squares.item(i).style.zIndex = "auto";
412 movingPiece.style = {}; //required e.g. for 0-0 with KR swap
63ca2b89 413 callback();
a6088c90
BA
414 }, 250);
415 },
8055eabd
BA
416 // For Analyse mode:
417 emitFenIfAnalyze: function() {
418 if (this.game.mode == "analyze") {
af34341d
BA
419 let fen = this.game.fenStart;
420 if (!!this.lastMove) {
421 if (Array.isArray(this.lastMove)) {
422 const L = this.lastMove.length;
423 fen = this.lastMove[L-1].fen;
424 }
425 else fen = this.lastMove.fen;
426 }
427 this.$emit("fenchange", fen);
8055eabd
BA
428 }
429 },
61656127
BA
430 clickSquare: function(square) {
431 // Some variants make use of a single click at specific times:
432 const move = this.vr.doClick(square);
433 if (!!move) this.play(move);
434 },
e71161fb 435 // "light": if gotoMove() or gotoEnd()
5fc82c80 436 play: function(move, received, light, autoplay) {
a6836242 437 // Freeze while choices are shown:
6c7cbfed
BA
438 if (
439 !!this.$refs["board"].selectedPiece ||
440 this.$refs["board"].choices.length > 0
441 ) {
442 return;
443 }
d6289b54 444 const navigate = !move;
5fc82c80
BA
445 // Forbid navigation during autoplay:
446 if (navigate && this.autoplay && !autoplay) return;
d6289b54
BA
447 // Forbid playing outside analyze mode, except if move is received.
448 // Sufficient condition because Board already knows which turn it is.
449 if (
450 this.mode != "analyze" &&
451 !navigate &&
452 !received &&
453 (this.game.score != "*" || this.cursor < this.moves.length - 1)
454 ) {
455 return;
456 }
457 if (!!received) {
5b18515f
BA
458 if (this.autoplay || this.inPlay) {
459 // Received moves while autoplaying are stacked,
460 // and in observed games they could arrive too fast:
57eb158f
BA
461 this.stackToPlay.unshift(move);
462 return;
463 }
464 this.inPlay = true;
5b18515f
BA
465 if (this.mode == "analyze") this.toggleAnalyze();
466 if (this.cursor < this.moves.length - 1)
467 // To play a received move, cursor must be at the end of the game:
468 this.gotoEnd();
57eb158f 469 }
ad030c7d 470 // The board may show some possible moves: (TODO: bad solution)
d6289b54 471 this.$refs["board"].resetCurrentAttempt();
e71161fb 472 const playSubmove = (smove) => {
fbd68f75 473 smove.notation = this.vr.getNotation(smove);
2c5d7b20 474 smove.unambiguous = V.GetUnambiguousNotation(smove);
e71161fb 475 this.vr.play(smove);
07052665 476 if (this.inMultimove && !!this.lastMove) {
af34341d
BA
477 if (!Array.isArray(this.lastMove))
478 this.lastMove = [this.lastMove, smove];
479 else this.lastMove.push(smove);
480 }
7ddfec38 481 // Is opponent (or me) in check?
af34341d
BA
482 this.incheck = this.vr.getCheckSquares();
483 if (this.incheck.length > 0) smove.notation += "+";
fbd68f75 484 if (!this.inMultimove) {
af34341d
BA
485 // First sub-move:
486 this.lastMove = smove;
54ec15eb
BA
487 // Condition is "!navigate" but we mean "!this.autoplay"
488 if (!navigate) {
691d6952 489 if (this.cursor < this.moves.length - 1)
54ec15eb
BA
490 this.moves = this.moves.slice(0, this.cursor + 1);
491 this.moves.push(smove);
492 }
fbd68f75
BA
493 this.inMultimove = true; //potentially
494 this.cursor++;
54ec15eb 495 } else if (!navigate) {
fbd68f75
BA
496 // Already in the middle of a multi-move
497 const L = this.moves.length;
498 if (!Array.isArray(this.moves[L-1]))
499 this.$set(this.moves, L-1, [this.moves[L-1], smove]);
6e47d367 500 else this.moves[L-1].push(smove);
e71161fb
BA
501 }
502 };
503 const playMove = () => {
54ec15eb 504 const animate = (
57d9b2c4 505 ["all", "highlight"].includes(V.ShowMoves) &&
54ec15eb
BA
506 (this.autoplay || !!received)
507 );
e71161fb
BA
508 if (!Array.isArray(move)) move = [move];
509 let moveIdx = 0;
510 let self = this;
511 const initurn = this.vr.turn;
512 (function executeMove() {
513 const smove = move[moveIdx++];
ad1e629e
BA
514 // NOTE: condition "smove.start.x >= 0" required for Dynamo,
515 // because second move may be empty.
516 if (animate && smove.start.x >= 0) {
e71161fb
BA
517 self.animateMove(smove, () => {
518 playSubmove(smove);
5b18515f 519 if (moveIdx < move.length) setTimeout(executeMove, 500);
e71161fb
BA
520 else afterMove(smove, initurn);
521 });
522 } else {
523 playSubmove(smove);
524 if (moveIdx < move.length) executeMove();
525 else afterMove(smove, initurn);
526 }
527 })();
528 };
fbd68f75
BA
529 const computeScore = () => {
530 const score = this.vr.getCurrentScore();
f54f4c26 531 if (!navigate) {
5b18515f 532 if (["1-0", "0-1"].includes(score)) {
af34341d
BA
533 if (Array.isArray(this.lastMove)) {
534 const L = this.lastMove.length;
535 this.lastMove[L - 1].notation += "#";
536 }
537 else this.lastMove.notation += "#";
538 }
f54f4c26 539 }
ff3a8d16 540 if (score != "*" && ["analyze", "versus"].includes(this.mode)) {
fbd68f75 541 const message = getScoreMessage(score);
ff3a8d16 542 // Show score on screen
fbd68f75
BA
543 this.showEndgameMsg(score + " . " + this.st.tr[message]);
544 }
545 return score;
546 };
e71161fb 547 const afterMove = (smove, initurn) => {
e71161fb
BA
548 if (this.vr.turn != initurn) {
549 // Turn has changed: move is complete
3a2a7b5f 550 if (!smove.fen)
2c5d7b20 551 // NOTE: only FEN of last sub-move is required (=> setting it here)
cc00b83c 552 smove.fen = this.vr.getFen();
3a2a7b5f 553 this.emitFenIfAnalyze();
e71161fb 554 this.inMultimove = false;
f54f4c26 555 this.score = computeScore();
5b18515f
BA
556 if (this.autoplay) {
557 if (this.cursor < this.moves.length - 1)
5fc82c80 558 setTimeout(() => this.play(null, null, null, "autoplay"), 1000);
5b18515f
BA
559 else {
560 this.autoplay = false;
561 if (this.stackToPlay.length > 0)
562 // Move(s) arrived in-between
563 this.play(this.stackToPlay.pop(), "received");
564 }
565 }
07052665 566 if (this.mode != "analyze" && !navigate) {
5b18515f 567 if (!received) {
5aa14a21 568 // Post-processing (e.g. computer play).
f54f4c26 569 const L = this.moves.length;
5b18515f 570 // NOTE: always emit the score, even in unfinished
f54f4c26
BA
571 this.$emit("newmove", this.moves[L-1], { score: this.score });
572 } else {
57eb158f
BA
573 this.inPlay = false;
574 if (this.stackToPlay.length > 0)
575 // Move(s) arrived in-between
5b18515f 576 this.play(this.stackToPlay.pop(), "received");
57eb158f 577 }
e71161fb
BA
578 }
579 }
580 };
581 // NOTE: navigate and received are mutually exclusive
582 if (navigate) {
583 // The move to navigate to is necessarily full:
584 if (this.cursor == this.moves.length - 1) return; //no more moves
585 move = this.moves[this.cursor + 1];
54ec15eb
BA
586 if (!this.autoplay) {
587 // Just play the move:
588 if (!Array.isArray(move)) move = [move];
589 for (let i=0; i < move.length; i++) this.vr.play(move[i]);
590 if (!light) {
af34341d
BA
591 this.lastMove = move;
592 this.incheck = this.vr.getCheckSquares();
54ec15eb
BA
593 this.score = computeScore();
594 this.emitFenIfAnalyze();
595 }
596 this.cursor++;
597 return;
8055eabd 598 }
e71161fb 599 }
e71161fb
BA
600 playMove();
601 },
602 cancelCurrentMultimove: function() {
e71161fb
BA
603 const L = this.moves.length;
604 let move = this.moves[L-1];
605 if (!Array.isArray(move)) move = [move];
93ce6119 606 for (let i = move.length - 1; i >= 0; i--) this.vr.undo(move[i]);
e71161fb
BA
607 this.moves.pop();
608 this.cursor--;
609 this.inMultimove = false;
610 },
611 cancelLastMove: function() {
612 // The last played move was canceled (corr game)
613 this.undo();
614 this.moves.pop();
615 },
616 // "light": if gotoMove() or gotoBegin()
617 undo: function(move, light) {
6c7cbfed
BA
618 if (
619 this.autoplay ||
620 !!this.$refs["board"].selectedPiece ||
621 this.$refs["board"].choices.length > 0
622 ) {
623 return;
624 }
93ce6119 625 this.$refs["board"].resetCurrentAttempt();
e71161fb
BA
626 if (this.inMultimove) {
627 this.cancelCurrentMultimove();
af34341d 628 this.incheck = this.vr.getCheckSquares();
c3f02a0e
BA
629 if (this.cursor >= 0) this.lastMove = this.moves[this.cursor];
630 else this.lastMove = null;
e71161fb
BA
631 } else {
632 if (!move) {
3a2a7b5f
BA
633 const minCursor =
634 this.moves.length > 0 && this.moves[0].notation == "..."
635 ? 1
636 : 0;
637 if (this.cursor < minCursor) return; //no more moves
e71161fb
BA
638 move = this.moves[this.cursor];
639 }
93ce6119 640 this.$refs["board"].resetCurrentAttempt();
e71161fb
BA
641 undoMove(move, this.vr);
642 if (light) this.cursor--;
643 else {
644 this.positionCursorTo(this.cursor - 1);
af34341d 645 this.incheck = this.vr.getCheckSquares();
8055eabd 646 this.emitFenIfAnalyze();
63ca2b89 647 }
a6088c90 648 }
a6088c90
BA
649 },
650 gotoMove: function(index) {
6c7cbfed
BA
651 if (
652 this.autoplay ||
653 !!this.$refs["board"].selectedPiece ||
654 this.$refs["board"].choices.length > 0
655 ) {
656 return;
657 }
93ce6119 658 this.$refs["board"].resetCurrentAttempt();
e71161fb
BA
659 if (this.inMultimove) this.cancelCurrentMultimove();
660 if (index == this.cursor) return;
661 if (index < this.cursor) {
662 while (this.cursor > index)
663 this.undo(null, null, "light");
664 }
665 else {
666 // index > this.cursor)
667 while (this.cursor < index)
668 this.play(null, null, "light");
669 }
670 // NOTE: next line also re-assign cursor, but it's very light
671 this.positionCursorTo(index);
af34341d 672 this.incheck = this.vr.getCheckSquares();
8055eabd 673 this.emitFenIfAnalyze();
a6088c90
BA
674 },
675 gotoBegin: function() {
6c7cbfed
BA
676 if (
677 this.autoplay ||
678 !!this.$refs["board"].selectedPiece ||
679 this.$refs["board"].choices.length > 0
680 ) {
681 return;
682 }
93ce6119 683 this.$refs["board"].resetCurrentAttempt();
e71161fb 684 if (this.inMultimove) this.cancelCurrentMultimove();
3a2a7b5f
BA
685 const minCursor =
686 this.moves.length > 0 && this.moves[0].notation == "..."
687 ? 1
688 : 0;
689 while (this.cursor >= minCursor) this.undo(null, null, "light");
690 this.lastMove = (minCursor == 1 ? this.moves[0] : null);
af34341d 691 this.incheck = this.vr.getCheckSquares();
8055eabd 692 this.emitFenIfAnalyze();
a6088c90
BA
693 },
694 gotoEnd: function() {
6808d7a1
BA
695 if (this.cursor == this.moves.length - 1) return;
696 this.gotoMove(this.moves.length - 1);
a6088c90
BA
697 },
698 flip: function() {
a6836242 699 if (this.$refs["board"].choices.length > 0) return;
0e16cb26 700 this.orientation = V.GetOppCol(this.orientation);
6808d7a1
BA
701 }
702 }
a6088c90
BA
703};
704</script>
72ccbd67 705
41c80bb6 706<style lang="sass" scoped>
9a3049f3
BA
707[type="checkbox"]#modalEog+div .card
708 min-height: 45px
a06fc4ba 709 max-width: 350px
910d631b 710
cf94b843
BA
711#baseGame
712 width: 100%
4f518610
BA
713 &:focus
714 outline: none
cf94b843
BA
715
716#gameContainer
72ccbd67
BA
717 margin-left: auto
718 margin-right: auto
cf94b843 719
ed06d9e9
BA
720#downloadDiv
721 display: inline-block
722
72ccbd67 723#controls
28b32b4f 724 user-select: none
72ccbd67 725 button
b1e46b33 726 border: none
72ccbd67 727 margin: 0
feaf1bf7
BA
728 padding-top: 5px
729 padding-bottom: 5px
730
5fc82c80
BA
731p#fenAnalyze
732 margin: 5px
733
54ec15eb
BA
734.in-autoplay
735 background-color: #FACF8C
736
feaf1bf7 737img.inline
54ec15eb 738 height: 22px
feaf1bf7
BA
739 padding-top: 5px
740 @media screen and (max-width: 767px)
741 height: 18px
910d631b 742
0e16cb26
BA
743#turnIndicator
744 text-align: center
29bc61be 745 font-weight: bold
910d631b 746
72ccbd67 747#boardContainer
cf94b843 748 float: left
41c80bb6
BA
749// TODO: later, maybe, allow movesList of variable width
750// or e.g. between 250 and 350px (but more complicated)
910d631b 751
cf94b843
BA
752#movesList
753 width: 280px
754 float: left
910d631b 755
96e9585a
BA
756@media screen and (max-width: 767px)
757 #movesList
758 width: 100%
759 float: none
760 clear: both
72ccbd67 761</style>