Fixes
[vchess.git] / client / src / views / Hall.vue
CommitLineData
ccd4a2b7 1<template lang="pug">
9d58ef95 2main
dce792f6 3 input#modalInfo.modal(type="checkbox")
602d6bef 4 div#infoDiv(role="dialog" data-checkbox="modalInfo" aria-labelledby="infoMessage")
dce792f6
BA
5 .card.smallpad.small-modal.text-center
6 label.modal-close(for="modalInfo")
7 h3#infoMessage.section
3d55deea 8 p(v-html="infoMessage")
5b020e73 9 input#modalNewgame.modal(type="checkbox")
602d6bef 10 div#newgameDiv(role="dialog" data-checkbox="modalNewgame"
dcd68c41 11 aria-labelledby="titleFenedit")
c97830ea 12 .card.smallpad(@keyup.enter="newChallenge")
5b020e73
BA
13 label#closeNewgame.modal-close(for="modalNewgame")
14 fieldset
602d6bef 15 label(for="selectVariant") {{ st.tr["Variant"] }} *
9d58ef95 16 select#selectVariant(v-model="newchallenge.vid")
25d18342
BA
17 option(v-for="v in st.variants" :value="v.id"
18 :selected="newchallenge.vid==v.id")
19 | {{ v.name }}
5b020e73 20 fieldset
f44fd3bf 21 label(for="timeControl") {{ st.tr["Cadence"] }} *
25d18342
BA
22 div#predefinedTimeControls
23 button 3+2
24 button 5+3
25 button 15+5
9d58ef95 26 input#timeControl(type="text" v-model="newchallenge.timeControl"
25d18342 27 placeholder="5+0, 1h+30s, 7d+1d ...")
b4d619d1 28 fieldset(v-if="st.user.id > 0")
602d6bef 29 label(for="selectPlayers") {{ st.tr["Play with?"] }}
6fba6e0c 30 input#selectPlayers(type="text" v-model="newchallenge.to")
25d18342 31 fieldset(v-if="st.user.id > 0 && newchallenge.to.length > 0")
ac8f441c 32 label(for="inputFen") FEN
9d58ef95 33 input#inputFen(type="text" v-model="newchallenge.fen")
b4d619d1 34 button(@click="newChallenge") {{ st.tr["Send challenge"] }}
9d58ef95 35 .row
9ca1e26b 36 .col-sm-12
602d6bef 37 button#newGame(onClick="doClick('modalNewgame')") {{ st.tr["New game"] }}
9d58ef95 38 .row
9ca1e26b 39 .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
ed06d9e9
BA
40 div
41 .button-group
42 button(@click="(e) => setDisplay('c','live',e)" class="active")
602d6bef 43 | {{ st.tr["Live challenges"] }}
ed06d9e9 44 button(@click="(e) => setDisplay('c','corr',e)")
602d6bef 45 | {{ st.tr["Correspondance challenges"] }}
ed06d9e9
BA
46 ChallengeList(v-show="cdisplay=='live'"
47 :challenges="filterChallenges('live')" @click-challenge="clickChallenge")
48 ChallengeList(v-show="cdisplay=='corr'"
49 :challenges="filterChallenges('corr')" @click-challenge="clickChallenge")
50 #people
602d6bef 51 h3.text-center {{ st.tr["Who's there?"] }}
ed06d9e9 52 #players
9335d45b
BA
53 p(v-for="sid in Object.keys(people)" v-if="!!people[sid].name")
54 span {{ people[sid].name }}
ed06d9e9 55 button.player-action(
9335d45b
BA
56 v-if="people[sid].name != st.user.name"
57 @click="challOrWatch(sid, $event)"
ed06d9e9 58 )
9335d45b 59 | {{ st.tr[!!people[sid].gamer ? 'Playing' : 'Available'] }}
ed06d9e9
BA
60 p.anonymous @nonymous ({{ anonymousCount }})
61 #chat
ac8f441c 62 Chat(:newChat="newChat" @mychat="processChat")
ed06d9e9
BA
63 .clearer
64 div
65 .button-group
66 button(@click="(e) => setDisplay('g','live',e)" class="active")
602d6bef 67 | {{ st.tr["Live games"] }}
ed06d9e9 68 button(@click="(e) => setDisplay('g','corr',e)")
602d6bef 69 | {{ st.tr["Correspondance games"] }}
ed06d9e9
BA
70 GameList(v-show="gdisplay=='live'" :games="filterGames('live')"
71 @show-game="showGame")
72 GameList(v-show="gdisplay=='corr'" :games="filterGames('corr')"
73 @show-game="showGame")
625022fd
BA
74</template>
75
76<script>
5b020e73 77import { store } from "@/store";
9d58ef95
BA
78import { checkChallenge } from "@/data/challengeCheck";
79import { ArrayFun } from "@/utils/array";
03608482 80import { ajax } from "@/utils/ajax";
4b0384fa 81import { getRandString, shuffle } from "@/utils/alea";
603b8a8b 82import Chat from "@/components/Chat.vue";
5b020e73
BA
83import GameList from "@/components/GameList.vue";
84import ChallengeList from "@/components/ChallengeList.vue";
967a2686 85import { GameStorage } from "@/utils/gameStorage";
602d6bef
BA
86import { processModalClick } from "@/utils/modalClick";
87
625022fd 88export default {
cf2343ce 89 name: "my-hall",
5b020e73 90 components: {
603b8a8b 91 Chat,
5b020e73
BA
92 GameList,
93 ChallengeList,
94 },
fb54f098
BA
95 data: function () {
96 return {
5b020e73 97 st: store.state,
6855163c
BA
98 cdisplay: "live", //or corr
99 pdisplay: "players", //or chat
fb54f098 100 gdisplay: "live",
6855163c 101 games: [],
b4d619d1 102 challenges: [],
dcd68c41 103 people: {}, //people in main hall
3d55deea 104 infoMessage: "",
9d58ef95 105 newchallenge: {
fb54f098 106 fen: "",
25d18342 107 vid: localStorage.getItem("vid") || "",
6fba6e0c 108 to: "", //name of challenged player (if any)
25d18342 109 timeControl: localStorage.getItem("timeControl") || "",
fb54f098 110 },
ac8f441c 111 newChat: "",
fb54f098
BA
112 };
113 },
fd7aea36
BA
114 watch: {
115 // st.variants changes only once, at loading from [] to [...]
116 "st.variants": function(variantArray) {
117 // Set potential challenges and games variant names:
118 this.challenges.forEach(c => {
119 if (c.vname == "")
120 c.vname = this.getVname(c.vid);
121 });
122 this.games.forEach(g => {
123 if (g.vname == "")
f41ce580 124 g.vname = this.getVname(g.vid);
fd7aea36
BA
125 });
126 },
127 },
b4d619d1 128 computed: {
ed06d9e9
BA
129 anonymousCount: function() {
130 let count = 0;
131 Object.values(this.people).forEach(p => { count += (!p.name ? 1 : 0); });
132 return count;
b4d619d1
BA
133 },
134 },
9d58ef95 135 created: function() {
4d64881e 136 // Always add myself to players' list
66d03f23 137 const my = this.st.user;
dcd68c41 138 this.$set(this.people, my.sid, {id:my.id, name:my.name});
f6f2bef1
BA
139 // Retrieve live challenge (not older than 30 minute) if any:
140 const chall = JSON.parse(localStorage.getItem("challenge") || "false");
141 if (!!chall)
142 {
b1ea2149
BA
143 // NOTE: a challenge survives 3 minutes, for potential connection issues
144 if ((Date.now() - chall.added)/1000 <= 3*60)
145 {
146 chall.added = Date.now(); //update added time, for next disconnect...
f6f2bef1 147 this.challenges.push(chall);
b1ea2149
BA
148 localStorage.setItem("challenge", JSON.stringify(chall));
149 }
f6f2bef1
BA
150 else
151 localStorage.removeItem("challenge");
152 }
3d55deea
BA
153 // Ask server for current corr games (all but mines)
154 ajax(
155 "/games",
156 "GET",
157 {uid: this.st.user.id, excluded: true},
158 response => {
159 this.games = this.games.concat(response.games.map(g => {
160 const type = this.classifyObject(g);
161 const vname = this.getVname(g.vid);
162 return Object.assign({}, g, {type: type, vname: vname});
163 }));
164 }
165 );
fe4c7e67 166 // Also ask for corr challenges (open + sent by/to me)
3d55deea
BA
167 ajax(
168 "/challenges",
169 "GET",
170 {uid: this.st.user.id},
171 response => {
172 // Gather all senders names, and then retrieve full identity:
173 // (TODO [perf]: some might be online...)
fe4c7e67
BA
174 let names = {};
175 response.challenges.forEach(c => {
176 if (c.uid != this.st.user.id)
177 names[c.uid] = ""; //unknwon for now
178 else if (!!c.target && c.target != this.st.user.id)
179 names[c.target] = "";
180 });
181 const addChallenges = (newChalls) => {
182 names[this.st.user.id] = this.st.user.name; //in case of
183 this.challenges = this.challenges.concat(
184 response.challenges.map(c => {
185 const from = {name: names[c.uid], id: c.uid}; //or just name
186 const type = this.classifyObject(c);
187 const vname = this.getVname(c.vid);
188 return Object.assign({},
189 {
190 type: type,
191 vname: vname,
192 from: from,
193 to: (!!c.target ? names[c.target] : ""),
194 },
195 c);
196 })
197 );
198 };
199 if (names !== {})
200 {
201 ajax("/users",
202 "GET",
203 { ids: Object.keys(names).join(",") },
204 response2 => {
205 response2.users.forEach(u => {names[u.id] = u.name});
206 addChallenges();
207 }
208 );
209 }
210 else
211 addChallenges();
3d55deea
BA
212 }
213 );
2ada153c 214 // 0.1] Ask server for room composition:
7b01e447 215 const funcPollClients = () => {
ed06d9e9
BA
216 // Same strategy as in Game.vue: send connection
217 // after we're sure WebSocket is initialized
218 this.st.conn.send(JSON.stringify({code:"connect"}));
81d9ce72 219 this.st.conn.send(JSON.stringify({code:"pollclients"}));
ac8f441c 220 this.st.conn.send(JSON.stringify({code:"pollgamers"}));
4d64881e 221 };
7b01e447
BA
222 if (!!this.st.conn && this.st.conn.readyState == 1) //1 == OPEN state
223 funcPollClients();
224 else //socket not ready yet (initial loading)
3cb412e9 225 this.st.conn.onopen = funcPollClients;
4d64881e
BA
226 this.st.conn.onmessage = this.socketMessageListener;
227 const socketCloseListener = () => {
cdb34c93 228 store.socketCloseListener(); //reinitialize connexion (in store.js)
4d64881e
BA
229 this.st.conn.addEventListener('message', this.socketMessageListener);
230 this.st.conn.addEventListener('close', socketCloseListener);
231 };
232 this.st.conn.onclose = socketCloseListener;
9d58ef95 233 },
25d18342 234 mounted: function() {
602d6bef
BA
235 [document.getElementById("infoDiv"),document.getElementById("newgameDiv")]
236 .forEach(elt => elt.addEventListener("click", processModalClick));
25d18342
BA
237 document.querySelectorAll("#predefinedTimeControls > button").forEach(
238 (b) => { b.addEventListener("click",
239 () => { this.newchallenge.timeControl = b.innerHTML; }
240 )}
241 );
242 },
fb54f098 243 methods: {
a6bddfc6 244 // Helpers:
6855163c
BA
245 filterChallenges: function(type) {
246 return this.challenges.filter(c => c.type == type);
247 },
248 filterGames: function(type) {
a9b131f1 249 return this.games.filter(g => g.type == type);
6855163c 250 },
2ada153c 251 classifyObject: function(o) { //challenge or game
2ada153c 252 return (o.timeControl.indexOf('d') === -1 ? "live" : "corr");
6855163c 253 },
2ada153c 254 showGame: function(g) {
5bd05dba 255 // NOTE: we are an observer, since only games I don't play are shown here
2ada153c 256 // ==> Moves sent by connected remote player(s) if live game
d9b86b16 257 let url = "/game/" + g.id;
2ada153c 258 if (g.type == "live")
dc284d90 259 url += "?rid=" + g.rid;
2ada153c 260 this.$router.push(url);
a6bddfc6 261 },
5bcc9b31
BA
262 setDisplay: function(letter, type, e) {
263 this[letter + "display"] = type;
264 e.target.classList.add("active");
265 if (!!e.target.previousElementSibling)
266 e.target.previousElementSibling.classList.remove("active");
267 else
268 e.target.nextElementSibling.classList.remove("active");
269 },
a6bddfc6 270 getVname: function(vid) {
f41ce580
BA
271 const variant = this.st.variants.find(v => v.id == vid);
272 // this.st.variants might be uninitialized (variant == null)
273 return (!!variant ? variant.name : "");
a6bddfc6 274 },
ac8f441c
BA
275 processChat: function(chat) {
276 // When received on server, this will trigger a "notifyRoom"
277 this.st.conn.send(JSON.stringify({code:"newchat", chat: chat}));
278 },
a6bddfc6
BA
279 sendSomethingTo: function(to, code, obj, warnDisconnected) {
280 const doSend = (code, obj, sid) => {
281 this.st.conn.send(JSON.stringify(Object.assign(
a6bddfc6
BA
282 {code: code},
283 obj,
284 {target: sid}
285 )));
286 };
9335d45b 287 if (!to || (!to.sid && !to.name))
a6bddfc6 288 {
5ea8d113 289 // Open challenge: send to all connected players (me excepted)
dcd68c41
BA
290 Object.keys(this.people).forEach(sid => {
291 if (sid != this.st.user.sid)
292 doSend(code, obj, sid);
a6bddfc6
BA
293 });
294 }
9335d45b
BA
295 else
296 {
297 let targetSid = "";
298 if (!!to.sid)
299 targetSid = to.sid;
300 else
301 {
302 if (to.name == this.st.user.name)
303 return alert(this.st.tr["Cannot challenge self"]);
304 // Challenge with targeted players
305 targetSid =
306 Object.keys(this.people).find(sid => this.people[sid].name == to.name);
307 if (!targetSid)
308 {
309 if (!!warnDisconnected)
310 alert(this.st.tr["Warning: target is not connected"]);
311 return false;
312 }
313 }
314 doSend(code, obj, targetSid);
315 }
5ea8d113 316 return true;
a6bddfc6
BA
317 },
318 // Messaging center:
9d58ef95
BA
319 socketMessageListener: function(msg) {
320 const data = JSON.parse(msg.data);
321 switch (data.code)
322 {
6d9f4315 323 case "duplicate":
602d6bef 324 alert(this.st.tr["Warning: multi-tabs not supported"]);
6d9f4315 325 break;
f4f4c03c 326 // 0.2] Receive clients list (just socket IDs)
81d9ce72 327 case "pollclients":
5a3da968 328 data.sockIds.forEach(sid => {
dcd68c41 329 this.$set(this.people, sid, {id:0, name:""});
ac8f441c 330 // Ask identity and challenges
5a3da968 331 this.st.conn.send(JSON.stringify({code:"askidentity", target:sid}));
2ada153c 332 this.st.conn.send(JSON.stringify({code:"askchallenge", target:sid}));
5a3da968 333 });
ac8f441c
BA
334 break;
335 case "pollgamers":
336 // NOTE: we could make a difference between people in hall
337 // and gamers, but is it necessary?
338 data.sockIds.forEach(sid => {
9335d45b 339 this.$set(this.people, sid, {id:0, name:"", gamer:true});
ac8f441c
BA
340 this.st.conn.send(JSON.stringify({code:"askidentity", target:sid}));
341 });
cd0d7743
BA
342 // Also ask current games to all playing peers (TODO: some design issue)
343 this.st.conn.send(JSON.stringify({code:"askgames"}));
5a3da968 344 break;
81d9ce72 345 case "askidentity":
1efe1d79 346 {
6855163c
BA
347 // Request for identification: reply if I'm not anonymous
348 if (this.st.user.id > 0)
349 {
dcd68c41
BA
350 this.st.conn.send(JSON.stringify({code:"identity",
351 user: {
352 // NOTE: decompose to avoid revealing email
353 name: this.st.user.name,
354 sid: this.st.user.sid,
355 id: this.st.user.id,
356 },
357 target:data.from}));
6855163c 358 }
5a3da968 359 break;
1efe1d79 360 }
dcd68c41
BA
361 case "identity":
362 {
363 this.$set(this.people, data.user.sid,
9335d45b
BA
364 {
365 id: data.user.id,
366 name: data.user.name,
367 gamer: this.people[data.user.sid].gamer,
368 });
dcd68c41
BA
369 break;
370 }
dd75774d 371 case "askchallenge":
1efe1d79 372 {
6855163c 373 // Send my current live challenge (if any)
5ea8d113
BA
374 const cIdx = this.challenges.findIndex(c =>
375 c.from.sid == this.st.user.sid && c.type == "live");
dd75774d
BA
376 if (cIdx >= 0)
377 {
378 const c = this.challenges[cIdx];
a64d9122
BA
379 // TODO: code below requires "c.to" to have given his identity,
380 // but it can happen that the identity arrives later, which
381 // prevent him from receiving the challenge.
382 // ==> Filter later (when receiving challenge)
383// if (!!c.to)
384// {
385// // Only share targeted challenges to the targets:
386// const toSid = Object.keys(this.people).find(k =>
387// this.people[k].name == c.to);
388// if (toSid != data.from)
389// return;
390// }
dd75774d
BA
391 const myChallenge =
392 {
81d9ce72 393 // Minimal challenge informations: (from not required)
2ada153c 394 id: c.id,
81d9ce72
BA
395 to: c.to,
396 fen: c.fen,
397 vid: c.vid,
5ea8d113 398 timeControl: c.timeControl,
a64d9122 399 added: c.added,
dd75774d
BA
400 };
401 this.st.conn.send(JSON.stringify({code:"challenge",
42c15a75 402 chall:myChallenge, target:data.from}));
81d9ce72
BA
403 }
404 break;
1efe1d79 405 }
dd75774d 406 case "challenge":
1efe1d79 407 {
dd75774d 408 // Receive challenge from some player (+sid)
a64d9122
BA
409 // NOTE about next condition: see "askchallenge" case.
410 if (!data.chall.to || data.chall.to == this.st.user.name)
411 {
412 let newChall = data.chall;
413 newChall.type = this.classifyObject(data.chall);
414 newChall.from =
415 Object.assign({sid:data.from}, this.people[data.from]);
416 newChall.vname = this.getVname(newChall.vid);
417 this.challenges.push(newChall);
418 }
81d9ce72 419 break;
1efe1d79 420 }
dd75774d 421 case "game":
1efe1d79 422 {
6855163c 423 // Receive game from some player (+sid)
6855163c 424 // NOTE: it may be correspondance (if newgame while we are connected)
b1ea2149
BA
425 // If duplicate found: select rid (remote ID) at random
426 let game = this.games.find(g => g.id == data.game.id);
a64d9122
BA
427 if (!!game)
428 {
429 if (Math.random() < 0.5)
430 game.rid = data.from;
431 }
b1ea2149 432 else
d9b86b16
BA
433 {
434 let newGame = data.game;
435 newGame.type = this.classifyObject(data.game);
a9b131f1 436 newGame.vname = this.getVname(data.game.vid);
d9b86b16 437 newGame.rid = data.from;
a64d9122
BA
438 if (!data.game.score)
439 newGame.score = "*";
d9b86b16
BA
440 this.games.push(newGame);
441 }
81d9ce72 442 break;
1efe1d79 443 }
9d58ef95 444 case "newgame":
1efe1d79 445 {
5d04793e 446 // New game just started: data contain all information
66d03f23 447 if (this.classifyObject(data.gameInfo) == "live")
5d04793e 448 this.startNewGame(data.gameInfo);
5d04793e
BA
449 else
450 {
3d55deea 451 this.infoMessage = "New game started: " +
11667c79
BA
452 "<a href='#/game/" + data.gameInfo.id + "'>" +
453 "#/game/" + data.gameInfo.id + "</a>";
dce792f6
BA
454 let modalBox = document.getElementById("modalInfo");
455 modalBox.checked = true;
3d55deea 456 setTimeout(() => { modalBox.checked = false; }, 3000);
5d04793e 457 }
9d58ef95 458 break;
1efe1d79 459 }
ac8f441c
BA
460 case "newchat":
461 this.newChat = data.chat;
462 break;
bb7dd7db
BA
463 case "refusechallenge":
464 {
5bd05dba 465 ArrayFun.remove(this.challenges, c => c.id == data.cid);
b1ea2149 466 localStorage.removeItem("challenge");
602d6bef 467 alert(this.st.tr["Challenge declined"]);
bb7dd7db
BA
468 break;
469 }
1efe1d79
BA
470 case "deletechallenge":
471 {
1ba761c8 472 // NOTE: the challenge may be already removed
9d58ef95 473 ArrayFun.remove(this.challenges, c => c.id == data.cid);
66d03f23 474 localStorage.removeItem("challenge"); //in case of
9d58ef95 475 break;
1efe1d79 476 }
b4d619d1 477 case "connect":
ac8f441c 478 case "gconnect":
9335d45b 479 this.$set(this.people, data.from, {name:"", id:0, gamer:data.code[0]=='g'});
c6788ecf 480 this.st.conn.send(JSON.stringify({code:"askidentity", target:data.from}));
ac8f441c
BA
481 if (data.code == "connect")
482 this.st.conn.send(JSON.stringify({code:"askchallenge", target:data.from}));
483 else
484 this.st.conn.send(JSON.stringify({code:"askgame", target:data.from}));
9d58ef95 485 break;
b4d619d1 486 case "disconnect":
26f3a887 487 case "gdisconnect":
dcd68c41 488 this.$delete(this.people, data.from);
ac8f441c
BA
489 if (data.code == "disconnect")
490 {
491 // Also remove all challenges sent by this player:
492 ArrayFun.remove(this.challenges, c => c.from.sid == data.from);
493 }
494 else
495 {
496 // And all live games where he plays and no other opponent is online
497 ArrayFun.remove(this.games, g =>
498 g.type == "live" && (g.players.every(p => p.sid == data.from
499 || !this.people[p.sid])), "all");
500 }
9d58ef95
BA
501 break;
502 }
503 },
a6bddfc6 504 // Challenge lifecycle:
9335d45b
BA
505 tryChallenge: function(sid) {
506 if (this.people[sid].id == 0)
b4d619d1 507 return; //anonymous players cannot be challenged
9335d45b
BA
508 // TODO: SID is available, so we could use it instead of searching from name
509 this.newchallenge.to = this.people[sid].name;
b4d619d1 510 doClick("modalNewgame");
fb54f098 511 },
29ced362
BA
512 challOrWatch: function(sid) {
513 if (!this.people[sid].gamer)
dcd68c41 514 {
29ced362
BA
515 // Available, in Hall
516 this.tryChallenge(sid);
517 }
518 else
519 {
520 // Playing, in Game
521 this.showGame(this.games.find(
522 g => g.players.some(pl => pl.sid == sid || pl.uid == this.people[sid].id)));
523 }
dcd68c41 524 },
9d58ef95 525 newChallenge: async function() {
25d18342 526 if (this.newchallenge.vid == "")
602d6bef 527 return alert(this.st.tr["Please select a variant"]);
a64d9122
BA
528 if (!!this.newchallenge.to && this.newchallenge.to == this.st.user.name)
529 return alert(this.st.tr["Self-challenge is forbidden"]);
bb7dd7db 530 const vname = this.getVname(this.newchallenge.vid);
1efe1d79
BA
531 const vModule = await import("@/variants/" + vname + ".js");
532 window.V = vModule.VariantRules;
dcd68c41
BA
533 if (!!this.newchallenge.timeControl.match(/^[0-9]+$/))
534 this.newchallenge.timeControl += "+0"; //assume minutes, no increment
9d58ef95
BA
535 const error = checkChallenge(this.newchallenge);
536 if (!!error)
537 return alert(error);
2ada153c 538 const ctype = this.classifyObject(this.newchallenge);
098cd7f1 539 if (ctype == "corr" && this.st.user.id <= 0)
602d6bef 540 return alert(this.st.tr["Please log in to play correspondance games"]);
bb7dd7db 541 // NOTE: "from" information is not required here
a7808884 542 let chall = Object.assign({}, this.newchallenge);
2ada153c 543 const finishAddChallenge = (cid,warnDisconnected) => {
1efe1d79 544 chall.id = cid || "c" + getRandString();
2ada153c 545 // Send challenge to peers (if connected)
9335d45b 546 const isSent = this.sendSomethingTo({name:chall.to}, "challenge",
5ea8d113
BA
547 {chall:chall}, !!warnDisconnected);
548 if (!isSent)
549 return;
fe4c7e67 550 // Remove old challenge if any (only one at a time of a given type):
5ea8d113 551 const cIdx = this.challenges.findIndex(c =>
fe4c7e67 552 (c.from.sid == this.st.user.sid || c.from.id == this.st.user.id) && c.type == ctype);
5ea8d113
BA
553 if (cIdx >= 0)
554 {
555 // Delete current challenge (will be replaced now)
9335d45b 556 this.sendSomethingTo({name:this.challenges[cIdx].to},
5ea8d113
BA
557 "deletechallenge", {cid:this.challenges[cIdx].id});
558 if (ctype == "corr")
559 {
560 ajax(
561 "/challenges",
562 "DELETE",
563 {id: this.challenges[cIdx].id}
564 );
565 }
566 this.challenges.splice(cIdx, 1);
567 }
568 // Add new challenge:
1efe1d79 569 chall.added = Date.now();
a9b131f1 570 // NOTE: vname and type are redundant (can be deduced from timeControl + vid)
bb7dd7db
BA
571 chall.type = ctype;
572 chall.vname = vname;
dcd68c41
BA
573 chall.from = { //decompose to avoid revealing email
574 sid: this.st.user.sid,
575 id: this.st.user.id,
576 name: this.st.user.name,
577 };
1efe1d79 578 this.challenges.push(chall);
f41ce580
BA
579 if (ctype == "live")
580 localStorage.setItem("challenge", JSON.stringify(chall));
25d18342
BA
581 // Also remember timeControl + vid for quicker further challenges:
582 localStorage.setItem("timeControl", chall.timeControl);
583 localStorage.setItem("vid", chall.vid);
b4d619d1
BA
584 document.getElementById("modalNewgame").checked = false;
585 };
1efe1d79
BA
586 if (ctype == "live")
587 {
588 // Live challenges have a random ID
2ada153c 589 finishAddChallenge(null, "warnDisconnected");
03608482 590 }
b4d619d1 591 else
03608482 592 {
b4d619d1 593 // Correspondance game: send challenge to server
03608482 594 ajax(
1efe1d79 595 "/challenges",
03608482 596 "POST",
bebcc8d4 597 { chall: chall },
1efe1d79 598 response => { finishAddChallenge(response.cid); }
03608482 599 );
9d58ef95 600 }
fb54f098 601 },
a6bddfc6 602 clickChallenge: function(c) {
485fccd5
BA
603 const myChallenge = (c.from.sid == this.st.user.sid //live
604 || (this.st.user.id > 0 && c.from.id == this.st.user.id)); //corr
605 if (!myChallenge)
a6bddfc6 606 {
3d55deea 607 if (c.type == "corr" && this.st.user.id <= 0)
602d6bef 608 return alert(this.st.tr["Please log in to accept corr challenges"]);
a6bddfc6 609 c.accepted = true;
485fccd5 610 if (!!c.to) //c.to == this.st.user.name (connected)
a6bddfc6
BA
611 {
612 // TODO: if special FEN, show diagram after loading variant
613 c.accepted = confirm("Accept challenge?");
614 }
485fccd5 615 if (c.accepted)
36093eba 616 {
dcd68c41
BA
617 c.seat = { //again, avoid c.seat = st.user to not reveal email
618 sid: this.st.user.sid,
619 id: this.st.user.id,
620 name: this.st.user.name,
621 };
485fccd5
BA
622 this.launchGame(c);
623 }
624 else
625 {
626 this.st.conn.send(JSON.stringify({
627 code: "refusechallenge",
628 cid: c.id, target: c.from.sid}));
36093eba 629 }
9335d45b 630 this.sendSomethingTo(!!c.to ? {sid:c.from.sid} : null, "deletechallenge", {cid:c.id});
a6bddfc6 631 }
2be5d614 632 else //my challenge
485fccd5 633 {
2be5d614
BA
634 if (c.type == "corr")
635 {
636 ajax(
637 "/challenges",
638 "DELETE",
639 {id: c.id}
640 );
641 }
f41ce580
BA
642 else //live
643 localStorage.removeItem("challenge");
9335d45b 644 this.sendSomethingTo({name:c.to}, "deletechallenge", {cid:c.id});
485fccd5 645 }
5ea8d113 646 // In all cases, the challenge is consumed:
3d55deea 647 ArrayFun.remove(this.challenges, ch => ch.id == c.id);
a6bddfc6 648 },
a64d9122 649 // NOTE: when launching game, the challenge is already being deleted
36093eba 650 launchGame: async function(c) {
a9b131f1 651 const vModule = await import("@/variants/" + c.vname + ".js");
a6bddfc6 652 window.V = vModule.VariantRules;
4b0384fa
BA
653 // These game informations will be sent to other players
654 const gameInfo =
a6bddfc6 655 {
11667c79 656 id: getRandString(),
a6bddfc6 657 fen: c.fen || V.GenRandInitFen(),
5d04793e 658 players: shuffle([c.from, c.seat]), //white then black
a6bddfc6 659 vid: c.vid,
f41ce580 660 vname: c.vname, //theoretically vid is enough, but much easier with vname
a9b131f1 661 timeControl: c.timeControl,
a6bddfc6 662 };
5ea8d113
BA
663 let oppsid = c.from.sid; //may not be defined if corr + offline opp
664 if (!oppsid)
8c564f46 665 {
5ea8d113 666 oppsid = Object.keys(this.people).find(sid =>
dcd68c41 667 this.people[sid].id == c.from.id);
8c564f46 668 }
411d23cd 669 const tryNotifyOpponent = () => {
5ea8d113 670 if (!!oppsid) //opponent is online
411d23cd
BA
671 {
672 this.st.conn.send(JSON.stringify({code:"newgame",
5ea8d113 673 gameInfo:gameInfo, target:oppsid, cid:c.id}));
411d23cd
BA
674 }
675 };
485fccd5 676 if (c.type == "live")
411d23cd 677 {
b1ea2149 678 // NOTE: in this case we are sure opponent is online
411d23cd 679 tryNotifyOpponent();
485fccd5 680 this.startNewGame(gameInfo);
411d23cd 681 }
485fccd5
BA
682 else //corr: game only on server
683 {
684 ajax(
685 "/games",
686 "POST",
2be5d614 687 {gameInfo: gameInfo, cid: c.id}, //cid useful to delete challenge
411d23cd 688 response => {
11667c79 689 gameInfo.id = response.gameId;
411d23cd
BA
690 tryNotifyOpponent();
691 this.$router.push("/game/" + response.gameId);
692 }
485fccd5
BA
693 );
694 }
c6788ecf 695 // Send game info to everyone except opponent (and me)
5ea8d113 696 Object.keys(this.people).forEach(sid => {
b1ea2149 697 if (![this.st.user.sid,oppsid].includes(sid))
5ea8d113
BA
698 {
699 this.st.conn.send(JSON.stringify({code:"game",
700 game: { //minimal game info:
701 id: gameInfo.id,
b1ea2149 702 players: gameInfo.players,
5ea8d113
BA
703 vid: gameInfo.vid,
704 timeControl: gameInfo.timeControl,
705 },
706 target: sid}));
707 }
708 });
fb54f098 709 },
a9b131f1 710 // NOTE: for live games only (corr games start on the server)
42c15a75 711 startNewGame: function(gameInfo) {
25996aed
BA
712 const game = Object.assign({}, gameInfo, {
713 // (other) Game infos: constant
6d01bb17 714 fenStart: gameInfo.fen,
92a523d1 715 added: Date.now(),
25996aed 716 // Game state (including FEN): will be updated
967a2686 717 moves: [],
a9b131f1 718 clocks: [-1, -1], //-1 = unstarted
66d03f23 719 initime: [0, 0], //initialized later
967a2686 720 score: "*",
a7808884 721 });
967a2686 722 GameStorage.add(game);
7b626bdd
BA
723 if (this.st.settings.sound >= 1)
724 new Audio("/sounds/newgame.mp3").play().catch(err => {});
11667c79 725 this.$router.push("/game/" + gameInfo.id);
1efe1d79 726 },
fb54f098 727 },
85e5b5c1 728};
ccd4a2b7 729</script>
85e5b5c1 730
41c80bb6 731<style lang="sass" scoped>
5bcc9b31
BA
732.active
733 color: #42a983
9ca1e26b
BA
734#newGame
735 display: block
72ccbd67 736 margin: 10px auto 5px auto
ed06d9e9
BA
737#people
738 width: 100%
739#players
740 width: 50%
741 position: relative
742 float: left
743#chat
744 width: 50%
745 float: left
746 position: relative
747@media screen and (max-width: 767px)
748 #players, #chats
749 width: 100%
72ccbd67
BA
750#chat > .card
751 max-width: 100%
752 margin: 0;
753 border: none;
41c80bb6 754#players > p
ed06d9e9 755 margin-left: 5px
dcd68c41
BA
756.anonymous
757 font-style: italic
758button.player-action
41c80bb6 759 margin-left: 32px
85e5b5c1 760</style>