Experimental in-place reorientation for Eightpieces + small fixes in BaseGame
[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;
1b56b736
BA
233 this.moves.forEach((move,idx) => {
234 // Strategy working also for multi-moves:
235 if (!Array.isArray(move)) move = [move];
236 move.forEach(m => {
237 m.notation = this.vr.getNotation(m);
238 m.unambiguous = V.GetUnambiguousNotation(m);
239 this.vr.play(m);
e71161fb 240 });
1b56b736
BA
241 const Lm = move.length;
242 move[Lm - 1].fen = this.vr.getFen();
243 if (idx < L - 1 && this.vr.getCheckSquares().length > 0)
244 move[Lm - 1].notation += "+";
245 });
246 this.incheck = this.vr.getCheckSquares();
247 this.score = this.vr.getCurrentScore();
248 if (L >= 1) {
249 const move =
250 !Array.isArray(this.moves[L - 1])
251 ? [this.moves[L - 1]]
252 : this.moves[L - 1];
253 const Lm = move.length;
254 if (["1-0", "0-1"].includes(this.score)) move[Lm - 1].notation += "#";
255 else if (this.incheck.length > 0) move[Lm - 1].notation += "+";
256 }
257 if (this.score != '*') {
258 // Show score on screen
259 const message = getScoreMessage(this.score);
260 this.showEndgameMsg(this.score + " . " + this.st.tr[message]);
6c7cbfed 261 }
8477e53d 262 if (firstMoveColor == "b") {
311cba76 263 // 'start' & 'end' is required for Board component
6808d7a1 264 this.moves.unshift({
6808d7a1 265 notation: "...",
2c5d7b20 266 unambiguous: "...",
311cba76 267 start: { x: -1, y: -1 },
3a2a7b5f
BA
268 end: { x: -1, y: -1 },
269 fen: game.fenStart
6808d7a1 270 });
f54f4c26 271 L++;
697ee580 272 }
af34341d 273 this.positionCursorTo(L - 1);
4b0384fa 274 },
e71161fb
BA
275 positionCursorTo: function(index) {
276 this.cursor = index;
af34341d
BA
277 // Note: last move in moves array might be a multi-move
278 if (index >= 0) this.lastMove = this.moves[index];
279 else this.lastMove = null;
e71161fb 280 },
07052665 281 toggleAnalyze: function() {
8506fc3b 282 // Freeze while choices are shown (and autoplay has priority)
b967d5ba
BA
283 if (
284 this.inPlay ||
285 this.$refs["board"].choices.length > 0 ||
286 this.autoplay
287 ) {
288 return;
289 }
07052665
BA
290 if (this.mode != "analyze") {
291 // Enter analyze mode:
596e24d0 292 this.gameMode = this.mode; //was not 'analyze'
b967d5ba 293 this.mode = "analyze";
e0f26496 294 if (this.inMultimove) this.cancelCurrentMultimove();
07052665
BA
295 this.gameCursor = this.cursor;
296 this.gameMoves = JSON.parse(JSON.stringify(this.moves));
297 document.getElementById("analyzeBtn").classList.add("active");
298 }
299 else {
300 // Exit analyze mode:
e50a8025 301 this.mode = this.gameMode;
07052665
BA
302 this.cursor = this.gameCursor;
303 this.moves = this.gameMoves;
304 let fen = this.game.fenStart;
305 if (this.cursor >= 0) {
306 let mv = this.moves[this.cursor];
307 if (!Array.isArray(mv)) mv = [mv];
308 fen = mv[mv.length-1].fen;
309 }
310 this.vr = new V(fen);
0e912cb2 311 this.inMultimove = false; //in case of
8506fc3b 312 this.$refs["board"].resetCurrentAttempt(); //also in case of
0f0552a7 313 this.incheck = this.vr.getCheckSquares();
8aa314fa
BA
314 if (this.cursor >= 0) this.lastMove = this.moves[this.cursor];
315 else this.lastMove = null;
07052665
BA
316 document.getElementById("analyzeBtn").classList.remove("active");
317 }
603b8a8b 318 },
a6088c90
BA
319 download: function() {
320 const content = this.getPgn();
321 // Prepare and trigger download link
322 let downloadAnchor = document.getElementById("download");
323 downloadAnchor.setAttribute("download", "game.pgn");
6808d7a1
BA
324 downloadAnchor.href =
325 "data:text/plain;charset=utf-8," + encodeURIComponent(content);
a6088c90
BA
326 downloadAnchor.click();
327 },
328 getPgn: function() {
329 let pgn = "";
330 pgn += '[Site "vchess.club"]\n';
834c202a 331 pgn += '[Variant "' + this.game.vname + '"]\n';
1ef65040
BA
332 const gdt = getDate(new Date(this.game.created || Date.now()));
333 pgn += '[Date "' + gdt + '"]\n';
d4036efe
BA
334 pgn += '[White "' + this.game.players[0].name + '"]\n';
335 pgn += '[Black "' + this.game.players[1].name + '"]\n';
834c202a 336 pgn += '[Fen "' + this.game.fenStart + '"]\n';
2c5d7b20 337 pgn += '[Result "' + this.game.score + '"]\n';
fef153df 338 if (!!this.game.id)
1ef65040 339 pgn += '[Url "' + params.serverUrl + '/game/' + this.game.id + '"]\n';
fef153df
BA
340 if (!!this.game.cadence)
341 pgn += '[Cadence "' + this.game.cadence + '"]\n';
2c5d7b20 342 pgn += '\n';
e71161fb 343 for (let i = 0; i < this.moves.length; i += 2) {
2c5d7b20 344 if (i > 0) pgn += " ";
49dad261
BA
345 // Adjust dots notation for a better display:
346 let fullNotation = getFullNotation(this.moves[i]);
347 if (fullNotation == "...") fullNotation = "..";
6e0c0bcb 348 pgn += (i / 2 + this.firstMoveNumber) + "." + fullNotation;
e71161fb 349 if (i+1 < this.moves.length)
2c5d7b20 350 pgn += " " + getFullNotation(this.moves[i+1]);
a6088c90 351 }
2c5d7b20
BA
352 pgn += "\n\n";
353 for (let i = 0; i < this.moves.length; i += 2) {
6e0c0bcb 354 const moveNumber = i / 2 + this.firstMoveNumber;
1ef65040
BA
355 // Skip "dots move", useless for machine reading:
356 if (this.moves[i].notation != "...") {
357 pgn += moveNumber + ".w " +
358 getFullNotation(this.moves[i], "unambiguous") + "\n";
359 }
49dad261 360 if (i+1 < this.moves.length) {
1ef65040 361 pgn += moveNumber + ".b " +
49dad261
BA
362 getFullNotation(this.moves[i+1], "unambiguous") + "\n";
363 }
2c5d7b20
BA
364 }
365 return pgn;
a6088c90 366 },
b988c726
BA
367 showEndgameMsg: function(message) {
368 this.endgameMessage = message;
aae89b49 369 document.getElementById("modalEog").checked = true;
a6088c90 370 },
54ec15eb 371 runAutoplay: function() {
54ec15eb
BA
372 if (this.autoplay) {
373 this.autoplay = false;
5b18515f
BA
374 if (this.stackToPlay.length > 0)
375 // Move(s) arrived in-between
376 this.play(this.stackToPlay.pop(), "received");
377 }
378 else if (this.cursor < this.moves.length - 1) {
54ec15eb 379 this.autoplay = true;
5fc82c80 380 this.play(null, null, null, "autoplay");
54ec15eb
BA
381 }
382 },
e71161fb 383 // Animate an elementary move
63ca2b89 384 animateMove: function(move, callback) {
a6088c90 385 let startSquare = document.getElementById(getSquareId(move.start));
f9c36b2d 386 if (!startSquare) return; //shouldn't happen but...
a6088c90
BA
387 let endSquare = document.getElementById(getSquareId(move.end));
388 let rectStart = startSquare.getBoundingClientRect();
389 let rectEnd = endSquare.getBoundingClientRect();
6808d7a1
BA
390 let translation = {
391 x: rectEnd.x - rectStart.x,
392 y: rectEnd.y - rectStart.y
393 };
394 let movingPiece = document.querySelector(
395 "#" + getSquareId(move.start) + " > img.piece"
396 );
efdfb4c7 397 // For some unknown reasons Opera get "movingPiece == null" error
2c5d7b20 398 // TODO: is it calling 'animate()' twice ? One extra time ?
efdfb4c7 399 if (!movingPiece) return;
a6088c90 400 const squares = document.getElementsByClassName("board");
6808d7a1 401 for (let i = 0; i < squares.length; i++) {
a6088c90 402 let square = squares.item(i);
2c5d7b20
BA
403 if (square.id != getSquareId(move.start))
404 // HACK for animation:
405 // (with positive translate, image slides "under background")
406 square.style.zIndex = "-1";
a6088c90 407 }
6808d7a1
BA
408 movingPiece.style.transform =
409 "translate(" + translation.x + "px," + translation.y + "px)";
910d631b 410 movingPiece.style.transitionDuration = "0.25s";
a6088c90 411 movingPiece.style.zIndex = "3000";
6808d7a1
BA
412 setTimeout(() => {
413 for (let i = 0; i < squares.length; i++)
a6088c90
BA
414 squares.item(i).style.zIndex = "auto";
415 movingPiece.style = {}; //required e.g. for 0-0 with KR swap
63ca2b89 416 callback();
a6088c90
BA
417 }, 250);
418 },
8055eabd
BA
419 // For Analyse mode:
420 emitFenIfAnalyze: function() {
421 if (this.game.mode == "analyze") {
af34341d
BA
422 let fen = this.game.fenStart;
423 if (!!this.lastMove) {
424 if (Array.isArray(this.lastMove)) {
425 const L = this.lastMove.length;
426 fen = this.lastMove[L-1].fen;
427 }
428 else fen = this.lastMove.fen;
429 }
430 this.$emit("fenchange", fen);
8055eabd
BA
431 }
432 },
61656127
BA
433 clickSquare: function(square) {
434 // Some variants make use of a single click at specific times:
1b56b736
BA
435 const move_s = this.vr.doClick(square);
436 if (!!move_s) {
437 if (!Array.isArray(move_s)) this.play(move_s);
438 else this.$refs["board"].choices = move_s;
439 }
61656127 440 },
e71161fb 441 // "light": if gotoMove() or gotoEnd()
5fc82c80 442 play: function(move, received, light, autoplay) {
a6836242 443 // Freeze while choices are shown:
6c7cbfed
BA
444 if (
445 !!this.$refs["board"].selectedPiece ||
446 this.$refs["board"].choices.length > 0
447 ) {
448 return;
449 }
d6289b54 450 const navigate = !move;
5fc82c80
BA
451 // Forbid navigation during autoplay:
452 if (navigate && this.autoplay && !autoplay) return;
d6289b54
BA
453 // Forbid playing outside analyze mode, except if move is received.
454 // Sufficient condition because Board already knows which turn it is.
455 if (
456 this.mode != "analyze" &&
457 !navigate &&
458 !received &&
459 (this.game.score != "*" || this.cursor < this.moves.length - 1)
460 ) {
461 return;
462 }
463 if (!!received) {
5b18515f
BA
464 if (this.autoplay || this.inPlay) {
465 // Received moves while autoplaying are stacked,
466 // and in observed games they could arrive too fast:
57eb158f
BA
467 this.stackToPlay.unshift(move);
468 return;
469 }
5b18515f
BA
470 if (this.mode == "analyze") this.toggleAnalyze();
471 if (this.cursor < this.moves.length - 1)
472 // To play a received move, cursor must be at the end of the game:
473 this.gotoEnd();
e50a8025 474 this.inPlay = true;
57eb158f 475 }
ad030c7d 476 // The board may show some possible moves: (TODO: bad solution)
d6289b54 477 this.$refs["board"].resetCurrentAttempt();
e71161fb 478 const playSubmove = (smove) => {
fbd68f75 479 smove.notation = this.vr.getNotation(smove);
2c5d7b20 480 smove.unambiguous = V.GetUnambiguousNotation(smove);
e71161fb 481 this.vr.play(smove);
07052665 482 if (this.inMultimove && !!this.lastMove) {
af34341d
BA
483 if (!Array.isArray(this.lastMove))
484 this.lastMove = [this.lastMove, smove];
485 else this.lastMove.push(smove);
486 }
fbd68f75 487 if (!this.inMultimove) {
af34341d
BA
488 // First sub-move:
489 this.lastMove = smove;
54ec15eb
BA
490 // Condition is "!navigate" but we mean "!this.autoplay"
491 if (!navigate) {
691d6952 492 if (this.cursor < this.moves.length - 1)
54ec15eb
BA
493 this.moves = this.moves.slice(0, this.cursor + 1);
494 this.moves.push(smove);
495 }
fbd68f75
BA
496 this.inMultimove = true; //potentially
497 this.cursor++;
54ec15eb 498 } else if (!navigate) {
fbd68f75
BA
499 // Already in the middle of a multi-move
500 const L = this.moves.length;
501 if (!Array.isArray(this.moves[L-1]))
502 this.$set(this.moves, L-1, [this.moves[L-1], smove]);
6e47d367 503 else this.moves[L-1].push(smove);
e71161fb
BA
504 }
505 };
506 const playMove = () => {
54ec15eb 507 const animate = (
57d9b2c4 508 ["all", "highlight"].includes(V.ShowMoves) &&
54ec15eb
BA
509 (this.autoplay || !!received)
510 );
e71161fb
BA
511 if (!Array.isArray(move)) move = [move];
512 let moveIdx = 0;
513 let self = this;
514 const initurn = this.vr.turn;
515 (function executeMove() {
516 const smove = move[moveIdx++];
ad1e629e 517 // NOTE: condition "smove.start.x >= 0" required for Dynamo,
596e24d0
BA
518 // because second move may be empty. noHighlight condition
519 // is used at least for Chakart.
520 if (animate && smove.start.x >= 0 && !smove.end.noHighlight) {
e71161fb
BA
521 self.animateMove(smove, () => {
522 playSubmove(smove);
5b18515f 523 if (moveIdx < move.length) setTimeout(executeMove, 500);
e71161fb
BA
524 else afterMove(smove, initurn);
525 });
526 } else {
527 playSubmove(smove);
528 if (moveIdx < move.length) executeMove();
529 else afterMove(smove, initurn);
530 }
531 })();
532 };
fbd68f75
BA
533 const computeScore = () => {
534 const score = this.vr.getCurrentScore();
f54f4c26 535 if (!navigate) {
5b18515f 536 if (["1-0", "0-1"].includes(score)) {
af34341d
BA
537 if (Array.isArray(this.lastMove)) {
538 const L = this.lastMove.length;
539 this.lastMove[L - 1].notation += "#";
540 }
541 else this.lastMove.notation += "#";
542 }
f54f4c26 543 }
ff3a8d16 544 if (score != "*" && ["analyze", "versus"].includes(this.mode)) {
fbd68f75 545 const message = getScoreMessage(score);
ff3a8d16 546 // Show score on screen
fbd68f75
BA
547 this.showEndgameMsg(score + " . " + this.st.tr[message]);
548 }
549 return score;
550 };
e71161fb 551 const afterMove = (smove, initurn) => {
e71161fb
BA
552 if (this.vr.turn != initurn) {
553 // Turn has changed: move is complete
3a2a7b5f 554 if (!smove.fen)
2c5d7b20 555 // NOTE: only FEN of last sub-move is required (=> setting it here)
cc00b83c 556 smove.fen = this.vr.getFen();
3a2a7b5f 557 this.emitFenIfAnalyze();
e71161fb 558 this.inMultimove = false;
1b56b736
BA
559 this.incheck = this.vr.getCheckSquares();
560 if (this.incheck.length > 0) smove.notation += "+";
f54f4c26 561 this.score = computeScore();
5b18515f
BA
562 if (this.autoplay) {
563 if (this.cursor < this.moves.length - 1)
5fc82c80 564 setTimeout(() => this.play(null, null, null, "autoplay"), 1000);
5b18515f
BA
565 else {
566 this.autoplay = false;
567 if (this.stackToPlay.length > 0)
568 // Move(s) arrived in-between
569 this.play(this.stackToPlay.pop(), "received");
570 }
571 }
07052665 572 if (this.mode != "analyze" && !navigate) {
5b18515f 573 if (!received) {
5aa14a21 574 // Post-processing (e.g. computer play).
f54f4c26 575 const L = this.moves.length;
5b18515f 576 // NOTE: always emit the score, even in unfinished
f54f4c26
BA
577 this.$emit("newmove", this.moves[L-1], { score: this.score });
578 } else {
57eb158f
BA
579 this.inPlay = false;
580 if (this.stackToPlay.length > 0)
581 // Move(s) arrived in-between
5b18515f 582 this.play(this.stackToPlay.pop(), "received");
57eb158f 583 }
e71161fb
BA
584 }
585 }
586 };
587 // NOTE: navigate and received are mutually exclusive
588 if (navigate) {
589 // The move to navigate to is necessarily full:
590 if (this.cursor == this.moves.length - 1) return; //no more moves
591 move = this.moves[this.cursor + 1];
54ec15eb
BA
592 if (!this.autoplay) {
593 // Just play the move:
594 if (!Array.isArray(move)) move = [move];
595 for (let i=0; i < move.length; i++) this.vr.play(move[i]);
596 if (!light) {
af34341d
BA
597 this.lastMove = move;
598 this.incheck = this.vr.getCheckSquares();
54ec15eb
BA
599 this.score = computeScore();
600 this.emitFenIfAnalyze();
601 }
602 this.cursor++;
603 return;
8055eabd 604 }
e71161fb 605 }
e71161fb
BA
606 playMove();
607 },
608 cancelCurrentMultimove: function() {
e71161fb
BA
609 const L = this.moves.length;
610 let move = this.moves[L-1];
611 if (!Array.isArray(move)) move = [move];
93ce6119 612 for (let i = move.length - 1; i >= 0; i--) this.vr.undo(move[i]);
e71161fb
BA
613 this.moves.pop();
614 this.cursor--;
615 this.inMultimove = false;
616 },
617 cancelLastMove: function() {
618 // The last played move was canceled (corr game)
619 this.undo();
620 this.moves.pop();
621 },
622 // "light": if gotoMove() or gotoBegin()
623 undo: function(move, light) {
6c7cbfed
BA
624 if (
625 this.autoplay ||
626 !!this.$refs["board"].selectedPiece ||
627 this.$refs["board"].choices.length > 0
628 ) {
629 return;
630 }
93ce6119 631 this.$refs["board"].resetCurrentAttempt();
e71161fb
BA
632 if (this.inMultimove) {
633 this.cancelCurrentMultimove();
af34341d 634 this.incheck = this.vr.getCheckSquares();
c3f02a0e
BA
635 if (this.cursor >= 0) this.lastMove = this.moves[this.cursor];
636 else this.lastMove = null;
e71161fb
BA
637 } else {
638 if (!move) {
3a2a7b5f
BA
639 const minCursor =
640 this.moves.length > 0 && this.moves[0].notation == "..."
641 ? 1
642 : 0;
643 if (this.cursor < minCursor) return; //no more moves
e71161fb
BA
644 move = this.moves[this.cursor];
645 }
93ce6119 646 this.$refs["board"].resetCurrentAttempt();
e71161fb
BA
647 undoMove(move, this.vr);
648 if (light) this.cursor--;
649 else {
650 this.positionCursorTo(this.cursor - 1);
af34341d 651 this.incheck = this.vr.getCheckSquares();
8055eabd 652 this.emitFenIfAnalyze();
63ca2b89 653 }
a6088c90 654 }
a6088c90
BA
655 },
656 gotoMove: function(index) {
6c7cbfed
BA
657 if (
658 this.autoplay ||
659 !!this.$refs["board"].selectedPiece ||
660 this.$refs["board"].choices.length > 0
661 ) {
662 return;
663 }
93ce6119 664 this.$refs["board"].resetCurrentAttempt();
e71161fb
BA
665 if (this.inMultimove) this.cancelCurrentMultimove();
666 if (index == this.cursor) return;
667 if (index < this.cursor) {
668 while (this.cursor > index)
669 this.undo(null, null, "light");
670 }
671 else {
672 // index > this.cursor)
673 while (this.cursor < index)
674 this.play(null, null, "light");
675 }
676 // NOTE: next line also re-assign cursor, but it's very light
677 this.positionCursorTo(index);
af34341d 678 this.incheck = this.vr.getCheckSquares();
8055eabd 679 this.emitFenIfAnalyze();
a6088c90
BA
680 },
681 gotoBegin: function() {
6c7cbfed
BA
682 if (
683 this.autoplay ||
684 !!this.$refs["board"].selectedPiece ||
685 this.$refs["board"].choices.length > 0
686 ) {
687 return;
688 }
93ce6119 689 this.$refs["board"].resetCurrentAttempt();
e71161fb 690 if (this.inMultimove) this.cancelCurrentMultimove();
3a2a7b5f
BA
691 const minCursor =
692 this.moves.length > 0 && this.moves[0].notation == "..."
693 ? 1
694 : 0;
695 while (this.cursor >= minCursor) this.undo(null, null, "light");
696 this.lastMove = (minCursor == 1 ? this.moves[0] : null);
af34341d 697 this.incheck = this.vr.getCheckSquares();
8055eabd 698 this.emitFenIfAnalyze();
a6088c90
BA
699 },
700 gotoEnd: function() {
6808d7a1
BA
701 if (this.cursor == this.moves.length - 1) return;
702 this.gotoMove(this.moves.length - 1);
a6088c90
BA
703 },
704 flip: function() {
a6836242 705 if (this.$refs["board"].choices.length > 0) return;
0e16cb26 706 this.orientation = V.GetOppCol(this.orientation);
6808d7a1
BA
707 }
708 }
a6088c90
BA
709};
710</script>
72ccbd67 711
41c80bb6 712<style lang="sass" scoped>
9a3049f3
BA
713[type="checkbox"]#modalEog+div .card
714 min-height: 45px
a06fc4ba 715 max-width: 350px
910d631b 716
cf94b843
BA
717#baseGame
718 width: 100%
4f518610
BA
719 &:focus
720 outline: none
cf94b843
BA
721
722#gameContainer
72ccbd67
BA
723 margin-left: auto
724 margin-right: auto
cf94b843 725
ed06d9e9
BA
726#downloadDiv
727 display: inline-block
728
72ccbd67 729#controls
28b32b4f 730 user-select: none
72ccbd67 731 button
b1e46b33 732 border: none
72ccbd67 733 margin: 0
feaf1bf7
BA
734 padding-top: 5px
735 padding-bottom: 5px
736
5fc82c80
BA
737p#fenAnalyze
738 margin: 5px
739
54ec15eb
BA
740.in-autoplay
741 background-color: #FACF8C
742
feaf1bf7 743img.inline
54ec15eb 744 height: 22px
feaf1bf7
BA
745 padding-top: 5px
746 @media screen and (max-width: 767px)
747 height: 18px
910d631b 748
0e16cb26
BA
749#turnIndicator
750 text-align: center
29bc61be 751 font-weight: bold
910d631b 752
72ccbd67 753#boardContainer
cf94b843 754 float: left
41c80bb6
BA
755// TODO: later, maybe, allow movesList of variable width
756// or e.g. between 250 and 350px (but more complicated)
910d631b 757
cf94b843
BA
758#movesList
759 width: 280px
760 float: left
910d631b 761
96e9585a
BA
762@media screen and (max-width: 767px)
763 #movesList
764 width: 100%
765 float: none
766 clear: both
72ccbd67 767</style>