1 // Game logic on a variant page
2 Vue
.component('my-game', {
6 vr: null, //object to check moves, store them, FEN..
8 possibleMoves: [], //filled after each valid click/dragstart
9 choices: [], //promotion pieces, or checkered captures... (as moves)
10 start: {}, //pixels coordinates + id of starting square (click or drag)
11 selectedPiece: null, //moving piece (or clicked piece)
12 conn: null, //socket connection
13 score: "*", //'*' means 'unfinished'
14 mode: "idle", //human, chat, friend, problem, computer or idle (if not playing)
15 myid: "", //our ID, always set
16 oppid: "", //opponent ID in case of HH game
17 gameId: "", //useful if opponent started other human games after we disconnected
18 myname: getCookie("username","anonymous"),
19 oppName: "anonymous", //opponent name, revealed after a game (if provided)
20 chats: [], //chat messages after human game
26 hints: (getCookie("hints") === "1" ? true : false),
27 color: getCookie("color", "lichess"), //lichess, chesscom or chesstempo
28 // sound level: 0 = no sound, 1 = sound only on newgame, 2 = always
29 sound: parseInt(getCookie("sound", "2")),
30 // Web worker to play computer moves without freezing interface:
31 compWorker: new Worker('/javascripts/playCompMove.js'),
32 timeStart: undefined, //time when computer starts thinking
36 problem: function(p
) {
37 // 'problem' prop changed: update board state
38 this.newGame("problem", p
.fen
, V
.ParseFen(p
.fen
).turn
);
42 const [sizeX
,sizeY
] = [V
.size
.x
,V
.size
.y
];
43 const smallScreen
= (window
.innerWidth
<= 420);
44 // Precompute hints squares to facilitate rendering
45 let hintSquares
= doubleArray(sizeX
, sizeY
, false);
46 this.possibleMoves
.forEach(m
=> { hintSquares
[m
.end
.x
][m
.end
.y
] = true; });
47 // Also precompute in-check squares
48 let incheckSq
= doubleArray(sizeX
, sizeY
, false);
49 this.incheck
.forEach(sq
=> { incheckSq
[sq
[0]][sq
[1]] = true; });
50 let elementArray
= [];
55 on: { click: this.clickGameSeek
},
56 attrs: { "aria-label": 'New online game' },
59 "bottom": true, //display below
61 "playing": this.mode
== "human",
65 [h('i', { 'class': { "material-icons": true } }, "accessibility")])
67 if (["idle","chat","computer"].includes(this.mode
))
72 on: { click: this.clickComputerGame
},
73 attrs: { "aria-label": 'New game VS computer' },
77 "playing": this.mode
== "computer",
81 [h('i', { 'class': { "material-icons": true } }, "computer")])
84 if (["idle","chat","friend"].includes(this.mode
))
89 on: { click: this.clickFriendGame
},
90 attrs: { "aria-label": 'New IRL game' },
94 "playing": this.mode
== "friend",
98 [h('i', { 'class': { "material-icons": true } }, "people")])
103 const square00
= document
.getElementById("sq-0-0");
104 const squareWidth
= !!square00
105 ? parseFloat(window
.getComputedStyle(square00
).width
.slice(0,-2))
107 const settingsBtnElt
= document
.getElementById("settingsBtn");
108 const indicWidth
= !!settingsBtnElt
//-2 for border:
109 ? parseFloat(window
.getComputedStyle(settingsBtnElt
).height
.slice(0,-2)) - 2
110 : (smallScreen
? 31 : 37);
111 if (["chat","human"].includes(this.mode
))
113 const connectedIndic
= h(
117 "topindicator": true,
119 "connected": this.oppConnected
,
120 "disconnected": !this.oppConnected
,
123 "width": indicWidth
+ "px",
124 "height": indicWidth
+ "px",
128 elementArray
.push(connectedIndic
);
130 if (this.mode
== "chat")
132 const chatButton
= h(
135 on: { click: this.startChat
},
137 "aria-label": 'Start chat',
142 "topindicator": true,
144 "settings-btn": !smallScreen
,
145 "settings-btn-small": smallScreen
,
148 [h('i', { 'class': { "material-icons": true } }, "chat")]
150 elementArray
.push(chatButton
);
152 else if (this.mode
== "computer")
154 const clearButton
= h(
157 on: { click: this.clearComputerGame
},
159 "aria-label": 'Clear computer game',
164 "topindicator": true,
166 "settings-btn": !smallScreen
,
167 "settings-btn-small": smallScreen
,
170 [h('i', { 'class': { "material-icons": true } }, "clear")]
172 elementArray
.push(clearButton
);
178 "topindicator": true,
180 "white-turn": this.vr
.turn
=="w",
181 "black-turn": this.vr
.turn
=="b",
184 "width": indicWidth
+ "px",
185 "height": indicWidth
+ "px",
189 elementArray
.push(turnIndic
);
190 const settingsBtn
= h(
193 on: { click: this.showSettings
},
195 "aria-label": 'Settings',
200 "topindicator": true,
202 "settings-btn": !smallScreen
,
203 "settings-btn-small": smallScreen
,
206 [h('i', { 'class': { "material-icons": true } }, "settings")]
208 elementArray
.push(settingsBtn
);
209 if (this.mode
== "problem")
211 // Show problem instructions
215 attrs: { id: "instructions-div" },
218 "section-content": true,
224 attrs: { id: "problem-instructions" },
225 domProps: { innerHTML: this.problem
.instructions
}
232 const choices
= h('div',
234 attrs: { "id": "choices" },
235 'class': { 'row': true },
237 "display": this.choices
.length
>0?"block":"none",
238 "top": "-" + ((sizeY
/2)*squareWidth+squareWidth/2) + "px",
239 "width": (this.choices
.length
* squareWidth
) + "px",
240 "height": squareWidth
+ "px",
243 this.choices
.map( m
=> { //a "choice" is a move
248 ['board'+sizeY
]: true,
251 'width': (100/this.choices
.length
) + "%",
252 'padding-bottom': (100/this.choices
.length
) + "%",
257 attrs: { "src": '/images/pieces/' +
258 VariantRules
.getPpath(m
.appear
[0].c
+m
.appear
[0].p
) + '.svg' },
259 'class': { 'choice-piece': true },
260 on: { "click": e
=> { this.play(m
); this.choices
=[]; } },
266 // Create board element (+ reserves if needed by variant or mode)
267 const lm
= this.vr
.lastMove
;
268 const showLight
= this.hints
&&
269 (!["idle","chat"].includes(this.mode
) || this.cursor
==this.vr
.moves
.length
);
270 const gameDiv
= h('div',
272 'class': { 'game': true },
274 [_
.range(sizeX
).map(i
=> {
275 let ci
= (this.mycolor
=='w' ? i : sizeX
-i
-1);
282 style: { 'opacity': this.choices
.length
>0?"0.5":"1" },
284 _
.range(sizeY
).map(j
=> {
285 let cj
= (this.mycolor
=='w' ? j : sizeY
-j
-1);
287 if (this.vr
.board
[ci
][cj
] != VariantRules
.EMPTY
)
295 'ghost': !!this.selectedPiece
296 && this.selectedPiece
.parentNode
.id
== "sq-"+ci
+"-"+cj
,
299 src: "/images/pieces/" +
300 VariantRules
.getPpath(this.vr
.board
[ci
][cj
]) + ".svg",
306 if (this.hints
&& hintSquares
[ci
][cj
])
316 src: "/images/mark.svg",
327 ['board'+sizeY
]: true,
328 'light-square': (i
+j
)%2==0,
329 'dark-square': (i
+j
)%2==1,
331 'highlight': showLight
&& !!lm
&& _
.isMatch(lm
.end
, {x:ci
,y:cj
}),
332 'incheck': showLight
&& incheckSq
[ci
][cj
],
335 id: this.getSquareId({x:ci
,y:cj
}),
344 if (!["idle","chat"].includes(this.mode
))
349 on: { click: this.resign
},
350 attrs: { "aria-label": 'Resign' },
354 "small": smallScreen
,
357 [h('i', { 'class': { "material-icons": true } }, "flag")])
360 else if (this.vr
.moves
.length
> 0)
362 // A game finished, and another is not started yet: allow navigation
363 actionArray
= actionArray
.concat([
366 on: { click: e
=> this.undo() },
367 attrs: { "aria-label": 'Undo' },
369 "small": smallScreen
,
373 [h('i', { 'class': { "material-icons": true } }, "fast_rewind")]),
376 on: { click: e
=> this.play() },
377 attrs: { "aria-label": 'Play' },
378 "class": { "small": smallScreen
},
380 [h('i', { 'class': { "material-icons": true } }, "fast_forward")]),
384 if (["friend","problem"].includes(this.mode
))
386 actionArray
= actionArray
.concat(
390 on: { click: this.undoInGame
},
391 attrs: { "aria-label": 'Undo' },
393 "small": smallScreen
,
397 [h('i', { 'class': { "material-icons": true } }, "undo")]
401 on: { click: () => { this.mycolor
= this.vr
.getOppCol(this.mycolor
) } },
402 attrs: { "aria-label": 'Flip' },
403 "class": { "small": smallScreen
},
405 [h('i', { 'class': { "material-icons": true } }, "cached")]
409 elementArray
.push(gameDiv
);
410 if (!!this.vr
.reserve
)
412 const shiftIdx
= (this.mycolor
=="w" ? 0 : 1);
413 let myReservePiecesArray
= [];
414 for (let i
=0; i
<VariantRules
.RESERVE_PIECES
.length
; i
++)
416 myReservePiecesArray
.push(h('div',
418 'class': {'board':true, ['board'+sizeY
]:true},
419 attrs: { id: this.getSquareId({x:sizeX
+shiftIdx
,y:i
}) }
424 'class': {"piece":true},
426 "src": "/images/pieces/" +
427 this.vr
.getReservePpath(this.mycolor
,i
) + ".svg",
431 {"class": { "reserve-count": true } },
432 [ this.vr
.reserve
[this.mycolor
][VariantRules
.RESERVE_PIECES
[i
]] ]
436 let oppReservePiecesArray
= [];
437 const oppCol
= this.vr
.getOppCol(this.mycolor
);
438 for (let i
=0; i
<VariantRules
.RESERVE_PIECES
.length
; i
++)
440 oppReservePiecesArray
.push(h('div',
442 'class': {'board':true, ['board'+sizeY
]:true},
443 attrs: { id: this.getSquareId({x:sizeX
+(1-shiftIdx
),y:i
}) }
448 'class': {"piece":true},
450 "src": "/images/pieces/" +
451 this.vr
.getReservePpath(oppCol
,i
) + ".svg",
455 {"class": { "reserve-count": true } },
456 [ this.vr
.reserve
[oppCol
][VariantRules
.RESERVE_PIECES
[i
]] ]
460 let reserves
= h('div',
472 "reserve-row-1": true,
478 { 'class': { 'row': true }},
479 oppReservePiecesArray
483 elementArray
.push(reserves
);
488 attrs: { "id": "modal-eog", type: "checkbox" },
489 "class": { "modal": true },
493 attrs: { "role": "dialog", "aria-labelledby": "eogMessage" },
498 "class": { "card": true, "smallpad": true },
503 attrs: { "for": "modal-eog" },
504 "class": { "modal-close": true },
509 attrs: { "id": "eogMessage" },
510 "class": { "section": true },
511 domProps: { innerHTML: this.endgameMessage
},
519 elementArray
= elementArray
.concat(modalEog
);
521 // NOTE: this modal could be in Pug view (no usage of Vue functions or variables)
522 const modalNewgame
= [
525 attrs: { "id": "modal-newgame", type: "checkbox" },
526 "class": { "modal": true },
530 attrs: { "role": "dialog", "aria-labelledby": "newGameTxt" },
535 "class": { "card": true, "smallpad": true },
540 attrs: { "id": "close-newgame", "for": "modal-newgame" },
541 "class": { "modal-close": true },
546 attrs: { "id": "newGameTxt" },
547 "class": { "section": true },
548 domProps: { innerHTML: "New game" },
553 "class": { "section": true },
554 domProps: { innerHTML: "Waiting for opponent..." },
562 elementArray
= elementArray
.concat(modalNewgame
);
563 const modalFenEdit
= [
566 attrs: { "id": "modal-fenedit", type: "checkbox" },
567 "class": { "modal": true },
571 attrs: { "role": "dialog", "aria-labelledby": "titleFenedit" },
576 "class": { "card": true, "smallpad": true },
581 attrs: { "id": "close-fenedit", "for": "modal-fenedit" },
582 "class": { "modal-close": true },
587 attrs: { "id": "titleFenedit" },
588 "class": { "section": true },
589 domProps: { innerHTML: "Position + flags (FEN):" },
597 value: VariantRules
.GenRandInitFen(),
605 const fen
= document
.getElementById("input-fen").value
;
606 document
.getElementById("modal-fenedit").checked
= false;
607 this.newGame("friend", fen
);
610 domProps: { innerHTML: "Ok" },
617 document
.getElementById("input-fen").value
=
618 VariantRules
.GenRandInitFen();
621 domProps: { innerHTML: "Random" },
629 elementArray
= elementArray
.concat(modalFenEdit
);
630 const modalSettings
= [
633 attrs: { "id": "modal-settings", type: "checkbox" },
634 "class": { "modal": true },
638 attrs: { "role": "dialog", "aria-labelledby": "settingsTitle" },
643 "class": { "card": true, "smallpad": true },
648 attrs: { "id": "close-settings", "for": "modal-settings" },
649 "class": { "modal-close": true },
654 attrs: { "id": "settingsTitle" },
655 "class": { "section": true },
656 domProps: { innerHTML: "Preferences" },
664 attrs: { for: "nameSetter" },
665 domProps: { innerHTML: "My name is..." },
675 on: { "change": this.setMyname
},
685 attrs: { for: "setHints" },
686 domProps: { innerHTML: "Show hints?" },
696 on: { "change": this.toggleHints
},
706 attrs: { for: "selectColor" },
707 domProps: { innerHTML: "Board colors" },
712 attrs: { "id": "selectColor" },
713 on: { "change": this.setColor
},
722 attrs: { "selected": this.color
=="lichess" },
731 attrs: { "selected": this.color
=="chesscom" },
737 "value": "chesstempo",
740 attrs: { "selected": this.color
=="chesstempo" },
752 attrs: { for: "selectSound" },
753 domProps: { innerHTML: "Play sounds?" },
758 attrs: { "id": "selectSound" },
759 on: { "change": this.setSound
},
768 attrs: { "selected": this.sound
==0 },
777 attrs: { "selected": this.sound
==1 },
786 attrs: { "selected": this.sound
==2 },
798 elementArray
= elementArray
.concat(modalSettings
);
803 attrs: { "id": "close-chat", "for": "modal-chat" },
804 "class": { "modal-close": true },
809 attrs: { "id": "titleChat" },
810 "class": { "section": true },
811 domProps: { innerHTML: "Chat with " + this.oppName
},
815 for (let chat
of this.chats
)
821 "my-chatmsg": chat
.author
==this.myid
,
822 "opp-chatmsg": chat
.author
==this.oppid
,
824 domProps: { innerHTML: chat
.msg
}
829 chatEltsArray
= chatEltsArray
.concat([
835 placeholder: "Type here",
837 on: { keyup: this.trySendChat
}, //if key is 'enter'
842 on: { click: this.sendChat
},
843 domProps: { innerHTML: "Send" },
850 attrs: { "id": "modal-chat", type: "checkbox" },
851 "class": { "modal": true },
855 attrs: { "role": "dialog", "aria-labelledby": "titleChat" },
860 "class": { "card": true, "smallpad": true },
867 elementArray
= elementArray
.concat(modalChat
);
868 const actions
= h('div',
870 attrs: { "id": "actions" },
871 'class': { 'text-center': true },
875 elementArray
.push(actions
);
876 if (this.score
!= "*" && this.pgnTxt
.length
> 0)
881 attrs: { id: "pgn-div" },
882 "class": { "section-content": true },
895 attrs: { id: "pgn-game" },
896 domProps: { innerHTML: this.pgnTxt
}
901 attrs: { "id": "downloadBtn" },
902 on: { click: this.download
},
903 domProps: { innerHTML: "Download game" },
910 else if (this.mode
!= "idle")
912 if (this.mode
== "problem")
914 // Show problem solution (on click)
918 attrs: { id: "solution-div" },
919 "class": { "section-content": true },
924 domProps: { innerHTML: "Show solution" },
925 on: { click: this.toggleShowSolution
},
930 attrs: { id: "problem-solution" },
931 domProps: { innerHTML: this.problem
.solution
}
942 attrs: { id: "fen-div" },
943 "class": { "section-content": true },
948 attrs: { id: "fen-string" },
949 domProps: { innerHTML: this.vr
.getBaseFen() }
962 "col-md-offset-2":true,
964 "col-lg-offset-3":true,
966 // NOTE: click = mousedown + mouseup
968 mousedown: this.mousedown
,
969 mousemove: this.mousemove
,
970 mouseup: this.mouseup
,
971 touchstart: this.mousedown
,
972 touchmove: this.mousemove
,
973 touchend: this.mouseup
,
980 endgameMessage: function() {
981 let eogMessage
= "Unfinished";
985 eogMessage
= "White win";
988 eogMessage
= "Black win";
997 created: function() {
998 const url
= socketUrl
;
999 const humanContinuation
= (localStorage
.getItem("variant") === variant
);
1000 const computerContinuation
= (localStorage
.getItem("comp-variant") === variant
);
1001 this.myid
= (humanContinuation
? localStorage
.getItem("myid") : getRandString());
1002 this.conn
= new WebSocket(url
+ "/?sid=" + this.myid
+ "&page=" + variant
);
1003 const socketOpenListener
= () => {
1004 if (humanContinuation
) //game VS human has priority
1005 this.continueGame("human");
1006 else if (computerContinuation
)
1007 this.continueGame("computer");
1009 const socketMessageListener
= msg
=> {
1010 const data
= JSON
.parse(msg
.data
);
1011 const L
= (!!this.vr
? this.vr
.moves
.length : 0);
1015 // Receive opponent's name
1016 this.oppName
= data
.name
;
1020 this.chats
.push({msg:data
.msg
, author:this.oppid
});
1023 // We opened another tab on the same game
1026 alert("Already playing a game in this variant on another tab!");
1028 case "newgame": //opponent found
1029 // oppid: opponent socket ID
1030 this.newGame("human", data
.fen
, data
.color
, data
.oppid
);
1032 case "newmove": //..he played!
1033 this.play(data
.move, "animate");
1035 case "pong": //received if we sent a ping (game still alive on our side)
1036 if (this.gameId
!= data
.gameId
)
1037 break; //games IDs don't match: definitely over...
1038 this.oppConnected
= true;
1039 // Send our "last state" informations to opponent
1040 this.conn
.send(JSON
.stringify({
1043 gameId: this.gameId
,
1044 lastMove: (L
>0?this.vr
.moves
[L
-1]:undefined),
1048 case "lastate": //got opponent infos about last move
1049 if (this.gameId
!= data
.gameId
)
1050 break; //games IDs don't match: nothing we can do...
1051 // OK, opponent still in game (which might be over)
1052 if (this.mode
!= "human")
1054 // We finished the game (any result possible)
1055 this.conn
.send(JSON
.stringify({
1058 gameId: this.gameId
,
1062 else if (!!data
.score
) //opponent finished the game
1063 this.endGame(data
.score
);
1064 else if (data
.movesCount
< L
)
1066 // We must tell last move to opponent
1067 this.conn
.send(JSON
.stringify({
1070 lastMove: this.vr
.moves
[L
-1],
1074 else if (data
.movesCount
> L
) //just got last move from him
1075 this.play(data
.lastMove
, "animate");
1077 case "resign": //..you won!
1078 this.endGame(this.mycolor
=="w"?"1-0":"0-1");
1080 // TODO: also use (dis)connect info to count online players?
1083 if (["human","chat"].includes(this.mode
) && this.oppid
== data
.id
)
1084 this.oppConnected
= (data
.code
== "connect");
1085 if (this.oppConnected
&& this.mode
== "chat")
1087 // Send our name to the opponent, in case of he hasn't it
1088 this.conn
.send(JSON
.stringify({
1089 code:"myname", name:this.myname
, oppid: this.oppid
}));
1094 const socketCloseListener
= () => {
1095 this.conn
= new WebSocket(url
+ "/?sid=" + this.myid
+ "&page=" + variant
);
1096 this.conn
.addEventListener('open', socketOpenListener
);
1097 this.conn
.addEventListener('message', socketMessageListener
);
1098 this.conn
.addEventListener('close', socketCloseListener
);
1100 this.conn
.onopen
= socketOpenListener
;
1101 this.conn
.onmessage
= socketMessageListener
;
1102 this.conn
.onclose
= socketCloseListener
;
1103 // Listen to keyboard left/right to navigate in game
1104 document
.onkeydown
= event
=> {
1105 if (["idle","chat"].includes(this.mode
) &&
1106 !!this.vr
&& this.vr
.moves
.length
> 0 && [37,39].includes(event
.keyCode
))
1108 event
.preventDefault();
1109 if (event
.keyCode
== 37) //Back
1115 // Computer moves web worker logic:
1116 this.compWorker
.postMessage(["scripts",variant
]);
1118 this.compWorker
.onmessage = function(e
) {
1119 let compMove
= e
.data
;
1120 compMove
.computer
= true; //TODO: imperfect attempt to avoid ghost move
1121 // (first move) HACK: small delay to avoid selecting elements
1122 // before they appear on page:
1123 const delay
= Math
.max(500-(Date
.now()-self
.timeStart
), 0);
1125 if (self
.mode
== "computer") //warning: mode could have changed!
1126 self
.play(compMove
, "animate")
1131 setMyname: function(e
) {
1132 this.myname
= e
.target
.value
;
1133 setCookie("username",this.myname
);
1135 trySendChat: function(e
) {
1136 if (e
.keyCode
== 13) //'enter' key
1139 sendChat: function() {
1140 let chatInput
= document
.getElementById("input-chat");
1141 const chatTxt
= chatInput
.value
;
1142 chatInput
.value
= "";
1143 this.chats
.push({msg:chatTxt
, author:this.myid
});
1144 this.conn
.send(JSON
.stringify({
1145 code:"newchat", oppid: this.oppid
, msg: chatTxt
}));
1147 toggleShowSolution: function() {
1148 let problemSolution
= document
.getElementById("problem-solution");
1149 problemSolution
.style
.display
=
1150 !problemSolution
.style
.display
|| problemSolution
.style
.display
== "none"
1154 download: function() {
1155 let content
= document
.getElementById("pgn-game").innerHTML
;
1156 content
= content
.replace(/<br>/g, "\n");
1157 // Prepare and trigger download link
1158 let downloadAnchor
= document
.getElementById("download");
1159 downloadAnchor
.setAttribute("download", "game.pgn");
1160 downloadAnchor
.href
= "data:text/plain;charset=utf-8," +
1161 encodeURIComponent(content
);
1162 downloadAnchor
.click();
1164 showScoreMsg: function() {
1165 let modalBox
= document
.getElementById("modal-eog");
1166 modalBox
.checked
= true;
1167 setTimeout(() => { modalBox
.checked
= false; }, 2000);
1169 endGame: function(score
) {
1171 if (["human","computer"].includes(this.mode
))
1173 const prefix
= (this.mode
=="computer" ? "comp-" : "");
1174 localStorage
.setItem(prefix
+"score", score
);
1176 this.showScoreMsg();
1177 // Variants may have special PGN structure (so next function isn't defined here)
1178 this.pgnTxt
= this.vr
.getPGN(this.mycolor
, this.score
, this.fenStart
, this.mode
);
1179 if (this.mode
== "human" && this.oppConnected
)
1181 // Send our nickname to opponent
1182 this.conn
.send(JSON
.stringify({
1183 code:"myname", name:this.myname
, oppid:this.oppid
}));
1185 this.mode
= (this.mode
=="human" ? "chat" : "idle");
1186 this.cursor
= this.vr
.moves
.length
; //to navigate in finished game
1188 setStorage: function() {
1189 if (this.mode
=="human")
1191 localStorage
.setItem("myid", this.myid
);
1192 localStorage
.setItem("oppid", this.oppid
);
1193 localStorage
.setItem("gameId", this.gameId
);
1195 // 'prefix' = "comp-" to resume games vs. computer
1196 const prefix
= (this.mode
=="computer" ? "comp-" : "");
1197 localStorage
.setItem(prefix
+"variant", variant
);
1198 localStorage
.setItem(prefix
+"mycolor", this.mycolor
);
1199 localStorage
.setItem(prefix
+"fenStart", this.fenStart
);
1200 localStorage
.setItem(prefix
+"moves", JSON
.stringify(this.vr
.moves
));
1201 localStorage
.setItem(prefix
+"fen", this.vr
.getFen());
1202 localStorage
.setItem(prefix
+"score", "*");
1204 updateStorage: function() {
1205 const prefix
= (this.mode
=="computer" ? "comp-" : "");
1206 localStorage
.setItem(prefix
+"moves", JSON
.stringify(this.vr
.moves
));
1207 localStorage
.setItem(prefix
+"fen", this.vr
.getFen());
1208 if (this.score
!= "*")
1209 localStorage
.setItem(prefix
+"score", this.score
);
1211 // "computer mode" clearing is done through the menu
1212 clearStorage: function() {
1213 if (["human","chat"].includes(this.mode
))
1215 delete localStorage
["myid"];
1216 delete localStorage
["oppid"];
1217 delete localStorage
["gameId"];
1219 const prefix
= (this.mode
=="computer" ? "comp-" : "");
1220 delete localStorage
[prefix
+"variant"];
1221 delete localStorage
[prefix
+"mycolor"];
1222 delete localStorage
[prefix
+"fenStart"];
1223 delete localStorage
[prefix
+"moves"];
1224 delete localStorage
[prefix
+"fen"];
1225 delete localStorage
[prefix
+"score"];
1227 // HACK because mini-css tooltips are persistent after click...
1228 getRidOfTooltip: function(elt
) {
1229 elt
.style
.visibility
= "hidden";
1230 setTimeout(() => { elt
.style
.visibility
="visible"; }, 100);
1232 startChat: function(e
) {
1233 this.getRidOfTooltip(e
.currentTarget
);
1234 document
.getElementById("modal-chat").checked
= true;
1236 clearComputerGame: function(e
) {
1237 this.getRidOfTooltip(e
.currentTarget
);
1238 this.clearStorage(); //this.mode=="computer" (already checked)
1239 location
.reload(); //to see clearing effects
1241 showSettings: function(e
) {
1242 this.getRidOfTooltip(e
.currentTarget
);
1243 document
.getElementById("modal-settings").checked
= true;
1245 toggleHints: function() {
1246 this.hints
= !this.hints
;
1247 setCookie("hints", this.hints
? "1" : "0");
1249 setColor: function(e
) {
1250 this.color
= e
.target
.options
[e
.target
.selectedIndex
].value
;
1251 setCookie("color", this.color
);
1253 setSound: function(e
) {
1254 this.sound
= parseInt(e
.target
.options
[e
.target
.selectedIndex
].value
);
1255 setCookie("sound", this.sound
);
1257 clickGameSeek: function(e
) {
1258 this.getRidOfTooltip(e
.currentTarget
);
1259 if (this.mode
== "human")
1260 return; //no newgame while playing
1263 this.conn
.send(JSON
.stringify({code:"cancelnewgame"}));
1267 this.newGame("human");
1269 clickComputerGame: function(e
) {
1270 this.getRidOfTooltip(e
.currentTarget
);
1271 this.newGame("computer");
1273 clickFriendGame: function(e
) {
1274 this.getRidOfTooltip(e
.currentTarget
);
1275 document
.getElementById("modal-fenedit").checked
= true;
1277 resign: function(e
) {
1278 this.getRidOfTooltip(e
.currentTarget
);
1279 if (this.mode
== "human" && this.oppConnected
)
1282 this.conn
.send(JSON
.stringify({code: "resign", oppid: this.oppid
}));
1283 } catch (INVALID_STATE_ERR
) {
1284 return; //socket is not ready (and not yet reconnected)
1287 this.endGame(this.mycolor
=="w"?"0-1":"1-0");
1289 newGame: function(mode
, fenInit
, color
, oppId
) {
1290 let fen
= fenInit
|| VariantRules
.GenRandInitFen();
1291 console
.log(fen
); //DEBUG
1292 if (mode
=="human" && !oppId
)
1294 const storageVariant
= localStorage
.getItem("variant");
1295 if (!!storageVariant
&& storageVariant
!== variant
)
1296 return alert("Finish your " + storageVariant
+ " game first!");
1297 // Send game request and wait..
1299 this.conn
.send(JSON
.stringify({code:"newgame", fen:fen
}));
1300 } catch (INVALID_STATE_ERR
) {
1301 return; //nothing achieved
1304 let modalBox
= document
.getElementById("modal-newgame");
1305 modalBox
.checked
= true;
1306 setTimeout(() => { modalBox
.checked
= false; }, 2000);
1309 if (["human","chat"].includes(this.mode
))
1311 // Start a new game vs. another human (or...) => forget about current one
1312 this.clearStorage();
1314 if (mode
== "computer")
1316 const storageVariant
= localStorage
.getItem("comp-variant");
1317 if (!!storageVariant
)
1319 if (storageVariant
!== variant
)
1321 if (!confirm("Unfinished " + storageVariant
+
1322 " computer game will be erased"))
1329 const score
= localStorage
.getItem("comp-score");
1331 return this.continueGame("computer");
1335 this.vr
= new VariantRules(fen
, []);
1337 this.pgnTxt
= ""; //redundant with this.score = "*", but cleaner
1340 this.fenStart
= V
.ParseFen(fen
).position
; //this is enough
1344 this.gameId
= getRandString();
1346 this.oppConnected
= true;
1347 this.mycolor
= color
;
1349 if (this.sound
>= 1)
1350 new Audio("/sounds/newgame.mp3").play().catch(err
=> {});
1351 document
.getElementById("modal-newgame").checked
= false;
1352 this.setStorage(); //in case of interruptions
1354 else if (mode
== "computer")
1356 this.compWorker
.postMessage(["init",this.vr
.getFen()]);
1357 this.mycolor
= (Math
.random() < 0.5 ? 'w' : 'b');
1358 this.setStorage(); //store game state
1359 if (this.mycolor
!= this.vr
.turn
)
1360 this.playComputerMove();
1362 //else: against a (IRL) friend or problem solving: nothing more to do
1364 continueGame: function(mode
) {
1366 this.oppid
= (mode
=="human" ? localStorage
.getItem("oppid") : undefined);
1367 const prefix
= (mode
=="computer" ? "comp-" : "");
1368 this.mycolor
= localStorage
.getItem(prefix
+"mycolor");
1369 const moves
= JSON
.parse(localStorage
.getItem(prefix
+"moves"));
1370 const fen
= localStorage
.getItem(prefix
+"fen");
1371 const score
= localStorage
.getItem(prefix
+"score"); //set in "endGame()"
1372 this.fenStart
= localStorage
.getItem(prefix
+"fenStart");
1373 if (mode
== "human")
1375 this.gameId
= localStorage
.getItem("gameId");
1376 // Send ping to server (answer pong if opponent is connected)
1377 this.conn
.send(JSON
.stringify({
1378 code:"ping",oppid:this.oppid
,gameId:this.gameId
}));
1381 this.compWorker
.postMessage(["init",fen
]);
1382 this.vr
= new VariantRules(fen
, moves
);
1383 if (moves
.length
> 0)
1385 const lastMove
= moves
[moves
.length
-1];
1386 this.vr
.undo(lastMove
);
1387 this.incheck
= this.vr
.getCheckSquares(lastMove
);
1388 this.vr
.play(lastMove
, "ingame");
1392 // Small delay required when continuation run faster than drawing page
1393 setTimeout(() => this.endGame(score
), 100);
1396 playComputerMove: function() {
1397 this.timeStart
= Date
.now();
1398 this.compWorker
.postMessage(["askmove"]);
1400 // Get the identifier of a HTML table cell from its numeric coordinates o.x,o.y.
1401 getSquareId: function(o
) {
1402 // NOTE: a separator is required to allow any size of board
1403 return "sq-" + o
.x
+ "-" + o
.y
;
1406 getSquareFromId: function(id
) {
1407 let idParts
= id
.split('-');
1408 return [parseInt(idParts
[1]), parseInt(idParts
[2])];
1410 mousedown: function(e
) {
1411 e
= e
|| window
.event
;
1413 let elem
= e
.target
;
1414 while (!ingame
&& elem
!== null)
1416 if (elem
.classList
.contains("game"))
1421 elem
= elem
.parentElement
;
1423 if (!ingame
) //let default behavior (click on button...)
1425 e
.preventDefault(); //disable native drag & drop
1426 if (!this.selectedPiece
&& e
.target
.classList
.contains("piece"))
1428 // Next few lines to center the piece on mouse cursor
1429 let rect
= e
.target
.parentNode
.getBoundingClientRect();
1431 x: rect
.x
+ rect
.width
/2,
1432 y: rect
.y
+ rect
.width
/2,
1433 id: e
.target
.parentNode
.id
1435 this.selectedPiece
= e
.target
.cloneNode();
1436 this.selectedPiece
.style
.position
= "absolute";
1437 this.selectedPiece
.style
.top
= 0;
1438 this.selectedPiece
.style
.display
= "inline-block";
1439 this.selectedPiece
.style
.zIndex
= 3000;
1440 const startSquare
= this.getSquareFromId(e
.target
.parentNode
.id
);
1441 this.possibleMoves
= [];
1442 if (!["idle","chat"].includes(this.mode
))
1444 const color
= ["friend","problem"].includes(this.mode
)
1447 if (this.vr
.canIplay(color
,startSquare
))
1448 this.possibleMoves
= this.vr
.getPossibleMovesFrom(startSquare
);
1450 // Next line add moving piece just after current image
1451 // (required for Crazyhouse reserve)
1452 e
.target
.parentNode
.insertBefore(this.selectedPiece
, e
.target
.nextSibling
);
1455 mousemove: function(e
) {
1456 if (!this.selectedPiece
)
1458 e
= e
|| window
.event
;
1459 // If there is an active element, move it around
1460 if (!!this.selectedPiece
)
1462 const [offsetX
,offsetY
] = !!e
.clientX
1463 ? [e
.clientX
,e
.clientY
] //desktop browser
1464 : [e
.changedTouches
[0].pageX
, e
.changedTouches
[0].pageY
]; //smartphone
1465 this.selectedPiece
.style
.left
= (offsetX
-this.start
.x
) + "px";
1466 this.selectedPiece
.style
.top
= (offsetY
-this.start
.y
) + "px";
1469 mouseup: function(e
) {
1470 if (!this.selectedPiece
)
1472 e
= e
|| window
.event
;
1473 // Read drop target (or parentElement, parentNode... if type == "img")
1474 this.selectedPiece
.style
.zIndex
= -3000; //HACK to find square from final coords
1475 const [offsetX
,offsetY
] = !!e
.clientX
1476 ? [e
.clientX
,e
.clientY
]
1477 : [e
.changedTouches
[0].pageX
, e
.changedTouches
[0].pageY
];
1478 let landing
= document
.elementFromPoint(offsetX
, offsetY
);
1479 this.selectedPiece
.style
.zIndex
= 3000;
1480 // Next condition: classList.contains(piece) fails because of marks
1481 while (landing
.tagName
== "IMG")
1482 landing
= landing
.parentNode
;
1483 if (this.start
.id
== landing
.id
)
1485 // A click: selectedPiece and possibleMoves are already filled
1488 // OK: process move attempt
1489 let endSquare
= this.getSquareFromId(landing
.id
);
1490 let moves
= this.findMatchingMoves(endSquare
);
1491 this.possibleMoves
= [];
1492 if (moves
.length
> 1)
1493 this.choices
= moves
;
1494 else if (moves
.length
==1)
1495 this.play(moves
[0]);
1496 // Else: impossible move
1497 this.selectedPiece
.parentNode
.removeChild(this.selectedPiece
);
1498 delete this.selectedPiece
;
1499 this.selectedPiece
= null;
1501 findMatchingMoves: function(endSquare
) {
1502 // Run through moves list and return the matching set (if promotions...)
1504 this.possibleMoves
.forEach(function(m
) {
1505 if (endSquare
[0] == m
.end
.x
&& endSquare
[1] == m
.end
.y
)
1510 animateMove: function(move) {
1511 let startSquare
= document
.getElementById(this.getSquareId(move.start
));
1512 let endSquare
= document
.getElementById(this.getSquareId(move.end
));
1513 let rectStart
= startSquare
.getBoundingClientRect();
1514 let rectEnd
= endSquare
.getBoundingClientRect();
1515 let translation
= {x:rectEnd
.x
-rectStart
.x
, y:rectEnd
.y
-rectStart
.y
};
1517 document
.querySelector("#" + this.getSquareId(move.start
) + " > img.piece");
1518 // HACK for animation (with positive translate, image slides "under background")
1519 // Possible improvement: just alter squares on the piece's way...
1520 squares
= document
.getElementsByClassName("board");
1521 for (let i
=0; i
<squares
.length
; i
++)
1523 let square
= squares
.item(i
);
1524 if (square
.id
!= this.getSquareId(move.start
))
1525 square
.style
.zIndex
= "-1";
1527 movingPiece
.style
.transform
= "translate(" + translation
.x
+ "px," +
1528 translation
.y
+ "px)";
1529 movingPiece
.style
.transitionDuration
= "0.2s";
1530 movingPiece
.style
.zIndex
= "3000";
1532 for (let i
=0; i
<squares
.length
; i
++)
1533 squares
.item(i
).style
.zIndex
= "auto";
1534 movingPiece
.style
= {}; //required e.g. for 0-0 with KR swap
1538 play: function(move, programmatic
) {
1541 // Navigate after game is over
1542 if (this.cursor
>= this.vr
.moves
.length
)
1543 return; //already at the end
1544 move = this.vr
.moves
[this.cursor
++];
1546 if (!!programmatic
) //computer or human opponent
1548 this.animateMove(move);
1551 // Not programmatic, or animation is over
1552 if (this.mode
== "human" && this.vr
.turn
== this.mycolor
)
1553 this.conn
.send(JSON
.stringify({code:"newmove", move:move, oppid:this.oppid
}));
1554 if (this.sound
== 2)
1555 new Audio("/sounds/chessmove1.mp3").play().catch(err
=> {});
1556 if (!["idle","chat"].includes(this.mode
))
1558 // Emergency check, if human game started "at the same time"
1559 // TODO: robustify this...
1560 if (this.mode
== "human" && !!move.computer
)
1562 this.incheck
= this.vr
.getCheckSquares(move); //is opponent in check?
1563 this.vr
.play(move, "ingame");
1564 if (this.mode
== "computer")
1566 // Send the move to web worker (TODO: including his own moves?!)
1567 this.compWorker
.postMessage(["newmove",move]);
1572 VariantRules
.PlayOnBoard(this.vr
.board
, move);
1573 this.$forceUpdate(); //TODO: ?!
1575 if (!["idle","chat"].includes(this.mode
))
1577 const eog
= this.vr
.checkGameOver();
1580 if (["human","computer"].includes(this.mode
))
1584 // Just show score on screen (allow undo)
1586 this.showScoreMsg();
1590 if (["human","computer"].includes(this.mode
))
1591 this.updateStorage(); //after our moves and opponent moves
1592 if (this.mode
== "computer" && this.vr
.turn
!= this.mycolor
&& this.score
== "*")
1593 this.playComputerMove();
1596 // Navigate after game is over
1597 if (this.cursor
== 0)
1598 return; //already at the beginning
1599 if (this.cursor
== this.vr
.moves
.length
)
1600 this.incheck
= []; //in case of...
1601 const move = this.vr
.moves
[--this.cursor
];
1602 VariantRules
.UndoOnBoard(this.vr
.board
, move);
1603 this.$forceUpdate(); //TODO: ?!
1605 undoInGame: function() {
1606 const lm
= this.vr
.lastMove
;
1610 const lmBefore
= this.vr
.lastMove
;
1613 this.vr
.undo(lmBefore
);
1614 this.incheck
= this.vr
.getCheckSquares(lmBefore
);
1615 this.vr
.play(lmBefore
, "ingame");