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