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