Commit | Line | Data |
---|---|---|
ccd4a2b7 | 1 | <template lang="pug"> |
9d58ef95 | 2 | main |
dce792f6 | 3 | input#modalInfo.modal(type="checkbox") |
910d631b BA |
4 | div#infoDiv( |
5 | role="dialog" | |
6 | data-checkbox="modalInfo" | |
7 | ) | |
a154d45e | 8 | .card.text-center |
dce792f6 | 9 | label.modal-close(for="modalInfo") |
a154d45e | 10 | p(v-html="infoMessage") |
725da57f BA |
11 | input#modalAccept.modal(type="checkbox") |
12 | div#acceptDiv(role="dialog") | |
5b4de147 BA |
13 | .card |
14 | p.text-center | |
725da57f BA |
15 | span.variantName {{ curChallToAccept.vname }} |
16 | span {{ curChallToAccept.cadence }} | |
17 | span {{ st.tr["with"] + " " + curChallToAccept.from.name }} | |
afde7666 BA |
18 | .diagram( |
19 | v-if="!!curChallToAccept.fen" | |
20 | v-html="tchallDiag" | |
21 | ) | |
22 | .button-group#buttonsTchall(:style="tchallButtonsMargin()") | |
5b4de147 BA |
23 | button.acceptBtn(@click="decisionChallenge(true)") |
24 | span {{ st.tr["Accept challenge?"] }} | |
25 | button.refuseBtn(@click="decisionChallenge(false)") | |
26 | span {{ st.tr["Refuse"] }} | |
09d37571 BA |
27 | input#modalNewgame.modal( |
28 | type="checkbox" | |
29 | @change="cadenceFocusIfOpened($event)" | |
30 | ) | |
910d631b BA |
31 | div#newgameDiv( |
32 | role="dialog" | |
33 | data-checkbox="modalNewgame" | |
34 | ) | |
89021f18 | 35 | .card |
5b020e73 | 36 | label#closeNewgame.modal-close(for="modalNewgame") |
28b32b4f | 37 | div(@keyup.enter="issueNewChallenge()") |
89021f18 BA |
38 | fieldset |
39 | label(for="selectVariant") {{ st.tr["Variant"] }} * | |
725da57f BA |
40 | select#selectVariant( |
41 | @change="loadNewchallVariant(trySetNewchallDiag)" | |
42 | v-model="newchallenge.vid" | |
43 | ) | |
910d631b BA |
44 | option( |
45 | v-for="v in st.variants" | |
46 | :value="v.id" | |
47 | :selected="newchallenge.vid==v.id" | |
48 | ) | |
89021f18 BA |
49 | | {{ v.name }} |
50 | fieldset | |
51 | label(for="cadence") {{ st.tr["Cadence"] }} * | |
52 | div#predefinedCadences | |
8477e53d | 53 | button(type="button") 15+5 |
8aa418f6 | 54 | button(type="button") 45+30 |
92240cf0 BA |
55 | button(type="button") 3d |
56 | button(type="button") 7d | |
910d631b BA |
57 | input#cadence( |
58 | type="text" | |
59 | v-model="newchallenge.cadence" | |
92240cf0 | 60 | placeholder="5+0, 1h+30s, 5d ..." |
910d631b | 61 | ) |
7ba4a5bc | 62 | fieldset |
b5aa30b5 | 63 | label(for="selectRandomLevel") {{ st.tr["Randomness"] }} * |
7ba4a5bc BA |
64 | select#selectRandomLevel(v-model="newchallenge.randomness") |
65 | option(value="0") {{ st.tr["Deterministic"] }} | |
66 | option(value="1") {{ st.tr["Symmetric random"] }} | |
67 | option(value="2") {{ st.tr["Asymmetric random"] }} | |
28b32b4f | 68 | fieldset |
b83a675a | 69 | label(for="memorizeChall") {{ st.tr["Memorize"] }} |
28b32b4f BA |
70 | input#memorizeChall( |
71 | type="checkbox" | |
72 | v-model="newchallenge.memorize" | |
73 | ) | |
89021f18 | 74 | fieldset(v-if="st.user.id > 0") |
b83a675a | 75 | label(for="selectPlayers") {{ st.tr["Play with"] }} |
6f2f9437 BA |
76 | select#selectPlayersInList( |
77 | v-model="newchallenge.to" | |
78 | @change="changeChallTarget()" | |
79 | ) | |
b83a675a BA |
80 | option(value="") |
81 | option( | |
82 | v-for="p in Object.values(people)" | |
305ede7e | 83 | v-if="!!p.name" |
b83a675a BA |
84 | :value="p.name" |
85 | ) | |
86 | | {{ p.name }} | |
910d631b BA |
87 | input#selectPlayers( |
88 | type="text" | |
89 | v-model="newchallenge.to" | |
90 | ) | |
89021f18 | 91 | fieldset(v-if="st.user.id > 0 && newchallenge.to.length > 0") |
910d631b | 92 | input#inputFen( |
725da57f BA |
93 | placeholder="FEN" |
94 | @input="trySetNewchallDiag()" | |
910d631b BA |
95 | type="text" |
96 | v-model="newchallenge.fen" | |
97 | ) | |
725da57f | 98 | .diagram(v-html="newchallenge.diag") |
28b32b4f | 99 | button(@click="issueNewChallenge()") {{ st.tr["Send challenge"] }} |
910d631b BA |
100 | input#modalPeople.modal( |
101 | type="checkbox" | |
efdfb4c7 | 102 | @click="resetSocialColor()" |
910d631b BA |
103 | ) |
104 | div#peopleWrap( | |
105 | role="dialog" | |
106 | data-checkbox="modalPeople" | |
107 | ) | |
bd76b456 BA |
108 | .card |
109 | label.modal-close(for="modalPeople") | |
110 | #people | |
111 | #players | |
910d631b BA |
112 | p( |
113 | v-for="sid in Object.keys(people)" | |
f9c36b2d | 114 | v-if="!!people[sid].name" |
910d631b | 115 | ) |
bd76b456 | 116 | span {{ people[sid].name }} |
910d631b | 117 | button.player-action( |
6d6f45bc BA |
118 | v-if="isGamer(sid)" |
119 | @click="watchGame(sid)" | |
910d631b | 120 | ) |
6d6f45bc BA |
121 | | {{ st.tr["Observe"] }} |
122 | button.player-action( | |
a041d5d8 | 123 | v-else-if="isFocusedOnHall(sid)" |
6d6f45bc BA |
124 | @click="challenge(sid)" |
125 | ) | |
126 | | {{ st.tr["Challenge"] }} | |
f1c9d707 | 127 | p.anonymous @nonymous ({{ anonymousCount() }}) |
bd76b456 | 128 | #chat |
910d631b | 129 | Chat( |
95a66034 | 130 | ref="chatcomp" |
910d631b BA |
131 | @mychat="processChat" |
132 | :pastChats="[]" | |
133 | ) | |
bd76b456 | 134 | .clearer |
9d58ef95 | 135 | .row |
bd76b456 BA |
136 | .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 |
137 | .button-group | |
95a66034 | 138 | button#peopleBtn(@click="openModalPeople()") |
8a0f881d | 139 | | {{ st.tr["Who's there?"] }} |
afde7666 | 140 | button(@click="showNewchallengeForm()") |
910d631b | 141 | | {{ st.tr["New game"] }} |
28b32b4f BA |
142 | .row(v-if="presetChalls.length > 0") |
143 | .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 | |
144 | h4.text-center {{ st.tr["Preset challenges"] }} | |
145 | table | |
146 | thead | |
147 | tr | |
148 | th {{ st.tr["Variant"] }} | |
149 | th {{ st.tr["Cadence"] }} | |
150 | th {{ st.tr["Random?"] }} | |
151 | th | |
152 | tbody | |
153 | tr( | |
154 | v-for="pc in presetChalls" | |
155 | @click="newChallFromPreset(pc)" | |
156 | ) | |
157 | td {{ pc.vname }} | |
158 | td {{ pc.cadence }} | |
159 | td(:class="getRandomnessClass(pc)") | |
160 | td.remove-preset(@click="removePresetChall($event, pc)") | |
161 | img(src="/images/icons/delete.svg") | |
9d58ef95 | 162 | .row |
9ca1e26b | 163 | .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 |
2f258c37 | 164 | div#div2 |
ed06d9e9 | 165 | .button-group |
2f258c37 | 166 | button.tabbtn#btnClive(@click="setDisplay('c','live',$event)") |
602d6bef | 167 | | {{ st.tr["Live challenges"] }} |
2f258c37 | 168 | button.tabbtn#btnCcorr(@click="setDisplay('c','corr',$event)") |
602d6bef | 169 | | {{ st.tr["Correspondance challenges"] }} |
910d631b BA |
170 | ChallengeList( |
171 | v-show="cdisplay=='live'" | |
172 | :challenges="filterChallenges('live')" | |
173 | @click-challenge="clickChallenge" | |
174 | ) | |
175 | ChallengeList( | |
176 | v-show="cdisplay=='corr'" | |
177 | :challenges="filterChallenges('corr')" | |
178 | @click-challenge="clickChallenge" | |
179 | ) | |
2f258c37 | 180 | div#div3 |
ed06d9e9 | 181 | .button-group |
2f258c37 | 182 | button.tabbtn#btnGlive(@click="setDisplay('g','live',$event)") |
602d6bef | 183 | | {{ st.tr["Live games"] }} |
2f258c37 | 184 | button.tabbtn#btnGcorr(@click="setDisplay('g','corr',$event)") |
602d6bef | 185 | | {{ st.tr["Correspondance games"] }} |
910d631b BA |
186 | GameList( |
187 | v-show="gdisplay=='live'" | |
188 | :games="filterGames('live')" | |
189 | :showBoth="true" | |
190 | @show-game="showGame" | |
191 | ) | |
0234201f BA |
192 | div(v-show="gdisplay=='corr'") |
193 | GameList( | |
194 | :games="filterGames('corr')" | |
195 | :showBoth="true" | |
196 | @show-game="showGame" | |
197 | ) | |
198 | button#loadMoreBtn( | |
199 | v-if="hasMore" | |
95a66034 | 200 | @click="loadMoreCorr()" |
0234201f BA |
201 | ) |
202 | | {{ st.tr["Load more"] }} | |
625022fd BA |
203 | </template> |
204 | ||
205 | <script> | |
5b020e73 | 206 | import { store } from "@/store"; |
9d58ef95 | 207 | import { checkChallenge } from "@/data/challengeCheck"; |
f5768809 | 208 | import { notify } from "@/utils/notifications"; |
9d58ef95 | 209 | import { ArrayFun } from "@/utils/array"; |
03608482 | 210 | import { ajax } from "@/utils/ajax"; |
8418f0d7 | 211 | import params from "@/parameters"; |
7ebc0408 | 212 | import { getRandString, shuffle, randInt } from "@/utils/alea"; |
725da57f | 213 | import { getDiagram } from "@/utils/printDiagram"; |
603b8a8b | 214 | import Chat from "@/components/Chat.vue"; |
5b020e73 BA |
215 | import GameList from "@/components/GameList.vue"; |
216 | import ChallengeList from "@/components/ChallengeList.vue"; | |
967a2686 | 217 | import { GameStorage } from "@/utils/gameStorage"; |
602d6bef | 218 | import { processModalClick } from "@/utils/modalClick"; |
625022fd | 219 | export default { |
cf2343ce | 220 | name: "my-hall", |
5b020e73 | 221 | components: { |
603b8a8b | 222 | Chat, |
5b020e73 | 223 | GameList, |
6808d7a1 | 224 | ChallengeList |
5b020e73 | 225 | }, |
6808d7a1 | 226 | data: function() { |
fb54f098 | 227 | return { |
5b020e73 | 228 | st: store.state, |
6855163c | 229 | cdisplay: "live", //or corr |
fb54f098 | 230 | gdisplay: "live", |
0234201f BA |
231 | // timestamp of last showed (oldest) corr game: |
232 | cursor: Number.MAX_SAFE_INTEGER, | |
233 | // hasMore == TRUE: a priori there could be more games to load | |
234 | hasMore: true, | |
6855163c | 235 | games: [], |
b4d619d1 | 236 | challenges: [], |
71468011 | 237 | people: {}, |
3d55deea | 238 | infoMessage: "", |
9d58ef95 | 239 | newchallenge: { |
fb54f098 | 240 | fen: "", |
725da57f | 241 | vid: parseInt(localStorage.getItem("vid")) || 0, |
6fba6e0c | 242 | to: "", //name of challenged player (if any) |
725da57f | 243 | cadence: localStorage.getItem("cadence") || "", |
f2adb3d0 | 244 | randomness: parseInt(localStorage.getItem("challRandomness")) || 2, |
725da57f BA |
245 | // VariantRules object, stored to not interfere with |
246 | // diagrams of targetted challenges: | |
247 | V: null, | |
248 | vname: "", | |
28b32b4f BA |
249 | diag: "", //visualizing FEN |
250 | memorize: false //put settings in localStorage | |
fb54f098 | 251 | }, |
f5768809 | 252 | focus: true, |
725da57f BA |
253 | tchallDiag: "", |
254 | curChallToAccept: {from: {}}, | |
28b32b4f | 255 | presetChalls: JSON.parse(localStorage.getItem("presetChalls") || "[]"), |
8418f0d7 | 256 | conn: null, |
51d87b52 | 257 | connexionString: "", |
882ec6fe | 258 | socketCloseListener: 0, |
51d87b52 BA |
259 | // Related to (killing of) self multi-connects: |
260 | newConnect: {}, | |
6808d7a1 | 261 | killed: {} |
fb54f098 BA |
262 | }; |
263 | }, | |
fd7aea36 BA |
264 | watch: { |
265 | // st.variants changes only once, at loading from [] to [...] | |
6808d7a1 | 266 | "st.variants": function() { |
fd7aea36 | 267 | // Set potential challenges and games variant names: |
71468011 | 268 | this.challenges.concat(this.games).forEach(o => { |
f9c36b2d | 269 | if (!o.vname) o.vname = this.getVname(o.vid); |
fd7aea36 | 270 | }); |
725da57f BA |
271 | if (!this.newchallenge.V && this.newchallenge.vid > 0) |
272 | this.loadNewchallVariant(); | |
1112f1fd BA |
273 | }, |
274 | $route: function(to, from) { | |
275 | if (to.path != "/") this.cleanBeforeDestroy(); | |
6808d7a1 | 276 | } |
fd7aea36 | 277 | }, |
9d58ef95 | 278 | created: function() { |
1112f1fd | 279 | document.addEventListener('visibilitychange', this.visibilityChange); |
f5768809 BA |
280 | window.addEventListener('focus', this.onFocus); |
281 | window.addEventListener('blur', this.onBlur); | |
1112f1fd | 282 | window.addEventListener("beforeunload", this.cleanBeforeDestroy); |
725da57f BA |
283 | if (this.st.variants.length > 0 && this.newchallenge.vid > 0) |
284 | this.loadNewchallVariant(); | |
66d03f23 | 285 | const my = this.st.user; |
7ebc0408 | 286 | const tmpId = getRandString(); |
a041d5d8 BA |
287 | this.$set( |
288 | this.people, | |
289 | my.sid, | |
290 | { | |
291 | id: my.id, | |
292 | name: my.name, | |
7ebc0408 BA |
293 | tmpIds: { |
294 | tmpId: { page: "/", focus: true } | |
295 | } | |
a041d5d8 BA |
296 | } |
297 | ); | |
e5a5d331 BA |
298 | const connectAndPoll = () => { |
299 | this.send("connect"); | |
300 | this.send("pollclientsandgamers"); | |
301 | }; | |
302 | // Initialize connection | |
303 | this.connexionString = | |
304 | params.socketUrl + | |
7ebc0408 BA |
305 | "/?sid=" + this.st.user.sid + |
306 | "&id=" + this.st.user.id + | |
307 | "&tmpId=" + tmpId + | |
e5a5d331 | 308 | "&page=" + |
7ebc0408 | 309 | // Hall: path is "/" (TODO: could be hard-coded as well) |
e5a5d331 BA |
310 | encodeURIComponent(this.$route.path); |
311 | this.conn = new WebSocket(this.connexionString); | |
312 | this.conn.onopen = connectAndPoll; | |
3f22c2c3 | 313 | this.conn.addEventListener("message", this.socketMessageListener); |
882ec6fe BA |
314 | this.socketCloseListener = setInterval( |
315 | () => { | |
316 | if (this.conn.readyState == 3) { | |
317 | this.conn.removeEventListener("message", this.socketMessageListener); | |
318 | this.conn = new WebSocket(this.connexionString); | |
319 | this.conn.addEventListener("message", this.socketMessageListener); | |
320 | } | |
321 | }, | |
322 | 1000 | |
323 | ); | |
e5a5d331 BA |
324 | }, |
325 | mounted: function() { | |
e5a5d331 BA |
326 | ["peopleWrap", "infoDiv", "newgameDiv"].forEach(eltName => { |
327 | document.getElementById(eltName) | |
328 | .addEventListener("click", processModalClick); | |
329 | }); | |
330 | document.querySelectorAll("#predefinedCadences > button").forEach(b => { | |
331 | b.addEventListener("click", () => { | |
332 | this.newchallenge.cadence = b.innerHTML; | |
333 | }); | |
334 | }); | |
335 | const dispCorr = this.$route.query["disp"]; | |
336 | const showCtype = | |
337 | dispCorr || localStorage.getItem("type-challenges") || "live"; | |
338 | const showGtype = | |
339 | dispCorr || localStorage.getItem("type-games") || "live"; | |
340 | this.setDisplay('c', showCtype); | |
341 | this.setDisplay('g', showGtype); | |
3d55deea | 342 | // Ask server for current corr games (all but mines) |
95a66034 | 343 | this.loadMoreCorr(); |
fe4c7e67 | 344 | // Also ask for corr challenges (open + sent by/to me) |
95a66034 | 345 | // List them all, because they are not supposed to be that many (TODO?) |
e57c4de4 BA |
346 | ajax( |
347 | "/challenges", | |
348 | "GET", | |
349 | { | |
350 | data: { uid: this.st.user.id }, | |
351 | success: (response) => { | |
e5a5d331 BA |
352 | if ( |
353 | response.challenges.length > 0 && | |
354 | this.challenges.length == 0 && | |
355 | this.cdisplay == "live" | |
356 | ) { | |
357 | document | |
358 | .getElementById("btnCcorr") | |
359 | .classList.add("somethingnew"); | |
360 | } | |
e57c4de4 BA |
361 | // Gather all senders names, and then retrieve full identity: |
362 | // (TODO [perf]: some might be online...) | |
363 | let names = {}; | |
364 | response.challenges.forEach(c => { | |
365 | if (c.uid != this.st.user.id) names[c.uid] = ""; | |
366 | else if (!!c.target && c.target != this.st.user.id) | |
367 | names[c.target] = ""; | |
368 | }); | |
369 | const addChallenges = () => { | |
370 | names[this.st.user.id] = this.st.user.name; //in case of | |
371 | this.challenges = this.challenges.concat( | |
372 | response.challenges.map(c => { | |
373 | const from = { name: names[c.uid], id: c.uid }; //or just name | |
374 | const type = this.classifyObject(c); | |
375 | const vname = this.getVname(c.vid); | |
376 | return Object.assign( | |
377 | {}, | |
378 | { | |
379 | type: type, | |
380 | vname: vname, | |
381 | from: from, | |
382 | to: c.target ? names[c.target] : "" | |
383 | }, | |
384 | c | |
385 | ); | |
386 | }) | |
387 | ); | |
388 | }; | |
389 | if (Object.keys(names).length > 0) { | |
390 | ajax( | |
391 | "/users", | |
392 | "GET", | |
6808d7a1 | 393 | { |
e57c4de4 BA |
394 | data: { ids: Object.keys(names).join(",") }, |
395 | success: (response2) => { | |
396 | response2.users.forEach(u => { | |
397 | names[u.id] = u.name; | |
398 | }); | |
399 | addChallenges(); | |
400 | } | |
401 | } | |
6808d7a1 | 402 | ); |
e57c4de4 BA |
403 | } else addChallenges(); |
404 | } | |
405 | } | |
406 | ); | |
25d18342 | 407 | }, |
8418f0d7 | 408 | beforeDestroy: function() { |
1112f1fd | 409 | this.cleanBeforeDestroy(); |
8418f0d7 | 410 | }, |
fb54f098 | 411 | methods: { |
1112f1fd | 412 | cleanBeforeDestroy: function() { |
882ec6fe | 413 | clearInterval(this.socketCloseListener); |
1112f1fd | 414 | document.removeEventListener('visibilitychange', this.visibilityChange); |
f5768809 BA |
415 | window.removeEventListener('focus', this.onFocus); |
416 | window.removeEventListener('blur', this.onBlur); | |
1112f1fd | 417 | window.removeEventListener("beforeunload", this.cleanBeforeDestroy); |
68e3aa8c | 418 | this.conn.removeEventListener("message", this.socketMessageListener); |
1112f1fd | 419 | this.send("disconnect"); |
68e3aa8c | 420 | this.conn = null; |
1112f1fd | 421 | }, |
28b32b4f BA |
422 | getRandomnessClass: function(pc) { |
423 | return { | |
424 | ["random-" + pc.randomness]: true | |
425 | }; | |
426 | }, | |
95a66034 BA |
427 | openModalPeople: function() { |
428 | window.doClick("modalPeople"); | |
429 | document.getElementById("inputChat").focus(); | |
430 | }, | |
f1c9d707 BA |
431 | anonymousCount: function() { |
432 | let count = 0; | |
433 | Object.values(this.people).forEach(p => { | |
434 | // Do not cound people who did not send their identity yet: | |
435 | count += (!p.name && p.id === 0) ? 1 : 0; | |
436 | }); | |
437 | return count; | |
438 | }, | |
a041d5d8 BA |
439 | visibilityChange: function() { |
440 | // TODO: Use document.hidden? https://webplatform.news/issues/2019-03-27 | |
f5768809 BA |
441 | this.focus = (document.visibilityState == "visible"); |
442 | this.send(this.focus ? "getfocus" : "losefocus"); | |
443 | }, | |
444 | onFocus: function() { | |
445 | this.focus = true; | |
446 | this.send("getfocus"); | |
447 | }, | |
448 | onBlur: function() { | |
449 | this.focus = false; | |
450 | this.send("losefocus"); | |
a041d5d8 | 451 | }, |
afde7666 BA |
452 | partialResetNewchallenge: function() { |
453 | // Reset potential target and custom FEN: | |
454 | this.newchallenge.to = ""; | |
455 | this.newchallenge.fen = ""; | |
456 | this.newchallenge.diag = ""; | |
28b32b4f | 457 | this.newchallenge.memorize = false; |
afde7666 BA |
458 | }, |
459 | showNewchallengeForm: function() { | |
460 | this.partialResetNewchallenge(); | |
461 | window.doClick("modalNewgame"); | |
462 | }, | |
28b32b4f BA |
463 | addPresetChall: function(chall) { |
464 | // Add only if not already existing: | |
465 | if (this.presetChalls.some(c => | |
466 | c.vid == chall.vid && | |
467 | c.cadence == chall.cadence && | |
468 | c.randomness == chall.randomness | |
469 | )) { | |
470 | return; | |
471 | } | |
472 | const L = this.presetChalls.length; | |
473 | this.presetChalls.push({ | |
474 | index: L, | |
475 | vid: chall.vid, | |
476 | vname: chall.vname, //redundant, but easier | |
477 | cadence: chall.cadence, | |
478 | randomness: chall.randomness | |
479 | }); | |
480 | localStorage.setItem("presetChalls", JSON.stringify(this.presetChalls)); | |
481 | }, | |
482 | removePresetChall: function(e, pchall) { | |
483 | e.stopPropagation(); | |
2c5d7b20 BA |
484 | const pchallIdx = |
485 | this.presetChalls.findIndex(pc => pc.index == pchall.index); | |
28b32b4f BA |
486 | this.presetChalls.splice(pchallIdx, 1); |
487 | localStorage.setItem("presetChalls", JSON.stringify(this.presetChalls)); | |
488 | }, | |
afde7666 BA |
489 | tchallButtonsMargin: function() { |
490 | if (!!this.curChallToAccept.fen) return { "margin-top": "10px" }; | |
491 | return {}; | |
492 | }, | |
6f2f9437 BA |
493 | changeChallTarget: function() { |
494 | if (!this.newchallenge.to) { | |
495 | // Reset potential FEN + diagram | |
496 | this.newchallenge.fen = ""; | |
497 | this.newchallenge.diag = ""; | |
498 | } | |
499 | }, | |
09d37571 BA |
500 | cadenceFocusIfOpened: function() { |
501 | if (event.target.checked) | |
502 | document.getElementById("cadence").focus(); | |
503 | }, | |
71468011 | 504 | send: function(code, obj) { |
5a187b07 | 505 | if (!!this.conn && this.conn.readyState == 1) { |
6808d7a1 | 506 | this.conn.send(JSON.stringify(Object.assign({ code: code }, obj))); |
51d87b52 | 507 | } |
71468011 BA |
508 | }, |
509 | getVname: function(vid) { | |
510 | const variant = this.st.variants.find(v => v.id == vid); | |
511 | // this.st.variants might be uninitialized (variant == null) | |
6808d7a1 | 512 | return variant ? variant.name : ""; |
71468011 | 513 | }, |
6855163c BA |
514 | filterChallenges: function(type) { |
515 | return this.challenges.filter(c => c.type == type); | |
516 | }, | |
517 | filterGames: function(type) { | |
a9b131f1 | 518 | return this.games.filter(g => g.type == type); |
6855163c | 519 | }, |
6808d7a1 | 520 | classifyObject: function(o) { |
28b32b4f | 521 | // o: challenge or game |
6808d7a1 | 522 | return o.cadence.indexOf("d") === -1 ? "live" : "corr"; |
a6bddfc6 | 523 | }, |
5bcc9b31 BA |
524 | setDisplay: function(letter, type, e) { |
525 | this[letter + "display"] = type; | |
6808d7a1 BA |
526 | localStorage.setItem( |
527 | "type-" + (letter == "c" ? "challenges" : "games"), | |
528 | type | |
529 | ); | |
530 | let elt = e | |
7f36b53a BA |
531 | ? e.target |
532 | : document.getElementById("btn" + letter.toUpperCase() + type); | |
533 | elt.classList.add("active"); | |
2f258c37 | 534 | elt.classList.remove("somethingnew"); //in case of |
f9c36b2d | 535 | if (!!elt.previousElementSibling) |
7f36b53a | 536 | elt.previousElementSibling.classList.remove("active"); |
6808d7a1 | 537 | else elt.nextElementSibling.classList.remove("active"); |
7f36b53a BA |
538 | }, |
539 | isGamer: function(sid) { | |
7ebc0408 BA |
540 | return Object.values(this.people[sid].tmpIds) |
541 | .some(v => v.focus && v.page.indexOf("/game/") >= 0); | |
a041d5d8 BA |
542 | }, |
543 | isFocusedOnHall: function(sid) { | |
544 | return ( | |
545 | // This is meant to challenge people, thus the next 2 conditions: | |
546 | this.st.user.id > 0 && | |
547 | sid != this.st.user.sid && | |
2c5d7b20 BA |
548 | Object.values(this.people[sid].tmpIds) |
549 | .some(v => v.focus && v.page == "/") | |
a041d5d8 | 550 | ); |
7f36b53a | 551 | }, |
6d6f45bc | 552 | challenge: function(sid) { |
afde7666 BA |
553 | this.partialResetNewchallenge(); |
554 | // Available, in Hall | |
6d6f45bc | 555 | this.newchallenge.to = this.people[sid].name; |
28b32b4f | 556 | // TODO: also store target sid to not re-search for it |
6d6f45bc BA |
557 | document.getElementById("modalPeople").checked = false; |
558 | window.doClick("modalNewgame"); | |
ac8f441c | 559 | }, |
6d6f45bc BA |
560 | watchGame: function(sid) { |
561 | // In some game, maybe playing maybe not: show a random one | |
562 | let gids = []; | |
7ebc0408 BA |
563 | Object.values(this.people[sid].tmpIds).forEach(v => { |
564 | if (v.focus) { | |
565 | const matchGid = v.page.match(/[a-zA-Z0-9]+$/); | |
a041d5d8 BA |
566 | if (!!matchGid) gids.push(matchGid[0]); |
567 | } | |
6d6f45bc BA |
568 | }); |
569 | const gid = gids[Math.floor(Math.random() * gids.length)]; | |
570 | const game = this.games.find(g => g.id == gid); | |
f9c36b2d | 571 | if (!!game) this.showGame(game); |
6d6f45bc | 572 | else this.$router.push("/game/" + gid); //game vs. me |
71468011 | 573 | }, |
51d87b52 | 574 | showGame: function(g) { |
71468011 BA |
575 | // NOTE: we are an observer, since only games I don't play are shown here |
576 | // ==> Moves sent by connected remote player(s) if live game | |
f54f4c26 | 577 | this.$router.push("/game/" + g.id); |
71468011 | 578 | }, |
efdfb4c7 | 579 | resetSocialColor: function() { |
bd76b456 | 580 | // TODO: this is called twice, once on opening an once on closing |
2f258c37 | 581 | document.getElementById("peopleBtn").classList.remove("somethingnew"); |
bd76b456 | 582 | }, |
71468011 | 583 | processChat: function(chat) { |
6808d7a1 | 584 | this.send("newchat", { data: chat }); |
a6bddfc6 | 585 | }, |
f91bc5b0 BA |
586 | getOppsid: function(c) { |
587 | let oppsid = c.from.sid; //may not be defined if corr + offline opp | |
588 | if (!oppsid) { | |
589 | oppsid = Object.keys(this.people).find( | |
590 | sid => this.people[sid].id == c.from.id | |
591 | ); | |
592 | } | |
593 | return oppsid; | |
594 | }, | |
a6bddfc6 | 595 | // Messaging center: |
9d58ef95 | 596 | socketMessageListener: function(msg) { |
6808d7a1 | 597 | if (!this.conn) return; |
9d58ef95 | 598 | const data = JSON.parse(msg.data); |
6808d7a1 BA |
599 | switch (data.code) { |
600 | case "pollclientsandgamers": { | |
7ebc0408 BA |
601 | // TODO: shuffling and random filtering on server, |
602 | // if the room is really crowded. | |
603 | Object.keys(data.sockIds).forEach(sid => { | |
7ebc0408 BA |
604 | if (sid != this.st.user.sid) { |
605 | // Pick a target tmpId (+page) at random: | |
606 | const pt = Object.values(data.sockIds[sid]); | |
607 | const randPage = pt[randInt(pt.length)].page; | |
608 | this.send( | |
609 | "askidentity", | |
610 | { | |
611 | target: sid, | |
612 | page: randPage | |
613 | } | |
614 | ); | |
71468011 | 615 | } |
7ebc0408 | 616 | if (!this.people[sid]) |
efdfb4c7 | 617 | // Do not set name or id: identity unknown yet |
7ebc0408 BA |
618 | this.people[sid] = { tmpIds: data.sockIds[sid] }; |
619 | else | |
882ec6fe | 620 | Object.assign(this.people[sid].tmpIds, data.sockIds[sid]); |
7ebc0408 | 621 | if (Object.values(data.sockIds[sid]).some(v => v.page == "/")) |
efdfb4c7 | 622 | // Peer is in Hall |
7ebc0408 BA |
623 | this.send("askchallenges", { target: sid }); |
624 | Object.values(data.sockIds[sid]).forEach(v => { | |
625 | if ( | |
626 | v.page.indexOf("/game/") >= 0 && | |
627 | !v.page.match(/\/[0-9]+$/) | |
628 | ) { | |
629 | // Peer is in Game: ask only if live game | |
630 | this.send("askgame", { target: sid, page: v.page }); | |
631 | } | |
632 | }); | |
5a3da968 | 633 | }); |
ac8f441c | 634 | break; |
71468011 BA |
635 | } |
636 | case "connect": | |
6808d7a1 | 637 | case "gconnect": { |
7f36b53a | 638 | const page = data.page || "/"; |
f54f4c26 BA |
639 | if (data.code == "connect") { |
640 | // Ask challenges only on first connexion: | |
641 | if (!this.people[data.from]) | |
7ebc0408 | 642 | this.send("askchallenges", { target: data.from[0] }); |
f54f4c26 BA |
643 | } |
644 | // Ask game only if live: | |
645 | else if (!page.match(/\/[0-9]+$/)) | |
7ebc0408 BA |
646 | this.send("askgame", { target: data.from[0], page: page }); |
647 | if (!this.people[data.from]) { | |
648 | this.$set( | |
649 | this.people, | |
650 | data.from[0], | |
651 | { | |
652 | tmpIds: { | |
653 | [data.from[1]]: { page: page, focus: true } | |
654 | } | |
655 | } | |
656 | ); | |
51d87b52 | 657 | this.newConnect[data.from] = true; //for self multi-connects tests |
7ebc0408 BA |
658 | this.send("askidentity", { target: data.from[0], page: page }); |
659 | } else { | |
660 | this.people[data.from[0]].tmpIds[data.from[1]] = | |
661 | { page: page, focus: true }; | |
662 | this.$forceUpdate(); //TODO: shouldn't be required | |
51d87b52 | 663 | } |
71468011 | 664 | break; |
7f36b53a | 665 | } |
71468011 | 666 | case "disconnect": |
6808d7a1 | 667 | case "gdisconnect": { |
2c5d7b20 BA |
668 | // If the user reloads the page twice very quickly |
669 | // (experienced with Firefox), the first reload won't have time to | |
670 | // connect but will trigger a "close" event anyway. | |
092de306 | 671 | // ==> Next check is required. |
7ebc0408 BA |
672 | if (!this.people[data.from[0]]) return; |
673 | delete this.people[data.from[0]].tmpIds[data.from[1]]; | |
674 | if (Object.keys(this.people[data.from[0]].tmpIds).length == 0) | |
675 | this.$delete(this.people, data.from[0]); | |
a2bd587a | 676 | else this.$forceUpdate(); //TODO: shouldn't be required |
6808d7a1 | 677 | if (data.code == "disconnect") { |
28b32b4f | 678 | // Remove the live challenges sent by this player: |
e33e50fa BA |
679 | ArrayFun.remove( |
680 | this.challenges, | |
7ebc0408 | 681 | c => c.type == "live" && c.from.sid == data.from[0], |
28b32b4f | 682 | "all" |
e33e50fa | 683 | ); |
6808d7a1 | 684 | } else { |
51d87b52 | 685 | // Remove the matching live game if now unreachable |
7ebc0408 | 686 | const gid = data.page.match(/[a-zA-Z0-9]+$/)[0]; |
585d0955 BA |
687 | // Corr games are always reachable: |
688 | if (!gid.match(/^[0-9]+$/)) { | |
2c5d7b20 | 689 | // Live games are reachable if someone is on the game page |
f54f4c26 | 690 | if (Object.values(this.people).every(p => |
7ebc0408 BA |
691 | Object.values(p.tmpIds).every(v => v.page != data.page)) |
692 | ) { | |
f54f4c26 | 693 | ArrayFun.remove(this.games, g => g.id == gid); |
51d87b52 | 694 | } |
71468011 BA |
695 | } |
696 | } | |
51d87b52 | 697 | break; |
6808d7a1 | 698 | } |
7ebc0408 BA |
699 | case "getfocus": { |
700 | let player = this.people[data.from[0]]; | |
a041d5d8 | 701 | // If user reload a page, focus may arrive earlier than connect |
7ebc0408 BA |
702 | if (!!player) { |
703 | player.tmpIds[data.from[1]].focus = true; | |
a041d5d8 BA |
704 | this.$forceUpdate(); //TODO: shouldn't be required |
705 | } | |
706 | break; | |
7ebc0408 BA |
707 | } |
708 | case "losefocus": { | |
709 | let player = this.people[data.from[0]]; | |
710 | if (!!player) { | |
711 | player.tmpIds[data.from[1]].focus = false; | |
a041d5d8 BA |
712 | this.$forceUpdate(); //TODO: shouldn't be required |
713 | } | |
714 | break; | |
7ebc0408 | 715 | } |
51d87b52 BA |
716 | case "killed": |
717 | // I logged in elsewhere: | |
3f22c2c3 BA |
718 | this.conn.removeEventListener("message", this.socketMessageListener); |
719 | this.conn.removeEventListener("close", this.socketCloseListener); | |
51d87b52 | 720 | this.conn = null; |
09d37571 | 721 | alert(this.st.tr["New connexion detected: tab now offline"]); |
5a3da968 | 722 | break; |
6808d7a1 | 723 | case "askidentity": { |
585d0955 | 724 | // Request for identification |
51d87b52 BA |
725 | const me = { |
726 | // Decompose to avoid revealing email | |
727 | name: this.st.user.name, | |
728 | sid: this.st.user.sid, | |
6808d7a1 | 729 | id: this.st.user.id |
51d87b52 | 730 | }; |
6808d7a1 | 731 | this.send("identity", { data: me, target: data.from }); |
5a3da968 | 732 | break; |
51d87b52 | 733 | } |
6808d7a1 | 734 | case "identity": { |
71468011 | 735 | const user = data.data; |
a041d5d8 | 736 | let player = this.people[user.sid]; |
7ebc0408 | 737 | // player.tmpIds is already set |
a041d5d8 BA |
738 | player.id = user.id; |
739 | player.name = user.name; | |
740 | // TODO: this.$set(people, ...) fails. So forceUpdate. | |
741 | // But this shouldn't be like that! | |
742 | this.$forceUpdate(); | |
f9c36b2d BA |
743 | // If I multi-connect, kill current connexion if no mark (I'm older) |
744 | if (this.newConnect[user.sid]) { | |
6808d7a1 | 745 | if ( |
6808d7a1 BA |
746 | user.id > 0 && |
747 | user.id == this.st.user.id && | |
f9c36b2d BA |
748 | user.sid != this.st.user.sid && |
749 | !this.killed[this.st.user.sid] | |
6808d7a1 | 750 | ) { |
6808d7a1 | 751 | this.send("killme", { sid: this.st.user.sid }); |
51d87b52 | 752 | this.killed[this.st.user.sid] = true; |
51d87b52 | 753 | } |
f9c36b2d | 754 | delete this.newConnect[user.sid]; |
51d87b52 | 755 | } |
dcd68c41 | 756 | break; |
71468011 | 757 | } |
28b32b4f BA |
758 | case "askchallenges": { |
759 | // Send my current live challenges (if any) | |
760 | const myChallenges = this.challenges | |
761 | .filter(c => | |
762 | c.from.sid == this.st.user.sid && c.type == "live" | |
763 | ) | |
764 | .map(c => { | |
2c5d7b20 BA |
765 | // NOTE: in principle, should only send targeted challenge to the |
766 | // target. But we may not know yet the identity of the target | |
767 | // (just name), so can't decide if data.from is the target. | |
28b32b4f BA |
768 | return { |
769 | id: c.id, | |
770 | from: this.st.user.sid, | |
771 | to: c.to, | |
772 | randomness: c.randomness, | |
773 | fen: c.fen, | |
774 | vid: c.vid, | |
775 | cadence: c.cadence, | |
776 | added: c.added | |
777 | }; | |
778 | }); | |
779 | if (myChallenges.length > 0) | |
780 | this.send("challenges", { data: myChallenges, target: data.from }); | |
81d9ce72 | 781 | break; |
1efe1d79 | 782 | } |
28b32b4f BA |
783 | case "challenges": //after "askchallenges" |
784 | data.data.forEach(this.addChallenge); | |
785 | break; | |
786 | case "newchallenge": | |
787 | this.addChallenge(data.data); | |
81d9ce72 | 788 | break; |
6808d7a1 | 789 | case "refusechallenge": { |
71468011 BA |
790 | const cid = data.data; |
791 | ArrayFun.remove(this.challenges, c => c.id == cid); | |
792 | alert(this.st.tr["Challenge declined"]); | |
793 | break; | |
794 | } | |
28b32b4f BA |
795 | case "deletechallenge_s": { |
796 | // NOTE: the challenge(s) may be already removed | |
797 | const cref = data.data; | |
2c5d7b20 BA |
798 | if (!!cref.cid) |
799 | ArrayFun.remove(this.challenges, c => c.id == cref.cid); | |
28b32b4f BA |
800 | else if (!!cref.sids) { |
801 | cref.sids.forEach(s => { | |
802 | ArrayFun.remove( | |
803 | this.challenges, | |
804 | c => c.type == "live" && c.from.sid == s, | |
805 | "all" | |
806 | ); | |
807 | }); | |
808 | } | |
71468011 BA |
809 | break; |
810 | } | |
f14572c4 BA |
811 | case "game": // Individual request |
812 | case "newgame": { | |
71468011 | 813 | const game = data.data; |
f54f4c26 BA |
814 | // Ignore games where I play (will go in MyGames page), |
815 | // and also games that I already received. | |
816 | if ( | |
817 | game.players.every(p => | |
818 | p.sid != this.st.user.sid && p.id != this.st.user.id) && | |
819 | this.games.findIndex(g => g.id == game.id) == -1 | |
820 | ) { | |
821 | let newGame = game; | |
822 | newGame.type = this.classifyObject(game); | |
823 | newGame.vname = this.getVname(game.vid); | |
824 | if (!game.score) | |
825 | // New game from Hall | |
826 | newGame.score = "*"; | |
827 | this.games.push(newGame); | |
828 | if ( | |
829 | (newGame.type == "live" && this.gdisplay == "corr") || | |
830 | (newGame.type == "corr" && this.gdisplay == "live") | |
831 | ) { | |
832 | document | |
833 | .getElementById("btnG" + newGame.type) | |
834 | .classList.add("somethingnew"); | |
2f258c37 | 835 | } |
51d87b52 | 836 | } |
81d9ce72 | 837 | break; |
1efe1d79 | 838 | } |
6808d7a1 | 839 | case "result": { |
48ab808f | 840 | let g = this.games.find(g => g.id == data.gid); |
28b32b4f | 841 | if (!!g) g.score = data.score; |
48ab808f BA |
842 | break; |
843 | } | |
6808d7a1 | 844 | case "startgame": { |
c292ebb2 | 845 | // New game just started, I'm involved |
71468011 BA |
846 | const gameInfo = data.data; |
847 | if (this.classifyObject(gameInfo) == "live") | |
848 | this.startNewGame(gameInfo); | |
6808d7a1 BA |
849 | else { |
850 | this.infoMessage = | |
7ebc0408 BA |
851 | this.st.tr["New correspondance game:"] + " " + |
852 | "<a href='#/game/" + gameInfo.id + "'>" + | |
853 | "#/game/" + gameInfo.id + "</a>"; | |
c292ebb2 | 854 | document.getElementById("modalInfo").checked = true; |
5d04793e | 855 | } |
9d58ef95 | 856 | break; |
71468011 | 857 | } |
ac8f441c | 858 | case "newchat": |
95a66034 | 859 | this.$refs["chatcomp"].newChat(data.data); |
bd76b456 | 860 | if (!document.getElementById("modalPeople").checked) |
2f258c37 | 861 | document.getElementById("peopleBtn").classList.add("somethingnew"); |
9d58ef95 BA |
862 | break; |
863 | } | |
864 | }, | |
95a66034 | 865 | loadMoreCorr: function() { |
0234201f BA |
866 | ajax( |
867 | "/observedgames", | |
868 | "GET", | |
869 | { | |
870 | data: { | |
871 | uid: this.st.user.id, | |
872 | cursor: this.cursor | |
873 | }, | |
874 | success: (res) => { | |
68e19a44 BA |
875 | const L = res.games.length; |
876 | if (L > 0) { | |
95a66034 BA |
877 | if ( |
878 | this.cursor == Number.MAX_SAFE_INTEGER && | |
879 | this.games.length == 0 && | |
880 | this.gdisplay == "live" | |
881 | ) { | |
882 | // First loading: show indicators | |
883 | document | |
884 | .getElementById("btnGcorr") | |
885 | .classList.add("somethingnew"); | |
886 | } | |
0234201f BA |
887 | this.cursor = res.games[L - 1].created; |
888 | let moreGames = res.games.map(g => { | |
889 | const vname = this.getVname(g.vid); | |
890 | return Object.assign( | |
891 | {}, | |
892 | g, | |
893 | { | |
894 | type: "corr", | |
895 | vname: vname | |
896 | } | |
897 | ); | |
898 | }); | |
899 | this.games = this.games.concat(moreGames); | |
900 | } else this.hasMore = false; | |
901 | } | |
902 | } | |
903 | ); | |
904 | }, | |
a6bddfc6 | 905 | // Challenge lifecycle: |
28b32b4f BA |
906 | addChallenge: function(chall) { |
907 | // NOTE about next condition: see "askchallenges" case. | |
908 | if ( | |
909 | !chall.to || | |
910 | (this.people[chall.from].id > 0 && | |
911 | (chall.from == this.st.user.sid || chall.to == this.st.user.name)) | |
912 | ) { | |
913 | let newChall = Object.assign({}, chall); | |
914 | newChall.type = this.classifyObject(chall); | |
915 | newChall.randomness = chall.randomness; | |
916 | newChall.added = Date.now(); | |
917 | let fromValues = Object.assign({}, this.people[chall.from]); | |
918 | delete fromValues["pages"]; //irrelevant in this context | |
919 | newChall.from = Object.assign({ sid: chall.from }, fromValues); | |
920 | newChall.vname = this.getVname(newChall.vid); | |
921 | this.challenges.push(newChall); | |
922 | if ( | |
923 | (newChall.type == "live" && this.cdisplay == "corr") || | |
924 | (newChall.type == "corr" && this.cdisplay == "live") | |
925 | ) { | |
926 | document | |
927 | .getElementById("btnC" + newChall.type) | |
928 | .classList.add("somethingnew"); | |
929 | } | |
930 | } | |
931 | }, | |
725da57f BA |
932 | loadNewchallVariant: async function(cb) { |
933 | const vname = this.getVname(this.newchallenge.vid); | |
32f6285e BA |
934 | await import("@/variants/" + vname + ".js") |
935 | .then((vModule) => { | |
936 | window.V = vModule[vname + "Rules"]; | |
937 | this.newchallenge.V = window.V; | |
938 | this.newchallenge.vname = vname; | |
939 | if (!!cb) cb(); | |
940 | }); | |
725da57f BA |
941 | }, |
942 | trySetNewchallDiag: function() { | |
943 | if (!this.newchallenge.fen) { | |
944 | this.newchallenge.diag = ""; | |
945 | return; | |
946 | } | |
947 | // If vid > 0 then the variant is loaded (function above): | |
948 | window.V = this.newchallenge.V; | |
949 | if ( | |
950 | this.newchallenge.vid > 0 && | |
f9c36b2d | 951 | !!this.newchallenge.fen && |
725da57f BA |
952 | V.IsGoodFen(this.newchallenge.fen) |
953 | ) { | |
954 | const parsedFen = V.ParseFen(this.newchallenge.fen); | |
955 | this.newchallenge.diag = getDiagram({ | |
956 | position: parsedFen.position, | |
5b4de147 | 957 | orientation: parsedFen.turn |
725da57f | 958 | }); |
6f2f9437 | 959 | } else this.newchallenge.diag = ""; |
725da57f | 960 | }, |
28b32b4f BA |
961 | newChallFromPreset(pchall) { |
962 | this.partialResetNewchallenge(); | |
963 | this.newchallenge.vid = pchall.vid; | |
964 | this.newchallenge.cadence = pchall.cadence; | |
965 | this.newchallenge.randomness = pchall.randomness; | |
41c5b662 | 966 | this.loadNewchallVariant(this.issueNewChallenge); |
28b32b4f BA |
967 | }, |
968 | issueNewChallenge: async function() { | |
188b4a8f | 969 | if (!!(this.newchallenge.cadence.match(/^[0-9]+$/))) |
8477e53d BA |
970 | this.newchallenge.cadence += "+0"; //assume minutes, no increment |
971 | const ctype = this.classifyObject(this.newchallenge); | |
972 | // TODO: cadence still unchecked so ctype could be wrong... | |
6808d7a1 | 973 | let error = ""; |
8477e53d | 974 | if (!this.newchallenge.vid) |
6808d7a1 | 975 | error = this.st.tr["Please select a variant"]; |
8477e53d BA |
976 | else if (ctype == "corr" && this.st.user.id <= 0) |
977 | error = this.st.tr["Please log in to play correspondance games"]; | |
f9c36b2d | 978 | else if (!!this.newchallenge.to) { |
8477e53d BA |
979 | if (this.newchallenge.to == this.st.user.name) |
980 | error = this.st.tr["Self-challenge is forbidden"]; | |
981 | else if ( | |
982 | ctype == "live" && | |
983 | Object.values(this.people).every(p => p.name != this.newchallenge.to) | |
585d0955 | 984 | ) { |
8477e53d | 985 | error = this.newchallenge.to + " " + this.st.tr["is not online"]; |
585d0955 | 986 | } |
8477e53d | 987 | } |
6808d7a1 BA |
988 | if (error) { |
989 | alert(error); | |
990 | return; | |
991 | } | |
725da57f | 992 | window.V = this.newchallenge.V; |
6808d7a1 | 993 | error = checkChallenge(this.newchallenge); |
6808d7a1 BA |
994 | if (error) { |
995 | alert(error); | |
996 | return; | |
997 | } | |
bb7dd7db | 998 | // NOTE: "from" information is not required here |
a7808884 | 999 | let chall = Object.assign({}, this.newchallenge); |
28b32b4f BA |
1000 | // Add only if not already issued (not counting target or FEN): |
1001 | if (this.challenges.some(c => | |
1002 | (c.from.sid == this.st.user.sid || c.from.id == this.st.user.id) && | |
1003 | c.vid == chall.vid && | |
1004 | c.cadence == chall.cadence && | |
1005 | c.randomness == chall.randomness | |
1006 | )) { | |
1007 | alert(this.st.tr["Challenge already exists"]); | |
1008 | return; | |
1009 | } | |
1010 | if (this.newchallenge.memorize) this.addPresetChall(this.newchallenge); | |
7ba4a5bc BA |
1011 | delete chall["V"]; |
1012 | delete chall["diag"]; | |
6808d7a1 | 1013 | const finishAddChallenge = cid => { |
1efe1d79 | 1014 | chall.id = cid || "c" + getRandString(); |
28b32b4f BA |
1015 | const MAX_ALLOWED_CHALLS = 3; |
1016 | // Remove oldest challenge if 3 found: only 3 at a time of a given type | |
1017 | let countMyChalls = 0; | |
1018 | let challToDelIdx = 0; | |
1019 | let oldestAdded = Number.MAX_SAFE_INTEGER; | |
1020 | for (let i=0; i<this.challenges.length; i++) { | |
1021 | const c = this.challenges[i]; | |
1022 | if ( | |
1023 | c.type == ctype && | |
1024 | (c.from.sid == this.st.user.sid || c.from.id == this.st.user.id) | |
1025 | ) { | |
1026 | countMyChalls++; | |
1027 | if (c.added < oldestAdded) { | |
1028 | challToDelIdx = i; | |
1029 | oldestAdded = c.added; | |
1030 | } | |
1031 | } | |
1032 | } | |
1033 | if (countMyChalls >= MAX_ALLOWED_CHALLS) { | |
1034 | this.send( | |
1035 | "deletechallenge_s", | |
1036 | { data: { cid: this.challenges[challToDelIdx].id } } | |
1037 | ); | |
6808d7a1 | 1038 | if (ctype == "corr") { |
e57c4de4 BA |
1039 | ajax( |
1040 | "/challenges", | |
1041 | "DELETE", | |
28b32b4f | 1042 | { data: { id: this.challenges[challToDelIdx].id } } |
e57c4de4 | 1043 | ); |
5ea8d113 | 1044 | } |
28b32b4f | 1045 | this.challenges.splice(challToDelIdx, 1); |
5ea8d113 | 1046 | } |
6808d7a1 BA |
1047 | this.send("newchallenge", { |
1048 | data: Object.assign({ from: this.st.user.sid }, chall) | |
1049 | }); | |
5ea8d113 | 1050 | // Add new challenge: |
6808d7a1 | 1051 | chall.from = { |
dcd68c41 BA |
1052 | sid: this.st.user.sid, |
1053 | id: this.st.user.id, | |
6808d7a1 | 1054 | name: this.st.user.name |
dcd68c41 | 1055 | }; |
71468011 | 1056 | chall.added = Date.now(); |
2c5d7b20 | 1057 | // NOTE: vname and type are redundant (deduced from cadence + vid) |
71468011 | 1058 | chall.type = ctype; |
725da57f | 1059 | chall.vname = this.newchallenge.vname; |
1efe1d79 | 1060 | this.challenges.push(chall); |
71468011 BA |
1061 | // Remember cadence + vid for quicker further challenges: |
1062 | localStorage.setItem("cadence", chall.cadence); | |
25d18342 | 1063 | localStorage.setItem("vid", chall.vid); |
6b7b2cf7 | 1064 | localStorage.setItem("challRandomness", chall.randomness); |
b4d619d1 | 1065 | document.getElementById("modalNewgame").checked = false; |
db1f1f9a BA |
1066 | // Show the challenge if not on current display |
1067 | if ( | |
1068 | (ctype == "live" && this.cdisplay == "corr") || | |
1069 | (ctype == "corr" && this.cdisplay == "live") | |
1070 | ) { | |
1071 | this.setDisplay('c', ctype); | |
1072 | } | |
b4d619d1 | 1073 | }; |
6808d7a1 | 1074 | if (ctype == "live") { |
1efe1d79 | 1075 | // Live challenges have a random ID |
71468011 | 1076 | finishAddChallenge(null); |
6808d7a1 | 1077 | } else { |
b4d619d1 | 1078 | // Correspondance game: send challenge to server |
e57c4de4 BA |
1079 | ajax( |
1080 | "/challenges", | |
1081 | "POST", | |
1082 | { | |
1083 | data: { chall: chall }, | |
1084 | success: (response) => { | |
f14572c4 | 1085 | finishAddChallenge(response.id); |
e57c4de4 BA |
1086 | } |
1087 | } | |
1088 | ); | |
9d58ef95 | 1089 | } |
fb54f098 | 1090 | }, |
725da57f BA |
1091 | // Callback function after a diagram was showed to accept |
1092 | // or refuse targetted challenge: | |
1093 | decisionChallenge: function(accepted) { | |
1094 | this.curChallToAccept.accepted = accepted; | |
1095 | this.finishProcessingChallenge(this.curChallToAccept); | |
1096 | document.getElementById("modalAccept").checked = false; | |
1097 | }, | |
1098 | finishProcessingChallenge: function(c) { | |
1099 | if (c.accepted) { | |
1100 | c.seat = { | |
725da57f BA |
1101 | sid: this.st.user.sid, |
1102 | id: this.st.user.id, | |
1103 | name: this.st.user.name | |
1104 | }; | |
1105 | this.launchGame(c); | |
2c5d7b20 | 1106 | if (c.type == "live") { |
28b32b4f | 1107 | // Remove all live challenges of both players |
2c5d7b20 BA |
1108 | this.send( |
1109 | "deletechallenge_s", | |
1110 | { data: { sids: [c.from.sid, c.seat.sid] } } | |
1111 | ); | |
1112 | } | |
28b32b4f BA |
1113 | else |
1114 | // Corr challenge: just remove the challenge | |
1115 | this.send("deletechallenge_s", { data: { cid: c.id } }); | |
725da57f | 1116 | } else { |
f91bc5b0 | 1117 | const oppsid = this.getOppsid(c); |
f9c36b2d | 1118 | if (!!oppsid) |
f91bc5b0 | 1119 | this.send("refusechallenge", { data: c.id, target: oppsid }); |
e57c4de4 BA |
1120 | if (c.type == "corr") { |
1121 | ajax( | |
1122 | "/challenges", | |
1123 | "DELETE", | |
1124 | { data: { id: c.id } } | |
1125 | ); | |
1126 | } | |
28b32b4f | 1127 | this.send("deletechallenge_s", { data: { cid: c.id } }); |
725da57f | 1128 | } |
725da57f | 1129 | }, |
e727fe31 | 1130 | // TODO: if several players click same challenge at the same time: problem |
725da57f | 1131 | clickChallenge: async function(c) { |
6808d7a1 BA |
1132 | const myChallenge = |
1133 | c.from.sid == this.st.user.sid || //live | |
1134 | (this.st.user.id > 0 && c.from.id == this.st.user.id); //corr | |
1135 | if (!myChallenge) { | |
1136 | if (c.type == "corr" && this.st.user.id <= 0) { | |
1137 | alert(this.st.tr["Please log in to accept corr challenges"]); | |
1138 | return; | |
1139 | } | |
a6bddfc6 | 1140 | c.accepted = true; |
32f6285e BA |
1141 | await import("@/variants/" + c.vname + ".js") |
1142 | .then((vModule) => { | |
1143 | window.V = vModule[c.vname + "Rules"]; | |
1144 | if (!!c.to) { | |
1145 | // c.to == this.st.user.name (connected) | |
1146 | if (!!c.fen) { | |
1147 | const parsedFen = V.ParseFen(c.fen); | |
1148 | c.mycolor = V.GetOppCol(parsedFen.turn); | |
1149 | this.tchallDiag = getDiagram({ | |
1150 | position: parsedFen.position, | |
1151 | orientation: c.mycolor | |
1152 | }); | |
1153 | } | |
1154 | this.curChallToAccept = c; | |
1155 | document.getElementById("modalAccept").checked = true; | |
725da57f | 1156 | } |
32f6285e BA |
1157 | else this.finishProcessingChallenge(c); |
1158 | }); | |
725da57f | 1159 | } |
6808d7a1 | 1160 | else { |
725da57f | 1161 | // My challenge |
e57c4de4 BA |
1162 | if (c.type == "corr") { |
1163 | ajax( | |
1164 | "/challenges", | |
1165 | "DELETE", | |
1166 | { data: { id: c.id } } | |
1167 | ); | |
1168 | } | |
28b32b4f | 1169 | this.send("deletechallenge_s", { data: { cid: c.id } }); |
485fccd5 | 1170 | } |
5ea8d113 | 1171 | // In all cases, the challenge is consumed: |
3d55deea | 1172 | ArrayFun.remove(this.challenges, ch => ch.id == c.id); |
a6bddfc6 | 1173 | }, |
a64d9122 | 1174 | // NOTE: when launching game, the challenge is already being deleted |
725da57f | 1175 | launchGame: function(c) { |
f14572c4 BA |
1176 | // White player index 0, black player index 1: |
1177 | const players = | |
584f81b9 BA |
1178 | !!c.mycolor |
1179 | ? (c.mycolor == "w" ? [c.seat, c.from] : [c.from, c.seat]) | |
1180 | : shuffle([c.from, c.seat]); | |
71468011 | 1181 | // These game informations will be shared |
6808d7a1 | 1182 | let gameInfo = { |
11667c79 | 1183 | id: getRandString(), |
7ba4a5bc | 1184 | fen: c.fen || V.GenRandInitFen(c.randomness), |
0234201f | 1185 | randomness: c.randomness, //for rematch |
f14572c4 | 1186 | players: players, |
a6bddfc6 | 1187 | vid: c.vid, |
6808d7a1 | 1188 | cadence: c.cadence |
a6bddfc6 | 1189 | }; |
71468011 | 1190 | const notifyNewgame = () => { |
f91bc5b0 | 1191 | const oppsid = this.getOppsid(c); |
f9c36b2d | 1192 | if (!!oppsid) |
c292ebb2 | 1193 | // Opponent is online |
6808d7a1 | 1194 | this.send("startgame", { data: gameInfo, target: oppsid }); |
f14572c4 BA |
1195 | // If new corr game, notify Hall (except opponent and me) |
1196 | if (c.type == "corr") { | |
1197 | this.send( | |
1198 | "newgame", | |
1199 | { | |
1200 | data: gameInfo, | |
1201 | excluded: [this.st.user.sid, oppsid] | |
1202 | } | |
1203 | ); | |
1204 | } | |
585d0955 | 1205 | // Notify MyGames page: |
cafe0166 BA |
1206 | this.send( |
1207 | "notifynewgame", | |
1208 | { | |
1209 | data: gameInfo, | |
f14572c4 | 1210 | targets: gameInfo.players |
cafe0166 BA |
1211 | } |
1212 | ); | |
585d0955 BA |
1213 | // NOTE: no need to send the game to the room, since I'll connect |
1214 | // on game just after, the main Hall will be notified. | |
411d23cd | 1215 | }; |
6808d7a1 | 1216 | if (c.type == "live") { |
71468011 | 1217 | notifyNewgame(); |
485fccd5 | 1218 | this.startNewGame(gameInfo); |
c292ebb2 BA |
1219 | } else { |
1220 | // corr: game only on server | |
485fccd5 BA |
1221 | ajax( |
1222 | "/games", | |
1223 | "POST", | |
e57c4de4 BA |
1224 | { |
1225 | // cid is useful to delete the challenge: | |
f14572c4 BA |
1226 | data: { |
1227 | gameInfo: gameInfo, | |
1228 | cid: c.id | |
1229 | }, | |
e57c4de4 | 1230 | success: (response) => { |
f14572c4 | 1231 | gameInfo.id = response.id; |
e57c4de4 | 1232 | notifyNewgame(); |
f14572c4 | 1233 | this.$router.push("/game/" + response.id); |
e57c4de4 | 1234 | } |
411d23cd | 1235 | } |
485fccd5 BA |
1236 | ); |
1237 | } | |
fb54f098 | 1238 | }, |
a9b131f1 | 1239 | // NOTE: for live games only (corr games start on the server) |
42c15a75 | 1240 | startNewGame: function(gameInfo) { |
c292ebb2 BA |
1241 | const game = Object.assign( |
1242 | {}, | |
1243 | gameInfo, | |
1244 | { | |
1245 | // (other) Game infos: constant | |
1246 | fenStart: gameInfo.fen, | |
1247 | vname: this.getVname(gameInfo.vid), | |
1248 | created: Date.now(), | |
1249 | // Game state (including FEN): will be updated | |
1250 | moves: [], | |
1251 | clocks: [-1, -1], //-1 = unstarted | |
1a021529 | 1252 | chats: [], |
c292ebb2 | 1253 | score: "*" |
8477e53d | 1254 | } |
c292ebb2 BA |
1255 | ); |
1256 | setTimeout( | |
1257 | () => { | |
f5768809 | 1258 | const myIdx = (game.players[0].sid == this.st.user.sid ? 0 : 1); |
c292ebb2 BA |
1259 | GameStorage.add(game, (err) => { |
1260 | // If an error occurred, game is not added: a tab already | |
0234201f BA |
1261 | // added the game. Maybe a focused one, maybe not. |
1262 | // We know for sure that it emitted the gong start sound. | |
1263 | // ==> Do not play it again. | |
1264 | if (!err && this.st.settings.sound) | |
1265 | new Audio("/sounds/newgame.flac").play().catch(() => {}); | |
f5768809 BA |
1266 | if (!this.focus) { |
1267 | notify( | |
1268 | "New live game", | |
1269 | { body: "vs " + game.players[1-myIdx].name || "@nonymous" } | |
1270 | ); | |
1271 | } | |
0234201f | 1272 | this.$router.push("/game/" + gameInfo.id); |
c292ebb2 BA |
1273 | }); |
1274 | }, | |
f5768809 | 1275 | this.focus ? 500 + 1000 * Math.random() : 0 |
c292ebb2 | 1276 | ); |
6808d7a1 BA |
1277 | } |
1278 | } | |
85e5b5c1 | 1279 | }; |
ccd4a2b7 | 1280 | </script> |
85e5b5c1 | 1281 | |
41c80bb6 | 1282 | <style lang="sass" scoped> |
5bcc9b31 BA |
1283 | .active |
1284 | color: #42a983 | |
a154d45e BA |
1285 | |
1286 | #infoDiv > .card | |
f854c94f BA |
1287 | padding: 15px 0 |
1288 | max-width: 430px | |
a154d45e | 1289 | |
725da57f | 1290 | #newgameDiv > .card, #acceptDiv > .card |
a154d45e BA |
1291 | max-width: 767px |
1292 | max-height: 100% | |
1293 | ||
bd76b456 BA |
1294 | div#peopleWrap > .card |
1295 | max-height: 100% | |
1296 | ||
1297 | @media screen and (min-width: 1281px) | |
1298 | div#peopleWrap > .card | |
1299 | max-width: 66.67% | |
1300 | ||
1301 | @media screen and (max-width: 1280px) | |
1302 | div#peopleWrap > .card | |
1303 | max-width: 83.33% | |
1304 | ||
1305 | @media screen and (max-width: 767px) | |
1306 | div#peopleWrap > .card | |
1307 | max-width: 100% | |
1308 | ||
ed06d9e9 BA |
1309 | #players |
1310 | width: 50% | |
1311 | position: relative | |
1312 | float: left | |
910d631b | 1313 | |
ed06d9e9 BA |
1314 | #chat |
1315 | width: 50% | |
1316 | float: left | |
1317 | position: relative | |
910d631b | 1318 | |
ed06d9e9 BA |
1319 | @media screen and (max-width: 767px) |
1320 | #players, #chats | |
1321 | width: 100% | |
910d631b | 1322 | |
72ccbd67 BA |
1323 | #chat > .card |
1324 | max-width: 100% | |
1325 | margin: 0; | |
1326 | border: none; | |
910d631b | 1327 | |
41c80bb6 | 1328 | #players > p |
ed06d9e9 | 1329 | margin-left: 5px |
910d631b | 1330 | |
dcd68c41 BA |
1331 | .anonymous |
1332 | font-style: italic | |
910d631b | 1333 | |
dcd68c41 | 1334 | button.player-action |
41c80bb6 | 1335 | margin-left: 32px |
2f258c37 BA |
1336 | |
1337 | .somethingnew | |
1338 | background-color: #c5fefe !important | |
1339 | ||
1340 | .tabbtn | |
5fe7e71c | 1341 | background-color: #f9faee |
2f258c37 | 1342 | |
725da57f BA |
1343 | button.acceptBtn |
1344 | background-color: lightgreen | |
1345 | button.refuseBtn | |
1346 | background-color: red | |
1347 | ||
1348 | #buttonsTchall | |
afde7666 | 1349 | // margin-top set dynamically (depends if diagram showed or not) |
5b4de147 BA |
1350 | & > button > span |
1351 | width: 100% | |
1352 | text-align: center | |
725da57f BA |
1353 | |
1354 | .variantName | |
1355 | font-weight: bold | |
1356 | ||
1357 | .diagram | |
1358 | margin: 0 auto | |
1359 | max-width: 400px | |
5b4de147 BA |
1360 | // width: 100% required for Firefox |
1361 | width: 100% | |
725da57f BA |
1362 | |
1363 | #inputFen | |
1364 | width: 100% | |
1365 | ||
2f258c37 BA |
1366 | #div2, #div3 |
1367 | margin-top: 15px | |
1368 | @media screen and (max-width: 767px) | |
1369 | #div2, #div3 | |
1370 | margin-top: 0 | |
28b32b4f BA |
1371 | |
1372 | tr > td | |
1373 | &.random-0 | |
1374 | background-color: #FF5733 | |
1375 | &.random-1 | |
1376 | background-color: #2B63B4 | |
1377 | &.random-2 | |
1378 | background-color: #33B42B | |
1379 | ||
4222cf78 BA |
1380 | @media screen and (max-width: 767px) |
1381 | h4 | |
1382 | margin: 5px 0 | |
1383 | ||
0234201f | 1384 | button#loadMoreBtn |
f14572c4 BA |
1385 | display: block |
1386 | margin: 0 auto | |
0234201f | 1387 | |
28b32b4f BA |
1388 | td.remove-preset |
1389 | background-color: lightgrey | |
1390 | text-align: center | |
1391 | & > img | |
1392 | height: 1em | |
85e5b5c1 | 1393 | </style> |