- // TODO: split the rendering in other components ?
- // At least divide in parts, it's too big now.
- render(h) {
- const [sizeX,sizeY] = [V.size.x,V.size.y];
- // Precompute hints squares to facilitate rendering
- let hintSquares = doubleArray(sizeX, sizeY, false);
- this.possibleMoves.forEach(m => { hintSquares[m.end.x][m.end.y] = true; });
- // Also precompute in-check squares
- let incheckSq = doubleArray(sizeX, sizeY, false);
- this.incheck.forEach(sq => { incheckSq[sq[0]][sq[1]] = true; });
- let elementArray = [];
- let actionArray = [];
- actionArray.push(
- h('button',
- {
- on: { click: this.clickGameSeek },
- attrs: { "aria-label": translations['New live game'] },
- 'class': {
- "tooltip": true,
- "play": true,
- "seek": this.seek,
- "playing": this.mode == "human" && this.score == "*",
- },
- },
- [h('i', { 'class': { "material-icons": true } }, "accessibility")])
- );
- if (["idle","computer","friend"].includes(this.mode)
- || (this.mode == "human" && this.score != "*"))
- {
- actionArray.push(
- h('button',
- {
- on: { click: this.clickComputerGame },
- attrs: { "aria-label": translations['New game versus computer'] },
- 'class': {
- "tooltip":true,
- "play": true,
- "playing": this.mode == "computer" && this.score == "*",
- "spaceleft": true,
- },
- },
- [h('i', { 'class': { "material-icons": true } }, "computer")])
- );
- }
- if (variant != "Dark" && (["idle","friend"].includes(this.mode)
- || (["computer","human"].includes(this.mode) && this.score != "*")))
- {
- actionArray.push(
- h('button',
- {
- on: { click: this.clickFriendGame },
- attrs: { "aria-label": translations['Analysis mode'] },
- 'class': {
- "tooltip":true,
- "play": true,
- "playing": this.mode == "friend",
- "spaceleft": true,
- },
- },
- [h('i', { 'class': { "material-icons": true } }, "people")])
- );
- }
- if (!!this.vr)
- {
- const square00 = document.getElementById("sq-0-0");
- const squareWidth = !!square00
- ? parseFloat(window.getComputedStyle(square00).width.slice(0,-2))
- : 0;
- const settingsBtnElt = document.getElementById("settingsBtn");
- const settingsStyle = !!settingsBtnElt
- ? window.getComputedStyle(settingsBtnElt)
- : {width:"46px", height:"26px"};
- const [indicWidth,indicHeight] = //[44,24];
- [
- // NOTE: -2 for border
- parseFloat(settingsStyle.width.slice(0,-2)) - 2,
- parseFloat(settingsStyle.height.slice(0,-2)) - 2
- ];
- let aboveBoardElts = [];
- if (this.mode == "human")
- {
- const connectedIndic = h(
- 'div',
- {
- "class": {
- "indic-left": true,
- "connected": this.oppConnected,
- "disconnected": !this.oppConnected,
- },
- style: {
- "width": indicWidth + "px",
- "height": indicHeight + "px",
- },
- }
- );
- aboveBoardElts.push(connectedIndic);
- }
- if (this.mode == "human" && this.score != "*")
- {
- const chatButton = h(
- 'button',
- {
- on: { click: this.startChat },
- attrs: {
- "aria-label": translations['Start chat'],
- "id": "chatBtn",
- },
- 'class': {
- "tooltip": true,
- "play": true,
- "above-board": true,
- "indic-left": true,
- },
- },
- [h('i', { 'class': { "material-icons": true } }, "chat")]
- );
- aboveBoardElts.push(chatButton);
- }
- if (["human","computer","friend"].includes(this.mode))
- {
- const clearButton = h(
- 'button',
- {
- on: { click: this.clearCurrentGame },
- attrs: {
- "aria-label": translations['Clear current game'],
- "id": "clearBtn",
- },
- 'class': {
- "tooltip": true,
- "play": true,
- "above-board": true,
- "indic-left": true,
- },
- },
- [h('i', { 'class': { "material-icons": true } }, "clear")]
- );
- aboveBoardElts.push(clearButton);
- }
- const turnIndic = h(
- 'div',
- {
- "class": {
- "indic-right": true,
- "white-turn": this.vr.turn=="w",
- "black-turn": this.vr.turn=="b",
- },
- style: {
- "width": indicWidth + "px",
- "height": indicHeight + "px",
- },
- }
- );
- aboveBoardElts.push(turnIndic);
- elementArray.push(
- h('div',
- { "class": { "aboveboard-wrapper": true } },
- aboveBoardElts
- )
- );
- if (this.mode == "problem")
- {
- // Show problem instructions
- elementArray.push(
- h('div',
- {
- attrs: { id: "instructions-div" },
- "class": {
- "clearer": true,
- "section-content": true,
- },
- },
- [
- h('p',
- {
- attrs: { id: "problem-instructions" },
- domProps: { innerHTML: this.problem.instructions }
- }
- )
- ]
- )
- );
- }
- const choices = h('div',
- {
- attrs: { "id": "choices" },
- 'class': { 'row': true },
- style: {
- "display": this.choices.length>0?"block":"none",
- "top": "-" + ((sizeY/2)*squareWidth+squareWidth/2) + "px",
- "width": (this.choices.length * squareWidth) + "px",
- "height": squareWidth + "px",
- },
- },
- this.choices.map( m => { //a "choice" is a move
- return h('div',
- {
- 'class': {
- 'board': true,
- ['board'+sizeY]: true,
- },
- style: {
- 'width': (100/this.choices.length) + "%",
- 'padding-bottom': (100/this.choices.length) + "%",
- },
- },
- [h('img',
- {
- attrs: { "src": '/images/pieces/' +
- VariantRules.getPpath(m.appear[0].c+m.appear[0].p) + '.svg' },
- 'class': { 'choice-piece': true },
- on: {
- "click": e => { this.play(m); this.choices=[]; },
- // NOTE: add 'touchstart' event to fix a problem on smartphones
- "touchstart": e => { this.play(m); this.choices=[]; },
- },
- })
- ]
- );
- })
- );
- // Create board element (+ reserves if needed by variant or mode)
- const lm = this.vr.lastMove;
- const showLight = this.hints && variant!="Dark" &&
- (this.mode != "idle" ||
- (this.vr.moves.length > 0 && this.cursor==this.vr.moves.length));
- const gameDiv = h('div',
- {
- 'class': {
- 'game': true,
- 'clearer': true,
- },
- },
- [_.range(sizeX).map(i => {
- let ci = (this.mycolor=='w' ? i : sizeX-i-1);
- return h(
- 'div',
- {
- 'class': {
- 'row': true,
- },
- style: { 'opacity': this.choices.length>0?"0.5":"1" },
- },
- _.range(sizeY).map(j => {
- let cj = (this.mycolor=='w' ? j : sizeY-j-1);
- let elems = [];
- if (this.vr.board[ci][cj] != VariantRules.EMPTY && (variant!="Dark"
- || this.score!="*" || this.vr.enlightened[this.mycolor][ci][cj]))
- {
- elems.push(
- h(
- 'img',
- {
- 'class': {
- 'piece': true,
- 'ghost': !!this.selectedPiece
- && this.selectedPiece.parentNode.id == "sq-"+ci+"-"+cj,
- },
- attrs: {
- src: "/images/pieces/" +
- VariantRules.getPpath(this.vr.board[ci][cj]) + ".svg",
- },
- }
- )
- );
- }
- if (this.hints && hintSquares[ci][cj])
- {
- elems.push(
- h(
- 'img',
- {
- 'class': {
- 'mark-square': true,
- },
- attrs: {
- src: "/images/mark.svg",
- },
- }
- )
- );
- }
- return h(
- 'div',
- {
- 'class': {
- 'board': true,
- ['board'+sizeY]: true,
- 'light-square': (i+j)%2==0,
- 'dark-square': (i+j)%2==1,
- [this.bcolor]: true,
- 'in-shadow': variant=="Dark" && this.score=="*"
- && !this.vr.enlightened[this.mycolor][ci][cj],
- 'highlight': showLight && !!lm && _.isMatch(lm.end, {x:ci,y:cj}),
- 'incheck': showLight && incheckSq[ci][cj],
- },
- attrs: {
- id: this.getSquareId({x:ci,y:cj}),
- },
- },
- elems
- );
- })
- );
- }), choices]
- );
- if (["human","computer"].includes(this.mode))
- {
- if (this.score == "*")
- {
- actionArray.push(
- h('button',
- {
- on: { click: this.resign },
- attrs: { "aria-label": translations['Resign'] },
- 'class': {
- "tooltip":true,
- "play": true,
- "spaceleft": true,
- },
- },
- [h('i', { 'class': { "material-icons": true } }, "flag")])
- );
- }
- else
- {
- // A game finished, and another is not started yet: allow navigation
- actionArray = actionArray.concat([
- h('button',
- {
- on: { click: e => this.undo() },
- attrs: { "aria-label": translations['Undo'] },
- "class": {
- "play": true,
- "big-spaceleft": true,
- },
- },
- [h('i', { 'class': { "material-icons": true } }, "fast_rewind")]),
- h('button',
- {
- on: { click: e => this.play() },
- attrs: { "aria-label": translations['Play'] },
- "class": {
- "play": true,
- "spaceleft": true,
- },
- },
- [h('i', { 'class': { "material-icons": true } }, "fast_forward")]),
- ]
- );
- }
- }
- if (["friend","problem"].includes(this.mode))
- {
- actionArray = actionArray.concat(
- [
- h('button',
- {
- on: { click: this.undoInGame },
- attrs: { "aria-label": translations['Undo'] },
- "class": {
- "play": true,
- "big-spaceleft": true,
- },
- },
- [h('i', { 'class': { "material-icons": true } }, "undo")]
- ),
- h('button',
- {
- on: { click: () => { this.mycolor = this.vr.getOppCol(this.mycolor) } },
- attrs: { "aria-label": translations['Flip board'] },
- "class": {
- "play": true,
- "spaceleft": true,
- },
- },
- [h('i', { 'class': { "material-icons": true } }, "cached")]
- ),
- ]);
- }
- elementArray.push(gameDiv);
- if (!!this.vr.reserve)
- {
- const shiftIdx = (this.mycolor=="w" ? 0 : 1);
- let myReservePiecesArray = [];
- for (let i=0; i<VariantRules.RESERVE_PIECES.length; i++)
- {
- myReservePiecesArray.push(h('div',
- {
- 'class': {'board':true, ['board'+sizeY]:true},
- attrs: { id: this.getSquareId({x:sizeX+shiftIdx,y:i}) }
- },
- [
- h('img',
- {
- 'class': {"piece":true, "reserve":true},
- attrs: {
- "src": "/images/pieces/" +
- this.vr.getReservePpath(this.mycolor,i) + ".svg",
- }
- }),
- h('sup',
- {"class": { "reserve-count": true } },
- [ this.vr.reserve[this.mycolor][VariantRules.RESERVE_PIECES[i]] ]
- )
- ]));
- }
- let oppReservePiecesArray = [];
- const oppCol = this.vr.getOppCol(this.mycolor);
- for (let i=0; i<VariantRules.RESERVE_PIECES.length; i++)
- {
- oppReservePiecesArray.push(h('div',
- {
- 'class': {'board':true, ['board'+sizeY]:true},
- attrs: { id: this.getSquareId({x:sizeX+(1-shiftIdx),y:i}) }
- },
- [
- h('img',
- {
- 'class': {"piece":true, "reserve":true},
- attrs: {
- "src": "/images/pieces/" +
- this.vr.getReservePpath(oppCol,i) + ".svg",
- }
- }),
- h('sup',
- {"class": { "reserve-count": true } },
- [ this.vr.reserve[oppCol][VariantRules.RESERVE_PIECES[i]] ]
- )
- ]));
- }
- let reserves = h('div',
- {
- 'class':{
- 'game': true,
- "reserve-div": true,
- },
- },
- [
- h('div',
- {
- 'class': {
- 'row': true,
- "reserve-row-1": true,
- },
- },
- myReservePiecesArray
- ),
- h('div',
- { 'class': { 'row': true }},
- oppReservePiecesArray
- )
- ]
- );
- elementArray.push(reserves);
- }
- const modalEog = [
- h('input',
- {
- attrs: { "id": "modal-eog", type: "checkbox" },
- "class": { "modal": true },
- }),
- h('div',
- {
- attrs: { "role": "dialog", "aria-labelledby": "eogMessage" },
- },
- [
- h('div',
- {
- "class": {
- "card": true,
- "smallpad": true,
- "small-modal": true,
- "text-center": true,
- },
- },
- [
- h('label',
- {
- attrs: { "for": "modal-eog" },
- "class": { "modal-close": true },
- }
- ),
- h('h3',
- {
- attrs: { "id": "eogMessage" },
- "class": { "section": true },
- domProps: { innerHTML: this.endgameMessage },
- }
- )
- ]
- )
- ]
- )
- ];
- elementArray = elementArray.concat(modalEog);
- }
- const modalFenEdit = [
- h('input',
- {
- attrs: { "id": "modal-fenedit", type: "checkbox" },
- "class": { "modal": true },
- }),
- h('div',
- {
- attrs: { "role": "dialog", "aria-labelledby": "titleFenedit" },
- },
- [
- h('div',
- {
- "class": { "card": true, "smallpad": true },
- },
- [
- h('label',
- {
- attrs: { "id": "close-fenedit", "for": "modal-fenedit" },
- "class": { "modal-close": true },
- }
- ),
- h('h3',
- {
- attrs: { "id": "titleFenedit" },
- "class": { "section": true },
- domProps: { innerHTML: translations["Game state (FEN):"] },
- }
- ),
- h('input',
- {
- attrs: {
- "id": "input-fen",
- type: "text",
- value: VariantRules.GenRandInitFen(),
- },
- }
- ),
- h('button',
- {
- on: { click:
- () => {
- const fen = document.getElementById("input-fen").value;
- document.getElementById("modal-fenedit").checked = false;
- this.newGame("friend", fen);
- }
- },
- domProps: { innerHTML: translations["Ok"] },
- }
- ),
- h('button',
- {
- on: { click:
- () => {
- document.getElementById("input-fen").value =
- VariantRules.GenRandInitFen();
- }
- },
- domProps: { innerHTML: translations["Random"] },
- }
- ),
- ]
- )
- ]
- )
- ];
- elementArray = elementArray.concat(modalFenEdit);
- let chatEltsArray =
- [
- h('label',
- {
- attrs: { "id": "close-chat", "for": "modal-chat" },
- "class": { "modal-close": true },
- }
- ),
- h('h3',
- {
- attrs: { "id": "titleChat" },
- "class": { "section": true },
- domProps: { innerHTML: translations["Chat with "] + this.oppName },
- }
- )
- ];
- for (let chat of this.chats)
- {
- chatEltsArray.push(
- h('p',
- {
- "class": {
- "my-chatmsg": chat.author==this.myid,
- "opp-chatmsg": chat.author==this.oppid,
- },
- domProps: { innerHTML: chat.msg }
- }
- )
- );
- }
- chatEltsArray = chatEltsArray.concat([
- h('input',
- {
- attrs: {
- "id": "input-chat",
- type: "text",
- placeholder: translations["Type here"],
- },
- on: { keyup: this.trySendChat }, //if key is 'enter'
- }
- ),
- h('button',
- {
- attrs: { id: "sendChatBtn"},
- on: { click: this.sendChat },
- domProps: { innerHTML: translations["Send"] },
- }
- )
- ]);
- const modalChat = [
- h('input',
- {
- attrs: { "id": "modal-chat", type: "checkbox" },
- "class": { "modal": true },
- }),
- h('div',
- {
- attrs: { "role": "dialog", "aria-labelledby": "titleChat" },
- },
- [
- h('div',
- {
- "class": { "card": true, "smallpad": true },
- },
- chatEltsArray
- )
- ]
- )
- ];
- elementArray = elementArray.concat(modalChat);
- const actions = h('div',
- {
- attrs: { "id": "actions" },
- 'class': { 'text-center': true },
- },
- actionArray
- );
- elementArray.push(actions);
- if (!!this.vr)
- {
- if (this.mode == "problem")
- {
- // Show problem solution (on click)
- elementArray.push(
- h('div',
- {
- attrs: { id: "solution-div" },
- "class": { "section-content": true },
- },
- [
- h('h3',
- {
- "class": { clickable: true },
- domProps: { innerHTML: translations["Show solution"] },
- on: { click: this.toggleShowSolution },
- }
- ),
- h('p',
- {
- attrs: { id: "problem-solution" },
- domProps: { innerHTML: this.problem.solution }
- }
- )
- ]
- )
- );
- }
- if (variant != "Dark" || this.score!="*")
- {
- // Show current FEN
- elementArray.push(
- h('div',
- {
- attrs: { id: "fen-div" },
- "class": { "section-content": true },
- },
- [
- h('p',
- {
- attrs: { id: "fen-string" },
- domProps: { innerHTML: this.vr.getBaseFen() },
- "class": { "text-center": true },
- }
- )
- ]
- )
- );
- }
- elementArray.push(
- h('div',
- {
- attrs: { id: "pgn-div" },
- "class": { "section-content": true },
- },
- [
- h('a',
- {
- attrs: {
- id: "download",
- href: "#",
- }
- }
- ),
- h('button',
- {
- attrs: { "id": "downloadBtn" },
- on: { click: this.download },
- domProps: { innerHTML: translations["Download PGN"] },
- }
- ),
- ]
- )
- );
- }
- return h(
- 'div',
- {
- 'class': {
- "col-sm-12":true,
- "col-md-10":true,
- "col-md-offset-1":true,
- "col-lg-8":true,
- "col-lg-offset-2":true,
- },
- // NOTE: click = mousedown + mouseup
- on: {
- mousedown: this.mousedown,
- mousemove: this.mousemove,
- mouseup: this.mouseup,
- touchstart: this.mousedown,
- touchmove: this.mousemove,
- touchend: this.mouseup,
- },
- },
- elementArray
- );
- },