Commit | Line | Data |
---|---|---|
a6088c90 | 1 | <template lang="pug"> |
e71161fb | 2 | div#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 BA |
13 | Board( |
14 | :vr="vr" | |
15 | :last-move="lastMove" | |
20620465 BA |
16 | :analyze="game.mode=='analyze'" |
17 | :score="game.score" | |
6808d7a1 BA |
18 | :user-color="game.mycolor" |
19 | :orientation="orientation" | |
20 | :vname="game.vname" | |
21 | :incheck="incheck" | |
22 | @play-move="play" | |
23 | ) | |
20620465 | 24 | #turnIndicator(v-if="showTurn") {{ turn }} |
cf94b843 | 25 | #controls |
b9a5fe01 BA |
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") | |
bd76b456 | 36 | #belowControls |
20620465 | 37 | #downloadDiv(v-if="allowDownloadPGN") |
4f518610 | 38 | a#download(href="#") |
9ddaf8da | 39 | button(@click="download()") {{ st.tr["Download"] }} PGN |
6808d7a1 | 40 | button( |
20620465 | 41 | v-if="canAnalyze" |
6808d7a1 BA |
42 | @click="analyzePosition()" |
43 | ) | |
677fe285 | 44 | | {{ st.tr["Analyse"] }} |
20620465 | 45 | // NOTE: variants pages already have a "Rules" link on top |
6808d7a1 BA |
46 | button( |
47 | v-if="!$route.path.match('/variants/')" | |
48 | @click="showRules()" | |
49 | ) | |
4f518610 | 50 | | {{ st.tr["Rules"] }} |
cf94b843 | 51 | #movesList |
6808d7a1 | 52 | MoveList( |
933fd1f9 | 53 | :show="showMoves" |
6808d7a1 BA |
54 | :score="game.score" |
55 | :message="game.scoreMsg" | |
56 | :firstNum="firstMoveNumber" | |
57 | :moves="moves" | |
58 | :cursor="cursor" | |
59 | @goto-move="gotoMove" | |
60 | ) | |
41c80bb6 | 61 | .clearer |
a6088c90 BA |
62 | </template> |
63 | ||
64 | <script> | |
65 | import Board from "@/components/Board.vue"; | |
f21cd6d9 | 66 | import MoveList from "@/components/MoveList.vue"; |
a6088c90 BA |
67 | import { store } from "@/store"; |
68 | import { getSquareId } from "@/utils/squareId"; | |
d4036efe | 69 | import { getDate } from "@/utils/datetime"; |
602d6bef | 70 | import { processModalClick } from "@/utils/modalClick"; |
77c50966 | 71 | import { getScoreMessage } from "@/utils/scoring"; |
e71161fb BA |
72 | import { getFullNotation } from "@/utils/notation"; |
73 | import { undoMove } from "@/utils/playUndo"; | |
a6088c90 | 74 | export 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", | |
88 | score: "*", //'*' means 'unfinished' | |
b7c32f1a | 89 | moves: [], |
e71161fb | 90 | // TODO: later, use subCursor to navigate intra-multimoves? |
a6088c90 BA |
91 | cursor: -1, //index of the move just played |
92 | lastMove: null, | |
5157ce0b | 93 | firstMoveNumber: 0, //for printing |
e71161fb BA |
94 | incheck: [], //for Board |
95 | inMultimove: false | |
a6088c90 BA |
96 | }; |
97 | }, | |
37cdcbf3 | 98 | watch: { |
834c202a BA |
99 | // game initial FEN changes when a new game starts |
100 | "game.fenStart": function() { | |
4b0384fa | 101 | this.re_setVariables(); |
37cdcbf3 BA |
102 | }, |
103 | }, | |
a6088c90 BA |
104 | computed: { |
105 | showMoves: function() { | |
933fd1f9 BA |
106 | return this.game.score != "*" |
107 | ? "all" | |
108 | : (this.vr ? this.vr.showMoves : "none"); | |
20620465 BA |
109 | }, |
110 | showTurn: function() { | |
71ef1664 BA |
111 | return ( |
112 | this.game.score == '*' && | |
113 | this.vr && | |
114 | (this.vr.showMoves != "all" || !this.vr.canFlip) | |
115 | ); | |
a6088c90 | 116 | }, |
58ae6be5 | 117 | turn: function() { |
71ef1664 BA |
118 | if (!this.vr) |
119 | return ""; | |
120 | if (this.vr.showMoves != "all") | |
121 | return this.st.tr[(this.vr.turn == 'w' ? "White" : "Black") + " to move"] | |
122 | // Cannot flip: racing king or circular chess | |
123 | return this.vr.movesCount == 0 && this.game.mycolor == "w" | |
124 | ? this.st.tr["It's your turn!"] | |
a13cbc0f | 125 | : ""; |
58ae6be5 | 126 | }, |
20620465 | 127 | canAnalyze: function() { |
933fd1f9 | 128 | return this.game.mode != "analyze" && this.vr && this.vr.canAnalyze; |
20620465 | 129 | }, |
71ef1664 BA |
130 | canFlip: function() { |
131 | return this.vr && this.vr.canFlip; | |
132 | }, | |
20620465 | 133 | allowDownloadPGN: function() { |
933fd1f9 | 134 | return this.game.score != "*" || (this.vr && this.vr.showMoves == "all"); |
6808d7a1 | 135 | } |
a6088c90 | 136 | }, |
4b0384fa | 137 | created: function() { |
6808d7a1 | 138 | if (this.game.fenStart) this.re_setVariables(); |
4b0384fa | 139 | }, |
cf94b843 | 140 | mounted: function() { |
e71161fb BA |
141 | if (!("ontouchstart" in window)) { |
142 | // Desktop browser: | |
143 | const baseGameDiv = document.getElementById("baseGame"); | |
144 | baseGameDiv.tabIndex = 0; | |
145 | baseGameDiv.addEventListener("click", this.focusBg); | |
146 | baseGameDiv.addEventListener("keydown", this.handleKeys); | |
147 | baseGameDiv.addEventListener("wheel", this.handleScroll); | |
148 | } | |
5b3dc10e BA |
149 | document.getElementById("eogDiv").addEventListener( |
150 | "click", | |
151 | processModalClick); | |
cf94b843 | 152 | }, |
a6088c90 | 153 | methods: { |
9ca1e26b | 154 | focusBg: function() { |
9ca1e26b BA |
155 | document.getElementById("baseGame").focus(); |
156 | }, | |
157 | handleKeys: function(e) { | |
6808d7a1 BA |
158 | if ([32, 37, 38, 39, 40].includes(e.keyCode)) e.preventDefault(); |
159 | switch (e.keyCode) { | |
9ca1e26b BA |
160 | case 37: |
161 | this.undo(); | |
162 | break; | |
163 | case 39: | |
164 | this.play(); | |
165 | break; | |
5701c228 | 166 | case 38: |
9ca1e26b BA |
167 | this.gotoBegin(); |
168 | break; | |
169 | case 40: | |
170 | this.gotoEnd(); | |
171 | break; | |
172 | case 32: | |
9ca1e26b BA |
173 | this.flip(); |
174 | break; | |
175 | } | |
176 | }, | |
dcd68c41 | 177 | handleScroll: function(e) { |
e71161fb BA |
178 | e.preventDefault(); |
179 | if (e.deltaY < 0) this.undo(); | |
180 | else if (e.deltaY > 0) this.play(); | |
dcd68c41 | 181 | }, |
0e16cb26 BA |
182 | showRules: function() { |
183 | //this.$router.push("/variants/" + this.game.vname); | |
184 | window.open("#/variants/" + this.game.vname, "_blank"); //better | |
185 | }, | |
4b0384fa BA |
186 | re_setVariables: function() { |
187 | this.endgameMessage = ""; | |
8477e53d BA |
188 | // "w": default orientation for observed games |
189 | this.orientation = this.game.mycolor || "w"; | |
4b0384fa | 190 | this.moves = JSON.parse(JSON.stringify(this.game.moves || [])); |
e71161fb BA |
191 | // Post-processing: decorate each move with notation and FEN |
192 | this.vr = new V(this.game.fenStart); | |
8477e53d BA |
193 | const parsedFen = V.ParseFen(this.game.fenStart); |
194 | const firstMoveColor = parsedFen.turn; | |
195 | this.firstMoveNumber = Math.floor(parsedFen.movesCount / 2); | |
d4036efe | 196 | this.moves.forEach(move => { |
e71161fb BA |
197 | // Strategy working also for multi-moves: |
198 | if (!Array.isArray(move)) move = [move]; | |
199 | move.forEach(m => { | |
200 | m.notation = this.vr.getNotation(m); | |
201 | this.vr.play(m); | |
202 | }); | |
d4036efe | 203 | }); |
8477e53d | 204 | if (firstMoveColor == "b") { |
311cba76 | 205 | // 'start' & 'end' is required for Board component |
6808d7a1 | 206 | this.moves.unshift({ |
6808d7a1 | 207 | notation: "...", |
311cba76 | 208 | start: { x: -1, y: -1 }, |
6808d7a1 BA |
209 | end: { x: -1, y: -1 } |
210 | }); | |
697ee580 | 211 | } |
e71161fb | 212 | this.positionCursorTo(this.moves.length - 1); |
9ef63965 | 213 | this.incheck = this.vr.getCheckSquares(this.vr.turn); |
4b0384fa | 214 | }, |
e71161fb BA |
215 | positionCursorTo: function(index) { |
216 | this.cursor = index; | |
217 | // Caution: last move in moves array might be a multi-move | |
218 | if (index >= 0) { | |
219 | if (Array.isArray(this.moves[index])) { | |
220 | const L = this.moves[index].length; | |
221 | this.lastMove = this.moves[index][L - 1]; | |
222 | } else { | |
223 | this.lastMove = this.moves[index]; | |
224 | } | |
225 | } | |
226 | else | |
227 | this.lastMove = null; | |
228 | }, | |
63ca2b89 | 229 | analyzePosition: function() { |
7ba4a5bc | 230 | let newUrl = |
6808d7a1 BA |
231 | "/analyse/" + |
232 | this.game.vname + | |
233 | "/?fen=" + | |
234 | this.vr.getFen().replace(/ /g, "_"); | |
7ba4a5bc BA |
235 | if (this.game.mycolor) |
236 | newUrl += "&side=" + this.game.mycolor; | |
910d631b | 237 | // Open in same tab in live games (against cheating) |
6808d7a1 | 238 | if (this.game.type == "live") this.$router.push(newUrl); |
910d631b | 239 | else window.open("#" + newUrl); |
603b8a8b | 240 | }, |
a6088c90 BA |
241 | download: function() { |
242 | const content = this.getPgn(); | |
243 | // Prepare and trigger download link | |
244 | let downloadAnchor = document.getElementById("download"); | |
245 | downloadAnchor.setAttribute("download", "game.pgn"); | |
6808d7a1 BA |
246 | downloadAnchor.href = |
247 | "data:text/plain;charset=utf-8," + encodeURIComponent(content); | |
a6088c90 BA |
248 | downloadAnchor.click(); |
249 | }, | |
250 | getPgn: function() { | |
251 | let pgn = ""; | |
252 | pgn += '[Site "vchess.club"]\n'; | |
834c202a | 253 | pgn += '[Variant "' + this.game.vname + '"]\n'; |
a6088c90 | 254 | pgn += '[Date "' + getDate(new Date()) + '"]\n'; |
d4036efe BA |
255 | pgn += '[White "' + this.game.players[0].name + '"]\n'; |
256 | pgn += '[Black "' + this.game.players[1].name + '"]\n'; | |
834c202a | 257 | pgn += '[Fen "' + this.game.fenStart + '"]\n'; |
430a2038 | 258 | pgn += '[Result "' + this.game.score + '"]\n\n'; |
e71161fb BA |
259 | for (let i = 0; i < this.moves.length; i += 2) { |
260 | pgn += (i/2+1) + "." + getFullNotation(this.moves[i]) + " "; | |
261 | if (i+1 < this.moves.length) | |
262 | pgn += getFullNotation(this.moves[i+1]) + " "; | |
a6088c90 BA |
263 | } |
264 | return pgn + "\n"; | |
265 | }, | |
b988c726 BA |
266 | showEndgameMsg: function(message) { |
267 | this.endgameMessage = message; | |
4494c17c | 268 | let modalBox = document.getElementById("modalEog"); |
a6088c90 | 269 | modalBox.checked = true; |
6808d7a1 BA |
270 | setTimeout(() => { |
271 | modalBox.checked = false; | |
272 | }, 2000); | |
a6088c90 | 273 | }, |
e71161fb | 274 | // Animate an elementary move |
63ca2b89 | 275 | animateMove: function(move, callback) { |
a6088c90 | 276 | let startSquare = document.getElementById(getSquareId(move.start)); |
f9c36b2d | 277 | if (!startSquare) return; //shouldn't happen but... |
a6088c90 BA |
278 | let endSquare = document.getElementById(getSquareId(move.end)); |
279 | let rectStart = startSquare.getBoundingClientRect(); | |
280 | let rectEnd = endSquare.getBoundingClientRect(); | |
6808d7a1 BA |
281 | let translation = { |
282 | x: rectEnd.x - rectStart.x, | |
283 | y: rectEnd.y - rectStart.y | |
284 | }; | |
285 | let movingPiece = document.querySelector( | |
286 | "#" + getSquareId(move.start) + " > img.piece" | |
287 | ); | |
efdfb4c7 BA |
288 | // For some unknown reasons Opera get "movingPiece == null" error |
289 | // TOOO: is it calling 'animate()' twice ? One extra time ? | |
290 | if (!movingPiece) return; | |
a6088c90 BA |
291 | // HACK for animation (with positive translate, image slides "under background") |
292 | // Possible improvement: just alter squares on the piece's way... | |
293 | const squares = document.getElementsByClassName("board"); | |
6808d7a1 | 294 | for (let i = 0; i < squares.length; i++) { |
a6088c90 | 295 | let square = squares.item(i); |
6808d7a1 | 296 | if (square.id != getSquareId(move.start)) square.style.zIndex = "-1"; |
a6088c90 | 297 | } |
6808d7a1 BA |
298 | movingPiece.style.transform = |
299 | "translate(" + translation.x + "px," + translation.y + "px)"; | |
910d631b | 300 | movingPiece.style.transitionDuration = "0.25s"; |
a6088c90 | 301 | movingPiece.style.zIndex = "3000"; |
6808d7a1 BA |
302 | setTimeout(() => { |
303 | for (let i = 0; i < squares.length; i++) | |
a6088c90 BA |
304 | squares.item(i).style.zIndex = "auto"; |
305 | movingPiece.style = {}; //required e.g. for 0-0 with KR swap | |
63ca2b89 | 306 | callback(); |
a6088c90 BA |
307 | }, 250); |
308 | }, | |
8055eabd BA |
309 | // For Analyse mode: |
310 | emitFenIfAnalyze: function() { | |
311 | if (this.game.mode == "analyze") { | |
312 | this.$emit( | |
313 | "fenchange", | |
314 | this.lastMove ? this.lastMove.fen : this.game.fenStart | |
315 | ); | |
316 | } | |
317 | }, | |
e71161fb BA |
318 | // "light": if gotoMove() or gotoEnd() |
319 | // data: some custom data (addTime) to be re-emitted | |
320 | play: function(move, received, light, data) { | |
9d54ab89 | 321 | const navigate = !move; |
e71161fb BA |
322 | const playSubmove = (smove) => { |
323 | if (!navigate) smove.notation = this.vr.getNotation(smove); | |
324 | this.vr.play(smove); | |
325 | this.lastMove = smove; | |
326 | // Is opponent in check? | |
327 | this.incheck = this.vr.getCheckSquares(this.vr.turn); | |
328 | if (!navigate) { | |
329 | if (!this.inMultimove) { | |
330 | if (this.cursor < this.moves.length - 1) | |
8055eabd | 331 | this.moves = this.moves.slice(0, this.cursor + 1); |
e71161fb BA |
332 | this.moves.push(smove); |
333 | this.inMultimove = true; //potentially | |
334 | this.cursor++; | |
335 | } else { | |
336 | // Already in the middle of a multi-move | |
337 | const L = this.moves.length; | |
338 | if (!Array.isArray(this.moves[L-1])) | |
339 | this.$set(this.moves, L-1, [this.moves[L-1], smove]); | |
340 | else | |
341 | this.$set(this.moves, L-1, this.moves.concat([smove])); | |
342 | } | |
343 | } | |
344 | }; | |
345 | const playMove = () => { | |
7ba4a5bc | 346 | const animate = V.ShowMoves == "all" && (received || navigate); |
e71161fb BA |
347 | if (!Array.isArray(move)) move = [move]; |
348 | let moveIdx = 0; | |
349 | let self = this; | |
350 | const initurn = this.vr.turn; | |
351 | (function executeMove() { | |
352 | const smove = move[moveIdx++]; | |
353 | if (animate) { | |
354 | self.animateMove(smove, () => { | |
355 | playSubmove(smove); | |
356 | if (moveIdx < move.length) | |
357 | setTimeout(executeMove, 500); | |
358 | else afterMove(smove, initurn); | |
359 | }); | |
360 | } else { | |
361 | playSubmove(smove); | |
362 | if (moveIdx < move.length) executeMove(); | |
363 | else afterMove(smove, initurn); | |
364 | } | |
365 | })(); | |
366 | }; | |
367 | const afterMove = (smove, initurn) => { | |
e71161fb BA |
368 | if (this.vr.turn != initurn) { |
369 | // Turn has changed: move is complete | |
e891730f | 370 | if (!smove.fen) { |
cc00b83c BA |
371 | // NOTE: only FEN of last sub-move is required (thus setting it here) |
372 | smove.fen = this.vr.getFen(); | |
e891730f BA |
373 | this.emitFenIfAnalyze(); |
374 | } | |
e71161fb BA |
375 | this.inMultimove = false; |
376 | const score = this.vr.getCurrentScore(); | |
377 | if (score != "*") { | |
378 | const message = getScoreMessage(score); | |
379 | if (!navigate && this.game.mode != "analyze") | |
380 | this.$emit("gameover", score, message); | |
e533e1ba BA |
381 | else if (this.game.mode == "analyze") |
382 | // Just show score on screen (allow undo) | |
383 | this.showEndgameMsg(score + " . " + this.st.tr[message]); | |
e71161fb BA |
384 | } |
385 | if (!navigate && this.game.mode != "analyze") { | |
386 | const L = this.moves.length; | |
387 | // Post-processing (e.g. computer play) | |
388 | this.$emit("newmove", this.moves[L-1], data); | |
389 | } | |
390 | } | |
391 | }; | |
392 | // NOTE: navigate and received are mutually exclusive | |
393 | if (navigate) { | |
394 | // The move to navigate to is necessarily full: | |
395 | if (this.cursor == this.moves.length - 1) return; //no more moves | |
396 | move = this.moves[this.cursor + 1]; | |
397 | if (light) { | |
398 | // Just play the move, nothing else: | |
399 | if (!Array.isArray(move)) move = [move]; | |
400 | for (let i=0; i < move.length; i++) this.vr.play(move[i]); | |
401 | } | |
8055eabd BA |
402 | else { |
403 | playMove(); | |
404 | this.emitFenIfAnalyze(); | |
405 | } | |
e71161fb BA |
406 | this.cursor++; |
407 | return; | |
408 | } | |
63ca2b89 BA |
409 | // Forbid playing outside analyze mode, except if move is received. |
410 | // Sufficient condition because Board already knows which turn it is. | |
6808d7a1 | 411 | if ( |
6808d7a1 | 412 | this.game.mode != "analyze" && |
e71161fb | 413 | !received && |
6808d7a1 BA |
414 | (this.game.score != "*" || this.cursor < this.moves.length - 1) |
415 | ) { | |
a6088c90 BA |
416 | return; |
417 | } | |
e71161fb BA |
418 | // To play a received move, cursor must be at the end of the game: |
419 | if (received && this.cursor < this.moves.length - 1) | |
420 | this.gotoEnd(); | |
421 | playMove(); | |
422 | }, | |
423 | cancelCurrentMultimove: function() { | |
e71161fb BA |
424 | const L = this.moves.length; |
425 | let move = this.moves[L-1]; | |
426 | if (!Array.isArray(move)) move = [move]; | |
427 | for (let i=move.length -1; i >= 0; i--) this.vr.undo(move[i]); | |
428 | this.moves.pop(); | |
429 | this.cursor--; | |
430 | this.inMultimove = false; | |
431 | }, | |
432 | cancelLastMove: function() { | |
433 | // The last played move was canceled (corr game) | |
434 | this.undo(); | |
435 | this.moves.pop(); | |
436 | }, | |
437 | // "light": if gotoMove() or gotoBegin() | |
438 | undo: function(move, light) { | |
439 | if (this.inMultimove) { | |
440 | this.cancelCurrentMultimove(); | |
63ca2b89 | 441 | this.incheck = this.vr.getCheckSquares(this.vr.turn); |
e71161fb BA |
442 | } else { |
443 | if (!move) { | |
444 | if (this.cursor < 0) return; //no more moves | |
445 | move = this.moves[this.cursor]; | |
446 | } | |
447 | // Caution; if multi-move, undo all submoves from last to first | |
448 | undoMove(move, this.vr); | |
449 | if (light) this.cursor--; | |
450 | else { | |
451 | this.positionCursorTo(this.cursor - 1); | |
e71161fb | 452 | this.incheck = this.vr.getCheckSquares(this.vr.turn); |
8055eabd | 453 | this.emitFenIfAnalyze(); |
63ca2b89 | 454 | } |
a6088c90 | 455 | } |
a6088c90 BA |
456 | }, |
457 | gotoMove: function(index) { | |
e71161fb BA |
458 | if (this.inMultimove) this.cancelCurrentMultimove(); |
459 | if (index == this.cursor) return; | |
460 | if (index < this.cursor) { | |
461 | while (this.cursor > index) | |
462 | this.undo(null, null, "light"); | |
463 | } | |
464 | else { | |
465 | // index > this.cursor) | |
466 | while (this.cursor < index) | |
467 | this.play(null, null, "light"); | |
468 | } | |
469 | // NOTE: next line also re-assign cursor, but it's very light | |
470 | this.positionCursorTo(index); | |
8b405c81 | 471 | this.incheck = this.vr.getCheckSquares(this.vr.turn); |
8055eabd | 472 | this.emitFenIfAnalyze(); |
a6088c90 BA |
473 | }, |
474 | gotoBegin: function() { | |
e71161fb BA |
475 | if (this.inMultimove) this.cancelCurrentMultimove(); |
476 | while (this.cursor >= 0) | |
477 | this.undo(null, null, "light"); | |
6808d7a1 | 478 | if (this.moves.length > 0 && this.moves[0].notation == "...") { |
5701c228 BA |
479 | this.cursor = 0; |
480 | this.lastMove = this.moves[0]; | |
6808d7a1 | 481 | } else { |
5701c228 BA |
482 | this.lastMove = null; |
483 | } | |
e71161fb | 484 | this.incheck = []; |
8055eabd | 485 | this.emitFenIfAnalyze(); |
a6088c90 BA |
486 | }, |
487 | gotoEnd: function() { | |
6808d7a1 BA |
488 | if (this.cursor == this.moves.length - 1) return; |
489 | this.gotoMove(this.moves.length - 1); | |
8055eabd | 490 | this.emitFenIfAnalyze(); |
a6088c90 BA |
491 | }, |
492 | flip: function() { | |
0e16cb26 | 493 | this.orientation = V.GetOppCol(this.orientation); |
6808d7a1 BA |
494 | } |
495 | } | |
a6088c90 BA |
496 | }; |
497 | </script> | |
72ccbd67 | 498 | |
41c80bb6 | 499 | <style lang="sass" scoped> |
9a3049f3 BA |
500 | [type="checkbox"]#modalEog+div .card |
501 | min-height: 45px | |
910d631b | 502 | |
cf94b843 BA |
503 | #baseGame |
504 | width: 100% | |
4f518610 BA |
505 | &:focus |
506 | outline: none | |
cf94b843 BA |
507 | |
508 | #gameContainer | |
72ccbd67 BA |
509 | margin-left: auto |
510 | margin-right: auto | |
cf94b843 | 511 | |
ed06d9e9 BA |
512 | #downloadDiv |
513 | display: inline-block | |
514 | ||
72ccbd67 | 515 | #controls |
bd76b456 | 516 | margin: 0 auto |
71ef1664 | 517 | text-align: center |
b9a5fe01 | 518 | display: flex |
72ccbd67 BA |
519 | button |
520 | display: inline-block | |
521 | width: 20% | |
522 | margin: 0 | |
b9a5fe01 BA |
523 | img.inline |
524 | height: 24px | |
525 | padding-top: 5px | |
526 | @media screen and (max-width: 767px) | |
527 | img.inline | |
528 | height: 18px | |
910d631b | 529 | |
0e16cb26 BA |
530 | #turnIndicator |
531 | text-align: center | |
29bc61be | 532 | font-weight: bold |
910d631b | 533 | |
bd76b456 BA |
534 | #belowControls |
535 | border-top: 1px solid #2f4f4f | |
cf94b843 | 536 | text-align: center |
bd76b456 BA |
537 | margin: 0 auto |
538 | & > #downloadDiv | |
539 | margin: 0 | |
540 | & > button | |
541 | margin: 0 | |
542 | & > button | |
543 | border-left: 1px solid #2f4f4f | |
544 | margin: 0 | |
910d631b | 545 | |
72ccbd67 | 546 | #boardContainer |
cf94b843 | 547 | float: left |
41c80bb6 BA |
548 | // TODO: later, maybe, allow movesList of variable width |
549 | // or e.g. between 250 and 350px (but more complicated) | |
910d631b | 550 | |
cf94b843 BA |
551 | #movesList |
552 | width: 280px | |
553 | float: left | |
910d631b | 554 | |
96e9585a BA |
555 | @media screen and (max-width: 767px) |
556 | #movesList | |
557 | width: 100% | |
558 | float: none | |
559 | clear: both | |
72ccbd67 | 560 | </style> |