3 input#modalChat.modal(type="checkbox" @click="resetChatColor")
4 div#chatWrap(role="dialog" data-checkbox="modalChat" aria-labelledby="inputChat")
6 label.modal-close(for="modalChat")
8 span {{ Object.keys(people).length + " " + st.tr["participant(s):"] }}
9 span(v-for="p in Object.values(people)" v-if="!!p.name")
11 span.anonymous(v-if="Object.values(people).some(p => !p.name)")
13 Chat(:players="game.players" :pastChats="game.chats"
14 :newChat="newChat" @mychat="processChat")
16 #aboveBoard.col-sm-12.col-md-9.col-md-offset-3.col-lg-10.col-lg-offset-2
17 span.variant-info {{ game.vname }}
18 button#chatBtn(onClick="doClick('modalChat')") Chat
19 #actions(v-if="game.score=='*'")
20 button(@click="clickDraw" :class="{['draw-' + drawOffer]: true}")
22 button(v-if="!!game.mycolor" @click="abortGame") {{ st.tr["Abort"] }}
23 button(v-if="!!game.mycolor" @click="resign") {{ st.tr["Resign"] }}
26 span.name(:class="{connected: isConnected(0)}")
27 | {{ game.players[0].name || "@nonymous" }}
28 span.time(v-if="game.score=='*'") {{ virtualClocks[0] }}
30 span.name(:class="{connected: isConnected(1)}")
31 | {{ game.players[1].name || "@nonymous" }}
32 span.time(v-if="game.score=='*'") {{ virtualClocks[1] }}
33 BaseGame(:game="game" :vr="vr" ref="basegame"
34 @newmove="processMove" @gameover="gameOver")
38 import BaseGame from "@/components/BaseGame.vue";
39 import Chat from "@/components/Chat.vue";
40 import { store } from "@/store";
41 import { GameStorage } from "@/utils/gameStorage";
42 import { ppt } from "@/utils/datetime";
43 import { extractTime } from "@/utils/timeControl";
44 import { ArrayFun } from "@/utils/array";
45 import { processModalClick } from "@/utils/modalClick";
46 import { getScoreMessage } from "@/utils/scoring";
54 // gameRef: to find the game in (potentially remote) storage
58 gameRef: { //given in URL (rid = remote ID)
62 game: { //passed to BaseGame
63 players:[{name:""},{name:""}],
66 virtualClocks: [0, 0], //initialized with true game.clocks
67 vr: null, //"variant rules" object initialized from FEN
69 people: {}, //players + observers
70 lastate: undefined, //used if opponent send lastate before game is ready
71 repeat: {}, //detect position repetition
76 "$route": function(to, from) {
77 this.gameRef.id = to.params["id"];
78 this.gameRef.rid = to.query["rid"];
81 "game.clocks": function(newState) {
82 if (this.game.moves.length < 2 || this.game.score != "*")
84 // 1st move not completed yet, or game over: freeze time
85 this.virtualClocks = newState.map(s => ppt(s));
88 const currentTurn = this.vr.turn;
89 const colorIdx = ["w","b"].indexOf(currentTurn);
90 let countdown = newState[colorIdx] -
91 (Date.now() - this.game.initime[colorIdx])/1000;
92 this.virtualClocks = [0,1].map(i => {
93 const removeTime = i == colorIdx
94 ? (Date.now() - this.game.initime[colorIdx])/1000
96 return ppt(newState[i] - removeTime);
98 let clockUpdate = setInterval(() => {
99 if (countdown < 0 || this.vr.turn != currentTurn || this.game.score != "*")
101 clearInterval(clockUpdate);
103 this.gameOver(this.vr.turn=="w" ? "0-1" : "1-0", this.st.tr["Time"]);
106 this.$set(this.virtualClocks, colorIdx, ppt(Math.max(0, --countdown)));
110 // NOTE: some redundant code with Hall.vue (related to people array)
111 created: function() {
112 // Always add myself to players' list
113 const my = this.st.user;
114 this.$set(this.people, my.sid, {id:my.id, name:my.name});
115 this.gameRef.id = this.$route.params["id"];
116 this.gameRef.rid = this.$route.query["rid"]; //may be undefined
117 // Define socket .onmessage() and .onclose() events:
118 this.st.conn.onmessage = this.socketMessageListener;
119 const socketCloseListener = () => {
120 store.socketCloseListener(); //reinitialize connexion (in store.js)
121 this.st.conn.addEventListener('message', this.socketMessageListener);
122 this.st.conn.addEventListener('close', socketCloseListener);
124 this.st.conn.onclose = socketCloseListener;
125 // Socket init required before loading remote game:
126 const socketInit = (callback) => {
127 if (!!this.st.conn && this.st.conn.readyState == 1) //1 == OPEN state
129 else //socket not ready yet (initial loading)
130 this.st.conn.onopen = callback;
132 if (!this.gameRef.rid) //game stored locally or on server
133 this.loadGame(null, () => socketInit(this.roomInit));
134 else //game stored remotely: need socket to retrieve it
136 // NOTE: the callback "roomInit" will be lost, so we don't provide it.
137 // --> It will be given when receiving "fullgame" socket event.
138 // A more general approach would be to store it somewhere.
139 socketInit(this.loadGame);
142 mounted: function() {
143 document.getElementById("chatWrap").addEventListener(
144 "click", processModalClick);
147 // O.1] Ask server for room composition:
148 roomInit: function() {
149 // Notify the room only now that I connected, because
150 // messages might be lost otherwise (if game loading is slow)
151 this.st.conn.send(JSON.stringify({code:"connect"}));
152 this.st.conn.send(JSON.stringify({code:"pollclients"}));
154 isConnected: function(index) {
155 const name = this.game.players[index].name;
156 if (this.st.user.name == name)
158 return Object.values(this.people).some(p => p.name == name);
160 socketMessageListener: function(msg) {
161 const data = JSON.parse(msg.data);
165 alert(this.st.tr["Warning: multi-tabs not supported"]);
167 // 0.2] Receive clients list (just socket IDs)
170 data.sockIds.forEach(sid => {
171 if (!!this.people[sid])
173 this.$set(this.people, sid, {id:0, name:""});
175 this.st.conn.send(JSON.stringify({code:"askidentity", target:sid}));
181 // Request for identification: reply if I'm not anonymous
182 if (this.st.user.id > 0)
184 this.st.conn.send(JSON.stringify({code:"identity",
186 // NOTE: decompose to avoid revealing email
187 name: this.st.user.name,
188 sid: this.st.user.sid,
197 this.$set(this.people, data.user.sid,
198 {id: data.user.id, name: data.user.name});
199 // Ask potentially missed last state, if opponent and I play
200 if (!!this.game.mycolor
201 && this.game.type == "live" && this.game.score == "*"
202 && this.game.players.some(p => p.sid == data.user.sid))
204 this.st.conn.send(JSON.stringify({code:"asklastate", target:data.user.sid}));
210 // Sending last state if I played a move or score != "*"
211 if ((this.game.moves.length > 0 && this.vr.turn != this.game.mycolor)
212 || this.game.score != "*" || this.drawOffer == "sent")
214 // Send our "last state" informations to opponent
215 const L = this.game.moves.length;
216 const myIdx = ["w","b"].indexOf(this.game.mycolor);
217 this.st.conn.send(JSON.stringify({
222 // NOTE: lastMove (when defined) includes addTime
223 lastMove: (L>0 ? this.game.moves[L-1] : undefined),
224 // Since we played a move (or abort or resign),
225 // only drawOffer=="sent" is possible
226 drawSent: this.drawOffer == "sent",
227 score: this.game.score,
229 initime: this.game.initime[1-myIdx], //relevant only if I played
236 // Send current (live) game if I play in (not an observer),
237 // and not asked by opponent (!)
238 if (this.game.type == "live"
239 && this.game.players.some(p => p.sid == this.st.user.sid)
240 && this.game.players.every(p => p.sid != data.from))
244 // Minimal game informations:
246 players: this.game.players,
248 timeControl: this.game.timeControl,
249 score: this.game.score,
251 this.st.conn.send(JSON.stringify({code:"game",
252 game:myGame, target:data.from}));
256 if (!!data.move.cancelDrawOffer) //opponent refuses draw
259 // NOTE for corr games: drawOffer reset by player in turn
260 if (this.game.type == "live" && !!this.game.mycolor)
261 GameStorage.update(this.gameRef.id, {drawOffer: ""});
263 this.$set(this.game, "moveToPlay", data.move);
266 this.newChat = data.chat;
267 if (!document.getElementById("modalChat").checked)
268 document.getElementById("chatBtn").style.backgroundColor = "#c5fefe";
270 case "lastate": //got opponent infos about last move
272 this.lastate = data.state;
273 if (this.game.rendered) //game is rendered (Board component)
274 this.processLastate();
275 //else: will be processed when game is ready
279 this.gameOver(data.side=="b" ? "1-0" : "0-1", "Resign");
282 this.gameOver("?", "Abort");
285 this.gameOver("1/2", data.message);
288 // NOTE: observers don't know who offered draw
289 this.drawOffer = "received";
292 this.st.conn.send(JSON.stringify({code:"fullgame",
293 game:this.game, target:data.from}));
296 // Callback "roomInit" to poll clients only after game is loaded
297 this.loadGame(data.game, this.roomInit);
301 this.$set(this.people, data.from, {name:"", id:0});
302 this.st.conn.send(JSON.stringify({code:"askidentity", target:data.from}));
306 this.$delete(this.people, data.from);
310 // lastate was received, but maybe game wasn't ready yet:
311 processLastate: function() {
312 const data = this.lastate;
313 this.lastate = undefined; //security...
314 const L = this.game.moves.length;
315 if (data.movesCount > L)
317 // Just got last move from him
318 this.$set(this.game, "moveToPlay", Object.assign({}, data.lastMove, {initime: data.initime}));
321 this.drawOffer = "received";
322 if (data.score != "*")
325 if (this.game.score == "*")
326 this.gameOver(data.score);
329 clickDraw: function() {
330 if (!this.game.mycolor)
331 return; //I'm just spectator
332 if (["received","threerep"].includes(this.drawOffer))
334 if (!confirm(this.st.tr["Accept draw?"]))
336 const message = (this.drawOffer == "received"
338 : "Three repetitions");
339 Object.keys(this.people).forEach(sid => {
340 if (sid != this.st.user.sid)
342 this.st.conn.send(JSON.stringify({code:"draw",
343 message:message, target:sid}));
346 this.gameOver("1/2", message);
348 else if (this.drawOffer == "") //no effect if drawOffer == "sent"
350 if (this.game.mycolor != this.vr.turn)
351 return alert(this.st.tr["Draw offer only in your turn"]);
352 if (!confirm(this.st.tr["Offer draw?"]))
354 this.drawOffer = "sent";
355 Object.keys(this.people).forEach(sid => {
356 if (sid != this.st.user.sid)
357 this.st.conn.send(JSON.stringify({code:"drawoffer", target:sid}));
359 GameStorage.update(this.gameRef.id, {drawOffer: this.game.mycolor});
362 abortGame: function() {
363 if (!this.game.mycolor || !confirm(this.st.tr["Terminate game?"]))
365 this.gameOver("?", "Abort");
366 Object.keys(this.people).forEach(sid => {
367 if (sid != this.st.user.sid)
369 this.st.conn.send(JSON.stringify({
376 resign: function(e) {
377 if (!this.game.mycolor || !confirm(this.st.tr["Resign the game?"]))
379 Object.keys(this.people).forEach(sid => {
380 if (sid != this.st.user.sid)
382 this.st.conn.send(JSON.stringify({code:"resign",
383 side:this.game.mycolor, target:sid}));
386 this.gameOver(this.game.mycolor=="w" ? "0-1" : "1-0", "Resign");
388 // 3 cases for loading a game:
389 // - from indexedDB (running or completed live game I play)
390 // - from server (one correspondance game I play[ed] or not)
391 // - from remote peer (one live game I don't play, finished or not)
392 loadGame: function(game, callback) {
393 const afterRetrieval = async (game) => {
394 const vModule = await import("@/variants/" + game.vname + ".js");
395 window.V = vModule.VariantRules;
396 this.vr = new V(game.fen);
397 const gtype = (game.timeControl.indexOf('d') >= 0 ? "corr" : "live");
398 const tc = extractTime(game.timeControl);
401 if (game.players[0].color == "b")
403 // Adopt the same convention for live and corr games: [0] = white
404 [ game.players[0], game.players[1] ] =
405 [ game.players[1], game.players[0] ];
407 // corr game: needs to compute the clocks + initime
408 // NOTE: clocks in seconds, initime in milliseconds
409 game.clocks = [tc.mainTime, tc.mainTime];
410 game.moves.sort((m1,m2) => m1.idx - m2.idx); //in case of
411 if (game.score == "*") //otherwise no need to bother with time
413 game.initime = [0, 0];
414 const L = game.moves.length;
417 let addTime = [0, 0];
418 for (let i=2; i<L; i++)
420 addTime[i%2] += tc.increment -
421 (game.moves[i].played - game.moves[i-1].played) / 1000;
423 for (let i=0; i<=1; i++)
424 game.clocks[i] += addTime[i];
427 game.initime[L%2] = game.moves[L-1].played;
429 // Now that we used idx and played, re-format moves as for live games
430 game.moves = game.moves.map( (m) => {
439 // Also sort chat messages (if any)
440 game.chats.sort( (c1,c2) => { return c2.added - c1.added; });
442 const myIdx = game.players.findIndex(p => {
443 return p.sid == this.st.user.sid || p.uid == this.st.user.id;
445 if (gtype == "live" && game.clocks[0] < 0) //game unstarted
447 game.clocks = [tc.mainTime, tc.mainTime];
448 if (game.score == "*")
450 game.initime[0] = Date.now();
453 // I play in this live game; corr games don't have clocks+initime
454 GameStorage.update(game.id,
457 initime: game.initime,
462 if (!!game.drawOffer)
464 if (game.drawOffer == "t") //three repetitions
465 this.drawOffer = "threerep";
469 this.drawOffer = "received"; //by any of the players
472 // I play in this game:
473 if ((game.drawOffer == "w" && myIdx==0) || (game.drawOffer=="b" && myIdx==1))
474 this.drawOffer = "sent";
475 else //all other cases
476 this.drawOffer = "received";
481 game.scoreMsg = this.st.tr[game.scoreMsg]; //stored in english
482 this.game = Object.assign({},
484 // NOTE: assign mycolor here, since BaseGame could also be VS computer
487 increment: tc.increment,
488 mycolor: [undefined,"w","b"][myIdx+1],
489 // opponent sid not strictly required (or available), but easier
490 // at least oppsid or oppid is available anyway:
491 oppsid: (myIdx < 0 ? undefined : game.players[1-myIdx].sid),
492 oppid: (myIdx < 0 ? undefined : game.players[1-myIdx].uid),
495 this.$nextTick(() => {
496 this.game.rendered = true;
497 // Did lastate arrive before game was rendered?
499 this.processLastate();
501 this.repeat = {}; //reset: scan past moves' FEN:
503 // NOTE: vr_tmp to obtain FEN strings is redundant with BaseGame
504 let vr_tmp = new V(game.fenStart);
505 game.moves.forEach(m => {
507 const fenObj = V.ParseFen( vr_tmp.getFen() );
508 repIdx = fenObj.position + "_" + fenObj.turn;
510 repIdx += "_" + fenObj.flags;
511 this.repeat[repIdx] = (!!this.repeat[repIdx]
512 ? this.repeat[repIdx]+1
515 if (this.repeat[repIdx] >= 3)
516 this.drawOffer = "threerep";
520 return afterRetrieval(game);
521 if (!!this.gameRef.rid)
523 // Remote live game: forgetting about callback func... (TODO: design)
524 this.st.conn.send(JSON.stringify(
525 {code:"askfullgame", target:this.gameRef.rid}));
529 // Local or corr game
530 GameStorage.get(this.gameRef.id, afterRetrieval);
533 // Post-process a move (which was just played)
534 processMove: function(move) {
535 // Update storage (corr or live) if I play in the game
536 const colorIdx = ["w","b"].indexOf(move.color);
537 const nextIdx = ["w","b"].indexOf(this.vr.turn);
538 // https://stackoverflow.com/a/38750895
539 if (!!this.game.mycolor)
541 const allowed_fields = ["appear", "vanish", "start", "end"];
542 // NOTE: 'var' to see this variable outside this block
543 var filtered_move = Object.keys(move)
544 .filter(key => allowed_fields.includes(key))
545 .reduce((obj, key) => {
546 obj[key] = move[key];
550 // Send move ("newmove" event) to people in the room (if our turn)
552 if (move.color == this.game.mycolor)
554 if (this.drawOffer == "received") //I refuse draw
556 if (this.game.moves.length >= 2) //after first move
558 const elapsed = Date.now() - this.game.initime[colorIdx];
559 // elapsed time is measured in milliseconds
560 addTime = this.game.increment - elapsed/1000;
562 const sendMove = Object.assign({},
566 cancelDrawOffer: this.drawOffer=="",
568 Object.keys(this.people).forEach(sid => {
569 if (sid != this.st.user.sid)
571 this.st.conn.send(JSON.stringify({
578 // (Add)Time indication: useful in case of lastate infos requested
579 move.addTime = addTime;
582 addTime = move.addTime; //supposed transmitted
583 // Update current game object:
584 this.game.moves.push(move);
585 this.game.fen = move.fen;
586 this.$set(this.game.clocks, colorIdx, this.game.clocks[colorIdx] + addTime);
587 // move.initime is set only when I receive a "lastate" move from opponent
588 this.game.initime[nextIdx] = move.initime || Date.now();
589 // If repetition detected, consider that a draw offer was received:
590 const fenObj = V.ParseFen(move.fen);
591 let repIdx = fenObj.position + "_" + fenObj.turn;
593 repIdx += "_" + fenObj.flags;
594 this.repeat[repIdx] = (!!this.repeat[repIdx]
595 ? this.repeat[repIdx]+1
597 if (this.repeat[repIdx] >= 3)
598 this.drawOffer = "threerep";
599 else if (this.drawOffer == "threerep")
601 // Since corr games are stored at only one location, update should be
602 // done only by one player for each move:
603 if (!!this.game.mycolor &&
604 (this.game.type == "live" || move.color == this.game.mycolor))
607 switch (this.drawOffer)
613 drawCode = this.game.mycolor;
616 drawCode = this.vr.turn;
619 if (this.game.type == "corr")
621 GameStorage.update(this.gameRef.id,
626 squares: filtered_move,
628 idx: this.game.moves.length - 1,
630 drawOffer: drawCode || "n", //"n" for "None" to force reset (otherwise it's ignored)
635 GameStorage.update(this.gameRef.id,
639 clocks: this.game.clocks,
640 initime: this.game.initime,
646 resetChatColor: function() {
647 // TODO: this is called twice, once on opening an once on closing
648 document.getElementById("chatBtn").style.backgroundColor = "#e2e2e2";
650 processChat: function(chat) {
651 this.st.conn.send(JSON.stringify({code:"newchat", chat:chat}));
652 // NOTE: anonymous chats in corr games are not stored on server (TODO?)
653 if (this.game.type == "corr" && this.st.user.id > 0)
654 GameStorage.update(this.gameRef.id, {chat: chat});
656 gameOver: function(score, scoreMsg) {
657 this.game.score = score;
658 this.game.scoreMsg = this.st.tr[(!!scoreMsg
660 : getScoreMessage(score))];
661 const myIdx = this.game.players.findIndex(p => {
662 return p.sid == this.st.user.sid || p.uid == this.st.user.id;
664 if (myIdx >= 0) //OK, I play in this game
666 GameStorage.update(this.gameRef.id,
667 {score: score, scoreMsg: scoreMsg});
674 <style lang="sass" scoped>
676 background-color: lightgreen
685 @media screen and (min-width: 768px)
688 @media screen and (max-width: 767px)
693 display: inline-block
696 display: inline-block
699 @media screen and (max-width: 767px)
702 @media screen and (min-width: 768px)
716 display: inline-block
720 display: inline-block
731 .draw-sent, .draw-sent:hover
732 background-color: lightyellow
734 .draw-received, .draw-received:hover
735 background-color: lightgreen
737 .draw-threerep, .draw-threerep:hover
738 background-color: #e4d1fc