Commit | Line | Data |
---|---|---|
ccd4a2b7 | 1 | <template lang="pug"> |
9d58ef95 | 2 | main |
5b020e73 BA |
3 | input#modalNewgame.modal(type="checkbox") |
4 | div(role="dialog" aria-labelledby="titleFenedit") | |
5 | .card.smallpad | |
6 | label#closeNewgame.modal-close(for="modalNewgame") | |
7 | fieldset | |
8 | label(for="selectVariant") {{ st.tr["Variant"] }} | |
9d58ef95 | 9 | select#selectVariant(v-model="newchallenge.vid") |
85e5b5c1 | 10 | option(v-for="v in st.variants" :value="v.id") {{ v.name }} |
5b020e73 BA |
11 | fieldset |
12 | label(for="selectNbPlayers") {{ st.tr["Number of players"] }} | |
9d58ef95 | 13 | select#selectNbPlayers(v-model="newchallenge.nbPlayers") |
81d9ce72 | 14 | option(v-show="possibleNbplayers(2)" value="2" selected) 2 |
5b020e73 BA |
15 | option(v-show="possibleNbplayers(3)" value="3") 3 |
16 | option(v-show="possibleNbplayers(4)" value="4") 4 | |
17 | fieldset | |
b4d619d1 | 18 | label(for="timeControl") {{ st.tr["Time control"] }} |
9d58ef95 | 19 | input#timeControl(type="text" v-model="newchallenge.timeControl" |
b4d619d1 BA |
20 | placeholder="3m+2s, 1h+30s, 7d+1d ...") |
21 | fieldset(v-if="st.user.id > 0") | |
9d58ef95 | 22 | label(for="selectPlayers") {{ st.tr["Play with? (optional)"] }} |
5b020e73 | 23 | #selectPlayers |
81d9ce72 | 24 | input(type="text" v-model="newchallenge.to[0]") |
9d58ef95 | 25 | input(v-show="newchallenge.nbPlayers>=3" type="text" |
81d9ce72 | 26 | v-model="newchallenge.to[1]") |
9d58ef95 | 27 | input(v-show="newchallenge.nbPlayers==4" type="text" |
81d9ce72 | 28 | v-model="newchallenge.to[2]") |
b4d619d1 | 29 | fieldset(v-if="st.user.id > 0") |
9d58ef95 BA |
30 | label(for="inputFen") {{ st.tr["FEN (optional)"] }} |
31 | input#inputFen(type="text" v-model="newchallenge.fen") | |
b4d619d1 | 32 | button(@click="newChallenge") {{ st.tr["Send challenge"] }} |
9d58ef95 BA |
33 | .row |
34 | .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 | |
35 | button(onClick="doClick('modalNewgame')") New game | |
36 | .row | |
1efe1d79 | 37 | .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 |
6855163c BA |
38 | .collapse |
39 | input#challengeSection(type="radio" checked aria-hidden="true" name="accordion") | |
40 | label(for="challengeSection" aria-hidden="true") Challenges | |
41 | div | |
42 | .button-group | |
43 | button(@click="cdisplay='live'") Live Challenges | |
44 | button(@click="cdisplay='corr'") Correspondance challenges | |
45 | ChallengeList(v-show="cdisplay=='live'" | |
46 | :challenges="filterChallenges('live')" @click-challenge="clickChallenge") | |
47 | ChallengeList(v-show="cdisplay=='corr'" | |
48 | :challenges="filterChallenges('corr')" @click-challenge="clickChallenge") | |
1efe1d79 | 49 | input#peopleSection(type="radio" aria-hidden="true" name="accordion") |
6855163c BA |
50 | label(for="peopleSection" aria-hidden="true") People |
51 | div | |
1efe1d79 BA |
52 | .button-group |
53 | button(@click="pdisplay='players'") Players | |
54 | button(@click="pdisplay='chat'") Chat | |
6855163c BA |
55 | #players(v-show="pdisplay=='players'") |
56 | h3 Online players | |
57 | .player(v-for="p in uniquePlayers" @click="tryChallenge(p)" | |
58 | :class="{anonymous: !!p.count}" | |
59 | ) | |
60 | | {{ p.name + (!!p.count ? " ("+p.count+")" : "") }} | |
61 | #chat(v-show="pdisplay=='chat'") | |
62 | h3 Chat (TODO) | |
1efe1d79 | 63 | input#gameSection(type="radio" aria-hidden="true" name="accordion") |
6855163c BA |
64 | label(for="gameSection" aria-hidden="true") Games |
65 | div | |
66 | .button-group | |
67 | button(@click="gdisplay='live'") Live games | |
68 | button(@click="gdisplay='corr'") Correspondance games | |
69 | GameList(v-show="gdisplay=='live'" :games="filterGames('live')" | |
70 | @show-game="showGame") | |
71 | GameList(v-show="gdisplay=='corr'" :games="filterGames('corr')" | |
72 | @show-game="showGame") | |
625022fd BA |
73 | </template> |
74 | ||
75 | <script> | |
5b020e73 | 76 | import { store } from "@/store"; |
85e5b5c1 | 77 | import { NbPlayers } from "@/data/nbPlayers"; |
9d58ef95 BA |
78 | import { checkChallenge } from "@/data/challengeCheck"; |
79 | import { ArrayFun } from "@/utils/array"; | |
03608482 | 80 | import { ajax } from "@/utils/ajax"; |
052d17ea | 81 | import { getRandString } from "@/utils/alea"; |
5b020e73 BA |
82 | import GameList from "@/components/GameList.vue"; |
83 | import ChallengeList from "@/components/ChallengeList.vue"; | |
625022fd | 84 | export default { |
cf2343ce | 85 | name: "my-hall", |
5b020e73 BA |
86 | components: { |
87 | GameList, | |
88 | ChallengeList, | |
89 | }, | |
fb54f098 BA |
90 | data: function () { |
91 | return { | |
5b020e73 | 92 | st: store.state, |
6855163c BA |
93 | cdisplay: "live", //or corr |
94 | pdisplay: "players", //or chat | |
fb54f098 | 95 | gdisplay: "live", |
6855163c | 96 | games: [], |
b4d619d1 | 97 | challenges: [], |
1efe1d79 | 98 | players: [], //online players (rename into "people" ?) |
9d58ef95 | 99 | newchallenge: { |
fb54f098 BA |
100 | fen: "", |
101 | vid: 0, | |
102 | nbPlayers: 0, | |
6faa92f2 BA |
103 | to: ["", "", ""], //name of challenged players |
104 | timeControl: "", //"2m+2s" ...etc | |
fb54f098 BA |
105 | }, |
106 | }; | |
107 | }, | |
b4d619d1 BA |
108 | computed: { |
109 | uniquePlayers: function() { | |
6855163c | 110 | // Show e.g. "@nonymous (5)", and do nothing on click on anonymous |
4d64881e BA |
111 | let anonymous = {id:0, name:"@nonymous", count:0}; |
112 | let playerList = []; | |
b4d619d1 BA |
113 | this.players.forEach(p => { |
114 | if (p.id > 0) | |
115 | playerList.push(p); | |
116 | else | |
4d64881e | 117 | anonymous.count++; |
b4d619d1 | 118 | }); |
4d64881e BA |
119 | if (anonymous.count > 0) |
120 | playerList.push(anonymous); | |
b4d619d1 BA |
121 | return playerList; |
122 | }, | |
123 | }, | |
9d58ef95 | 124 | created: function() { |
4d64881e BA |
125 | // Always add myself to players' list |
126 | this.players.push(this.st.user); | |
f4f4c03c | 127 | // Ask server for current corr games (all but mines) |
052d17ea BA |
128 | // ajax( |
129 | // "", | |
130 | // "GET", | |
131 | // response => { | |
132 | // | |
133 | // } | |
134 | // ); | |
135 | // // Also ask for corr challenges (all) | |
136 | // ajax( | |
137 | // "", | |
138 | // "GET", | |
139 | // response => { | |
140 | // | |
141 | // } | |
142 | // ); | |
f4f4c03c | 143 | // 0.1] Ask server for for room composition: |
4d64881e | 144 | const socketOpenListener = () => { |
81d9ce72 | 145 | this.st.conn.send(JSON.stringify({code:"pollclients"})); |
4d64881e BA |
146 | }; |
147 | this.st.conn.onopen = socketOpenListener; | |
81d9ce72 BA |
148 | // TODO: is this required here? |
149 | this.oldOnmessage = this.st.conn.onmessage || Function.prototype; | |
4d64881e | 150 | this.st.conn.onmessage = this.socketMessageListener; |
052d17ea | 151 | const oldOnclose = this.st.conn.onclose; |
4d64881e | 152 | const socketCloseListener = () => { |
052d17ea | 153 | oldOnclose(); //reinitialize connexion (in store.js) |
4d64881e BA |
154 | this.st.conn.addEventListener('message', this.socketMessageListener); |
155 | this.st.conn.addEventListener('close', socketCloseListener); | |
156 | }; | |
157 | this.st.conn.onclose = socketCloseListener; | |
9d58ef95 | 158 | }, |
fb54f098 | 159 | methods: { |
6855163c BA |
160 | filterChallenges: function(type) { |
161 | return this.challenges.filter(c => c.type == type); | |
162 | }, | |
163 | filterGames: function(type) { | |
164 | return this.games.filter(c => c.type == type); | |
165 | }, | |
166 | classifyChallenge: function(c) { | |
167 | // Heuristic: should work for most cases... (TODO) | |
168 | return (c.timeControl.indexOf('d') === -1 ? "live" : "corr"); | |
169 | }, | |
9d58ef95 | 170 | socketMessageListener: function(msg) { |
052d17ea BA |
171 | // Save and call current st.conn.onmessage if one was already defined |
172 | // --> also needed in future Game.vue (also in Chat.vue component) | |
052d17ea | 173 | this.oldOnmessage(msg); |
9d58ef95 BA |
174 | const data = JSON.parse(msg.data); |
175 | switch (data.code) | |
176 | { | |
f4f4c03c | 177 | // 0.2] Receive clients list (just socket IDs) |
81d9ce72 | 178 | case "pollclients": |
1efe1d79 | 179 | { |
5a3da968 BA |
180 | data.sockIds.forEach(sid => { |
181 | this.players.push({sid:sid, id:0, name:""}); | |
81d9ce72 | 182 | // Ask identity, challenges and game(s) |
5a3da968 | 183 | this.st.conn.send(JSON.stringify({code:"askidentity", target:sid})); |
81d9ce72 BA |
184 | this.st.conn.send(JSON.stringify({code:"askchallenges", target:sid})); |
185 | this.st.conn.send(JSON.stringify({code:"askgame", target:sid})); | |
5a3da968 BA |
186 | }); |
187 | break; | |
1efe1d79 | 188 | } |
81d9ce72 | 189 | case "askidentity": |
1efe1d79 | 190 | { |
6855163c BA |
191 | // Request for identification: reply if I'm not anonymous |
192 | if (this.st.user.id > 0) | |
193 | { | |
194 | this.st.conn.send(JSON.stringify( | |
195 | {code:"identity", user:this.st.user, target:data.from})); | |
196 | } | |
5a3da968 | 197 | break; |
1efe1d79 | 198 | } |
dd75774d | 199 | case "askchallenge": |
1efe1d79 | 200 | { |
6855163c | 201 | // Send my current live challenge (if any) |
dd75774d | 202 | const cIdx = this.challenges |
6855163c | 203 | .findIndex(c => c.from.sid == this.st.user.sid && c.type == "live"); |
dd75774d BA |
204 | if (cIdx >= 0) |
205 | { | |
206 | const c = this.challenges[cIdx]; | |
207 | const myChallenge = | |
208 | { | |
81d9ce72 BA |
209 | // Minimal challenge informations: (from not required) |
210 | to: c.to, | |
211 | fen: c.fen, | |
212 | vid: c.vid, | |
213 | timeControl: c.timeControl | |
dd75774d BA |
214 | }; |
215 | this.st.conn.send(JSON.stringify({code:"challenge", | |
1efe1d79 | 216 | challenge:myChallenge, target:data.from})); |
81d9ce72 BA |
217 | } |
218 | break; | |
1efe1d79 | 219 | } |
81d9ce72 | 220 | case "askgame": |
1efe1d79 | 221 | { |
dd75774d | 222 | // TODO: Send my current live game (if any): variant, players, movesCount |
81d9ce72 | 223 | break; |
1efe1d79 | 224 | } |
5a3da968 | 225 | case "identity": |
1efe1d79 | 226 | { |
6855163c BA |
227 | const pIdx = this.players.findIndex(p => p.sid == data.user.sid); |
228 | this.players[pIdx].id = data.user.id; | |
229 | this.players[pIdx].name = data.user.name; | |
5a3da968 | 230 | break; |
1efe1d79 | 231 | } |
dd75774d | 232 | case "challenge": |
1efe1d79 | 233 | { |
dd75774d | 234 | // Receive challenge from some player (+sid) |
6855163c | 235 | let newChall = data.chall; |
bb7dd7db BA |
236 | newChall.type = this.classifyChallenge(data.chall); |
237 | const pIdx = this.players.findIndex(p => p.sid == data.from); | |
6855163c | 238 | newChall.from = this.players[pIdx]; //may be anonymous |
1efe1d79 | 239 | newChall.added = Date.now(); |
bb7dd7db | 240 | newChall.vname = this.getVname(newChall.vid); |
6855163c | 241 | this.challenges.push(newChall); |
81d9ce72 | 242 | break; |
1efe1d79 | 243 | } |
dd75774d | 244 | case "game": |
1efe1d79 | 245 | { |
6855163c BA |
246 | // Receive game from some player (+sid) |
247 | // TODO: receive game summary (update, count moves) | |
248 | // (just players names, time control, and ID + player ID) | |
249 | // NOTE: it may be correspondance (if newgame while we are connected) | |
81d9ce72 | 250 | break; |
1efe1d79 | 251 | } |
b4d619d1 BA |
252 | // * - receive "new game": if live, store locally + redirect to game |
253 | // * If corr: notify "new game has started", give link, but do not redirect | |
9d58ef95 | 254 | case "newgame": |
1efe1d79 | 255 | { |
9d58ef95 BA |
256 | // TODO: new game just started: data contain all informations |
257 | // (id, players, time control, fenStart ...) | |
b4d619d1 BA |
258 | // + cid to remove challenge from list |
259 | break; | |
1efe1d79 | 260 | } |
b4d619d1 | 261 | // * - receive "accept/withdraw/cancel challenge": apply action to challenges list |
9d58ef95 | 262 | case "acceptchallenge": |
1efe1d79 | 263 | { |
bb7dd7db BA |
264 | // Someone accept an open (or targeted) challenge |
265 | // TODO: keep SIDs, since we need them to notify newgame after chall is complete | |
1efe1d79 BA |
266 | const cIdx = this.challenges.findIndex(c => c.id == data.cid); |
267 | let players = this.challenges[cIdx].to; | |
bb7dd7db | 268 | const pIdx = this.players.findIndex(p => p.sid == data.from); |
1efe1d79 BA |
269 | for (let i=0; i<players.length; i++) |
270 | { | |
271 | if (!players[i]) | |
272 | { | |
273 | players[i] = this.players[pIdx].name; | |
274 | break; | |
275 | } | |
276 | } | |
bb7dd7db BA |
277 | // TODO: if challenge is complete, launch game |
278 | //this.newGame(data.challenge, data.user); //user.id et user.name | |
9d58ef95 | 279 | break; |
1efe1d79 | 280 | } |
9d58ef95 | 281 | case "withdrawchallenge": |
1efe1d79 | 282 | { |
9d58ef95 BA |
283 | const cIdx = this.challenges.findIndex(c => c.id == data.cid); |
284 | let chall = this.challenges[cIdx] | |
285 | ArrayFun.remove(chall.players, p => p.id == data.uid); | |
286 | chall.players.push({id:0, name:""}); | |
287 | break; | |
1efe1d79 | 288 | } |
bb7dd7db BA |
289 | case "refusechallenge": |
290 | { | |
291 | // TODO: show "player XXX refused challenge", and | |
292 | // remove challenge from list. | |
293 | break; | |
294 | } | |
1efe1d79 BA |
295 | case "deletechallenge": |
296 | { | |
9d58ef95 BA |
297 | ArrayFun.remove(this.challenges, c => c.id == data.cid); |
298 | break; | |
1efe1d79 | 299 | } |
6855163c BA |
300 | // TODO: distinguish hallConnect and gameConnect ? |
301 | // Or global variable players | |
302 | // + game variable: "observers" | |
b4d619d1 | 303 | case "connect": |
6855163c | 304 | // * - receive "player connect": send our current challenge (to him or global) |
b4d619d1 | 305 | // * Also send all our games (live - max 1 - and corr) [in web worker ?] |
1efe1d79 | 306 | { |
5a3da968 BA |
307 | this.players.push({name:"", id:0, sid:data.sid}); |
308 | this.st.conn.send(JSON.stringify({code:"askidentity", target:data.sid})); | |
9d58ef95 | 309 | break; |
1efe1d79 | 310 | } |
b4d619d1 BA |
311 | // * - receive "player disconnect": remove from players list |
312 | case "disconnect": | |
1efe1d79 | 313 | { |
5a3da968 | 314 | ArrayFun.remove(this.players, p => p.sid == data.sid); |
03608482 BA |
315 | // TODO: also remove all challenges sent by this player, |
316 | // and all live games where he plays and no other opponent is online | |
9d58ef95 | 317 | break; |
1efe1d79 | 318 | } |
9d58ef95 BA |
319 | } |
320 | }, | |
fb54f098 | 321 | showGame: function(game) { |
5b020e73 BA |
322 | // NOTE: if we are an observer, the game will be found in main games list |
323 | // (sent by connected remote players) | |
b4d619d1 | 324 | // TODO: game path ? /vname/gameId seems better |
6855163c | 325 | this.$router.push("/" + game.id); |
fb54f098 | 326 | }, |
b4d619d1 BA |
327 | tryChallenge: function(player) { |
328 | if (player.id == 0) | |
329 | return; //anonymous players cannot be challenged | |
81d9ce72 | 330 | this.newchallenge.to[0] = player.name; |
b4d619d1 | 331 | doClick("modalNewgame"); |
fb54f098 | 332 | }, |
bb7dd7db | 333 | // * - accept challenge (corr or live) --> send info to challenge creator |
b4d619d1 BA |
334 | // * - cancel challenge (click on sent challenge) --> send info to all concerned players |
335 | // * - withdraw from challenge (if >= 3 players and previously accepted) | |
bb7dd7db BA |
336 | // * --> send info to challenge creator |
337 | // * - refuse challenge: send "refuse" to challenge sender, and "delete" to others | |
b4d619d1 BA |
338 | // * - prepare and start new game (if challenge is full after acceptation) |
339 | // * --> include challenge ID (so that opponents can delete the challenge too) | |
bb7dd7db | 340 | clickChallenge: function(c) { |
81d9ce72 | 341 | // TODO: also correspondance case (send to server) |
bb7dd7db | 342 | if (!!c.accepted) |
fb54f098 BA |
343 | { |
344 | // It's a multiplayer challenge I accepted: withdraw | |
bb7dd7db BA |
345 | this.sendSomethingTo(c.from.sid, "withdrawchallenge", |
346 | {cid:c.id, user:this.st.user.sid}); | |
347 | c.accepted = false; | |
fb54f098 | 348 | } |
bb7dd7db | 349 | else if (c.from.sid == this.st.user.sid) //it's my challenge: cancel it |
fb54f098 | 350 | { |
bb7dd7db BA |
351 | this.sendSomethingTo(c.to, "deletechallenge", {cid:c.id}); |
352 | ArrayFun.remove(this.challenges, ch => ch.id == c.id); | |
fb54f098 | 353 | } |
bb7dd7db | 354 | else //accept (or refuse) a challenge |
fb54f098 | 355 | { |
bb7dd7db BA |
356 | c.accepted = true; |
357 | if (!!c.to[0]) | |
358 | { | |
359 | // TODO: if special FEN, show diagram after loading variant | |
360 | c.accepted = confirm("Accept challenge?"); | |
361 | } | |
362 | this.sendSomethingTo(c.from.sid, | |
363 | (c.accepted ? "accept" : "refuse") + "challenge", {cid: c.id}); | |
364 | if (!c.accepted) | |
365 | ArrayFun.remove(this.challenges, ch => ch.id == c.id); | |
fb54f098 | 366 | } |
fb54f098 | 367 | }, |
b4d619d1 BA |
368 | // newGame: function(chall, user) { |
369 | // const fen = chall.fen || V.GenRandInitFen(); | |
370 | // const game = {}; //TODO: fen, players, time ... | |
371 | // //setStorage(game); //TODO | |
372 | // game.players.forEach(p => { //...even if game is by corr (could be played live, why not...) | |
373 | // this.conn.send( | |
374 | // JSON.stringify({code:"newgame", oppid:p.id, game:game})); | |
375 | // }); | |
376 | // if (this.settings.sound >= 1) | |
377 | // new Audio("/sounds/newgame.mp3").play().catch(err => {}); | |
378 | // }, | |
bb7dd7db BA |
379 | getVname: function(vid) { |
380 | const vIdx = this.st.variants.findIndex(v => v.id == vid); | |
381 | return this.st.variants[vIdx].name; | |
382 | }, | |
383 | sendSomethingTo: function(to, code, obj, warnDisconnected) { | |
384 | const doSend = (code, obj, sid) => { | |
385 | this.st.conn.send(JSON.stringify(Object.assign( | |
386 | {}, | |
387 | {code: code}, | |
388 | obj, | |
389 | {target: sid} | |
390 | ))); | |
391 | }; | |
392 | const getSid = (pname) => { | |
393 | const pIdx = this.players.findIndex(pl => pl.name == pname); | |
394 | if (!!warnDisconnected && ctype == "live" && pIdx === -1) | |
395 | alert("Warning: " + p.name + " is not connected"); | |
396 | return this.players[pIdx].sid; | |
397 | }; | |
398 | if (!Array.isArray(to)) //pass sid directly | |
399 | doSend(code, obj, to); | |
400 | else if (!!to[0]) | |
401 | { | |
402 | // Challenge with targeted players | |
403 | to.forEach(pname => { doSend(code, obj, getSid(pname)); }); | |
404 | } | |
405 | else | |
406 | { | |
407 | // Open challenge: send to all connected players (except us) | |
408 | this.players.forEach(p => { | |
409 | if (p.sid != this.st.user.sid) //only sid is always set | |
410 | doSend(code, obj, p.sid); | |
411 | }); | |
412 | } | |
413 | }, | |
b4d619d1 | 414 | // Send new challenge (corr or live, cf. time control), with button or click on player |
9d58ef95 | 415 | newChallenge: async function() { |
8ef2edfa | 416 | // TODO: put this "load variant" block elsewhere |
bb7dd7db | 417 | const vname = this.getVname(this.newchallenge.vid); |
1efe1d79 BA |
418 | const vModule = await import("@/variants/" + vname + ".js"); |
419 | window.V = vModule.VariantRules; | |
9d58ef95 BA |
420 | const error = checkChallenge(this.newchallenge); |
421 | if (!!error) | |
422 | return alert(error); | |
1efe1d79 BA |
423 | const ctype = this.classifyChallenge(this.newchallenge); |
424 | const cto = this.newchallenge.to.slice(0, this.newchallenge.nbPlayers); | |
bb7dd7db | 425 | // NOTE: "from" information is not required here |
1efe1d79 | 426 | let chall = |
dd75774d | 427 | { |
dd75774d | 428 | fen: this.newchallenge.fen || V.GenRandInitFen(), |
1efe1d79 | 429 | to: cto, |
5578a7bf | 430 | timeControl: this.newchallenge.timeControl, |
1efe1d79 | 431 | vid: this.newchallenge.vid, |
5578a7bf | 432 | }; |
1efe1d79 BA |
433 | const finishAddChallenge = (cid) => { |
434 | chall.id = cid || "c" + getRandString(); | |
435 | // Send challenge to peers | |
bb7dd7db | 436 | this.sendSomethingTo(cto, "challenge", {chall:chall}, "warnDisconnected"); |
1efe1d79 | 437 | chall.added = Date.now(); |
bb7dd7db BA |
438 | chall.type = ctype; |
439 | chall.vname = vname; | |
440 | chall.from = this.st.user; | |
1efe1d79 | 441 | this.challenges.push(chall); |
b4d619d1 BA |
442 | document.getElementById("modalNewgame").checked = false; |
443 | }; | |
1efe1d79 BA |
444 | const cIdx = this.challenges.findIndex( |
445 | c => c.from.sid == this.st.user.sid && c.type == ctype); | |
446 | if (cIdx >= 0) | |
b4d619d1 | 447 | { |
1efe1d79 | 448 | // Delete current challenge (will be replaced now) |
bb7dd7db | 449 | this.sendSomethingTo(this.challenges[cIdx].to, |
1efe1d79 BA |
450 | "deletechallenge", {cid:this.challenges[cIdx].id}); |
451 | if (ctype == "corr") | |
452 | { | |
453 | ajax( | |
454 | "/challenges", | |
455 | "DELETE", | |
456 | {id: this.challenges[cIdx].id} | |
457 | ); | |
458 | } | |
459 | this.challenges.splice(cIdx, 1); | |
460 | } | |
461 | if (ctype == "live") | |
462 | { | |
463 | // Live challenges have a random ID | |
5578a7bf | 464 | finishAddChallenge(); |
03608482 | 465 | } |
b4d619d1 | 466 | else |
03608482 | 467 | { |
b4d619d1 | 468 | // Correspondance game: send challenge to server |
03608482 | 469 | ajax( |
1efe1d79 | 470 | "/challenges", |
03608482 | 471 | "POST", |
052d17ea | 472 | chall, |
1efe1d79 | 473 | response => { finishAddChallenge(response.cid); } |
03608482 | 474 | ); |
9d58ef95 | 475 | } |
fb54f098 BA |
476 | }, |
477 | possibleNbplayers: function(nbp) { | |
9d58ef95 | 478 | if (this.newchallenge.vid == 0) |
fb54f098 | 479 | return false; |
85e5b5c1 | 480 | const variants = this.st.variants; |
fb54f098 | 481 | const idxInVariants = |
9d58ef95 | 482 | variants.findIndex(v => v.id == this.newchallenge.vid); |
fb54f098 BA |
483 | return NbPlayers[variants[idxInVariants].name].includes(nbp); |
484 | }, | |
1efe1d79 BA |
485 | newGame: function(cid) { |
486 | // TODO: don't forget to send "deletechallenge" message to all concerned players | |
487 | // + setup colors and send game infos to players (message "newgame") | |
488 | }, | |
fb54f098 | 489 | }, |
85e5b5c1 | 490 | }; |
ccd4a2b7 | 491 | </script> |
85e5b5c1 BA |
492 | |
493 | <style lang="sass"> | |
494 | // TODO | |
495 | </style> |