Prepare smoother future updates
[vchess.git] / client / src / views / Game.vue
CommitLineData
a6088c90 1<template lang="pug">
7aa548e7 2main
c292ebb2
BA
3 input#modalInfo.modal(type="checkbox")
4 div#infoDiv(
5 role="dialog"
6 data-checkbox="modalInfo"
7 )
8 .card.text-center
9 label.modal-close(for="modalInfo")
10 p(v-html="infoMessage")
910d631b
BA
11 input#modalChat.modal(
12 type="checkbox"
13 @click="resetChatColor()"
14 )
15 div#chatWrap(
16 role="dialog"
17 data-checkbox="modalChat"
18 )
5b4de147 19 .card
a1c48034 20 label.modal-close(for="modalChat")
ed06d9e9 21 #participants
afde7666 22 span {{ st.tr["Participant(s):"] }}
910d631b
BA
23 span(
24 v-for="p in Object.values(people)"
a041d5d8 25 v-if="p.focus && !!p.name"
910d631b 26 )
ed06d9e9 27 | {{ p.name }}
a041d5d8
BA
28 span.anonymous(
29 v-if="Object.values(people).some(p => p.focus && !p.name)"
30 )
ed06d9e9 31 | + @nonymous
910d631b 32 Chat(
aae89b49 33 ref="chatcomp"
910d631b
BA
34 :players="game.players"
35 :pastChats="game.chats"
36 :newChat="newChat"
37 @mychat="processChat"
db1f1f9a 38 @chatcleared="clearChat"
910d631b 39 )
5b4de147
BA
40 input#modalConfirm.modal(type="checkbox")
41 div#confirmDiv(role="dialog")
42 .card
a17ae317
BA
43 .diagram(
44 v-if="!!vr && ['all','byrow'].includes(vr.showMoves)"
45 v-html="curDiag"
46 )
47 p.text-center(v-else)
48 span {{ st.tr["Move played:"] + " " }}
49 span.bold {{ moveNotation }}
50 br
51 span {{ st.tr["Are you sure?"] }}
5b4de147
BA
52 .button-group#buttonsConfirm
53 // onClick for acceptBtn: set dynamically
54 button.acceptBtn
55 span {{ st.tr["Validate"] }}
56 button.refuseBtn(@click="cancelMove()")
57 span {{ st.tr["Cancel"] }}
7aa548e7 58 .row
050ae3b5 59 #aboveBoard.col-sm-12.col-md-9.col-md-offset-3.col-lg-10.col-lg-offset-2
2f258c37
BA
60 span.variant-cadence {{ game.cadence }}
61 span.variant-name {{ game.vname }}
feaf1bf7
BA
62 span#nextGame(
63 v-if="nextIds.length > 0"
64 @click="showNextGame()"
65 )
66 | {{ st.tr["Next_g"] }}
67 button#chatBtn.tooltip(
68 onClick="window.doClick('modalChat')"
69 aria-label="Chat"
70 )
71 img(src="/images/icons/chat.svg")
4f518610 72 #actions(v-if="game.score=='*'")
feaf1bf7 73 button.tooltip(
910d631b
BA
74 @click="clickDraw()"
75 :class="{['draw-' + drawOffer]: true}"
feaf1bf7 76 :aria-label="st.tr['Draw']"
910d631b 77 )
feaf1bf7
BA
78 img(src="/images/icons/draw.svg")
79 button.tooltip(
910d631b
BA
80 v-if="!!game.mycolor"
81 @click="abortGame()"
feaf1bf7 82 :aria-label="st.tr['Abort']"
910d631b 83 )
feaf1bf7
BA
84 img(src="/images/icons/abort.svg")
85 button.tooltip(
910d631b
BA
86 v-if="!!game.mycolor"
87 @click="resign()"
feaf1bf7 88 :aria-label="st.tr['Resign']"
910d631b 89 )
feaf1bf7
BA
90 img(src="/images/icons/resign.svg")
91 button.tooltip(
28b32b4f 92 v-else
c292ebb2
BA
93 @click="clickRematch()"
94 :class="{['rematch-' + rematchOffer]: true}"
feaf1bf7
BA
95 :aria-label="st.tr['Rematch']"
96 )
97 img(src="/images/icons/rematch.svg")
050ae3b5
BA
98 #playersInfo
99 p
5bcc9b31
BA
100 span.name(:class="{connected: isConnected(0)}")
101 | {{ game.players[0].name || "@nonymous" }}
57eb158f
BA
102 span.time(
103 v-if="game.score=='*'"
104 :class="{yourturn: !!vr && vr.turn == 'w'}"
105 )
106 span.time-left {{ virtualClocks[0][0] }}
107 span.time-separator(v-if="!!virtualClocks[0][1]") :
aae89b49
BA
108 span.time-right(v-if="!!virtualClocks[0][1]")
109 | {{ virtualClocks[0][1] }}
050ae3b5 110 span.split-names -
5bcc9b31
BA
111 span.name(:class="{connected: isConnected(1)}")
112 | {{ game.players[1].name || "@nonymous" }}
57eb158f
BA
113 span.time(
114 v-if="game.score=='*'"
115 :class="{yourturn: !!vr && vr.turn == 'b'}"
116 )
117 span.time-left {{ virtualClocks[1][0] }}
118 span.time-separator(v-if="!!virtualClocks[1][1]") :
aae89b49
BA
119 span.time-right(v-if="!!virtualClocks[1][1]")
120 | {{ virtualClocks[1][1] }}
910d631b 121 BaseGame(
8477e53d 122 ref="basegame"
910d631b 123 :game="game"
910d631b 124 @newmove="processMove"
910d631b 125 )
a6088c90
BA
126</template>
127
128<script>
46284a2f 129import BaseGame from "@/components/BaseGame.vue";
f21cd6d9 130import Chat from "@/components/Chat.vue";
a6088c90 131import { store } from "@/store";
967a2686 132import { GameStorage } from "@/utils/gameStorage";
5b87454c 133import { ppt } from "@/utils/datetime";
23ecf008 134import { ajax } from "@/utils/ajax";
66d03f23 135import { extractTime } from "@/utils/timeControl";
51d87b52 136import { getRandString } from "@/utils/alea";
5aa14a21
BA
137import { getScoreMessage } from "@/utils/scoring";
138import { getFullNotation } from "@/utils/notation";
5b4de147 139import { getDiagram } from "@/utils/printDiagram";
dcd68c41 140import { processModalClick } from "@/utils/modalClick";
e71161fb 141import { playMove, getFilteredMove } from "@/utils/playUndo";
1611a25f 142import { ArrayFun } from "@/utils/array";
8418f0d7 143import params from "@/parameters";
a6088c90 144export default {
6808d7a1 145 name: "my-game",
a6088c90
BA
146 components: {
147 BaseGame,
6808d7a1 148 Chat
a6088c90 149 },
a6088c90
BA
150 data: function() {
151 return {
152 st: store.state,
6808d7a1 153 gameRef: {
1611a25f 154 // rid = remote (socket) ID
4b0384fa
BA
155 id: "",
156 rid: ""
157 },
feaf1bf7 158 nextIds: [],
aae89b49
BA
159 game: {}, //passed to BaseGame
160 // virtualClocks will be initialized from true game.clocks
161 virtualClocks: [],
6dd02928 162 vr: null, //"variant rules" object initialized from FEN
dcd68c41 163 drawOffer: "",
da37e2b8 164 infoMessage: "",
c292ebb2 165 rematchOffer: "",
584f81b9 166 lastateAsked: false,
dcd68c41 167 people: {}, //players + observers
760adbce 168 lastate: undefined, //used if opponent send lastate before game is ready
72ccbd67 169 repeat: {}, //detect position repetition
5b4de147 170 curDiag: "", //for corr moves confirmation
ac8f441c 171 newChat: "",
8418f0d7 172 conn: null,
f9c36b2d
BA
173 roomInitialized: false,
174 // If newmove has wrong index: ask fullgame again:
57eb158f 175 askGameTime: 0,
dcff8e82 176 gameIsLoading: false,
f9c36b2d
BA
177 // If asklastate got no reply, ask again:
178 gotLastate: false,
e5c1d0fb 179 gotMoveIdx: -1, //last move index received
f9c36b2d
BA
180 // If newmove got no pingback, send again:
181 opponentGotMove: false,
51d87b52 182 connexionString: "",
a17ae317
BA
183 // Incomplete info games: show move played
184 moveNotation: "",
aae89b49 185 // Intervals from setInterval():
aae89b49
BA
186 askLastate: null,
187 retrySendmove: null,
188 clockUpdate: null,
51d87b52
BA
189 // Related to (killing of) self multi-connects:
190 newConnect: {},
6808d7a1 191 killed: {}
a6088c90
BA
192 };
193 },
194 watch: {
aae89b49
BA
195 $route: function(to, from) {
196 if (from.params["id"] != to.params["id"]) {
197 // Change everything:
198 this.cleanBeforeDestroy();
5aa14a21
BA
199 let boardDiv = document.querySelector(".game");
200 if (!!boardDiv)
201 // In case of incomplete information variant:
202 boardDiv.style.visibility = "hidden";
aae89b49
BA
203 this.atCreation();
204 } else {
205 // Same game ID
206 this.gameRef.id = to.params["id"];
207 this.gameRef.rid = to.query["rid"];
208 this.nextIds = JSON.parse(this.$route.query["next"] || "[]");
209 this.loadGame();
210 }
6808d7a1 211 }
92a523d1 212 },
71468011 213 // NOTE: some redundant code with Hall.vue (mostly related to people array)
a6088c90 214 created: function() {
aae89b49 215 this.atCreation();
cdb34c93 216 },
dcd68c41 217 mounted: function() {
a041d5d8 218 document.addEventListener('visibilitychange', this.visibilityChange);
42a92848
BA
219 ["chatWrap", "infoDiv"].forEach(eltName => {
220 document.getElementById(eltName)
221 .addEventListener("click", processModalClick);
222 });
5b4de147
BA
223 if ("ontouchstart" in window) {
224 // Disable tooltips on smartphones:
abb5917e 225 document.querySelectorAll("#aboveBoard .tooltip").forEach(elt => {
407342b6 226 elt.classList.remove("tooltip");
5b4de147
BA
227 });
228 }
dcd68c41 229 },
8418f0d7 230 beforeDestroy: function() {
a041d5d8 231 document.removeEventListener('visibilitychange', this.visibilityChange);
aae89b49 232 this.cleanBeforeDestroy();
8418f0d7 233 },
cdb34c93 234 methods: {
a041d5d8
BA
235 visibilityChange: function() {
236 // TODO: Use document.hidden? https://webplatform.news/issues/2019-03-27
237 this.send(
238 document.visibilityState == "visible"
239 ? "getfocus"
240 : "losefocus"
241 );
242 },
aae89b49
BA
243 atCreation: function() {
244 // 0] (Re)Set variables
245 this.gameRef.id = this.$route.params["id"];
246 // rid = remote ID to find an observed live game,
247 // next = next corr games IDs to navigate faster
248 // (Both might be undefined)
249 this.gameRef.rid = this.$route.query["rid"];
250 this.nextIds = JSON.parse(this.$route.query["next"] || "[]");
251 // Always add myself to players' list
252 const my = this.st.user;
a041d5d8
BA
253 this.$set(
254 this.people,
255 my.sid,
256 {
257 id: my.id,
258 name: my.name,
259 focus: true
260 }
261 );
aae89b49
BA
262 this.game = {
263 players: [{ name: "" }, { name: "" }],
264 chats: [],
265 rendered: false
266 };
267 let chatComp = this.$refs["chatcomp"];
268 if (!!chatComp) chatComp.chats = [];
269 this.virtualClocks = [[0,0], [0,0]];
270 this.vr = null;
271 this.drawOffer = "";
584f81b9 272 this.lastateAsked = false;
c292ebb2 273 this.rematchOffer = "";
aae89b49
BA
274 this.lastate = undefined;
275 this.newChat = "";
276 this.roomInitialized = false;
277 this.askGameTime = 0;
278 this.gameIsLoading = false;
279 this.gotLastate = false;
280 this.gotMoveIdx = -1;
281 this.opponentGotMove = false;
aae89b49
BA
282 this.askLastate = null;
283 this.retrySendmove = null;
284 this.clockUpdate = null;
285 this.newConnect = {};
286 this.killed = {};
287 // 1] Initialize connection
288 this.connexionString =
289 params.socketUrl +
290 "/?sid=" +
291 this.st.user.sid +
cafe0166
BA
292 "&id=" +
293 this.st.user.id +
aae89b49
BA
294 "&tmpId=" +
295 getRandString() +
296 "&page=" +
297 // Discard potential "/?next=[...]" for page indication:
298 encodeURIComponent(this.$route.path.match(/\/game\/[a-zA-Z0-9]+/)[0]);
299 this.conn = new WebSocket(this.connexionString);
300 this.conn.onmessage = this.socketMessageListener;
301 this.conn.onclose = this.socketCloseListener;
302 // Socket init required before loading remote game:
303 const socketInit = callback => {
304 if (!!this.conn && this.conn.readyState == 1)
305 // 1 == OPEN state
306 callback();
307 else
308 // Socket not ready yet (initial loading)
309 // NOTE: it's important to call callback without arguments,
310 // otherwise first arg is Websocket object and loadGame fails.
311 this.conn.onopen = () => callback();
312 };
313 if (!this.gameRef.rid)
314 // Game stored locally or on server
315 this.loadGame(null, () => socketInit(this.roomInit));
316 else
317 // Game stored remotely: need socket to retrieve it
318 // NOTE: the callback "roomInit" will be lost, so we don't provide it.
319 // --> It will be given when receiving "fullgame" socket event.
320 socketInit(this.loadGame);
321 },
322 cleanBeforeDestroy: function() {
aae89b49
BA
323 if (!!this.askLastate)
324 clearInterval(this.askLastate);
325 if (!!this.retrySendmove)
326 clearInterval(this.retrySendmove);
327 if (!!this.clockUpdate)
328 clearInterval(this.clockUpdate);
329 this.send("disconnect");
330 },
760adbce 331 roomInit: function() {
f9c36b2d
BA
332 if (!this.roomInitialized) {
333 // Notify the room only now that I connected, because
334 // messages might be lost otherwise (if game loading is slow)
335 this.send("connect");
336 this.send("pollclients");
337 // We may ask fullgame several times if some moves are lost,
338 // but room should be init only once:
339 this.roomInitialized = true;
340 }
71468011
BA
341 },
342 send: function(code, obj) {
f9c36b2d 343 if (!!this.conn)
6808d7a1 344 this.conn.send(JSON.stringify(Object.assign({ code: code }, obj)));
5f131484 345 },
050ae3b5 346 isConnected: function(index) {
29ced362 347 const player = this.game.players[index];
a041d5d8 348 // Is it me ? In this case no need to bother with focus
0a17525e
BA
349 if (this.st.user.sid == player.sid || this.st.user.id == player.uid)
350 // Still have to check for name (because of potential multi-accounts
351 // on same browser, although this should be rare...)
352 return (!this.st.user.name || this.st.user.name == player.name);
29ced362 353 // Try to find a match in people:
6808d7a1 354 return (
1611a25f 355 (
a041d5d8
BA
356 !!player.sid &&
357 Object.keys(this.people).some(sid =>
358 sid == player.sid && this.people[sid].focus)
1611a25f
BA
359 )
360 ||
361 (
362 player.uid &&
a041d5d8
BA
363 Object.values(this.people).some(p =>
364 p.id == player.uid && p.focus)
1611a25f 365 )
6808d7a1 366 );
050ae3b5 367 },
c292ebb2
BA
368 getOppsid: function() {
369 let oppsid = this.game.oppsid;
370 if (!oppsid) {
371 oppsid = Object.keys(this.people).find(
372 sid => this.people[sid].id == this.game.oppid
373 );
374 }
375 // oppsid is useful only if opponent is online:
376 if (!!oppsid && !!this.people[oppsid]) return oppsid;
377 return null;
378 },
db1f1f9a
BA
379 resetChatColor: function() {
380 // TODO: this is called twice, once on opening an once on closing
381 document.getElementById("chatBtn").classList.remove("somethingnew");
382 },
383 processChat: function(chat) {
384 this.send("newchat", { data: chat });
385 // NOTE: anonymous chats in corr games are not stored on server (TODO?)
386 if (this.game.type == "corr" && this.st.user.id > 0)
aae89b49 387 this.updateCorrGame({ chat: chat });
db1f1f9a
BA
388 },
389 clearChat: function() {
390 // Nothing more to do if game is live (chats not recorded)
23ecf008 391 if (this.game.type == "corr") {
e57c4de4
BA
392 if (!!this.game.mycolor) {
393 ajax(
394 "/chats",
395 "DELETE",
396 { data: { gid: this.game.id } }
397 );
398 }
dcff8e82 399 this.$set(this.game, "chats", []);
db1f1f9a
BA
400 }
401 },
584f81b9
BA
402 getGameType: function(game) {
403 return game.cadence.indexOf("d") >= 0 ? "corr" : "live";
404 },
cafe0166
BA
405 // Notify something after a new move (to opponent and me on MyGames page)
406 notifyMyGames: function(thing, data) {
407 this.send(
408 "notify" + thing,
409 {
410 data: data,
411 targets: this.game.players.map(p => {
412 return { sid: p.sid, uid: p.uid };
413 })
414 }
415 );
1611a25f 416 },
feaf1bf7
BA
417 showNextGame: function() {
418 // Did I play in current game? If not, add it to nextIds list
419 if (this.game.score == "*" && this.vr.turn == this.game.mycolor)
420 this.nextIds.unshift(this.game.id);
421 const nextGid = this.nextIds.pop();
422 this.$router.push(
423 "/game/" + nextGid + "/?next=" + JSON.stringify(this.nextIds));
424 },
d6f08e56
BA
425 askGameAgain: function() {
426 this.gameIsLoading = true;
aae89b49 427 const currentUrl = document.location.href;
57eb158f 428 const doAskGame = () => {
e01e086d 429 if (document.location.href != currentUrl) return; //page change
57eb158f
BA
430 if (!this.gameRef.rid)
431 // This is my game: just reload.
432 this.loadGame();
e01e086d 433 else
57eb158f
BA
434 // Just ask fullgame again (once!), this is much simpler.
435 // If this fails, the user could just reload page :/
aae89b49 436 this.send("askfullgame", { target: this.gameRef.rid });
57eb158f
BA
437 };
438 // Delay of at least 2s between two game requests
439 const now = Date.now();
440 const delay = Math.max(2000 - (now - this.askGameTime), 0);
441 this.askGameTime = now;
442 setTimeout(doAskGame, delay);
d6f08e56 443 },
cdb34c93 444 socketMessageListener: function(msg) {
6808d7a1 445 if (!this.conn) return;
a6088c90 446 const data = JSON.parse(msg.data);
6808d7a1 447 switch (data.code) {
5f131484 448 case "pollclients":
5f131484 449 data.sockIds.forEach(sid => {
a041d5d8
BA
450 if (sid != this.st.user.sid) {
451 this.people[sid] = { focus: true };
6808d7a1 452 this.send("askidentity", { target: sid });
a041d5d8 453 }
5f131484
BA
454 });
455 break;
71468011 456 case "connect":
efdfb4c7 457 if (!this.people[data.from]) {
a041d5d8 458 this.people[data.from] = { focus: true };
51d87b52 459 this.newConnect[data.from] = true; //for self multi-connects tests
6808d7a1 460 this.send("askidentity", { target: data.from });
51d87b52 461 }
71468011
BA
462 break;
463 case "disconnect":
464 this.$delete(this.people, data.from);
465 break;
a041d5d8
BA
466 case "getfocus": {
467 let player = this.people[data.from];
468 if (!!player) {
469 player.focus = true;
470 this.$forceUpdate(); //TODO: shouldn't be required
471 }
472 break;
473 }
474 case "losefocus": {
475 let player = this.people[data.from];
476 if (!!player) {
477 player.focus = false;
478 this.$forceUpdate(); //TODO: shouldn't be required
479 }
480 break;
481 }
51d87b52
BA
482 case "killed":
483 // I logged in elsewhere:
51d87b52 484 this.conn = null;
09d37571 485 alert(this.st.tr["New connexion detected: tab now offline"]);
51d87b52 486 break;
6808d7a1 487 case "askidentity": {
efdfb4c7 488 // Request for identification
51d87b52
BA
489 const me = {
490 // Decompose to avoid revealing email
491 name: this.st.user.name,
492 sid: this.st.user.sid,
6808d7a1 493 id: this.st.user.id
51d87b52 494 };
6808d7a1 495 this.send("identity", { data: me, target: data.from });
5f131484 496 break;
51d87b52 497 }
6808d7a1 498 case "identity": {
71468011 499 const user = data.data;
a041d5d8
BA
500 let player = this.people[user.sid];
501 // player.focus is already set
502 player.name = user.name;
503 player.id = user.id;
504 this.$forceUpdate(); //TODO: shouldn't be required
f9c36b2d
BA
505 // If I multi-connect, kill current connexion if no mark (I'm older)
506 if (this.newConnect[user.sid]) {
6808d7a1 507 if (
6808d7a1
BA
508 user.id > 0 &&
509 user.id == this.st.user.id &&
f9c36b2d
BA
510 user.sid != this.st.user.sid &&
511 !this.killed[this.st.user.sid]
6808d7a1 512 ) {
6808d7a1 513 this.send("killme", { sid: this.st.user.sid });
51d87b52 514 this.killed[this.st.user.sid] = true;
51d87b52 515 }
f9c36b2d 516 delete this.newConnect[user.sid];
a0c41e7e 517 }
dcff8e82
BA
518 if (!this.killed[this.st.user.sid]) {
519 // Ask potentially missed last state, if opponent and I play
520 if (
521 !!this.game.mycolor &&
522 this.game.type == "live" &&
523 this.game.score == "*" &&
524 this.game.players.some(p => p.sid == user.sid)
525 ) {
aae89b49 526 this.send("asklastate", { target: user.sid });
e01e086d 527 let counter = 1;
aae89b49
BA
528 this.askLastate = setInterval(
529 () => {
e01e086d
BA
530 // Ask at most 3 times:
531 // if no reply after that there should be a network issue.
532 if (
533 counter < 3 &&
534 !this.gotLastate &&
535 !!this.people[user.sid]
536 ) {
aae89b49 537 this.send("asklastate", { target: user.sid });
e01e086d
BA
538 counter++;
539 } else {
aae89b49 540 clearInterval(this.askLastate);
e01e086d 541 }
aae89b49 542 },
e01e086d 543 1500
aae89b49 544 );
dcff8e82
BA
545 }
546 }
a0c41e7e 547 break;
71468011
BA
548 }
549 case "askgame":
550 // Send current (live) game if not asked by any of the players
6808d7a1
BA
551 if (
552 this.game.type == "live" &&
553 this.game.players.every(p => p.sid != data.from[0])
554 ) {
71468011
BA
555 const myGame = {
556 id: this.game.id,
557 fen: this.game.fen,
558 players: this.game.players,
559 vid: this.game.vid,
560 cadence: this.game.cadence,
561 score: this.game.score,
6808d7a1 562 rid: this.st.user.sid //useful in Hall if I'm an observer
71468011 563 };
6808d7a1 564 this.send("game", { data: myGame, target: data.from });
71468011
BA
565 }
566 break;
567 case "askfullgame":
e8da204a
BA
568 const gameToSend = Object.keys(this.game)
569 .filter(k =>
570 [
571 "id","fen","players","vid","cadence","fenStart","vname",
c292ebb2 572 "moves","clocks","initime","score","drawOffer","rematchOffer"
e8da204a
BA
573 ].includes(k))
574 .reduce(
575 (obj, k) => {
576 obj[k] = this.game[k];
577 return obj;
578 },
579 {}
580 );
581 this.send("fullgame", { data: gameToSend, target: data.from });
71468011
BA
582 break;
583 case "fullgame":
584 // Callback "roomInit" to poll clients only after game is loaded
dcff8e82 585 this.loadGame(data.data, this.roomInit);
71468011 586 break;
a0c41e7e 587 case "asklastate":
dcff8e82 588 // Sending informative last state if I played a move or score != "*"
584f81b9
BA
589 // If the game or moves aren't loaded yet, delay the sending:
590 if (!this.game || !this.game.moves) this.lastateAsked = true;
591 else this.sendLastate(data.from);
c6788ecf 592 break;
dcff8e82
BA
593 case "lastate": {
594 // Got opponent infos about last move
595 this.gotLastate = true;
596 if (!data.data.nothing) {
597 this.lastate = data.data;
598 if (this.game.rendered)
599 // Game is rendered (Board component)
600 this.processLastate();
601 // Else: will be processed when game is ready
602 }
71468011 603 break;
dcff8e82 604 }
6808d7a1 605 case "newmove": {
dcff8e82
BA
606 const movePlus = data.data;
607 const movesCount = this.game.moves.length;
608 if (movePlus.index > movesCount) {
609 // This can only happen if I'm an observer and missed a move.
57eb158f
BA
610 if (this.gotMoveIdx < movePlus.index)
611 this.gotMoveIdx = movePlus.index;
d6f08e56
BA
612 if (!this.gameIsLoading) this.askGameAgain();
613 }
614 else {
f9c36b2d 615 if (
dcff8e82
BA
616 movePlus.index < movesCount ||
617 this.gotMoveIdx >= movePlus.index
f9c36b2d
BA
618 ) {
619 // Opponent re-send but we already have the move:
620 // (maybe he didn't receive our pingback...)
dcff8e82 621 this.send("gotmove", {data: movePlus.index, target: data.from});
f9c36b2d 622 } else {
dcff8e82
BA
623 this.gotMoveIdx = movePlus.index;
624 const receiveMyMove = (movePlus.color == this.game.mycolor);
f9c36b2d
BA
625 if (!receiveMyMove && !!this.game.mycolor)
626 // Notify opponent that I got the move:
dcff8e82
BA
627 this.send("gotmove", {data: movePlus.index, target: data.from});
628 if (movePlus.cancelDrawOffer) {
f9c36b2d
BA
629 // Opponent refuses draw
630 this.drawOffer = "";
631 // NOTE for corr games: drawOffer reset by player in turn
632 if (
633 this.game.type == "live" &&
634 !!this.game.mycolor &&
635 !receiveMyMove
636 ) {
637 GameStorage.update(this.gameRef.id, { drawOffer: "" });
638 }
639 }
57eb158f
BA
640 this.$refs["basegame"].play(movePlus.move, "received", null, true);
641 this.processMove(
dcff8e82 642 movePlus.move,
f9c36b2d 643 {
e01e086d 644 clock: movePlus.clock,
f9c36b2d
BA
645 receiveMyMove: receiveMyMove
646 }
647 );
648 }
633959bf 649 }
a6088c90 650 break;
71468011 651 }
f9c36b2d
BA
652 case "gotmove": {
653 this.opponentGotMove = true;
e01e086d
BA
654 // Now his clock starts running:
655 const oppIdx = ['w','b'].indexOf(this.vr.turn);
656 this.game.initime[oppIdx] = Date.now();
657 this.re_setClocks();
f9c36b2d
BA
658 break;
659 }
93d1d7a7 660 case "resign":
8477e53d
BA
661 const score = data.side == "b" ? "1-0" : "0-1";
662 const side = data.side == "w" ? "White" : "Black";
663 this.gameOver(score, side + " surrender");
93d1d7a7 664 break;
93d1d7a7 665 case "abort":
8477e53d 666 this.gameOver("?", "Stop");
93d1d7a7 667 break;
2cc10cdb 668 case "draw":
71468011 669 this.gameOver("1/2", data.data);
2cc10cdb
BA
670 break;
671 case "drawoffer":
41c80bb6
BA
672 // NOTE: observers don't know who offered draw
673 this.drawOffer = "received";
6d9f4315 674 break;
c292ebb2
BA
675 case "rematchoffer":
676 // NOTE: observers don't know who offered rematch
677 this.rematchOffer = data.data ? "received" : "";
678 break;
679 case "newgame": {
680 // A game started, redirect if I'm playing in
681 const gameInfo = data.data;
584f81b9 682 const gameType = this.getGameType(gameInfo);
c292ebb2 683 if (
584f81b9
BA
684 gameType == "live" &&
685 gameInfo.players.some(p => p.sid == this.st.user.sid)
686 ) {
687 this.addAndGotoLiveGame(gameInfo);
688 } else if (
689 gameType == "corr" &&
690 gameInfo.players.some(p => p.uid == this.st.user.id)
c292ebb2
BA
691 ) {
692 this.$router.push("/game/" + gameInfo.id);
693 } else {
694 let urlRid = "";
695 if (gameInfo.cadence.indexOf('d') === -1) {
696 urlRid = "/?rid=";
697 // Select sid of any of the online players:
698 let onlineSid = [];
699 gameInfo.players.forEach(p => {
700 if (!!this.people[p.sid]) onlineSid.push(p.sid);
701 });
702 urlRid += onlineSid[Math.floor(Math.random() * onlineSid.length)];
703 }
704 this.infoMessage =
705 this.st.tr["Rematch in progress:"] +
706 " <a href='#/game/" +
707 gameInfo.id + urlRid +
708 "'>" +
709 "#/game/" +
710 gameInfo.id + urlRid +
711 "</a>";
712 document.getElementById("modalInfo").checked = true;
713 }
714 break;
715 }
71468011 716 case "newchat":
bd76b456 717 this.newChat = data.data;
71468011 718 if (!document.getElementById("modalChat").checked)
2f258c37 719 document.getElementById("chatBtn").classList.add("somethingnew");
a6088c90
BA
720 break;
721 }
cdb34c93 722 },
51d87b52
BA
723 socketCloseListener: function() {
724 this.conn = new WebSocket(this.connexionString);
6808d7a1
BA
725 this.conn.addEventListener("message", this.socketMessageListener);
726 this.conn.addEventListener("close", this.socketCloseListener);
51d87b52 727 },
5aa14a21 728 updateCorrGame: function(obj, callback) {
aae89b49
BA
729 ajax(
730 "/games",
731 "PUT",
732 {
e57c4de4
BA
733 data: {
734 gid: this.gameRef.id,
735 newObj: obj
736 },
737 success: () => {
738 if (!!callback) callback();
739 }
aae89b49
BA
740 }
741 );
742 },
584f81b9
BA
743 sendLastate: function(target) {
744 if (
745 (this.game.moves.length > 0 && this.vr.turn != this.game.mycolor) ||
746 this.game.score != "*" ||
747 this.drawOffer == "sent" ||
748 this.rematchOffer == "sent"
749 ) {
750 // Send our "last state" informations to opponent
751 const L = this.game.moves.length;
752 const myIdx = ["w", "b"].indexOf(this.game.mycolor);
753 const myLastate = {
754 lastMove: L > 0 ? this.game.moves[L - 1] : undefined,
755 clock: this.game.clocks[myIdx],
756 // Since we played a move (or abort or resign),
757 // only drawOffer=="sent" is possible
758 drawSent: this.drawOffer == "sent",
759 rematchSent: this.rematchOffer == "sent",
760 score: this.game.score,
b83a675a 761 scoreMsg: this.game.scoreMsg,
584f81b9
BA
762 movesCount: L,
763 initime: this.game.initime[1 - myIdx] //relevant only if I played
764 };
765 this.send("lastate", { data: myLastate, target: target });
766 } else {
767 this.send("lastate", { data: {nothing: true}, target: target });
768 }
769 },
760adbce
BA
770 // lastate was received, but maybe game wasn't ready yet:
771 processLastate: function() {
772 const data = this.lastate;
773 this.lastate = undefined; //security...
774 const L = this.game.moves.length;
6808d7a1 775 if (data.movesCount > L) {
760adbce 776 // Just got last move from him
e01e086d
BA
777 this.$refs["basegame"].play(data.lastMove, "received", null, true);
778 this.processMove(data.lastMove, { clock: data.clock });
a0c41e7e 779 }
6808d7a1 780 if (data.drawSent) this.drawOffer = "received";
c292ebb2 781 if (data.rematchSent) this.rematchOffer = "received";
6808d7a1 782 if (data.score != "*") {
a0c41e7e 783 this.drawOffer = "";
5aa14a21 784 if (this.game.score == "*")
a17ae317 785 this.gameOver(data.score, data.scoreMsg);
760adbce
BA
786 }
787 },
dcd68c41 788 clickDraw: function() {
6808d7a1
BA
789 if (!this.game.mycolor) return; //I'm just spectator
790 if (["received", "threerep"].includes(this.drawOffer)) {
791 if (!confirm(this.st.tr["Accept draw?"])) return;
792 const message =
793 this.drawOffer == "received"
794 ? "Mutual agreement"
795 : "Three repetitions";
796 this.send("draw", { data: message });
77c50966 797 this.gameOver("1/2", message);
6808d7a1 798 } else if (this.drawOffer == "") {
e71161fb 799 // No effect if drawOffer == "sent"
9ee2826a 800 if (this.game.mycolor != this.vr.turn) {
6808d7a1 801 alert(this.st.tr["Draw offer only in your turn"]);
6fba6e0c 802 return;
6808d7a1
BA
803 }
804 if (!confirm(this.st.tr["Offer draw?"])) return;
760adbce 805 this.drawOffer = "sent";
71468011 806 this.send("drawoffer");
aae89b49
BA
807 if (this.game.type == "live") {
808 GameStorage.update(
809 this.gameRef.id,
810 { drawOffer: this.game.mycolor }
811 );
812 } else this.updateCorrGame({ drawOffer: this.game.mycolor });
a6088c90
BA
813 }
814 },
584f81b9
BA
815 addAndGotoLiveGame: function(gameInfo, callback) {
816 const game = Object.assign(
817 {},
818 gameInfo,
819 {
820 // (other) Game infos: constant
821 fenStart: gameInfo.fen,
822 vname: this.game.vname,
823 created: Date.now(),
824 // Game state (including FEN): will be updated
825 moves: [],
826 clocks: [-1, -1], //-1 = unstarted
827 initime: [0, 0], //initialized later
828 score: "*"
829 }
830 );
831 GameStorage.add(game, (err) => {
832 // No error expected.
833 if (!err) {
834 if (this.st.settings.sound)
835 new Audio("/sounds/newgame.flac").play().catch(() => {});
836 callback();
837 this.$router.push("/game/" + gameInfo.id);
838 }
839 });
840 },
c292ebb2
BA
841 clickRematch: function() {
842 if (!this.game.mycolor) return; //I'm just spectator
843 if (this.rematchOffer == "received") {
844 // Start a new game!
845 let gameInfo = {
846 id: getRandString(), //ignored if corr
847 fen: V.GenRandInitFen(this.game.randomness),
848 players: this.game.players.reverse(),
849 vid: this.game.vid,
850 cadence: this.game.cadence
851 };
584f81b9
BA
852 const notifyNewGame = () => {
853 let oppsid = this.getOppsid(); //may be null
854 this.send("rnewgame", { data: gameInfo, oppsid: oppsid });
cafe0166
BA
855 // Also to MyGames page:
856 this.notifyMyGames("newgame", gameInfo);
584f81b9
BA
857 };
858 if (this.game.type == "live")
859 this.addAndGotoLiveGame(gameInfo, notifyNewGame);
c292ebb2
BA
860 else {
861 // corr game
862 ajax(
863 "/games",
864 "POST",
865 {
866 // cid is useful to delete the challenge:
867 data: { gameInfo: gameInfo },
868 success: (response) => {
869 gameInfo.id = response.gameId;
584f81b9 870 notifyNewGame();
c292ebb2
BA
871 this.$router.push("/game/" + response.gameId);
872 }
873 }
874 );
875 }
876 } else if (this.rematchOffer == "") {
877 this.rematchOffer = "sent";
878 this.send("rematchoffer", { data: true });
879 if (this.game.type == "live") {
880 GameStorage.update(
881 this.gameRef.id,
882 { rematchOffer: this.game.mycolor }
883 );
884 } else this.updateCorrGame({ rematchOffer: this.game.mycolor });
885 } else if (this.rematchOffer == "sent") {
886 // Toggle rematch offer (on --> off)
887 this.rematchOffer = "";
888 this.send("rematchoffer", { data: false });
889 if (this.game.type == "live") {
890 GameStorage.update(
891 this.gameRef.id,
892 { rematchOffer: '' }
893 );
894 } else this.updateCorrGame({ rematchOffer: 'n' });
895 }
896 },
7f3484bd 897 abortGame: function() {
6808d7a1 898 if (!this.game.mycolor || !confirm(this.st.tr["Terminate game?"])) return;
8477e53d 899 this.gameOver("?", "Stop");
71468011 900 this.send("abort");
a6088c90 901 },
6808d7a1 902 resign: function() {
77c50966 903 if (!this.game.mycolor || !confirm(this.st.tr["Resign the game?"]))
a6088c90 904 return;
6808d7a1 905 this.send("resign", { data: this.game.mycolor });
8477e53d
BA
906 const score = this.game.mycolor == "w" ? "0-1" : "1-0";
907 const side = this.game.mycolor == "w" ? "White" : "Black";
908 this.gameOver(score, side + " surrender");
a6088c90 909 },
967a2686
BA
910 // 3 cases for loading a game:
911 // - from indexedDB (running or completed live game I play)
b196f8ea
BA
912 // - from server (one correspondance game I play[ed] or not)
913 // - from remote peer (one live game I don't play, finished or not)
760adbce 914 loadGame: function(game, callback) {
584f81b9 915 const afterRetrieval = async (game) => {
f41ce580
BA
916 const vModule = await import("@/variants/" + game.vname + ".js");
917 window.V = vModule.VariantRules;
918 this.vr = new V(game.fen);
584f81b9 919 const gtype = this.getGameType(game);
71468011 920 const tc = extractTime(game.cadence);
9ef63965
BA
921 const myIdx = game.players.findIndex(p => {
922 return p.sid == this.st.user.sid || p.uid == this.st.user.id;
923 });
6808d7a1
BA
924 const mycolor = [undefined, "w", "b"][myIdx + 1]; //undefined for observers
925 if (!game.chats) game.chats = []; //live games don't have chat history
926 if (gtype == "corr") {
927 if (game.players[0].color == "b") {
f41ce580 928 // Adopt the same convention for live and corr games: [0] = white
6808d7a1
BA
929 [game.players[0], game.players[1]] = [
930 game.players[1],
931 game.players[0]
932 ];
f41ce580 933 }
7f3484bd 934 // NOTE: clocks in seconds, initime in milliseconds
6808d7a1 935 game.moves.sort((m1, m2) => m1.idx - m2.idx); //in case of
feaf1bf7 936 game.clocks = [tc.mainTime, tc.mainTime];
e71161fb 937 const L = game.moves.length;
6808d7a1 938 if (game.score == "*") {
e71161fb 939 // Set clocks + initime
b7cbbda1 940 game.initime = [0, 0];
92240cf0
BA
941 if (L >= 1) {
942 const gameLastupdate = game.moves[L-1].played;
943 game.initime[L % 2] = gameLastupdate;
c3d16e78
BA
944 if (L >= 2) {
945 game.clocks[L % 2] =
946 tc.mainTime - (Date.now() - gameLastupdate) / 1000;
947 }
5f131484 948 }
92a523d1 949 }
9ef63965 950 // Sort chat messages from newest to oldest
6808d7a1
BA
951 game.chats.sort((c1, c2) => {
952 return c2.added - c1.added;
953 });
0d329b05 954 if (myIdx >= 0 && game.score == "*" && game.chats.length > 0) {
8477e53d 955 // Did a chat message arrive after my last move?
9ef63965 956 let dtLastMove = 0;
e71161fb
BA
957 if (L == 1 && myIdx == 0)
958 dtLastMove = game.moves[0].played;
959 else if (L >= 2) {
960 if (L % 2 == 0) {
961 // It's now white turn
962 dtLastMove = game.moves[L-1-(1-myIdx)].played;
963 } else {
964 // Black turn:
965 dtLastMove = game.moves[L-1-myIdx].played;
9ef63965
BA
966 }
967 }
968 if (dtLastMove < game.chats[0].added)
969 document.getElementById("chatBtn").classList.add("somethingnew");
970 }
971 // Now that we used idx and played, re-format moves as for live games
8477e53d 972 game.moves = game.moves.map(m => m.squares);
c0b27606 973 }
6808d7a1 974 if (gtype == "live" && game.clocks[0] < 0) {
8477e53d 975 // Game is unstarted
66d03f23 976 game.clocks = [tc.mainTime, tc.mainTime];
6808d7a1 977 if (game.score == "*") {
b7cbbda1 978 game.initime[0] = Date.now();
6808d7a1 979 if (myIdx >= 0) {
b7cbbda1 980 // I play in this live game; corr games don't have clocks+initime
6808d7a1 981 GameStorage.update(game.id, {
b7cbbda1 982 clocks: game.clocks,
6808d7a1 983 initime: game.initime
b7cbbda1
BA
984 });
985 }
22efa391 986 }
66d03f23 987 }
c292ebb2 988 // TODO: merge next 2 "if" conditions
e8da204a 989 if (!!game.drawOffer) {
6808d7a1 990 if (game.drawOffer == "t")
8477e53d 991 // Three repetitions
77c50966 992 this.drawOffer = "threerep";
6808d7a1 993 else {
8477e53d 994 // Draw offered by any of the players:
6808d7a1 995 if (myIdx < 0) this.drawOffer = "received";
6808d7a1 996 else {
77c50966 997 // I play in this game:
6808d7a1
BA
998 if (
999 (game.drawOffer == "w" && myIdx == 0) ||
1000 (game.drawOffer == "b" && myIdx == 1)
1001 )
77c50966 1002 this.drawOffer = "sent";
6808d7a1 1003 else this.drawOffer = "received";
77c50966
BA
1004 }
1005 }
1006 }
c292ebb2
BA
1007 if (!!game.rematchOffer) {
1008 if (myIdx < 0) this.rematchOffer = "received";
1009 else {
1010 // I play in this game:
1011 if (
1012 (game.rematchOffer == "w" && myIdx == 0) ||
1013 (game.rematchOffer == "b" && myIdx == 1)
1014 )
1015 this.rematchOffer = "sent";
1016 else this.rematchOffer = "received";
1017 }
1018 }
725da57f
BA
1019 this.repeat = {}; //reset: scan past moves' FEN:
1020 let repIdx = 0;
725da57f 1021 let vr_tmp = new V(game.fenStart);
725da57f
BA
1022 let curTurn = "n";
1023 game.moves.forEach(m => {
e71161fb
BA
1024 playMove(m, vr_tmp);
1025 const fenIdx = vr_tmp.getFen().replace(/ /g, "_");
1026 this.repeat[fenIdx] = this.repeat[fenIdx]
1027 ? this.repeat[fenIdx] + 1
725da57f
BA
1028 : 1;
1029 });
725da57f 1030 if (this.repeat[repIdx] >= 3) this.drawOffer = "threerep";
6808d7a1 1031 this.game = Object.assign(
cf742aaf 1032 // NOTE: assign mycolor here, since BaseGame could also be VS computer
6fba6e0c 1033 {
c0b27606 1034 type: gtype,
66d03f23 1035 increment: tc.increment,
9ef63965 1036 mycolor: mycolor,
5f131484
BA
1037 // opponent sid not strictly required (or available), but easier
1038 // at least oppsid or oppid is available anyway:
6808d7a1 1039 oppsid: myIdx < 0 ? undefined : game.players[1 - myIdx].sid,
e01e086d 1040 oppid: myIdx < 0 ? undefined : game.players[1 - myIdx].uid
e71161fb
BA
1041 },
1042 game,
4b0384fa 1043 );
dcff8e82
BA
1044 if (this.gameIsLoading)
1045 // Re-load game because we missed some moves:
57eb158f 1046 // artificially reset BaseGame (required if moves arrived in wrong order)
dcff8e82 1047 this.$refs["basegame"].re_setVariables();
5aa14a21 1048 else {
aae89b49
BA
1049 // Initial loading:
1050 this.gotMoveIdx = game.moves.length - 1;
5aa14a21
BA
1051 // If we arrive here after 'nextGame' action, the board might be hidden
1052 let boardDiv = document.querySelector(".game");
1053 if (!!boardDiv && boardDiv.style.visibility == "hidden")
1054 boardDiv.style.visibility = "visible";
1055 }
9ef63965 1056 this.re_setClocks();
a0c41e7e
BA
1057 this.$nextTick(() => {
1058 this.game.rendered = true;
1059 // Did lastate arrive before game was rendered?
6808d7a1 1060 if (this.lastate) this.processLastate();
a0c41e7e 1061 });
584f81b9
BA
1062 if (this.lastateAsked) {
1063 this.lastateAsked = false;
1064 this.sendLastate(game.oppsid);
1065 }
d6f08e56
BA
1066 if (this.gameIsLoading) {
1067 this.gameIsLoading = false;
1068 if (this.gotMoveIdx >= game.moves.length)
1069 // Some moves arrived meanwhile...
1070 this.askGameAgain();
1071 }
dcff8e82 1072 if (!!callback) callback();
967a2686 1073 };
f9c36b2d 1074 if (!!game) {
6808d7a1
BA
1075 afterRetrieval(game);
1076 return;
967a2686 1077 }
6808d7a1
BA
1078 if (this.gameRef.rid) {
1079 // Remote live game: forgetting about callback func... (TODO: design)
1080 this.send("askfullgame", { target: this.gameRef.rid });
1081 } else {
aae89b49 1082 // Local or corr game on server.
8477e53d 1083 // NOTE: afterRetrieval() is never called if game not found
aae89b49
BA
1084 const gid = this.gameRef.id;
1085 if (Number.isInteger(gid) || !isNaN(parseInt(gid))) {
1086 // corr games identifiers are integers
e57c4de4
BA
1087 ajax(
1088 "/games",
1089 "GET",
1090 {
1091 data: { gid: gid },
1092 success: (res) => {
1093 let g = res.game;
1094 g.moves.forEach(m => {
1095 m.squares = JSON.parse(m.squares);
1096 });
1097 afterRetrieval(g);
1098 }
1099 }
1100 );
aae89b49
BA
1101 }
1102 else
1103 // Local game
1104 GameStorage.get(this.gameRef.id, afterRetrieval);
967a2686 1105 }
a6088c90 1106 },
9ef63965 1107 re_setClocks: function() {
dcff8e82 1108 if (this.game.moves.length < 2 || this.game.score != "*") {
9ef63965 1109 // 1st move not completed yet, or game over: freeze time
57eb158f 1110 this.virtualClocks = this.game.clocks.map(s => ppt(s).split(':'));
9ef63965
BA
1111 return;
1112 }
1113 const currentTurn = this.vr.turn;
8477e53d 1114 const currentMovesCount = this.game.moves.length;
6808d7a1
BA
1115 const colorIdx = ["w", "b"].indexOf(currentTurn);
1116 let countdown =
1117 this.game.clocks[colorIdx] -
1118 (Date.now() - this.game.initime[colorIdx]) / 1000;
1119 this.virtualClocks = [0, 1].map(i => {
1120 const removeTime =
1121 i == colorIdx ? (Date.now() - this.game.initime[colorIdx]) / 1000 : 0;
57eb158f 1122 return ppt(this.game.clocks[i] - removeTime).split(':');
9ef63965 1123 });
e01e086d
BA
1124 this.clockUpdate = setInterval(
1125 () => {
1126 if (
1127 countdown < 0 ||
1128 this.game.moves.length > currentMovesCount ||
1129 this.game.score != "*"
1130 ) {
1131 clearInterval(this.clockUpdate);
1132 if (countdown < 0)
1133 this.gameOver(
1134 currentTurn == "w" ? "0-1" : "1-0",
1135 "Time"
1136 );
1137 } else
1138 this.$set(
1139 this.virtualClocks,
1140 colorIdx,
1141 ppt(Math.max(0, --countdown)).split(':')
6808d7a1 1142 );
e01e086d
BA
1143 },
1144 1000
1145 );
9ef63965 1146 },
57eb158f 1147 // Update variables and storage after a move:
e71161fb 1148 processMove: function(move, data) {
e5c1d0fb 1149 if (!data) data = {};
e71161fb
BA
1150 const moveCol = this.vr.turn;
1151 const doProcessMove = () => {
1152 const colorIdx = ["w", "b"].indexOf(moveCol);
1153 const nextIdx = 1 - colorIdx;
dcff8e82 1154 const origMovescount = this.game.moves.length;
e01e086d 1155 let addTime = 0; //for live games
f9c36b2d 1156 if (moveCol == this.game.mycolor && !data.receiveMyMove) {
e71161fb
BA
1157 if (this.drawOffer == "received")
1158 // I refuse draw
1159 this.drawOffer = "";
dcff8e82 1160 if (this.game.type == "live" && origMovescount >= 2) {
e71161fb
BA
1161 const elapsed = Date.now() - this.game.initime[colorIdx];
1162 // elapsed time is measured in milliseconds
1163 addTime = this.game.increment - elapsed / 1000;
1164 }
dce792f6 1165 }
dcff8e82 1166 // Update current game object:
e71161fb 1167 playMove(move, this.vr);
e01e086d
BA
1168 // The move is played: stop clock
1169 clearInterval(this.clockUpdate);
5aa14a21
BA
1170 if (!data.score) {
1171 // Received move, score has not been computed in BaseGame (!!noemit)
1172 const score = this.vr.getCurrentScore();
1173 if (score != "*") this.gameOver(score);
1174 }
dcff8e82 1175 this.game.moves.push(move);
e71161fb 1176 this.game.fen = this.vr.getFen();
e01e086d
BA
1177 if (this.game.type == "live") {
1178 if (!!data.clock) this.game.clocks[colorIdx] = data.clock;
1179 else this.game.clocks[colorIdx] += addTime;
1180 }
92240cf0 1181 // In corr games, just reset clock to mainTime:
e01e086d
BA
1182 else {
1183 this.game.clocks[colorIdx] = extractTime(this.game.cadence).mainTime;
1184 }
1185 // NOTE: opponent's initime is reset after "gotmove" is received
1186 if (
1187 !this.game.mycolor ||
1188 moveCol != this.game.mycolor ||
1189 !!data.receiveMyMove
1190 ) {
1191 this.game.initime[nextIdx] = Date.now();
1192 }
e71161fb 1193 // If repetition detected, consider that a draw offer was received:
f9c36b2d 1194 const fenObj = this.vr.getFenForRepeat();
e01e086d
BA
1195 this.repeat[fenObj] =
1196 !!this.repeat[fenObj]
1197 ? this.repeat[fenObj] + 1
1198 : 1;
f9c36b2d 1199 if (this.repeat[fenObj] >= 3) this.drawOffer = "threerep";
e71161fb 1200 else if (this.drawOffer == "threerep") this.drawOffer = "";
dcff8e82
BA
1201 if (!!this.game.mycolor && !data.receiveMyMove) {
1202 // NOTE: 'var' to see that variable outside this block
1203 var filtered_move = getFilteredMove(move);
1204 }
cafe0166
BA
1205 if (moveCol == this.game.mycolor && !data.receiveMyMove) {
1206 // Notify turn on MyGames page:
1207 this.notifyMyGames(
1208 "turn",
1209 {
1210 gid: this.gameRef.id,
1211 turn: this.vr.turn
1212 }
1213 );
1214 }
aae89b49
BA
1215 // Since corr games are stored at only one location, update should be
1216 // done only by one player for each move:
e71161fb 1217 if (
f9c36b2d
BA
1218 !!this.game.mycolor &&
1219 !data.receiveMyMove &&
e71161fb
BA
1220 (this.game.type == "live" || moveCol == this.game.mycolor)
1221 ) {
1222 let drawCode = "";
1223 switch (this.drawOffer) {
1224 case "threerep":
1225 drawCode = "t";
1226 break;
1227 case "sent":
1228 drawCode = this.game.mycolor;
1229 break;
1230 case "received":
1231 drawCode = V.GetOppCol(this.game.mycolor);
1232 break;
1233 }
1234 if (this.game.type == "corr") {
aae89b49
BA
1235 // corr: only move, fen and score
1236 this.updateCorrGame({
e71161fb
BA
1237 fen: this.game.fen,
1238 move: {
1239 squares: filtered_move,
1240 played: Date.now(),
dcff8e82 1241 idx: origMovescount
e71161fb
BA
1242 },
1243 // Code "n" for "None" to force reset (otherwise it's ignored)
1244 drawOffer: drawCode || "n"
1245 });
1246 }
57eb158f
BA
1247 else {
1248 const updateStorage = () => {
1249 GameStorage.update(this.gameRef.id, {
1250 fen: this.game.fen,
1251 move: filtered_move,
1252 moveIdx: origMovescount,
1253 clocks: this.game.clocks,
1254 initime: this.game.initime,
1255 drawOffer: drawCode
1256 });
1257 };
1258 // The active tab can update storage immediately
1259 if (!document.hidden) updateStorage();
1260 // Small random delay otherwise
1261 else setTimeout(updateStorage, 500 + 1000 * Math.random());
e71161fb 1262 }
e69f159d 1263 }
dcff8e82
BA
1264 // Send move ("newmove" event) to people in the room (if our turn)
1265 if (moveCol == this.game.mycolor && !data.receiveMyMove) {
e01e086d 1266 let sendMove = {
dcff8e82
BA
1267 move: filtered_move,
1268 index: origMovescount,
1269 // color is required to check if this is my move (if several tabs opened)
1270 color: moveCol,
dcff8e82
BA
1271 cancelDrawOffer: this.drawOffer == ""
1272 };
e01e086d
BA
1273 if (this.game.type == "live")
1274 sendMove["clock"] = this.game.clocks[colorIdx];
dcff8e82
BA
1275 this.opponentGotMove = false;
1276 this.send("newmove", {data: sendMove});
1277 // If the opponent doesn't reply gotmove soon enough, re-send move:
e01e086d
BA
1278 // Do this at most 2 times, because mpore would mean network issues,
1279 // opponent would then be expected to disconnect/reconnect.
1280 let counter = 1;
1281 const currentUrl = document.location.href;
aae89b49 1282 this.retrySendmove = setInterval(
57eb158f 1283 () => {
e01e086d
BA
1284 if (
1285 counter >= 3 ||
1286 this.opponentGotMove ||
1287 document.location.href != currentUrl //page change
1288 ) {
aae89b49 1289 clearInterval(this.retrySendmove);
57eb158f
BA
1290 return;
1291 }
c292ebb2
BA
1292 const oppsid = this.getOppsid();
1293 if (!oppsid)
57eb158f 1294 // Opponent is disconnected: he'll ask last state
aae89b49 1295 clearInterval(this.retrySendmove);
e01e086d
BA
1296 else {
1297 this.send("newmove", { data: sendMove, target: oppsid });
1298 counter++;
1299 }
57eb158f 1300 },
e01e086d 1301 1500
57eb158f 1302 );
dcff8e82 1303 }
e01e086d
BA
1304 else
1305 // Not my move or I'm an observer: just start other player's clock
1306 this.re_setClocks();
e71161fb 1307 };
f9c36b2d
BA
1308 if (
1309 this.game.type == "corr" &&
1310 moveCol == this.game.mycolor &&
1311 !data.receiveMyMove
1312 ) {
a17ae317 1313 let boardDiv = document.querySelector(".game");
5aa14a21
BA
1314 const afterSetScore = () => {
1315 doProcessMove();
1316 if (this.st.settings.gotonext && this.nextIds.length > 0)
1317 this.showNextGame();
1318 else {
5aa14a21 1319 // The board might have been hidden:
5aa14a21
BA
1320 if (boardDiv.style.visibility == "hidden")
1321 boardDiv.style.visibility = "visible";
e71161fb 1322 }
5aa14a21 1323 };
a17ae317
BA
1324 let el = document.querySelector("#buttonsConfirm > .acceptBtn");
1325 // We may play several moves in a row: in case of, remove listener:
1326 let elClone = el.cloneNode(true);
1327 el.parentNode.replaceChild(elClone, el);
1328 elClone.addEventListener(
1329 "click",
1330 () => {
1331 document.getElementById("modalConfirm").checked = false;
1332 if (!!data.score && data.score != "*")
1333 // Set score first
1334 this.gameOver(data.score, null, afterSetScore);
1335 else afterSetScore();
1336 }
1337 );
1338 // PlayOnBoard is enough, and more appropriate for Synchrone Chess
1339 V.PlayOnBoard(this.vr.board, move);
1340 const position = this.vr.getBaseFen();
1341 V.UndoOnBoard(this.vr.board, move);
5aa14a21 1342 if (["all","byrow"].includes(V.ShowMoves)) {
5aa14a21
BA
1343 this.curDiag = getDiagram({
1344 position: position,
1345 orientation: V.CanFlip ? this.game.mycolor : "w"
1346 });
f3fe29d8
BA
1347 document.querySelector("#confirmDiv > .card").style.width =
1348 boardDiv.offsetWidth + "px";
5aa14a21
BA
1349 } else {
1350 // Incomplete information: just ask confirmation
a17ae317 1351 // Hide the board, because otherwise it could reveal infos
5aa14a21 1352 boardDiv.style.visibility = "hidden";
a17ae317 1353 this.moveNotation = getFullNotation(move);
5aa14a21 1354 }
a17ae317 1355 document.getElementById("modalConfirm").checked = true;
6d68309a 1356 }
aae89b49 1357 else {
5aa14a21 1358 // Normal situation
5aa14a21 1359 if (!!data.score && data.score != "*")
e01e086d
BA
1360 this.gameOver(data.score, null, doProcessMove);
1361 else doProcessMove();
aae89b49 1362 }
b4fb1612 1363 },
5b4de147 1364 cancelMove: function() {
a17ae317
BA
1365 let boardDiv = document.querySelector(".game");
1366 if (boardDiv.style.visibility == "hidden")
1367 boardDiv.style.visibility = "visible";
5b4de147
BA
1368 document.getElementById("modalConfirm").checked = false;
1369 this.$refs["basegame"].cancelLastMove();
1370 },
5aa14a21
BA
1371 // In corr games, callback to change page only after score is set:
1372 gameOver: function(score, scoreMsg, callback) {
430a2038 1373 this.game.score = score;
5aa14a21 1374 if (!scoreMsg) scoreMsg = getScoreMessage(score);
a17ae317 1375 this.game.scoreMsg = scoreMsg;
5aa14a21 1376 this.$set(this.game, "scoreMsg", scoreMsg);
ab6f48ea
BA
1377 const myIdx = this.game.players.findIndex(p => {
1378 return p.sid == this.st.user.sid || p.uid == this.st.user.id;
1379 });
6808d7a1 1380 if (myIdx >= 0) {
8477e53d 1381 // OK, I play in this game
aae89b49 1382 const scoreObj = {
6808d7a1
BA
1383 score: score,
1384 scoreMsg: scoreMsg
aae89b49 1385 };
5aa14a21 1386 if (this.game.type == "live") {
aae89b49 1387 GameStorage.update(this.gameRef.id, scoreObj);
5aa14a21
BA
1388 if (!!callback) callback();
1389 }
1390 else this.updateCorrGame(scoreObj, callback);
48ab808f 1391 // Notify the score to main Hall. TODO: only one player (currently double send)
6808d7a1 1392 this.send("result", { gid: this.game.id, score: score });
cafe0166
BA
1393 // Also to MyGames page (TODO: doubled as well...)
1394 this.notifyMyGames(
1395 "score",
1396 {
1397 gid: this.gameRef.id,
1398 score: score
1399 }
1400 );
dcd68c41 1401 }
5aa14a21 1402 else if (!!callback) callback();
6808d7a1
BA
1403 }
1404 }
a6088c90
BA
1405};
1406</script>
7e1a1fe9 1407
41c80bb6 1408<style lang="sass" scoped>
c292ebb2
BA
1409#infoDiv > .card
1410 padding: 15px 0
1411 max-width: 430px
1412
72ccbd67 1413.connected
050ae3b5 1414 background-color: lightgreen
72ccbd67 1415
ed06d9e9
BA
1416#participants
1417 margin-left: 5px
1418
1419.anonymous
1420 color: grey
1421 font-style: italic
1422
ec905cbc
BA
1423#playersInfo > p
1424 margin: 0
1425
430a2038
BA
1426@media screen and (min-width: 768px)
1427 #actions
1428 width: 300px
1429@media screen and (max-width: 767px)
1430 .game
1431 width: 100%
72ccbd67 1432
430a2038 1433#actions
cf94b843 1434 display: inline-block
1d6d7b1d 1435 margin: 0
feaf1bf7
BA
1436
1437button
1438 display: inline-block
1439 margin: 0
1440 display: inline-flex
1441 img
1442 height: 24px
1443 display: flex
1444 @media screen and (max-width: 767px)
1445 height: 18px
a1c48034 1446
050ae3b5
BA
1447@media screen and (max-width: 767px)
1448 #aboveBoard
1449 text-align: center
885d93a7
BA
1450@media screen and (min-width: 768px)
1451 #aboveBoard
1452 margin-left: 30%
050ae3b5 1453
2f258c37
BA
1454.variant-cadence
1455 padding-right: 10px
1456
1457.variant-name
8c5f5390 1458 font-weight: bold
77c50966 1459 padding-right: 10px
77c50966 1460
feaf1bf7
BA
1461span#nextGame
1462 background-color: #edda99
1463 cursor: pointer
1464 display: inline-block
1465 margin-right: 10px
1466
57eb158f 1467span.name
050ae3b5 1468 font-size: 1.5rem
57eb158f 1469 padding: 0 3px
050ae3b5 1470
57eb158f 1471span.time
050ae3b5
BA
1472 font-size: 2rem
1473 display: inline-block
57eb158f
BA
1474 .time-left
1475 margin-left: 10px
1476 .time-right
1477 margin-left: 5px
1478 .time-separator
1479 margin-left: 5px
1480 position: relative
1481 top: -1px
1482
1483span.yourturn
1484 color: #831B1B
1485 .time-separator
1486 animation: blink-animation 2s steps(3, start) infinite
1487@keyframes blink-animation
1488 to
1489 visibility: hidden
050ae3b5
BA
1490
1491.split-names
1492 display: inline-block
1493 margin: 0 15px
1494
5b4de147 1495#chatWrap > .card
a1c48034 1496 padding-top: 20px
a154d45e 1497 max-width: 767px
5b4de147
BA
1498 border: none
1499
1500#confirmDiv > .card
1501 max-width: 767px
1502 max-height: 100%
cf94b843 1503
dcd68c41
BA
1504.draw-sent, .draw-sent:hover
1505 background-color: lightyellow
1506
1507.draw-received, .draw-received:hover
1508 background-color: lightgreen
1509
1510.draw-threerep, .draw-threerep:hover
1511 background-color: #e4d1fc
2f258c37 1512
c292ebb2
BA
1513.rematch-sent, .rematch-sent:hover
1514 background-color: lightyellow
1515
1516.rematch-received, .rematch-received:hover
1517 background-color: lightgreen
1518
2f258c37
BA
1519.somethingnew
1520 background-color: #c5fefe
5b4de147
BA
1521
1522.diagram
1523 margin: 0 auto
5b4de147
BA
1524 width: 100%
1525
1526#buttonsConfirm
1527 margin: 0
1528 & > button > span
1529 width: 100%
1530 text-align: center
1531
1532button.acceptBtn
1533 background-color: lightgreen
1534button.refuseBtn
1535 background-color: red
7e1a1fe9 1536</style>