3 input#modalInfo.modal(type="checkbox")
4 div(role="dialog" aria-labelledby="infoMessage")
5 .card.smallpad.small-modal.text-center
6 label.modal-close(for="modalInfo")
8 p(v-html="infoMessage")
9 input#modalNewgame.modal(type="checkbox")
10 div(role="dialog" aria-labelledby="titleFenedit")
11 .card.smallpad(@keyup.enter="newChallenge")
12 label#closeNewgame.modal-close(for="modalNewgame")
14 label(for="selectVariant") {{ st.tr["Variant"] }}
15 select#selectVariant(v-model="newchallenge.vid")
16 option(v-for="v in st.variants" :value="v.id") {{ v.name }}
18 label(for="timeControl") {{ st.tr["Time control"] }}
19 input#timeControl(type="text" v-model="newchallenge.timeControl"
20 placeholder="3m+2s, 1h+30s, 7d+1d ...")
21 fieldset(v-if="st.user.id > 0")
22 label(for="selectPlayers") {{ st.tr["Play with? (optional)"] }}
23 input#selectPlayers(type="text" v-model="newchallenge.to")
24 fieldset(v-if="st.user.id > 0")
25 label(for="inputFen") {{ st.tr["FEN (optional)"] }}
26 input#inputFen(type="text" v-model="newchallenge.fen")
27 button(@click="newChallenge") {{ st.tr["Send challenge"] }}
30 button#newGame(onClick="doClick('modalNewgame')") New game
32 .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
34 input#challengeSection(type="radio" checked aria-hidden="true" name="accordion")
35 label(for="challengeSection" aria-hidden="true") Challenges
38 button(@click="cdisplay='live'") Live Challenges
39 button(@click="cdisplay='corr'") Correspondance challenges
40 ChallengeList(v-show="cdisplay=='live'"
41 :challenges="filterChallenges('live')" @click-challenge="clickChallenge")
42 ChallengeList(v-show="cdisplay=='corr'"
43 :challenges="filterChallenges('corr')" @click-challenge="clickChallenge")
44 input#peopleSection(type="radio" aria-hidden="true" name="accordion")
45 label(for="peopleSection" aria-hidden="true") People
48 button(@click="pdisplay='players'") Players
49 button(@click="pdisplay='chat'") Chat
50 #players(v-show="pdisplay=='players'")
52 .player(v-for="p in uniquePlayers" @click="tryChallenge(p)"
53 :class="{anonymous: !!p.count}"
55 | {{ p.name + (!!p.count ? " ("+p.count+")" : "") }}
56 #chat(v-show="pdisplay=='chat'")
58 input#gameSection(type="radio" aria-hidden="true" name="accordion")
59 label(for="gameSection" aria-hidden="true") Games
62 button(@click="gdisplay='live'") Live games
63 button(@click="gdisplay='corr'") Correspondance games
64 GameList(v-show="gdisplay=='live'" :games="filterGames('live')"
65 @show-game="showGame")
66 GameList(v-show="gdisplay=='corr'" :games="filterGames('corr')"
67 @show-game="showGame")
71 import { store } from "@/store";
72 import { checkChallenge } from "@/data/challengeCheck";
73 import { ArrayFun } from "@/utils/array";
74 import { ajax } from "@/utils/ajax";
75 import { getRandString, shuffle } from "@/utils/alea";
76 import Chat from "@/components/Chat.vue";
77 import GameList from "@/components/GameList.vue";
78 import ChallengeList from "@/components/ChallengeList.vue";
79 import { GameStorage } from "@/utils/gameStorage";
90 cdisplay: "live", //or corr
91 pdisplay: "players", //or chat
95 people: [], //people in main hall
100 to: "", //name of challenged player (if any)
101 timeControl: "", //"2m+2s" ...etc
106 // st.variants changes only once, at loading from [] to [...]
107 "st.variants": function(variantArray) {
108 // Set potential challenges and games variant names:
109 this.challenges.forEach(c => {
111 c.vname = this.getVname(c.vid);
113 this.games.forEach(g => {
115 g.vname = this.getVname(g.vid);
120 uniquePlayers: function() {
121 // Show e.g. "@nonymous (5)", and do nothing on click on anonymous
122 let anonymous = {name:"@nonymous", count:0};
124 this.people.forEach(p => {
127 // We don't count registered users connections: either they are here or not.
128 if (!playerList[p.id])
129 playerList[p.id] = {name: p.name, count: 0};
134 if (anonymous.count > 0)
135 playerList[0] = anonymous;
136 return Object.values(playerList);
139 created: function() {
140 // Always add myself to players' list
141 const my = this.st.user;
142 this.people.push({sid:my.sid, id:my.id, name:my.name});
143 // Retrieve live challenge (not older than 30 minute) if any:
144 const chall = JSON.parse(localStorage.getItem("challenge") || "false");
147 if ((Date.now() - chall.added)/1000 <= 30*60)
148 this.challenges.push(chall);
150 localStorage.removeItem("challenge");
152 // Ask server for current corr games (all but mines)
156 {uid: this.st.user.id, excluded: true},
158 this.games = this.games.concat(response.games.map(g => {
159 const type = this.classifyObject(g);
160 const vname = this.getVname(g.vid);
161 return Object.assign({}, g, {type: type, vname: vname});
165 // Also ask for corr challenges (open + sent to me)
169 {uid: this.st.user.id},
171 // Gather all senders names, and then retrieve full identity:
172 // (TODO [perf]: some might be online...)
173 const uids = response.challenges.map(c => { return c.uid });
176 { ids: uids.join(",") },
179 response2.users.forEach(u => {names[u.id] = u.name});
180 this.challenges = this.challenges.concat(
181 response.challenges.map(c => {
182 // (just players names in fact)
183 const from = {name: names[c.uid], id: c.uid};
184 const type = this.classifyObject(c);
185 const vname = this.getVname(c.vid);
186 return Object.assign({}, c, {type: type, vname: vname, from: from});
193 // 0.1] Ask server for room composition:
194 const funcPollClients = () => {
195 this.st.conn.send(JSON.stringify({code:"pollclients"}));
197 if (!!this.st.conn && this.st.conn.readyState == 1) //1 == OPEN state
199 else //socket not ready yet (initial loading)
200 this.st.conn.onopen = funcPollClients;
201 this.st.conn.onmessage = this.socketMessageListener;
202 const socketCloseListener = () => {
203 store.socketCloseListener(); //reinitialize connexion (in store.js)
204 this.st.conn.addEventListener('message', this.socketMessageListener);
205 this.st.conn.addEventListener('close', socketCloseListener);
207 this.st.conn.onclose = socketCloseListener;
211 filterChallenges: function(type) {
212 return this.challenges.filter(c => c.type == type);
214 filterGames: function(type) {
215 return this.games.filter(g => g.type == type);
217 classifyObject: function(o) { //challenge or game
218 // Heuristic: should work for most cases... (TODO)
219 return (o.timeControl.indexOf('d') === -1 ? "live" : "corr");
221 showGame: function(g) {
222 // NOTE: we are an observer, since only games I don't play are shown here
223 // ==> Moves sent by connected remote player(s) if live game
224 let url = "/game/" + g.id;
225 if (g.type == "live")
226 url += "?rid=" + g.rid;
227 this.$router.push(url);
229 getVname: function(vid) {
230 const variant = this.st.variants.find(v => v.id == vid);
231 // this.st.variants might be uninitialized (variant == null)
232 return (!!variant ? variant.name : "");
234 getSid: function(pname) {
235 const pIdx = this.people.findIndex(pl => pl.name == pname);
236 return (pIdx === -1 ? null : this.people[pIdx].sid);
238 getPname: function(sid) {
239 const pIdx = this.people.findIndex(pl => pl.sid == sid);
240 return (pIdx === -1 ? null : this.people[pIdx].name);
242 sendSomethingTo: function(to, code, obj, warnDisconnected) {
243 const doSend = (code, obj, sid) => {
244 this.st.conn.send(JSON.stringify(Object.assign(
253 // Challenge with targeted players
254 const targetSid = this.getSid(to);
257 if (!!warnDisconnected)
258 alert("Warning: " + pname + " is not connected");
261 doSend(code, obj, targetSid);
265 // Open challenge: send to all connected players (except us)
266 this.people.forEach(p => {
267 if (p.sid != this.st.user.sid) //only sid is always set
268 doSend(code, obj, p.sid);
273 socketMessageListener: function(msg) {
274 const data = JSON.parse(msg.data);
278 alert("Warning: duplicate 'offline' connection");
280 // 0.2] Receive clients list (just socket IDs)
283 data.sockIds.forEach(sid => {
284 this.people.push({sid:sid, id:0, name:""});
285 // Ask identity, challenges and game(s)
286 this.st.conn.send(JSON.stringify({code:"askidentity", target:sid}));
287 this.st.conn.send(JSON.stringify({code:"askchallenge", target:sid}));
289 // Also ask current games to all playing peers (TODO: some design issue)
290 this.st.conn.send(JSON.stringify({code:"askgames"}));
295 // Request for identification: reply if I'm not anonymous
296 if (this.st.user.id > 0)
298 this.st.conn.send(JSON.stringify(
299 // people[0] instead of st.user to avoid sending email
300 {code:"identity", user:this.people[0], target:data.from}));
306 // Send my current live challenge (if any)
307 const cIdx = this.challenges
308 .findIndex(c => c.from.sid == this.st.user.sid && c.type == "live");
311 const c = this.challenges[cIdx];
314 // Minimal challenge informations: (from not required)
319 timeControl: c.timeControl
321 this.st.conn.send(JSON.stringify({code:"challenge",
322 chall:myChallenge, target:data.from}));
328 const pIdx = this.people.findIndex(p => p.sid == data.user.sid);
329 this.people[pIdx].id = data.user.id;
330 this.people[pIdx].name = data.user.name;
335 // Receive challenge from some player (+sid)
336 let newChall = data.chall;
337 newChall.type = this.classifyObject(data.chall);
338 const pIdx = this.people.findIndex(p => p.sid == data.from);
339 newChall.from = this.people[pIdx]; //may be anonymous
340 newChall.added = Date.now(); //TODO: this is reception timestamp, not creation
341 newChall.vname = this.getVname(newChall.vid);
342 this.challenges.push(newChall);
347 // Receive game from some player (+sid)
348 // NOTE: it may be correspondance (if newgame while we are connected)
349 if (!this.games.some(g => g.id == data.game.id)) //ignore duplicates
351 let newGame = data.game;
352 newGame.type = this.classifyObject(data.game);
353 newGame.vname = this.getVname(data.game.vid);
354 newGame.rid = data.from;
356 this.games.push(newGame);
362 // TODO: next line required ?!
363 //ArrayFun.remove(this.challenges, c => c.id == data.cid);
364 // New game just started: data contain all information
365 if (this.classifyObject(data.gameInfo) == "live")
366 this.startNewGame(data.gameInfo);
369 this.infoMessage = "New game started: " +
370 "<a href='#/game/" + data.gameInfo.id + "'>" +
371 "#/game/" + data.gameInfo.id + "</a>";
372 let modalBox = document.getElementById("modalInfo");
373 modalBox.checked = true;
374 setTimeout(() => { modalBox.checked = false; }, 3000);
378 case "refusechallenge":
380 alert(this.getPname(data.from) + " declined your challenge");
381 ArrayFun.remove(this.challenges, c => c.id == data.cid);
384 case "deletechallenge":
386 // NOTE: the challenge may be already removed
387 ArrayFun.remove(this.challenges, c => c.id == data.cid);
388 localStorage.removeItem("challenge"); //in case of
393 this.people.push({name:"", id:0, sid:data.from});
394 this.st.conn.send(JSON.stringify({code:"askidentity", target:data.from}));
395 this.st.conn.send(JSON.stringify({code:"askchallenge", target:data.from}));
396 this.st.conn.send(JSON.stringify({code:"askgame", target:data.from}));
401 ArrayFun.remove(this.people, p => p.sid == data.from);
402 // Also remove all challenges sent by this player:
403 ArrayFun.remove(this.challenges, c => c.from.sid == data.from);
404 // And all live games where he plays and no other opponent is online
405 ArrayFun.remove(this.games, g =>
406 g.type == "live" && (g.players.every(p => p.sid == data.from
407 || !this.people.some(pl => pl.sid == p.sid))), "all");
412 // Challenge lifecycle:
413 tryChallenge: function(player) {
415 return; //anonymous players cannot be challenged
416 this.newchallenge.to = player.name;
417 doClick("modalNewgame");
419 newChallenge: async function() {
420 const vname = this.getVname(this.newchallenge.vid);
421 const vModule = await import("@/variants/" + vname + ".js");
422 window.V = vModule.VariantRules;
423 const error = checkChallenge(this.newchallenge);
426 const ctype = this.classifyObject(this.newchallenge);
427 if (ctype == "corr" && this.st.user.id <= 0)
428 return alert("Please log in to play correspondance games");
429 // NOTE: "from" information is not required here
430 let chall = Object.assign({}, this.newchallenge);
431 const finishAddChallenge = (cid,warnDisconnected) => {
432 chall.id = cid || "c" + getRandString();
433 // Send challenge to peers (if connected)
434 this.sendSomethingTo(chall.to, "challenge", {chall:chall}, !!warnDisconnected);
435 chall.added = Date.now();
436 // NOTE: vname and type are redundant (can be deduced from timeControl + vid)
439 chall.from = this.people[0]; //avoid sending email
440 this.challenges.push(chall);
442 localStorage.setItem("challenge", JSON.stringify(chall));
443 document.getElementById("modalNewgame").checked = false;
445 const cIdx = this.challenges.findIndex(
446 c => c.from.sid == this.st.user.sid && c.type == ctype);
449 // Delete current challenge (will be replaced now)
450 this.sendSomethingTo(this.challenges[cIdx].to,
451 "deletechallenge", {cid:this.challenges[cIdx].id});
457 {id: this.challenges[cIdx].id}
460 this.challenges.splice(cIdx, 1);
464 // Live challenges have a random ID
465 finishAddChallenge(null, "warnDisconnected");
469 // Correspondance game: send challenge to server
474 response => { finishAddChallenge(response.cid); }
478 clickChallenge: function(c) {
479 const myChallenge = (c.from.sid == this.st.user.sid //live
480 || (this.st.user.id > 0 && c.from.id == this.st.user.id)); //corr
483 if (c.type == "corr" && this.st.user.id <= 0)
484 return alert("Please log in to accept corr challenges");
486 if (!!c.to) //c.to == this.st.user.name (connected)
488 // TODO: if special FEN, show diagram after loading variant
489 c.accepted = confirm("Accept challenge?");
493 c.seat = this.people[0]; //== this.st.user, avoid revealing email
498 this.st.conn.send(JSON.stringify({
499 code: "refusechallenge",
500 cid: c.id, target: c.from.sid}));
505 if (c.type == "corr")
514 localStorage.removeItem("challenge");
516 // In (almost) all cases, the challenge is consumed:
517 ArrayFun.remove(this.challenges, ch => ch.id == c.id);
518 // NOTE: deletechallenge event might be redundant (but it's easier this way)
519 this.sendSomethingTo((!!c.to ? c.from : null), "deletechallenge", {cid:c.id});
521 // NOTE: when launching game, the challenge is already deleted
522 launchGame: async function(c) {
523 const vModule = await import("@/variants/" + c.vname + ".js");
524 window.V = vModule.VariantRules;
525 // These game informations will be sent to other players
529 fen: c.fen || V.GenRandInitFen(),
530 players: shuffle([c.from, c.seat]), //white then black
532 vname: c.vname, //theoretically vid is enough, but much easier with vname
533 timeControl: c.timeControl,
535 let target = c.from.sid; //may not be defined if corr + offline opp
538 const opponent = this.people.find(p => p.id == c.from.id);
540 target = opponent.sid
542 const tryNotifyOpponent = () => {
543 if (!!target) //opponent is online
545 this.st.conn.send(JSON.stringify({code:"newgame",
546 gameInfo:gameInfo, target:target, cid:c.id}));
549 if (c.type == "live")
552 this.startNewGame(gameInfo);
554 else //corr: game only on server
559 {gameInfo: gameInfo, cid: c.id}, //cid useful to delete challenge
561 gameInfo.id = response.gameId;
563 this.$router.push("/game/" + response.gameId);
567 // Send game info to everyone except opponent (and me)
568 this.st.conn.send(JSON.stringify({code:"game",
569 game: { //minimal game info:
571 players: gameInfo.players.map(p => p.name),
573 timeControl: gameInfo.timeControl,
577 // NOTE: for live games only (corr games start on the server)
578 startNewGame: function(gameInfo) {
579 const game = Object.assign({}, gameInfo, {
580 // (other) Game infos: constant
581 fenStart: gameInfo.fen,
583 // Game state (including FEN): will be updated
585 clocks: [-1, -1], //-1 = unstarted
586 initime: [0, 0], //initialized later
589 GameStorage.add(game);
590 if (this.st.settings.sound >= 1)
591 new Audio("/sounds/newgame.mp3").play().catch(err => {});
592 this.$router.push("/game/" + gameInfo.id);
601 margin: 10px auto 5px auto