2 import { getSquareId, getSquareFromId } from "@/utils/squareId";
3 import { ArrayFun } from "@/utils/array";
4 import { store } from "@/store";
7 // Last move cannot be guessed from here, and is required to highlight squares
8 // vr: object to check moves, print board...
9 // userColor is left undefined for an external observer
22 mobileBrowser: ("ontouchstart" in window),
23 possibleMoves: [], //filled after each valid click/dragstart
24 choices: [], //promotion pieces, or checkered captures... (as moves)
25 selectedPiece: null, //moving piece (or clicked piece)
26 start: null, //pixels coordinates + id of starting square (click or drag)
29 settings: store.state.settings
34 // Return empty div of class 'game' to avoid error when setting size
41 const [sizeX, sizeY] = [V.size.x, V.size.y];
42 // Precompute hints squares to facilitate rendering
43 let hintSquares = ArrayFun.init(sizeX, sizeY, false);
44 this.possibleMoves.forEach(m => {
45 hintSquares[m.end.x][m.end.y] = true;
47 // Also precompute in-check squares
48 let incheckSq = ArrayFun.init(sizeX, sizeY, false);
49 this.incheck.forEach(sq => {
50 incheckSq[sq[0]][sq[1]] = true;
53 const lm = this.lastMove;
55 this.settings.highlight &&
56 ["all","highlight"].includes(V.ShowMoves)
58 const orientation = !V.CanFlip ? "w" : this.orientation;
59 // Ensure that squares colors do not change when board is flipped
60 const lightSquareMod = (sizeX + sizeY) % 2;
61 const showPiece = (x, y) => {
63 this.vr.board[x][y] != V.EMPTY &&
64 (!this.vr.enlightened || this.analyze || this.score != "*" ||
65 (!!this.userColor && this.vr.enlightened[this.userColor][x][y]))
68 const inHighlight = (x, y) => {
69 return showLight && !!lm && (
70 (lm.end.x == x && lm.end.y == y) ||
71 (lm.start.x == x && lm.start.y == y));
73 const inShadow = (x, y) => {
77 this.vr.enlightened &&
78 (!this.userColor || !this.vr.enlightened[this.userColor][x][y])
81 // Create board element (+ reserves if needed by variant)
82 let elementArray = [];
91 [...Array(sizeX).keys()].map(i => {
92 const ci = orientation == "w" ? i : sizeX - i - 1;
99 style: { opacity: this.choices.length > 0 ? "0.5" : "1" }
101 [...Array(sizeY).keys()].map(j => {
102 const cj = orientation == "w" ? j : sizeY - j - 1;
104 if (showPiece(ci, cj)) {
110 !!this.selectedPiece &&
111 this.selectedPiece.parentNode.id == "sq-" + ci + "-" + cj
117 this.vr.board[ci][cj],
118 // Extra args useful for some variants:
127 if (this.settings.hints && hintSquares[ci][cj]) {
134 src: "/images/mark.svg"
139 const lightSquare = (ci + cj) % 2 == lightSquareMod;
145 ["board" + sizeY]: true,
146 "light-square": lightSquare,
147 "dark-square": !lightSquare,
148 [this.settings.bcolor]: true,
149 "in-shadow": inShadow(ci, cj),
150 "highlight-light": inHighlight(ci, cj) && lightSquare,
151 "highlight-dark": inHighlight(ci, cj) && !lightSquare,
152 "incheck-light": showLight && lightSquare && incheckSq[ci][cj],
153 "incheck-dark": showLight && !lightSquare && incheckSq[ci][cj]
156 id: getSquareId({ x: ci, y: cj })
165 if (!!this.vr.reserve) {
166 const playingColor = this.userColor || "w"; //default for an observer
167 const shiftIdx = playingColor == "w" ? 0 : 1;
168 let myReservePiecesArray = [];
169 for (let i = 0; i < V.RESERVE_PIECES.length; i++) {
170 const qty = this.vr.reserve[playingColor][V.RESERVE_PIECES[i]];
171 myReservePiecesArray.push(
175 class: { board: true, ["board" + sizeY]: true },
176 attrs: { id: getSquareId({ x: sizeX + shiftIdx, y: i }) },
177 style: { opacity: qty > 0 ? 1 : 0.35 }
181 class: { piece: true, reserve: true },
185 this.vr.getReservePpath(i, playingColor) +
189 h("sup", { class: { "reserve-count": true } }, [ qty ])
194 let oppReservePiecesArray = [];
195 const oppCol = V.GetOppCol(playingColor);
196 for (let i = 0; i < V.RESERVE_PIECES.length; i++) {
197 const qty = this.vr.reserve[oppCol][V.RESERVE_PIECES[i]];
198 oppReservePiecesArray.push(
202 class: { board: true, ["board" + sizeY]: true },
203 attrs: { id: getSquareId({ x: sizeX + (1 - shiftIdx), y: i }) },
204 style: { opacity: qty > 0 ? 1 : 0.35 }
208 class: { piece: true, reserve: true },
212 this.vr.getReservePpath(i, oppCol) +
216 h("sup", { class: { "reserve-count": true } }, [ qty ])
221 const myReserveTop = (
222 (playingColor == 'w' && orientation == 'b') ||
223 (playingColor == 'b' && orientation == 'w')
225 // Center reserves, assuming same number of pieces for each side:
226 const nbReservePieces = myReservePiecesArray.length;
227 const marginLeft = ((100 - nbReservePieces * (100 / sizeY)) / 2) + "%";
237 "margin-left": marginLeft
249 myReserveTop ? myReservePiecesArray : oppReservePiecesArray
262 "margin-left": marginLeft
274 myReserveTop ? oppReservePiecesArray : myReservePiecesArray
278 elementArray.push(reserveTop);
280 elementArray.push(gameDiv);
281 if (!!this.vr.reserve) elementArray.push(reserveBottom);
282 const boardElt = document.querySelector(".game");
283 if (this.choices.length > 0 && !!boardElt) {
284 // No choices to show at first drawing
285 const squareWidth = boardElt.offsetWidth / sizeY;
286 const offset = [boardElt.offsetTop, boardElt.offsetLeft];
287 // TODO: multi-rows if more than V.size.y pieces (as inEightpieces)
291 attrs: { id: "choices" },
292 class: { row: true },
294 top: offset[0] + (sizeY / 2) * squareWidth - squareWidth / 2 + "px",
297 (squareWidth * (sizeY - this.choices.length)) / 2 +
299 width: this.choices.length * squareWidth + "px",
300 height: squareWidth + "px"
303 this.choices.map(m => {
304 // A "choice" is a move
305 const applyMove = (e) => {
307 // Force a delay between move is shown and clicked
308 // (otherwise a "double-click" bug might occur)
309 if (Date.now() - this.clickTime < 200) return;
315 ? { touchend: applyMove }
316 : { mouseup: applyMove };
322 ["board" + sizeY]: true
325 width: 100 / this.choices.length + "%",
326 "padding-bottom": 100 / this.choices.length + "%"
335 m.appear[0].c + m.appear[0].p,
336 // Extra arg useful for some variants:
340 class: { "choice-piece": true },
347 elementArray.unshift(choices);
350 // NOTE: click = mousedown + mouseup
351 if (this.mobileBrowser) {
354 touchstart: this.mousedown,
355 touchmove: this.mousemove,
356 touchend: this.mouseup
362 mousedown: this.mousedown,
363 mousemove: this.mousemove,
364 mouseup: this.mouseup
368 return h("div", onEvents, elementArray);
371 mousedown: function(e) {
374 // Start square must contain a piece.
375 // NOTE: classList[0] is enough: 'piece' is the first assigned class
376 if (e.target.classList[0] != "piece") return;
377 let parent = e.target.parentNode; //surrounding square
378 // Show possible moves if current player allowed to play
379 const startSquare = getSquareFromId(parent.id);
380 this.possibleMoves = [];
381 const color = this.analyze ? this.vr.turn : this.userColor;
382 if (this.vr.canIplay(color, startSquare))
383 this.possibleMoves = this.vr.getPossibleMovesFrom(startSquare);
384 // For potential drag'n drop, remember start coordinates
385 // (to center the piece on mouse cursor)
386 let rect = parent.getBoundingClientRect();
388 x: rect.x + rect.width / 2,
389 y: rect.y + rect.width / 2,
392 // Add the moving piece to the board, just after current image
393 this.selectedPiece = e.target.cloneNode();
395 this.selectedPiece.style,
397 position: "absolute",
399 display: "inline-block",
403 parent.insertBefore(this.selectedPiece, e.target.nextSibling);
405 this.processMoveAttempt(e);
408 mousemove: function(e) {
409 if (!this.selectedPiece) return;
411 // There is an active element: move it around
412 const [offsetX, offsetY] =
414 ? [e.changedTouches[0].pageX, e.changedTouches[0].pageY]
415 : [e.clientX, e.clientY];
417 this.selectedPiece.style,
419 left: offsetX - this.start.x + "px",
420 top: offsetY - this.start.y + "px"
424 mouseup: function(e) {
425 if (!this.selectedPiece) return;
427 // Drag'n drop. Selected piece is no longer needed:
428 this.selectedPiece.parentNode.removeChild(this.selectedPiece);
429 delete this.selectedPiece;
430 this.selectedPiece = null;
431 this.processMoveAttempt(e);
433 processMoveAttempt: function(e) {
434 // Obtain the move from start and end squares
435 const [offsetX, offsetY] =
437 ? [e.changedTouches[0].pageX, e.changedTouches[0].pageY]
438 : [e.clientX, e.clientY];
439 let landing = document.elementFromPoint(offsetX, offsetY);
440 // Next condition: classList.contains(piece) fails because of marks
441 while (landing.tagName == "IMG") landing = landing.parentNode;
442 if (this.start.id == landing.id) {
443 if (this.click == landing.id) {
444 // Second click on same square: cancel current move
445 this.possibleMoves = [];
448 } else this.click = landing.id;
452 // OK: process move attempt, landing is a square node
453 let endSquare = getSquareFromId(landing.id);
454 let moves = this.findMatchingMoves(endSquare);
455 this.possibleMoves = [];
456 if (moves.length > 1) {
457 this.clickTime = Date.now();
458 this.choices = moves;
459 } else if (moves.length == 1) this.play(moves[0]);
460 // else: forbidden move attempt
462 findMatchingMoves: function(endSquare) {
463 // Run through moves list and return the matching set (if promotions...)
465 this.possibleMoves.filter(m => {
466 return (endSquare[0] == m.end.x && endSquare[1] == m.end.y);
470 play: function(move) {
471 this.$emit("play-move", move);
477 <style lang="sass" scoped>
487 // NOTE: no variants with reserve of size != 8
502 background-color: rgba(0,0,0,0)
505 background-color: #e6ee9c
507 background-color: skyblue
519 background-color: rgba(204, 51, 0, 0.7) !important
521 background-color: rgba(204, 51, 0, 0.9) !important
523 .light-square.lichess
524 background-color: #f0d9b5;
526 background-color: #b58863;
528 .light-square.chesscom
529 background-color: #e5e5ca;
530 .dark-square.chesscom
531 background-color: #6f8f57;
533 .light-square.chesstempo
534 background-color: #dfdfdf;
535 .dark-square.chesstempo
536 background-color: #7287b6;
538 // TODO: no predefined highlight colors, but layers. How?
540 .light-square.lichess.highlight-light
541 background-color: #cdd26a
542 .dark-square.lichess.highlight-dark
543 background-color: #aaa23a
545 .light-square.chesscom.highlight-light
546 background-color: #f7f783
547 .dark-square.chesscom.highlight-dark
548 background-color: #bacb44
550 .light-square.chesstempo.highlight-light
551 background-color: #9f9fff
552 .dark-square.chesstempo.highlight-dark
553 background-color: #557fff