Save state: draft of askgame logic but some bugs for now
[vchess.git] / client / src / views / Game.vue
CommitLineData
a6088c90
BA
1<template lang="pug">
2.row
3 .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
b988c726
BA
4 input#modalAbort.modal(type="checkbox")
5 div(role="dialog" aria-labelledby="abortBoxTitle")
6 .card.smallpad.small-modal.text-center
7 label.modal-close(for="modalAbort")
8 h3#abortBoxTitle.section {{ st.tr["Terminate game?"] }}
9 button(@click="abortGame") {{ st.tr["Sorry I have to go"] }}
10 button(@click="abortGame") {{ st.tr["Game seems over"] }}
11 button(@click="abortGame") {{ st.tr["Game is too boring"] }}
b4fb1612
BA
12 BaseGame(:game="game" :vr="vr" ref="basegame"
13 @newmove="processMove" @gameover="gameOver")
f41ce580 14 div Names: {{ game.players[0].name }} - {{ game.players[1].name }}
afd3240d 15 div(v-if="game.score=='*'") Time: {{ virtualClocks[0] }} - {{ virtualClocks[1] }}
d4036efe 16 .button-group(v-if="game.mode!='analyze' && game.score=='*'")
a6088c90 17 button(@click="offerDraw") Draw
b988c726 18 button(@click="() => abortGame()") Abort
a6088c90 19 button(@click="resign") Resign
9330b976 20 textarea(v-if="game.score=='*'" v-model="corrMsg")
5c8e044f 21 Chat(:players="game.players")
a6088c90
BA
22</template>
23
9aa229f3 24<!--
9aa229f3
BA
25// ==> après, implémenter/vérifier les passages de challenges + parties en cours
26// observer,
9aa229f3
BA
27-->
28
a6088c90 29<script>
46284a2f 30import BaseGame from "@/components/BaseGame.vue";
f21cd6d9 31import Chat from "@/components/Chat.vue";
a6088c90 32import { store } from "@/store";
967a2686 33import { GameStorage } from "@/utils/gameStorage";
5b87454c 34import { ppt } from "@/utils/datetime";
66d03f23 35import { extractTime } from "@/utils/timeControl";
f41ce580 36import { ArrayFun } from "@/utils/array";
a6088c90
BA
37
38export default {
39 name: 'my-game',
40 components: {
41 BaseGame,
5c8e044f 42 Chat,
a6088c90 43 },
f7121527 44 // gameRef: to find the game in (potentially remote) storage
a6088c90
BA
45 data: function() {
46 return {
47 st: store.state,
4b0384fa
BA
48 gameRef: { //given in URL (rid = remote ID)
49 id: "",
50 rid: ""
51 },
f41ce580 52 game: {players:[{name:""},{name:""}]}, //passed to BaseGame
6fba6e0c 53 corrMsg: "", //to send offline messages in corr games
809ba2aa 54 virtualClocks: [0, 0], //initialized with true game.clocks
6dd02928 55 vr: null, //"variant rules" object initialized from FEN
6fba6e0c 56 drawOffer: "", //TODO: use for button style
92a523d1 57 people: [], //players + observers
a6088c90
BA
58 };
59 },
60 watch: {
5f131484
BA
61 "$route": function(to, from) {
62 this.gameRef.id = to.params["id"];
63 this.gameRef.rid = to.query["rid"];
64 this.loadGame();
a6088c90 65 },
5b87454c 66 "game.clocks": function(newState) {
dce792f6
BA
67 if (this.game.moves.length < 2)
68 {
69 // 1st move not completed yet: freeze time
70 this.virtualClocks = newState.map(s => ppt(s));
71 return;
72 }
809ba2aa 73 const currentTurn = this.vr.turn;
6fba6e0c 74 const colorIdx = ["w","b"].indexOf(currentTurn);
809ba2aa
BA
75 let countdown = newState[colorIdx] -
76 (Date.now() - this.game.initime[colorIdx])/1000;
c0b27606
BA
77 this.virtualClocks = [0,1].map(i => {
78 const removeTime = i == colorIdx
79 ? (Date.now() - this.game.initime[colorIdx])/1000
80 : 0;
81 return ppt(newState[i] - removeTime);
82 });
809ba2aa 83 let clockUpdate = setInterval(() => {
e69f159d 84 if (countdown < 0 || this.vr.turn != currentTurn || this.game.score != "*")
809ba2aa
BA
85 {
86 clearInterval(clockUpdate);
e69f159d 87 if (countdown < 0)
809ba2aa
BA
88 {
89 this.$refs["basegame"].endGame(
e69f159d 90 this.vr.turn=="w" ? "0-1" : "1-0", "Time");
809ba2aa
BA
91 }
92 }
9aa229f3
BA
93 else
94 {
95 // TODO: with Vue 3, just do this.virtualClocks[colorIdx] = ppt(--countdown)
96 this.$set(this.virtualClocks, colorIdx, ppt(Math.max(0, --countdown)));
97 }
809ba2aa 98 }, 1000);
5b87454c 99 },
92a523d1 100 },
5f131484 101 // TODO: redundant code with Hall.vue (related to people array)
a6088c90 102 created: function() {
5f131484
BA
103 // Always add myself to players' list
104 const my = this.st.user;
105 this.people.push({sid:my.sid, id:my.id, name:my.name});
f7121527 106 if (!!this.$route.params["id"])
a6088c90 107 {
f7121527
BA
108 this.gameRef.id = this.$route.params["id"];
109 this.gameRef.rid = this.$route.query["rid"];
b196f8ea 110 this.loadGame();
f7121527 111 }
afd3240d
BA
112 // TODO: mode analyse (/analyze/Atomic/rn
113 // ... fen = query[], vname=params[] ...
5f131484
BA
114 // 0.1] Ask server for room composition:
115 const funcPollClients = () => {
116 this.st.conn.send(JSON.stringify({code:"pollclients"}));
117 };
118 if (!!this.st.conn && this.st.conn.readyState == 1) //1 == OPEN state
119 funcPollClients();
120 else //socket not ready yet (initial loading)
121 this.st.conn.onopen = funcPollClients;
122 this.st.conn.onmessage = this.socketMessageListener;
cdb34c93
BA
123 const socketCloseListener = () => {
124 store.socketCloseListener(); //reinitialize connexion (in store.js)
a9b131f1 125 this.st.conn.addEventListener('message', this.socketMessageListener);
cdb34c93
BA
126 this.st.conn.addEventListener('close', socketCloseListener);
127 };
cdb34c93
BA
128 this.st.conn.onclose = socketCloseListener;
129 },
130 methods: {
5f131484
BA
131 getOppSid: function() {
132 if (!!this.game.oppsid)
133 return this.game.oppsid;
134 const opponent = this.people.find(p => p.id == this.game.oppid);
135 return (!!opponent ? opponent.sid : null);
136 },
cdb34c93 137 socketMessageListener: function(msg) {
a6088c90 138 const data = JSON.parse(msg.data);
a6088c90
BA
139 switch (data.code)
140 {
5f131484
BA
141 // 0.2] Receive clients list (just socket IDs)
142 case "pollclients":
143 {
144 data.sockIds.forEach(sid => {
145 this.people.push({sid:sid, id:0, name:""});
146 // Ask only identity
147 this.st.conn.send(JSON.stringify({code:"askidentity", target:sid}));
148 });
149 break;
150 }
151 case "askidentity":
152 {
153 // Request for identification: reply if I'm not anonymous
154 if (this.st.user.id > 0)
155 {
156 this.st.conn.send(JSON.stringify(
157 // people[0] instead of st.user to avoid sending email
158 {code:"identity", user:this.people[0], target:data.from}));
159 }
160 break;
161 }
162 case "identity":
163 {
f41ce580
BA
164 let player = this.people.find(p => p.sid == data.user.sid);
165 player.id = data.user.id;
166 player.name = data.user.name;
167 // Sending last state only for live games: corr games are complete
168 if (this.game.type == "live" && this.game.oppsid == player.sid)
411d23cd 169 {
f41ce580 170 // Send our "last state" informations to opponent
411d23cd
BA
171 const L = this.game.moves.length;
172 this.st.conn.send(JSON.stringify({
173 code: "lastate",
f41ce580
BA
174 target: player.sid,
175 state:
176 {
177 lastMove: (L>0 ? this.game.moves[L-1] : undefined),
178 score: this.game.score,
179 movesCount: L,
180 drawOffer: this.drawOffer,
181 clocks: this.game.clocks,
182 }
411d23cd
BA
183 }));
184 }
a6088c90 185 break;
6fba6e0c 186 }
c6788ecf
BA
187 case "askgame":
188 // Send current (live) game
189 const myGame =
190 {
191 // Minimal game informations:
192 id: this.game.id,
193 players: this.game.players.map(p => p.name),
194 vid: this.game.vid,
195 timeControl: this.game.timeControl,
196 };
197 this.st.conn.send(JSON.stringify({code:"game",
198 game:myGame, target:data.from}));
199 break;
f41ce580
BA
200 case "newmove":
201 // NOTE: this call to play() will trigger processMove()
202 this.$refs["basegame"].play(data.move,
203 "receive", this.game.vname!="Dark" ? "animate" : null);
204 break;
a6088c90 205 case "lastate": //got opponent infos about last move
6fba6e0c
BA
206 {
207 const L = this.game.moves.length;
6fba6e0c 208 if (data.movesCount > L)
a6088c90 209 {
6fba6e0c 210 // Just got last move from him
f41ce580
BA
211 this.$refs["basegame"].play(data.lastMove,
212 "receive", this.game.vname!="Dark" ? "animate" : null);
6fba6e0c
BA
213 if (data.score != "*" && this.game.score == "*")
214 {
215 // Opponent resigned or aborted game, or accepted draw offer
216 // (this is not a stalemate or checkmate)
217 this.$refs["basegame"].endGame(data.score, "Opponent action");
218 }
f41ce580
BA
219 this.game.clocks = data.clocks; //TODO: check this?
220 this.drawOffer = data.drawOffer; //does opponent offer draw?
a6088c90 221 }
a6088c90 222 break;
6fba6e0c 223 }
93d1d7a7
BA
224 case "resign":
225 this.$refs["basegame"].endGame(
226 this.game.mycolor=="w" ? "1-0" : "0-1", "Resign");
227 break;
93d1d7a7
BA
228 case "abort":
229 this.$refs["basegame"].endGame("?", "Abort: " + data.msg);
230 break;
2cc10cdb
BA
231 case "draw":
232 this.$refs["basegame"].endGame("1/2", "Mutual agreement");
233 break;
234 case "drawoffer":
235 this.drawOffer = "received";
236 break;
7e1a1fe9
BA
237 case "askfullgame":
238 // TODO: just give game; observers are listed here anyway:
5f131484
BA
239 // ==> mark request SID as someone to send moves to
240 // NOT to all people array: our opponent can send moves too!
7e1a1fe9 241 break;
5f131484
BA
242 case "fullgame":
243 // and when receiving answer just call loadGame(received_game)
244 this.loadGame(data.game);
245 break;
246 // TODO: drawaccepted (click draw button before sending move
247 // ==> draw offer in move)
248 // ==> on "newmove", check "drawOffer" field
249 case "connect":
250 {
c6788ecf
BA
251 this.people.push({name:"", id:0, sid:data.from});
252 this.st.conn.send(JSON.stringify({code:"askidentity", target:data.from}));
5f131484
BA
253 break;
254 }
255 case "disconnect":
c6788ecf 256 ArrayFun.remove(this.people, p => p.sid == data.from);
a6088c90
BA
257 break;
258 }
cdb34c93 259 },
a6088c90 260 offerDraw: function() {
2cc10cdb 261 // TODO: also for corr games
6fba6e0c
BA
262 if (this.drawOffer == "received")
263 {
2cc10cdb 264 if (!confirm("Accept draw?"))
6fba6e0c 265 return;
5f131484
BA
266 const oppsid = this.getOppSid();
267 if (!!oppsid)
268 this.st.conn.send(JSON.stringify({code:"draw", target:oppsid}));
2cc10cdb
BA
269 this.$refs["basegame"].endGame("1/2", "Mutual agreement");
270 }
6fba6e0c
BA
271 else if (this.drawOffer == "sent")
272 this.drawOffer = "";
273 else
274 {
275 if (!confirm("Offer draw?"))
276 return;
5f131484
BA
277 const oppsid = this.getOppSid();
278 if (!!oppsid)
279 this.st.conn.send(JSON.stringify({code:"drawoffer", target:oppsid}));
a6088c90
BA
280 }
281 },
282 // + conn handling: "draw" message ==> agree for draw (if we have "drawOffered" at true)
283 receiveDrawOffer: function() {
284 //if (...)
285 // TODO: ignore if preventDrawOffer is set; otherwise show modal box with option "prevent future offers"
286 // if accept: send message "draw"
287 },
b988c726 288 abortGame: function(event) {
9aa229f3 289 let modalBox = document.getElementById("modalAbort");
b988c726
BA
290 if (!event)
291 {
292 // First call show options:
b988c726
BA
293 modalBox.checked = true;
294 }
295 else
296 {
9aa229f3
BA
297 modalBox.checked = false; //decision made: box disappear
298 const message = event.target.innerText;
d4036efe 299 // Next line will trigger a "gameover" event, bubbling up till here
9aa229f3 300 this.$refs["basegame"].endGame("?", "Abort: " + message);
5f131484
BA
301 const oppsid = this.getOppSid();
302 if (!!oppsid)
303 {
304 this.st.conn.send(JSON.stringify({
305 code: "abort",
306 msg: message,
307 target: oppsid,
308 }));
309 }
b988c726 310 }
a6088c90
BA
311 },
312 resign: function(e) {
313 if (!confirm("Resign the game?"))
314 return;
5f131484
BA
315 const oppsid = this.getOppSid();
316 if (!!oppsid)
317 {
318 this.st.conn.send(JSON.stringify({
319 code: "resign",
320 target: oppsid,
321 }));
322 }
93d1d7a7 323 // Next line will trigger a "gameover" event, bubbling up till here
809ba2aa
BA
324 this.$refs["basegame"].endGame(
325 this.game.mycolor=="w" ? "0-1" : "1-0", "Resign");
a6088c90 326 },
967a2686
BA
327 // 3 cases for loading a game:
328 // - from indexedDB (running or completed live game I play)
b196f8ea
BA
329 // - from server (one correspondance game I play[ed] or not)
330 // - from remote peer (one live game I don't play, finished or not)
967a2686
BA
331 loadGame: function(game) {
332 const afterRetrieval = async (game) => {
f41ce580
BA
333 const vModule = await import("@/variants/" + game.vname + ".js");
334 window.V = vModule.VariantRules;
335 this.vr = new V(game.fen);
c0b27606 336 const gtype = (game.timeControl.indexOf('d') >= 0 ? "corr" : "live");
92a523d1 337 const tc = extractTime(game.timeControl);
c0b27606
BA
338 if (gtype == "corr")
339 {
f41ce580
BA
340 if (game.players[0].color == "b")
341 {
342 // Adopt the same convention for live and corr games: [0] = white
343 [ game.players[0], game.players[1] ] =
344 [ game.players[1], game.players[0] ];
345 }
c0b27606 346 // corr game: needs to compute the clocks + initime
92a523d1 347 game.clocks = [tc.mainTime, tc.mainTime];
c0b27606 348 game.initime = [0, 0];
5f131484 349 const L = game.moves.length;
92b82def 350 game.moves.sort((m1,m2) => m1.idx - m2.idx); //in case of
5f131484 351 if (L >= 3)
92a523d1 352 {
5f131484
BA
353 let addTime = [0, 0];
354 for (let i=2; i<L; i++)
355 {
356 addTime[i%2] += tc.increment -
357 (game.moves[i].played - game.moves[i-1].played);
358 }
359 for (let i=0; i<=1; i++)
360 game.clocks[i] += addTime[i];
92a523d1 361 }
5f131484
BA
362 if (L >= 1)
363 game.initime[L%2] = game.moves[L-1].played;
92b82def 364 // Now that we used idx and played, re-format moves as for live games
6d68309a 365 game.moves = game.moves.map( (m) => {
92b82def 366 const s = m.squares;
6d68309a 367 return {
92b82def
BA
368 appear: s.appear,
369 vanish: s.vanish,
370 start: s.start,
371 end: s.end,
372 message: m.message,
373 };
374 });
c0b27606 375 }
f41ce580
BA
376 const myIdx = game.players.findIndex(p => {
377 return p.sid == this.st.user.sid || p.uid == this.st.user.id;
378 });
92a523d1 379 if (gtype == "live" && game.clocks[0] < 0) //game unstarted
66d03f23
BA
380 {
381 game.clocks = [tc.mainTime, tc.mainTime];
382 game.initime[0] = Date.now();
92a523d1 383 if (myIdx >= 0)
22efa391 384 {
cf742aaf 385 // I play in this live game; corr games don't have clocks+initime
d18bfa12 386 GameStorage.update(game.id,
22efa391
BA
387 {
388 clocks: game.clocks,
389 initime: game.initime,
390 });
391 }
66d03f23 392 }
4b0384fa
BA
393 this.game = Object.assign({},
394 game,
cf742aaf 395 // NOTE: assign mycolor here, since BaseGame could also be VS computer
6fba6e0c 396 {
c0b27606 397 type: gtype,
66d03f23 398 increment: tc.increment,
6fba6e0c 399 mycolor: [undefined,"w","b"][myIdx+1],
5f131484
BA
400 // opponent sid not strictly required (or available), but easier
401 // at least oppsid or oppid is available anyway:
402 oppsid: (myIdx < 0 ? undefined : game.players[1-myIdx].sid),
403 oppid: (myIdx < 0 ? undefined : game.players[1-myIdx].uid),
6fba6e0c 404 }
4b0384fa 405 );
967a2686
BA
406 };
407 if (!!game)
408 return afterRetrival(game);
409 if (!!this.gameRef.rid)
410 {
f41ce580 411 // Remote live game
5f131484
BA
412 this.st.conn.send(JSON.stringify(
413 {code:"askfullgame", target:this.gameRef.rid}));
967a2686 414 // (send moves updates + resign/abort/draw actions)
967a2686
BA
415 }
416 else
417 {
f41ce580 418 // Local or corr game
11667c79 419 GameStorage.get(this.gameRef.id, afterRetrieval);
967a2686 420 }
a6088c90 421 },
9d54ab89 422 // Post-process a move (which was just played)
ce87ac6a 423 processMove: function(move) {
b4fb1612
BA
424 if (!this.game.mycolor)
425 return; //I'm just an observer
9d54ab89 426 // Update storage (corr or live)
6fba6e0c 427 const colorIdx = ["w","b"].indexOf(move.color);
9d54ab89
BA
428 // https://stackoverflow.com/a/38750895
429 const allowed_fields = ["appear", "vanish", "start", "end"];
430 const filtered_move = Object.keys(move)
431 .filter(key => allowed_fields.includes(key))
432 .reduce((obj, key) => {
8a7452b5 433 obj[key] = move[key];
9d54ab89
BA
434 return obj;
435 }, {});
b4fb1612 436 // Send move ("newmove" event) to opponent(s) (if ours)
dce792f6 437 let addTime = 0;
9d54ab89 438 if (move.color == this.game.mycolor)
b4fb1612 439 {
dce792f6
BA
440 if (this.game.moves.length >= 2) //after first move
441 {
442 const elapsed = Date.now() - this.game.initime[colorIdx];
443 // elapsed time is measured in milliseconds
444 addTime = this.game.increment - elapsed/1000;
445 }
6d68309a
BA
446 let sendMove = Object.assign({}, filtered_move, {addTime: addTime});
447 if (this.game.type == "corr")
448 sendMove.message = this.corrMsg;
a4480041
BA
449 const oppsid = this.getOppSid();
450 if (!!oppsid)
451 {
452 this.st.conn.send(JSON.stringify({
453 code: "newmove",
454 target: oppsid,
455 move: sendMove,
456 }));
457 }
458 if (this.game.type == "corr" && this.corrMsg != "")
459 {
460 // Add message to last move in BaseGame:
461 // TODO: not very good style...
462 this.$refs["basegame"].setCurrentMessage(this.corrMsg);
463 }
b4fb1612 464 }
5b87454c
BA
465 else
466 addTime = move.addTime; //supposed transmitted
6fba6e0c 467 const nextIdx = ["w","b"].indexOf(this.vr.turn);
6d68309a
BA
468 // Since corr games are stored at only one location, update should be
469 // done only by one player for each move:
470 if (this.game.type == "live" || move.color == this.game.mycolor)
967a2686 471 {
e69f159d 472 if (this.game.type == "corr")
f41ce580 473 {
e69f159d 474 GameStorage.update(this.gameRef.id,
6d68309a 475 {
e69f159d
BA
476 fen: move.fen,
477 move:
478 {
479 squares: filtered_move,
480 message: this.corrMsg,
481 played: Date.now(), //TODO: on server?
482 idx: this.game.moves.length,
483 },
484 });
485 }
486 else //live
487 {
488 GameStorage.update(this.gameRef.id,
489 {
490 fen: move.fen,
491 move: filtered_move,
492 clocks: this.game.clocks.map((t,i) => i==colorIdx
493 ? this.game.clocks[i] + addTime
494 : this.game.clocks[i]),
495 initime: this.game.initime.map((t,i) => i==nextIdx
496 ? Date.now()
497 : this.game.initime[i]),
498 });
499 }
6d68309a 500 }
967a2686
BA
501 // Also update current game object:
502 this.game.moves.push(move);
503 this.game.fen = move.fen;
66d03f23
BA
504 //TODO: just this.game.clocks[colorIdx] += addTime;
505 this.$set(this.game.clocks, colorIdx, this.game.clocks[colorIdx] + addTime);
809ba2aa 506 this.game.initime[nextIdx] = Date.now();
6d68309a
BA
507 // Finally reset curMoveMessage if needed
508 if (this.game.type == "corr" && move.color == this.game.mycolor)
509 this.corrMsg = "";
b4fb1612
BA
510 },
511 gameOver: function(score) {
93d1d7a7 512 this.game.mode = "analyze";
d18bfa12 513 this.game.score = score;
22efa391 514 GameStorage.update(this.gameRef.id, { score: score });
ce87ac6a 515 },
a6088c90
BA
516 },
517};
518</script>
7e1a1fe9
BA
519
520<style lang="sass">
521// TODO
522</style>