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