3 input#modalEog.modal(type="checkbox")
6 data-checkbox="modalEog"
9 label.modal-close(for="modalEog")
10 h3.section {{ endgameMessage }}
16 :analyze="game.mode=='analyze'"
18 :user-color="game.mycolor"
19 :orientation="orientation"
24 #turnIndicator(v-if="showTurn") {{ turn }}
25 #controls.button-group
26 button(@click="gotoBegin()")
27 img.inline(src="/images/icons/fast-forward_rev.svg")
28 button(@click="undo()")
29 img.inline(src="/images/icons/play_rev.svg")
30 button(v-if="canFlip" @click="flip()")
31 img.inline(src="/images/icons/flip.svg")
32 button(@click="play()")
33 img.inline(src="/images/icons/play.svg")
34 button(@click="gotoEnd()")
35 img.inline(src="/images/icons/fast-forward.svg")
39 :canAnalyze="canAnalyze"
40 :canDownload="allowDownloadPGN"
42 :message="game.scoreMsg"
43 :firstNum="firstMoveNumber"
47 @showrules="showRules"
48 @analyze="analyzePosition"
55 import Board from "@/components/Board.vue";
56 import MoveList from "@/components/MoveList.vue";
57 import { store } from "@/store";
58 import { getSquareId } from "@/utils/squareId";
59 import { getDate } from "@/utils/datetime";
60 import { processModalClick } from "@/utils/modalClick";
61 import { getScoreMessage } from "@/utils/scoring";
62 import { getFullNotation } from "@/utils/notation";
63 import { undoMove } from "@/utils/playUndo";
74 // NOTE: all following variables must be reset at the beginning of a game
75 vr: null, //VariantRules object, game state
78 score: "*", //'*' means 'unfinished'
80 cursor: -1, //index of the move just played
82 firstMoveNumber: 0, //for printing
83 incheck: [], //for Board
90 showMoves: function() {
91 return this.game.score != "*"
93 : (this.vr ? this.vr.showMoves : "none");
95 showTurn: function() {
97 this.game.score == '*' &&
99 (this.vr.showMoves != "all" || !this.vr.canFlip)
105 if (this.vr.showMoves != "all")
106 return this.st.tr[(this.vr.turn == 'w' ? "White" : "Black") + " to move"]
107 // Cannot flip: racing king or circular chess
108 return this.vr.movesCount == 0 && this.game.mycolor == "w"
109 ? this.st.tr["It's your turn!"]
112 canAnalyze: function() {
113 return this.game.mode != "analyze" && this.vr && this.vr.canAnalyze;
115 canFlip: function() {
116 return this.vr && this.vr.canFlip;
118 allowDownloadPGN: function() {
119 return this.game.score != "*" || (this.vr && this.vr.showMoves == "all");
122 created: function() {
123 if (!!this.game.fenStart) this.re_setVariables();
125 mounted: function() {
126 if (!("ontouchstart" in window)) {
128 const baseGameDiv = document.getElementById("baseGame");
129 baseGameDiv.tabIndex = 0;
130 baseGameDiv.addEventListener("click", this.focusBg);
131 baseGameDiv.addEventListener("keydown", this.handleKeys);
132 baseGameDiv.addEventListener("wheel", this.handleScroll);
134 document.getElementById("eogDiv")
135 .addEventListener("click", processModalClick);
138 focusBg: function() {
139 document.getElementById("baseGame").focus();
141 handleKeys: function(e) {
142 if ([32, 37, 38, 39, 40].includes(e.keyCode)) e.preventDefault();
161 handleScroll: function(e) {
163 if (e.deltaY < 0) this.undo();
164 else if (e.deltaY > 0) this.play();
166 showRules: function() {
167 //this.$router.push("/variants/" + this.game.vname);
168 window.open("#/variants/" + this.game.vname, "_blank"); //better
170 re_setVariables: function(game) {
171 if (!game) game = this.game; //in case of...
172 this.endgameMessage = "";
173 // "w": default orientation for observed games
174 this.orientation = game.mycolor || "w";
175 this.moves = JSON.parse(JSON.stringify(game.moves || []));
176 // Post-processing: decorate each move with notation and FEN
177 this.vr = new V(game.fenStart);
178 const parsedFen = V.ParseFen(game.fenStart);
179 const firstMoveColor = parsedFen.turn;
180 this.firstMoveNumber = Math.floor(parsedFen.movesCount / 2);
181 this.moves.forEach(move => {
182 // Strategy working also for multi-moves:
183 if (!Array.isArray(move)) move = [move];
185 m.notation = this.vr.getNotation(m);
189 if (firstMoveColor == "b") {
190 // 'start' & 'end' is required for Board component
193 start: { x: -1, y: -1 },
194 end: { x: -1, y: -1 },
198 this.positionCursorTo(this.moves.length - 1);
199 this.incheck = this.vr.getCheckSquares(this.vr.turn);
201 positionCursorTo: function(index) {
203 // Caution: last move in moves array might be a multi-move
205 if (Array.isArray(this.moves[index])) {
206 const L = this.moves[index].length;
207 this.lastMove = this.moves[index][L - 1];
209 this.lastMove = this.moves[index];
211 } else this.lastMove = null;
213 analyzePosition: function() {
218 this.vr.getFen().replace(/ /g, "_");
219 if (this.game.mycolor)
220 newUrl += "&side=" + this.game.mycolor;
221 // Open in same tab in live games (against cheating)
222 if (this.game.type == "live") this.$router.push(newUrl);
223 else window.open("#" + newUrl);
225 download: function() {
226 const content = this.getPgn();
227 // Prepare and trigger download link
228 let downloadAnchor = document.getElementById("download");
229 downloadAnchor.setAttribute("download", "game.pgn");
230 downloadAnchor.href =
231 "data:text/plain;charset=utf-8," + encodeURIComponent(content);
232 downloadAnchor.click();
236 pgn += '[Site "vchess.club"]\n';
237 pgn += '[Variant "' + this.game.vname + '"]\n';
238 pgn += '[Date "' + getDate(new Date()) + '"]\n';
239 pgn += '[White "' + this.game.players[0].name + '"]\n';
240 pgn += '[Black "' + this.game.players[1].name + '"]\n';
241 pgn += '[Fen "' + this.game.fenStart + '"]\n';
242 pgn += '[Result "' + this.game.score + '"]\n\n';
243 for (let i = 0; i < this.moves.length; i += 2) {
244 pgn += (i/2+1) + "." + getFullNotation(this.moves[i]) + " ";
245 if (i+1 < this.moves.length)
246 pgn += getFullNotation(this.moves[i+1]) + " ";
250 showEndgameMsg: function(message) {
251 this.endgameMessage = message;
252 document.getElementById("modalEog").checked = true;
254 // Animate an elementary move
255 animateMove: function(move, callback) {
256 let startSquare = document.getElementById(getSquareId(move.start));
257 if (!startSquare) return; //shouldn't happen but...
258 let endSquare = document.getElementById(getSquareId(move.end));
259 let rectStart = startSquare.getBoundingClientRect();
260 let rectEnd = endSquare.getBoundingClientRect();
262 x: rectEnd.x - rectStart.x,
263 y: rectEnd.y - rectStart.y
265 let movingPiece = document.querySelector(
266 "#" + getSquareId(move.start) + " > img.piece"
268 // For some unknown reasons Opera get "movingPiece == null" error
269 // TOOO: is it calling 'animate()' twice ? One extra time ?
270 if (!movingPiece) return;
271 // HACK for animation (with positive translate, image slides "under background")
272 // Possible improvement: just alter squares on the piece's way...
273 const squares = document.getElementsByClassName("board");
274 for (let i = 0; i < squares.length; i++) {
275 let square = squares.item(i);
276 if (square.id != getSquareId(move.start)) square.style.zIndex = "-1";
278 movingPiece.style.transform =
279 "translate(" + translation.x + "px," + translation.y + "px)";
280 movingPiece.style.transitionDuration = "0.25s";
281 movingPiece.style.zIndex = "3000";
283 for (let i = 0; i < squares.length; i++)
284 squares.item(i).style.zIndex = "auto";
285 movingPiece.style = {}; //required e.g. for 0-0 with KR swap
290 emitFenIfAnalyze: function() {
291 if (this.game.mode == "analyze") {
294 !!this.lastMove ? this.lastMove.fen : this.game.fenStart
298 // "light": if gotoMove() or gotoEnd()
299 play: function(move, received, light, noemit) {
302 // Received moves in observed games can arrive too fast:
303 this.stackToPlay.unshift(move);
308 const navigate = !move;
309 const playSubmove = (smove) => {
310 if (!navigate) smove.notation = this.vr.getNotation(smove);
312 this.lastMove = smove;
314 if (!this.inMultimove) {
315 if (this.cursor < this.moves.length - 1)
316 this.moves = this.moves.slice(0, this.cursor + 1);
317 this.moves.push(smove);
318 this.inMultimove = true; //potentially
321 // Already in the middle of a multi-move
322 const L = this.moves.length;
323 if (!Array.isArray(this.moves[L-1]))
324 this.$set(this.moves, L-1, [this.moves[L-1], smove]);
326 this.$set(this.moves, L-1, this.moves.concat([smove]));
330 const playMove = () => {
331 const animate = V.ShowMoves == "all" && (received || navigate);
332 if (!Array.isArray(move)) move = [move];
335 const initurn = this.vr.turn;
336 (function executeMove() {
337 const smove = move[moveIdx++];
339 self.animateMove(smove, () => {
341 if (moveIdx < move.length)
342 setTimeout(executeMove, 500);
343 else afterMove(smove, initurn);
347 if (moveIdx < move.length) executeMove();
348 else afterMove(smove, initurn);
352 const afterMove = (smove, initurn) => {
353 if (this.vr.turn != initurn) {
354 // Turn has changed: move is complete
356 // NOTE: only FEN of last sub-move is required (thus setting it here)
357 smove.fen = this.vr.getFen();
358 // Is opponent in check?
359 this.incheck = this.vr.getCheckSquares(this.vr.turn);
360 this.emitFenIfAnalyze();
361 this.inMultimove = false;
363 var score = this.vr.getCurrentScore();
364 if (score != "*" && this.game.mode == "analyze") {
365 const message = getScoreMessage(score);
366 // Just show score on screen (allow undo)
367 this.showEndgameMsg(score + " . " + this.st.tr[message]);
370 if (!navigate && this.game.mode != "analyze") {
371 const L = this.moves.length;
373 // Post-processing (e.g. computer play).
374 // NOTE: always emit the score, even in unfinished,
375 // to tell Game::processMove() that it's not a received move.
376 this.$emit("newmove", this.moves[L-1], { score: score });
379 if (this.stackToPlay.length > 0)
380 // Move(s) arrived in-between
381 this.play(this.stackToPlay.pop(), received, light, noemit);
386 // NOTE: navigate and received are mutually exclusive
388 // The move to navigate to is necessarily full:
389 if (this.cursor == this.moves.length - 1) return; //no more moves
390 move = this.moves[this.cursor + 1];
392 // Just play the move, nothing else:
393 if (!Array.isArray(move)) move = [move];
394 for (let i=0; i < move.length; i++) this.vr.play(move[i]);
398 this.emitFenIfAnalyze();
403 // Forbid playing outside analyze mode, except if move is received.
404 // Sufficient condition because Board already knows which turn it is.
406 this.game.mode != "analyze" &&
408 (this.game.score != "*" || this.cursor < this.moves.length - 1)
412 // To play a received move, cursor must be at the end of the game:
413 if (received && this.cursor < this.moves.length - 1)
417 cancelCurrentMultimove: function() {
418 const L = this.moves.length;
419 let move = this.moves[L-1];
420 if (!Array.isArray(move)) move = [move];
421 for (let i=move.length -1; i >= 0; i--) this.vr.undo(move[i]);
424 this.inMultimove = false;
426 cancelLastMove: function() {
427 // The last played move was canceled (corr game)
431 // "light": if gotoMove() or gotoBegin()
432 undo: function(move, light) {
433 if (this.inMultimove) {
434 this.cancelCurrentMultimove();
435 this.incheck = this.vr.getCheckSquares(this.vr.turn);
439 this.moves.length > 0 && this.moves[0].notation == "..."
442 if (this.cursor < minCursor) return; //no more moves
443 move = this.moves[this.cursor];
445 undoMove(move, this.vr);
446 if (light) this.cursor--;
448 this.positionCursorTo(this.cursor - 1);
449 this.incheck = this.vr.getCheckSquares(this.vr.turn);
450 this.emitFenIfAnalyze();
454 gotoMove: function(index) {
455 if (this.inMultimove) this.cancelCurrentMultimove();
456 if (index == this.cursor) return;
457 if (index < this.cursor) {
458 while (this.cursor > index)
459 this.undo(null, null, "light");
462 // index > this.cursor)
463 while (this.cursor < index)
464 this.play(null, null, "light");
466 // NOTE: next line also re-assign cursor, but it's very light
467 this.positionCursorTo(index);
468 this.incheck = this.vr.getCheckSquares(this.vr.turn);
469 this.emitFenIfAnalyze();
471 gotoBegin: function() {
472 if (this.inMultimove) this.cancelCurrentMultimove();
474 this.moves.length > 0 && this.moves[0].notation == "..."
477 while (this.cursor >= minCursor) this.undo(null, null, "light");
478 this.lastMove = (minCursor == 1 ? this.moves[0] : null);
479 this.incheck = this.vr.getCheckSquares(this.vr.turn);
480 this.emitFenIfAnalyze();
482 gotoEnd: function() {
483 if (this.cursor == this.moves.length - 1) return;
484 this.gotoMove(this.moves.length - 1);
485 this.emitFenIfAnalyze();
488 this.orientation = V.GetOppCol(this.orientation);
494 <style lang="sass" scoped>
495 [type="checkbox"]#modalEog+div .card
508 display: inline-block
521 @media screen and (max-width: 767px)
530 // TODO: later, maybe, allow movesList of variable width
531 // or e.g. between 250 and 350px (but more complicated)
537 @media screen and (max-width: 767px)