Complete translations
[vchess.git] / public / javascripts / components / game.js
CommitLineData
92342261 1// Game logic on a variant page
1d184b4c 2Vue.component('my-game', {
c794dbb8 3 props: ["problem"],
1d184b4c
BA
4 data: function() {
5 return {
6 vr: null, //object to check moves, store them, FEN..
7 mycolor: "w",
8 possibleMoves: [], //filled after each valid click/dragstart
92342261 9 choices: [], //promotion pieces, or checkered captures... (as moves)
1d184b4c
BA
10 start: {}, //pixels coordinates + id of starting square (click or drag)
11 selectedPiece: null, //moving piece (or clicked piece)
92342261 12 conn: null, //socket connection
dfb4afc1 13 score: "*", //'*' means 'unfinished'
3a609580
BA
14 mode: "idle", //human, chat, friend, problem, computer or idle (if not playing)
15 myid: "", //our ID, always set
1d184b4c 16 oppid: "", //opponent ID in case of HH game
56a683cd 17 gameId: "", //useful if opponent started other human games after we disconnected
e6dcb115 18 myname: localStorage["username"] || "anonymous",
3a609580
BA
19 oppName: "anonymous", //opponent name, revealed after a game (if provided)
20 chats: [], //chat messages after human game
1d184b4c 21 oppConnected: false,
186516b8 22 seek: false,
762b7c9c 23 fenStart: "",
4b5fe306 24 incheck: [],
3840e240 25 pgnTxt: "",
e6dcb115
BA
26 hints: (!localStorage["hints"] ? true : localStorage["hints"] === "1"),
27 color: localStorage["color"] || "lichess", //lichess, chesscom or chesstempo
a897b421 28 // sound level: 0 = no sound, 1 = sound only on newgame, 2 = always
e6dcb115 29 sound: parseInt(localStorage["sound"] || "2"),
643479f8
BA
30 // Web worker to play computer moves without freezing interface:
31 compWorker: new Worker('/javascripts/playCompMove.js'),
32 timeStart: undefined, //time when computer starts thinking
1d184b4c
BA
33 };
34 },
c794dbb8 35 watch: {
3a609580 36 problem: function(p) {
c794dbb8 37 // 'problem' prop changed: update board state
1a788978 38 this.newGame("problem", p.fen, V.ParseFen(p.fen).turn);
c794dbb8
BA
39 },
40 },
1d184b4c 41 render(h) {
0b7d99ec 42 const [sizeX,sizeY] = [V.size.x,V.size.y];
1d184b4c
BA
43 // Precompute hints squares to facilitate rendering
44 let hintSquares = doubleArray(sizeX, sizeY, false);
45 this.possibleMoves.forEach(m => { hintSquares[m.end.x][m.end.y] = true; });
4b5fe306
BA
46 // Also precompute in-check squares
47 let incheckSq = doubleArray(sizeX, sizeY, false);
48 this.incheck.forEach(sq => { incheckSq[sq[0]][sq[1]] = true; });
1d184b4c 49 let elementArray = [];
2748531f 50 let actionArray = [];
1dcf83e8
BA
51 actionArray.push(
52 h('button',
53 {
54 on: { click: this.clickGameSeek },
247356cd 55 attrs: { "aria-label": translations['New online game'] },
1dcf83e8
BA
56 'class': {
57 "tooltip": true,
a5d56686 58 "play": true,
1dcf83e8
BA
59 "seek": this.seek,
60 "playing": this.mode == "human",
a5d56686 61 "spaceright": true,
1d184b4c 62 },
1dcf83e8
BA
63 },
64 [h('i', { 'class': { "material-icons": true } }, "accessibility")])
65 );
3a609580 66 if (["idle","chat","computer"].includes(this.mode))
2748531f
BA
67 {
68 actionArray.push(
69 h('button',
1d184b4c 70 {
f3802fcd 71 on: { click: this.clickComputerGame },
247356cd 72 attrs: { "aria-label": translations['New game versus computer'] },
186516b8
BA
73 'class': {
74 "tooltip":true,
a5d56686 75 "play": true,
2748531f 76 "playing": this.mode == "computer",
a5d56686 77 "spaceright": true,
186516b8 78 },
1d184b4c
BA
79 },
80 [h('i', { 'class': { "material-icons": true } }, "computer")])
2748531f
BA
81 );
82 }
3a609580 83 if (["idle","chat","friend"].includes(this.mode))
2748531f
BA
84 {
85 actionArray.push(
86 h('button',
87 {
88 on: { click: this.clickFriendGame },
247356cd 89 attrs: { "aria-label": translations['Analysis mode'] },
2748531f
BA
90 'class': {
91 "tooltip":true,
a5d56686 92 "play": true,
2748531f 93 "playing": this.mode == "friend",
a5d56686 94 "spaceright": true,
2748531f
BA
95 },
96 },
97 [h('i', { 'class': { "material-icons": true } }, "people")])
98 );
99 }
1d184b4c
BA
100 if (!!this.vr)
101 {
bdb1f12d
BA
102 const square00 = document.getElementById("sq-0-0");
103 const squareWidth = !!square00
104 ? parseFloat(window.getComputedStyle(square00).width.slice(0,-2))
105 : 0;
88af03d2 106 const settingsBtnElt = document.getElementById("settingsBtn");
a5d56686
BA
107 const settingsStyle = !!settingsBtnElt
108 ? window.getComputedStyle(settingsBtnElt)
109 : {width:"46px", height:"26px"};
110 const [indicWidth,indicHeight] = //[44,24];
111 [
112 // NOTE: -2 for border
113 parseFloat(settingsStyle.width.slice(0,-2)) - 2,
114 parseFloat(settingsStyle.height.slice(0,-2)) - 2
115 ];
116 let aboveBoardElts = [];
56a683cd 117 if (["chat","human"].includes(this.mode))
1d184b4c 118 {
1a788978 119 const connectedIndic = h(
1d184b4c
BA
120 'div',
121 {
122 "class": {
bdb1f12d 123 "indic-left": true,
1d184b4c
BA
124 "connected": this.oppConnected,
125 "disconnected": !this.oppConnected,
126 },
bdb1f12d
BA
127 style: {
128 "width": indicWidth + "px",
a5d56686 129 "height": indicHeight + "px",
bdb1f12d 130 },
1d184b4c
BA
131 }
132 );
a5d56686 133 aboveBoardElts.push(connectedIndic);
1d184b4c 134 }
5e27be42
BA
135 if (this.mode == "chat")
136 {
137 const chatButton = h(
138 'button',
3a609580 139 {
5e27be42
BA
140 on: { click: this.startChat },
141 attrs: {
247356cd 142 "aria-label": translations['Start chat'],
5e27be42 143 "id": "chatBtn",
3a609580 144 },
5e27be42
BA
145 'class': {
146 "tooltip": true,
a5d56686
BA
147 "play": true,
148 "above-board": true,
5e27be42 149 "indic-left": true,
5e27be42
BA
150 },
151 },
152 [h('i', { 'class': { "material-icons": true } }, "chat")]
153 );
a5d56686 154 aboveBoardElts.push(chatButton);
5e27be42
BA
155 }
156 else if (this.mode == "computer")
157 {
158 const clearButton = h(
159 'button',
56a683cd 160 {
5e27be42
BA
161 on: { click: this.clearComputerGame },
162 attrs: {
247356cd 163 "aria-label": translations['Clear game versus computer'],
5e27be42
BA
164 "id": "clearBtn",
165 },
166 'class': {
167 "tooltip": true,
a5d56686
BA
168 "play": true,
169 "above-board": true,
5e27be42 170 "indic-left": true,
5e27be42
BA
171 },
172 },
173 [h('i', { 'class': { "material-icons": true } }, "clear")]
174 );
a5d56686 175 aboveBoardElts.push(clearButton);
5e27be42 176 }
1a788978 177 const turnIndic = h(
bdb1f12d
BA
178 'div',
179 {
180 "class": {
bdb1f12d
BA
181 "indic-right": true,
182 "white-turn": this.vr.turn=="w",
183 "black-turn": this.vr.turn=="b",
184 },
185 style: {
186 "width": indicWidth + "px",
a5d56686 187 "height": indicHeight + "px",
bdb1f12d
BA
188 },
189 }
190 );
a5d56686 191 aboveBoardElts.push(turnIndic);
1a788978 192 const settingsBtn = h(
3ed62725
BA
193 'button',
194 {
88af03d2
BA
195 on: { click: this.showSettings },
196 attrs: {
247356cd 197 "aria-label": translations['Settings'],
88af03d2
BA
198 "id": "settingsBtn",
199 },
3ed62725 200 'class': {
88af03d2 201 "tooltip": true,
a5d56686
BA
202 "play": true,
203 "above-board": true,
3a609580 204 "indic-right": true,
3ed62725
BA
205 },
206 },
88af03d2 207 [h('i', { 'class': { "material-icons": true } }, "settings")]
3ed62725 208 );
a5d56686
BA
209 aboveBoardElts.push(settingsBtn);
210 elementArray.push(
211 h('div',
212 { "class": { "aboveboard-wrapper": true } },
213 aboveBoardElts
214 )
215 );
1a788978
BA
216 if (this.mode == "problem")
217 {
218 // Show problem instructions
219 elementArray.push(
220 h('div',
221 {
222 attrs: { id: "instructions-div" },
3a609580
BA
223 "class": {
224 "clearer": true,
225 "section-content": true,
226 },
1a788978
BA
227 },
228 [
229 h('p',
230 {
231 attrs: { id: "problem-instructions" },
232 domProps: { innerHTML: this.problem.instructions }
233 }
234 )
235 ]
236 )
237 );
238 }
239 const choices = h('div',
1d184b4c
BA
240 {
241 attrs: { "id": "choices" },
242 'class': { 'row': true },
243 style: {
1d184b4c
BA
244 "display": this.choices.length>0?"block":"none",
245 "top": "-" + ((sizeY/2)*squareWidth+squareWidth/2) + "px",
246 "width": (this.choices.length * squareWidth) + "px",
247 "height": squareWidth + "px",
248 },
249 },
250 this.choices.map( m => { //a "choice" is a move
251 return h('div',
252 {
c94bc812
BA
253 'class': {
254 'board': true,
8a196305 255 ['board'+sizeY]: true,
c94bc812 256 },
1d184b4c
BA
257 style: {
258 'width': (100/this.choices.length) + "%",
259 'padding-bottom': (100/this.choices.length) + "%",
260 },
261 },
262 [h('img',
263 {
4b353936
BA
264 attrs: { "src": '/images/pieces/' +
265 VariantRules.getPpath(m.appear[0].c+m.appear[0].p) + '.svg' },
c94bc812 266 'class': { 'choice-piece': true },
2807f530
BA
267 on: {
268 "click": e => { this.play(m); this.choices=[]; },
269 // NOTE: add 'touchstart' event to fix a problem on smartphones
270 "touchstart": e => { this.play(m); this.choices=[]; },
271 },
1d184b4c
BA
272 })
273 ]
274 );
275 })
276 );
277 // Create board element (+ reserves if needed by variant or mode)
130db3ef
BA
278 const lm = this.vr.lastMove;
279 const showLight = this.hints &&
3a609580 280 (!["idle","chat"].includes(this.mode) || this.cursor==this.vr.moves.length);
1a788978 281 const gameDiv = h('div',
1d184b4c 282 {
a5d56686
BA
283 'class': {
284 'game': true,
285 'clearer': true,
286 },
1d184b4c
BA
287 },
288 [_.range(sizeX).map(i => {
dfec5327 289 let ci = (this.mycolor=='w' ? i : sizeX-i-1);
1d184b4c
BA
290 return h(
291 'div',
292 {
293 'class': {
294 'row': true,
295 },
296 style: { 'opacity': this.choices.length>0?"0.5":"1" },
297 },
298 _.range(sizeY).map(j => {
dfec5327 299 let cj = (this.mycolor=='w' ? j : sizeY-j-1);
1d184b4c
BA
300 let elems = [];
301 if (this.vr.board[ci][cj] != VariantRules.EMPTY)
302 {
303 elems.push(
304 h(
305 'img',
306 {
307 'class': {
308 'piece': true,
4b353936
BA
309 'ghost': !!this.selectedPiece
310 && this.selectedPiece.parentNode.id == "sq-"+ci+"-"+cj,
1d184b4c
BA
311 },
312 attrs: {
4b353936
BA
313 src: "/images/pieces/" +
314 VariantRules.getPpath(this.vr.board[ci][cj]) + ".svg",
1d184b4c
BA
315 },
316 }
317 )
318 );
319 }
88af03d2 320 if (this.hints && hintSquares[ci][cj])
1d184b4c
BA
321 {
322 elems.push(
323 h(
324 'img',
325 {
326 'class': {
327 'mark-square': true,
328 },
329 attrs: {
330 src: "/images/mark.svg",
331 },
332 }
333 )
334 );
335 }
1d184b4c
BA
336 return h(
337 'div',
338 {
339 'class': {
340 'board': true,
8a196305 341 ['board'+sizeY]: true,
3300df38
BA
342 'light-square': (i+j)%2==0,
343 'dark-square': (i+j)%2==1,
a897b421 344 [this.color]: true,
3300df38
BA
345 'highlight': showLight && !!lm && _.isMatch(lm.end, {x:ci,y:cj}),
346 'incheck': showLight && incheckSq[ci][cj],
1d184b4c
BA
347 },
348 attrs: {
349 id: this.getSquareId({x:ci,y:cj}),
350 },
351 },
352 elems
353 );
354 })
355 );
356 }), choices]
357 );
3a609580 358 if (!["idle","chat"].includes(this.mode))
204e289b
BA
359 {
360 actionArray.push(
361 h('button',
362 {
363 on: { click: this.resign },
247356cd 364 attrs: { "aria-label": translations['Resign'] },
204e289b
BA
365 'class': {
366 "tooltip":true,
a5d56686 367 "play": true,
204e289b 368 },
0706ea91 369 },
204e289b
BA
370 [h('i', { 'class': { "material-icons": true } }, "flag")])
371 );
372 }
e64084da
BA
373 else if (this.vr.moves.length > 0)
374 {
375 // A game finished, and another is not started yet: allow navigation
376 actionArray = actionArray.concat([
377 h('button',
378 {
e64084da 379 on: { click: e => this.undo() },
247356cd 380 attrs: { "aria-label": translations['Undo'] },
92342261 381 "class": {
a5d56686 382 "play": true,
80b15df1 383 "spaceleft": true,
92342261 384 },
e64084da
BA
385 },
386 [h('i', { 'class': { "material-icons": true } }, "fast_rewind")]),
387 h('button',
388 {
389 on: { click: e => this.play() },
247356cd 390 attrs: { "aria-label": translations['Play'] },
a5d56686
BA
391 "class": {
392 "play": true,
393 "spaceleft": true,
394 },
e64084da
BA
395 },
396 [h('i', { 'class': { "material-icons": true } }, "fast_forward")]),
397 ]
398 );
399 }
b5fb8e69 400 if (["friend","problem"].includes(this.mode))
2748531f
BA
401 {
402 actionArray = actionArray.concat(
403 [
404 h('button',
405 {
2748531f 406 on: { click: this.undoInGame },
d289b043 407 attrs: { "aria-label": translations['Undo'] },
92342261 408 "class": {
a5d56686 409 "play": true,
80b15df1 410 "spaceleft": true,
92342261 411 },
2748531f
BA
412 },
413 [h('i', { 'class': { "material-icons": true } }, "undo")]
414 ),
415 h('button',
416 {
417 on: { click: () => { this.mycolor = this.vr.getOppCol(this.mycolor) } },
247356cd 418 attrs: { "aria-label": translations['Flip'] },
a5d56686
BA
419 "class": {
420 "play": true,
421 "spaceleft": true,
422 },
2748531f
BA
423 },
424 [h('i', { 'class': { "material-icons": true } }, "cached")]
425 ),
426 ]);
427 }
1d184b4c 428 elementArray.push(gameDiv);
5c42c64e 429 if (!!this.vr.reserve)
1221ac47 430 {
6752407b 431 const shiftIdx = (this.mycolor=="w" ? 0 : 1);
5c42c64e 432 let myReservePiecesArray = [];
1221ac47
BA
433 for (let i=0; i<VariantRules.RESERVE_PIECES.length; i++)
434 {
5c42c64e
BA
435 myReservePiecesArray.push(h('div',
436 {
a5d56686 437 'class': {'board':true, ['board'+sizeY+'-reserve']:true},
6752407b 438 attrs: { id: this.getSquareId({x:sizeX+shiftIdx,y:i}) }
5c42c64e
BA
439 },
440 [
441 h('img',
1221ac47 442 {
a5d56686 443 'class': {"piece":true, "reserve":true},
1221ac47
BA
444 attrs: {
445 "src": "/images/pieces/" +
446 this.vr.getReservePpath(this.mycolor,i) + ".svg",
1221ac47 447 }
5c42c64e
BA
448 }),
449 h('sup',
92342261 450 {"class": { "reserve-count": true } },
5c42c64e
BA
451 [ this.vr.reserve[this.mycolor][VariantRules.RESERVE_PIECES[i]] ]
452 )
453 ]));
454 }
455 let oppReservePiecesArray = [];
456 const oppCol = this.vr.getOppCol(this.mycolor);
457 for (let i=0; i<VariantRules.RESERVE_PIECES.length; i++)
458 {
459 oppReservePiecesArray.push(h('div',
460 {
a5d56686 461 'class': {'board':true, ['board'+sizeY+'-reserve']:true},
6752407b 462 attrs: { id: this.getSquareId({x:sizeX+(1-shiftIdx),y:i}) }
5c42c64e
BA
463 },
464 [
465 h('img',
466 {
a5d56686 467 'class': {"piece":true, "reserve":true},
5c42c64e
BA
468 attrs: {
469 "src": "/images/pieces/" +
470 this.vr.getReservePpath(oppCol,i) + ".svg",
471 }
472 }),
473 h('sup',
92342261 474 {"class": { "reserve-count": true } },
5c42c64e
BA
475 [ this.vr.reserve[oppCol][VariantRules.RESERVE_PIECES[i]] ]
476 )
477 ]));
1221ac47 478 }
5c42c64e
BA
479 let reserves = h('div',
480 {
92342261
BA
481 'class':{
482 'game': true,
483 "reserve-div": true,
484 },
5c42c64e
BA
485 },
486 [
487 h('div',
488 {
92342261
BA
489 'class': {
490 'row': true,
491 "reserve-row-1": true,
492 },
5c42c64e
BA
493 },
494 myReservePiecesArray
495 ),
1221ac47
BA
496 h('div',
497 { 'class': { 'row': true }},
5c42c64e 498 oppReservePiecesArray
1221ac47 499 )
5c42c64e 500 ]
1221ac47 501 );
5c42c64e 502 elementArray.push(reserves);
1221ac47 503 }
1d184b4c
BA
504 const modalEog = [
505 h('input',
506 {
ecf44502 507 attrs: { "id": "modal-eog", type: "checkbox" },
1d184b4c
BA
508 "class": { "modal": true },
509 }),
510 h('div',
511 {
da06a6eb 512 attrs: { "role": "dialog", "aria-labelledby": "eogMessage" },
1d184b4c
BA
513 },
514 [
515 h('div',
516 {
247356cd
BA
517 "class": {
518 "card": true,
519 "smallpad": true,
520 "small-modal": true,
521 "text-center": true,
522 },
1d184b4c 523 },
01a135e2
BA
524 [
525 h('label',
526 {
527 attrs: { "for": "modal-eog" },
528 "class": { "modal-close": true },
529 }
530 ),
531 h('h3',
532 {
da06a6eb 533 attrs: { "id": "eogMessage" },
01a135e2 534 "class": { "section": true },
1a788978 535 domProps: { innerHTML: this.endgameMessage },
01a135e2
BA
536 }
537 )
538 ]
1d184b4c
BA
539 )
540 ]
541 )
542 ];
543 elementArray = elementArray.concat(modalEog);
544 }
2748531f
BA
545 const modalFenEdit = [
546 h('input',
547 {
548 attrs: { "id": "modal-fenedit", type: "checkbox" },
549 "class": { "modal": true },
550 }),
551 h('div',
552 {
da06a6eb 553 attrs: { "role": "dialog", "aria-labelledby": "titleFenedit" },
2748531f
BA
554 },
555 [
556 h('div',
557 {
558 "class": { "card": true, "smallpad": true },
559 },
560 [
561 h('label',
562 {
563 attrs: { "id": "close-fenedit", "for": "modal-fenedit" },
564 "class": { "modal-close": true },
565 }
566 ),
567 h('h3',
568 {
da06a6eb 569 attrs: { "id": "titleFenedit" },
2748531f 570 "class": { "section": true },
247356cd 571 domProps: { innerHTML: translations["Position + flags (FEN):"] },
2748531f
BA
572 }
573 ),
574 h('input',
575 {
576 attrs: {
577 "id": "input-fen",
578 type: "text",
579 value: VariantRules.GenRandInitFen(),
580 },
581 }
582 ),
583 h('button',
584 {
585 on: { click:
586 () => {
587 const fen = document.getElementById("input-fen").value;
588 document.getElementById("modal-fenedit").checked = false;
589 this.newGame("friend", fen);
590 }
591 },
247356cd 592 domProps: { innerHTML: translations["Ok"] },
2748531f
BA
593 }
594 ),
595 h('button',
596 {
597 on: { click:
598 () => {
599 document.getElementById("input-fen").value =
600 VariantRules.GenRandInitFen();
601 }
602 },
247356cd 603 domProps: { innerHTML: translations["Random"] },
2748531f
BA
604 }
605 ),
606 ]
607 )
608 ]
609 )
610 ];
611 elementArray = elementArray.concat(modalFenEdit);
88af03d2
BA
612 const modalSettings = [
613 h('input',
614 {
615 attrs: { "id": "modal-settings", type: "checkbox" },
616 "class": { "modal": true },
617 }),
618 h('div',
619 {
da06a6eb 620 attrs: { "role": "dialog", "aria-labelledby": "settingsTitle" },
88af03d2
BA
621 },
622 [
623 h('div',
624 {
625 "class": { "card": true, "smallpad": true },
626 },
627 [
628 h('label',
629 {
630 attrs: { "id": "close-settings", "for": "modal-settings" },
631 "class": { "modal-close": true },
632 }
633 ),
634 h('h3',
635 {
da06a6eb 636 attrs: { "id": "settingsTitle" },
88af03d2 637 "class": { "section": true },
247356cd 638 domProps: { innerHTML: translations["Preferences"] },
88af03d2
BA
639 }
640 ),
12b46d8f
BA
641 h('fieldset',
642 { },
643 [
3a609580
BA
644 h('label',
645 {
646 attrs: { for: "nameSetter" },
247356cd 647 domProps: { innerHTML: translations["My name is..."] },
3a609580
BA
648 },
649 ),
650 h('input',
651 {
652 attrs: {
653 "id": "nameSetter",
654 type: "text",
655 value: this.myname,
656 },
657 on: { "change": this.setMyname },
658 }
659 ),
660 ]
661 ),
662 h('fieldset',
663 { },
664 [
12b46d8f
BA
665 h('label',
666 {
2812515a 667 attrs: { for: "setHints" },
247356cd 668 domProps: { innerHTML: translations["Show hints?"] },
12b46d8f
BA
669 },
670 ),
671 h('input',
672 {
673 attrs: {
674 "id": "setHints",
675 type: "checkbox",
676 checked: this.hints,
677 },
678 on: { "change": this.toggleHints },
679 }
680 ),
681 ]
a897b421 682 ),
12b46d8f
BA
683 h('fieldset',
684 { },
685 [
686 h('label',
687 {
2812515a 688 attrs: { for: "selectColor" },
247356cd 689 domProps: { innerHTML: translations["Board colors"] },
12b46d8f
BA
690 },
691 ),
692 h("select",
693 {
694 attrs: { "id": "selectColor" },
695 on: { "change": this.setColor },
696 },
697 [
698 h("option",
699 {
700 domProps: {
701 "value": "lichess",
247356cd 702 innerHTML: translations["brown"]
12b46d8f
BA
703 },
704 attrs: { "selected": this.color=="lichess" },
705 }
706 ),
707 h("option",
708 {
709 domProps: {
710 "value": "chesscom",
247356cd 711 innerHTML: translations["green"]
12b46d8f
BA
712 },
713 attrs: { "selected": this.color=="chesscom" },
714 }
715 ),
716 h("option",
717 {
718 domProps: {
719 "value": "chesstempo",
247356cd 720 innerHTML: translations["blue"]
12b46d8f
BA
721 },
722 attrs: { "selected": this.color=="chesstempo" },
723 }
724 ),
725 ],
726 ),
727 ]
728 ),
729 h('fieldset',
730 { },
731 [
732 h('label',
733 {
2812515a 734 attrs: { for: "selectSound" },
247356cd 735 domProps: { innerHTML: translations["Play sounds?"] },
12b46d8f
BA
736 },
737 ),
738 h("select",
739 {
740 attrs: { "id": "selectSound" },
741 on: { "change": this.setSound },
742 },
743 [
744 h("option",
745 {
746 domProps: {
747 "value": "0",
247356cd 748 innerHTML: translations["None"]
12b46d8f 749 },
73cbe9de 750 attrs: { "selected": this.sound==0 },
12b46d8f
BA
751 }
752 ),
753 h("option",
754 {
755 domProps: {
756 "value": "1",
247356cd 757 innerHTML: translations["New game"]
12b46d8f 758 },
73cbe9de 759 attrs: { "selected": this.sound==1 },
12b46d8f
BA
760 }
761 ),
762 h("option",
763 {
764 domProps: {
765 "value": "2",
247356cd 766 innerHTML: translations["All"]
12b46d8f 767 },
73cbe9de 768 attrs: { "selected": this.sound==2 },
12b46d8f
BA
769 }
770 ),
771 ],
772 ),
773 ]
a897b421 774 ),
88af03d2
BA
775 ]
776 )
777 ]
778 )
779 ];
780 elementArray = elementArray.concat(modalSettings);
3a609580
BA
781 let chatEltsArray =
782 [
783 h('label',
784 {
785 attrs: { "id": "close-chat", "for": "modal-chat" },
786 "class": { "modal-close": true },
787 }
788 ),
789 h('h3',
790 {
791 attrs: { "id": "titleChat" },
792 "class": { "section": true },
247356cd 793 domProps: { innerHTML: translations["Chat with "] + this.oppName },
3a609580
BA
794 }
795 )
796 ];
797 for (let chat of this.chats)
798 {
799 chatEltsArray.push(
800 h('p',
801 {
802 "class": {
803 "my-chatmsg": chat.author==this.myid,
804 "opp-chatmsg": chat.author==this.oppid,
805 },
806 domProps: { innerHTML: chat.msg }
807 }
808 )
809 );
810 }
811 chatEltsArray = chatEltsArray.concat([
812 h('input',
813 {
814 attrs: {
815 "id": "input-chat",
816 type: "text",
247356cd 817 placeholder: translations["Type here"],
3a609580
BA
818 },
819 on: { keyup: this.trySendChat }, //if key is 'enter'
820 }
821 ),
822 h('button',
823 {
a5d56686 824 attrs: { id: "sendChatBtn"},
3a609580 825 on: { click: this.sendChat },
247356cd 826 domProps: { innerHTML: translations["Send"] },
3a609580
BA
827 }
828 )
829 ]);
830 const modalChat = [
831 h('input',
832 {
833 attrs: { "id": "modal-chat", type: "checkbox" },
834 "class": { "modal": true },
835 }),
836 h('div',
837 {
838 attrs: { "role": "dialog", "aria-labelledby": "titleChat" },
839 },
840 [
841 h('div',
842 {
843 "class": { "card": true, "smallpad": true },
844 },
845 chatEltsArray
846 )
847 ]
848 )
849 ];
850 elementArray = elementArray.concat(modalChat);
1d184b4c
BA
851 const actions = h('div',
852 {
853 attrs: { "id": "actions" },
854 'class': { 'text-center': true },
855 },
856 actionArray
857 );
858 elementArray.push(actions);
1a788978 859 if (this.score != "*" && this.pgnTxt.length > 0)
01a135e2
BA
860 {
861 elementArray.push(
862 h('div',
61a262b2
BA
863 {
864 attrs: { id: "pgn-div" },
865 "class": { "section-content": true },
866 },
01a135e2 867 [
01ca2adc
BA
868 h('a',
869 {
870 attrs: {
871 id: "download",
872 href: "#",
873 }
874 }
875 ),
01a135e2
BA
876 h('p',
877 {
01ca2adc 878 attrs: { id: "pgn-game" },
85be503d
BA
879 domProps: { innerHTML: this.pgnTxt }
880 }
61a262b2
BA
881 ),
882 h('button',
883 {
884 attrs: { "id": "downloadBtn" },
885 on: { click: this.download },
247356cd 886 domProps: { innerHTML: translations["Download game"] },
61a262b2
BA
887 }
888 ),
85be503d
BA
889 ]
890 )
891 );
892 }
893 else if (this.mode != "idle")
894 {
1a788978
BA
895 if (this.mode == "problem")
896 {
897 // Show problem solution (on click)
898 elementArray.push(
899 h('div',
900 {
901 attrs: { id: "solution-div" },
902 "class": { "section-content": true },
903 },
904 [
905 h('h3',
906 {
a5d56686 907 "class": { clickable: true },
247356cd 908 domProps: { innerHTML: translations["Show solution"] },
b5fb8e69 909 on: { click: this.toggleShowSolution },
1a788978
BA
910 }
911 ),
912 h('p',
913 {
914 attrs: { id: "problem-solution" },
915 domProps: { innerHTML: this.problem.solution }
916 }
917 )
918 ]
919 )
920 );
921 }
2748531f 922 // Show current FEN
85be503d
BA
923 elementArray.push(
924 h('div',
61a262b2
BA
925 {
926 attrs: { id: "fen-div" },
927 "class": { "section-content": true },
928 },
85be503d
BA
929 [
930 h('p',
931 {
932 attrs: { id: "fen-string" },
d449ae46
BA
933 domProps: { innerHTML: this.vr.getBaseFen() },
934 "class": { "text-center": true },
01a135e2
BA
935 }
936 )
937 ]
938 )
939 );
940 }
1d184b4c
BA
941 return h(
942 'div',
943 {
944 'class': {
945 "col-sm-12":true,
a5d56686
BA
946 "col-md-10":true,
947 "col-md-offset-1":true,
948 "col-lg-8":true,
949 "col-lg-offset-2":true,
1d184b4c 950 },
dda21a71 951 // NOTE: click = mousedown + mouseup
1d184b4c
BA
952 on: {
953 mousedown: this.mousedown,
954 mousemove: this.mousemove,
955 mouseup: this.mouseup,
ffea77d9
BA
956 touchstart: this.mousedown,
957 touchmove: this.mousemove,
958 touchend: this.mouseup,
1d184b4c
BA
959 },
960 },
961 elementArray
962 );
963 },
1a788978
BA
964 computed: {
965 endgameMessage: function() {
966 let eogMessage = "Unfinished";
967 switch (this.score)
968 {
969 case "1-0":
247356cd 970 eogMessage = translations["White win"];
1a788978
BA
971 break;
972 case "0-1":
247356cd 973 eogMessage = translations["Black win"];
1a788978
BA
974 break;
975 case "1/2":
247356cd 976 eogMessage = translations["Draw"];
1a788978
BA
977 break;
978 }
979 return eogMessage;
980 },
981 },
1d184b4c
BA
982 created: function() {
983 const url = socketUrl;
8ddc00a0
BA
984 const humanContinuation = (localStorage.getItem("variant") === variant);
985 const computerContinuation = (localStorage.getItem("comp-variant") === variant);
986 this.myid = (humanContinuation ? localStorage.getItem("myid") : getRandString());
1d184b4c 987 this.conn = new WebSocket(url + "/?sid=" + this.myid + "&page=" + variant);
d35f20e4 988 const socketOpenListener = () => {
8ddc00a0 989 if (humanContinuation) //game VS human has priority
56a683cd 990 this.continueGame("human");
8ddc00a0 991 else if (computerContinuation)
56a683cd 992 this.continueGame("computer");
1d184b4c 993 };
d35f20e4 994 const socketMessageListener = msg => {
1d184b4c 995 const data = JSON.parse(msg.data);
56a683cd 996 const L = (!!this.vr ? this.vr.moves.length : 0);
1d184b4c
BA
997 switch (data.code)
998 {
3a609580
BA
999 case "oppname":
1000 // Receive opponent's name
1001 this.oppName = data.name;
1002 break;
1003 case "newchat":
1004 // Receive new chat
1005 this.chats.push({msg:data.msg, author:this.oppid});
1006 break;
15c1295a
BA
1007 case "duplicate":
1008 // We opened another tab on the same game
1009 this.mode = "idle";
1010 this.vr = null;
6b5517b4
BA
1011 alert(translations[
1012 "Already playing a game in this variant on another tab!"]);
15c1295a 1013 break;
1d184b4c 1014 case "newgame": //opponent found
92342261
BA
1015 // oppid: opponent socket ID
1016 this.newGame("human", data.fen, data.color, data.oppid);
1d184b4c
BA
1017 break;
1018 case "newmove": //..he played!
1019 this.play(data.move, "animate");
1020 break;
f3802fcd 1021 case "pong": //received if we sent a ping (game still alive on our side)
56a683cd
BA
1022 if (this.gameId != data.gameId)
1023 break; //games IDs don't match: definitely over...
1d184b4c 1024 this.oppConnected = true;
f3802fcd 1025 // Send our "last state" informations to opponent
a29d9d6b 1026 this.conn.send(JSON.stringify({
56a683cd
BA
1027 code: "lastate",
1028 oppid: this.oppid,
1029 gameId: this.gameId,
1030 lastMove: (L>0?this.vr.moves[L-1]:undefined),
1031 movesCount: L,
a29d9d6b 1032 }));
1d184b4c 1033 break;
56a683cd
BA
1034 case "lastate": //got opponent infos about last move
1035 if (this.gameId != data.gameId)
1036 break; //games IDs don't match: nothing we can do...
1037 // OK, opponent still in game (which might be over)
1038 if (this.mode != "human")
a29d9d6b 1039 {
56a683cd 1040 // We finished the game (any result possible)
a29d9d6b 1041 this.conn.send(JSON.stringify({
56a683cd
BA
1042 code: "lastate",
1043 oppid: data.oppid,
1044 gameId: this.gameId,
1045 score: this.score,
a29d9d6b
BA
1046 }));
1047 }
56a683cd
BA
1048 else if (!!data.score) //opponent finished the game
1049 this.endGame(data.score);
1050 else if (data.movesCount < L)
a29d9d6b
BA
1051 {
1052 // We must tell last move to opponent
a29d9d6b 1053 this.conn.send(JSON.stringify({
56a683cd
BA
1054 code: "lastate",
1055 oppid: this.oppid,
1056 lastMove: this.vr.moves[L-1],
1057 movesCount: L,
a29d9d6b
BA
1058 }));
1059 }
56a683cd 1060 else if (data.movesCount > L) //just got last move from him
a29d9d6b 1061 this.play(data.lastMove, "animate");
ecf44502 1062 break;
1d184b4c 1063 case "resign": //..you won!
dfb4afc1 1064 this.endGame(this.mycolor=="w"?"1-0":"0-1");
1d184b4c 1065 break;
f3802fcd 1066 // TODO: also use (dis)connect info to count online players?
1d184b4c
BA
1067 case "connect":
1068 case "disconnect":
3a609580 1069 if (["human","chat"].includes(this.mode) && this.oppid == data.id)
1d184b4c 1070 this.oppConnected = (data.code == "connect");
aa78cc74 1071 if (this.oppConnected && this.mode == "chat")
3a609580
BA
1072 {
1073 // Send our name to the opponent, in case of he hasn't it
1074 this.conn.send(JSON.stringify({
1075 code:"myname", name:this.myname, oppid: this.oppid}));
1076 }
1d184b4c
BA
1077 break;
1078 }
1079 };
d35f20e4 1080 const socketCloseListener = () => {
d35f20e4
BA
1081 this.conn = new WebSocket(url + "/?sid=" + this.myid + "&page=" + variant);
1082 this.conn.addEventListener('open', socketOpenListener);
1083 this.conn.addEventListener('message', socketMessageListener);
1084 this.conn.addEventListener('close', socketCloseListener);
1085 };
1086 this.conn.onopen = socketOpenListener;
1087 this.conn.onmessage = socketMessageListener;
1088 this.conn.onclose = socketCloseListener;
e64084da
BA
1089 // Listen to keyboard left/right to navigate in game
1090 document.onkeydown = event => {
3a609580
BA
1091 if (["idle","chat"].includes(this.mode) &&
1092 !!this.vr && this.vr.moves.length > 0 && [37,39].includes(event.keyCode))
e64084da
BA
1093 {
1094 event.preventDefault();
1095 if (event.keyCode == 37) //Back
1096 this.undo();
1097 else //Forward (39)
1098 this.play();
1099 }
1100 };
643479f8
BA
1101 // Computer moves web worker logic:
1102 this.compWorker.postMessage(["scripts",variant]);
1103 const self = this;
1104 this.compWorker.onmessage = function(e) {
aa78cc74
BA
1105 let compMove = e.data;
1106 compMove.computer = true; //TODO: imperfect attempt to avoid ghost move
643479f8
BA
1107 // (first move) HACK: small delay to avoid selecting elements
1108 // before they appear on page:
1109 const delay = Math.max(500-(Date.now()-self.timeStart), 0);
1110 setTimeout(() => {
aa78cc74 1111 if (self.mode == "computer") //warning: mode could have changed!
643479f8
BA
1112 self.play(compMove, "animate")
1113 }, delay);
1114 }
1d184b4c
BA
1115 },
1116 methods: {
3a609580
BA
1117 setMyname: function(e) {
1118 this.myname = e.target.value;
e6dcb115 1119 localStorage["username"] = this.myname;
3a609580
BA
1120 },
1121 trySendChat: function(e) {
1122 if (e.keyCode == 13) //'enter' key
1123 this.sendChat();
1124 },
1125 sendChat: function() {
1126 let chatInput = document.getElementById("input-chat");
1127 const chatTxt = chatInput.value;
1128 chatInput.value = "";
1129 this.chats.push({msg:chatTxt, author:this.myid});
1130 this.conn.send(JSON.stringify({
1131 code:"newchat", oppid: this.oppid, msg: chatTxt}));
1132 },
1a788978
BA
1133 toggleShowSolution: function() {
1134 let problemSolution = document.getElementById("problem-solution");
b5fb8e69
BA
1135 problemSolution.style.display =
1136 !problemSolution.style.display || problemSolution.style.display == "none"
1137 ? "block"
1138 : "none";
1a788978 1139 },
01ca2adc
BA
1140 download: function() {
1141 let content = document.getElementById("pgn-game").innerHTML;
1142 content = content.replace(/<br>/g, "\n");
1143 // Prepare and trigger download link
1144 let downloadAnchor = document.getElementById("download");
1145 downloadAnchor.setAttribute("download", "game.pgn");
92342261
BA
1146 downloadAnchor.href = "data:text/plain;charset=utf-8," +
1147 encodeURIComponent(content);
01ca2adc
BA
1148 downloadAnchor.click();
1149 },
1a788978 1150 showScoreMsg: function() {
ecf44502 1151 let modalBox = document.getElementById("modal-eog");
186516b8 1152 modalBox.checked = true;
1a788978
BA
1153 setTimeout(() => { modalBox.checked = false; }, 2000);
1154 },
1155 endGame: function(score) {
1156 this.score = score;
56a683cd
BA
1157 if (["human","computer"].includes(this.mode))
1158 {
1159 const prefix = (this.mode=="computer" ? "comp-" : "");
1160 localStorage.setItem(prefix+"score", score);
1161 }
1a788978 1162 this.showScoreMsg();
204e289b 1163 // Variants may have special PGN structure (so next function isn't defined here)
3840e240 1164 this.pgnTxt = this.vr.getPGN(this.mycolor, this.score, this.fenStart, this.mode);
3a609580
BA
1165 if (this.mode == "human" && this.oppConnected)
1166 {
1167 // Send our nickname to opponent
1168 this.conn.send(JSON.stringify({
1169 code:"myname", name:this.myname, oppid:this.oppid}));
1170 }
1171 this.mode = (this.mode=="human" ? "chat" : "idle");
e64084da 1172 this.cursor = this.vr.moves.length; //to navigate in finished game
1d184b4c 1173 },
762b7c9c 1174 setStorage: function() {
8ddc00a0
BA
1175 if (this.mode=="human")
1176 {
1177 localStorage.setItem("myid", this.myid);
1178 localStorage.setItem("oppid", this.oppid);
56a683cd 1179 localStorage.setItem("gameId", this.gameId);
8ddc00a0
BA
1180 }
1181 // 'prefix' = "comp-" to resume games vs. computer
1182 const prefix = (this.mode=="computer" ? "comp-" : "");
1183 localStorage.setItem(prefix+"variant", variant);
1184 localStorage.setItem(prefix+"mycolor", this.mycolor);
1185 localStorage.setItem(prefix+"fenStart", this.fenStart);
1186 localStorage.setItem(prefix+"moves", JSON.stringify(this.vr.moves));
1187 localStorage.setItem(prefix+"fen", this.vr.getFen());
56a683cd 1188 localStorage.setItem(prefix+"score", "*");
762b7c9c
BA
1189 },
1190 updateStorage: function() {
8ddc00a0
BA
1191 const prefix = (this.mode=="computer" ? "comp-" : "");
1192 localStorage.setItem(prefix+"moves", JSON.stringify(this.vr.moves));
1193 localStorage.setItem(prefix+"fen", this.vr.getFen());
56a683cd
BA
1194 if (this.score != "*")
1195 localStorage.setItem(prefix+"score", this.score);
1d184b4c 1196 },
56a683cd 1197 // "computer mode" clearing is done through the menu
1d184b4c 1198 clearStorage: function() {
56a683cd 1199 if (["human","chat"].includes(this.mode))
8ddc00a0
BA
1200 {
1201 delete localStorage["myid"];
1202 delete localStorage["oppid"];
56a683cd 1203 delete localStorage["gameId"];
8ddc00a0
BA
1204 }
1205 const prefix = (this.mode=="computer" ? "comp-" : "");
1206 delete localStorage[prefix+"variant"];
1207 delete localStorage[prefix+"mycolor"];
1208 delete localStorage[prefix+"fenStart"];
8ddc00a0 1209 delete localStorage[prefix+"moves"];
56a683cd
BA
1210 delete localStorage[prefix+"fen"];
1211 delete localStorage[prefix+"score"];
1d184b4c 1212 },
c148615e
BA
1213 // HACK because mini-css tooltips are persistent after click...
1214 getRidOfTooltip: function(elt) {
1215 elt.style.visibility = "hidden";
1216 setTimeout(() => { elt.style.visibility="visible"; }, 100);
1217 },
5e27be42
BA
1218 startChat: function(e) {
1219 this.getRidOfTooltip(e.currentTarget);
1220 document.getElementById("modal-chat").checked = true;
1221 },
1222 clearComputerGame: function(e) {
1223 this.getRidOfTooltip(e.currentTarget);
1224 this.clearStorage(); //this.mode=="computer" (already checked)
1225 location.reload(); //to see clearing effects
1226 },
88af03d2
BA
1227 showSettings: function(e) {
1228 this.getRidOfTooltip(e.currentTarget);
1229 document.getElementById("modal-settings").checked = true;
1230 },
1231 toggleHints: function() {
1232 this.hints = !this.hints;
e6dcb115 1233 localStorage["hints"] = (this.hints ? "1" : "0");
88af03d2 1234 },
2812515a
BA
1235 setColor: function(e) {
1236 this.color = e.target.options[e.target.selectedIndex].value;
e6dcb115 1237 localStorage["color"] = this.color;
12b46d8f 1238 },
2812515a 1239 setSound: function(e) {
130db3ef 1240 this.sound = parseInt(e.target.options[e.target.selectedIndex].value);
e6dcb115 1241 localStorage["sound"] = this.sound;
12b46d8f 1242 },
c148615e
BA
1243 clickGameSeek: function(e) {
1244 this.getRidOfTooltip(e.currentTarget);
f3802fcd
BA
1245 if (this.mode == "human")
1246 return; //no newgame while playing
1247 if (this.seek)
01a135e2 1248 {
283d06a4 1249 this.conn.send(JSON.stringify({code:"cancelnewgame"}));
01a135e2
BA
1250 this.seek = false;
1251 }
f3802fcd 1252 else
f3802fcd 1253 this.newGame("human");
f3802fcd 1254 },
c148615e
BA
1255 clickComputerGame: function(e) {
1256 this.getRidOfTooltip(e.currentTarget);
f3802fcd
BA
1257 this.newGame("computer");
1258 },
2748531f
BA
1259 clickFriendGame: function(e) {
1260 this.getRidOfTooltip(e.currentTarget);
1261 document.getElementById("modal-fenedit").checked = true;
1262 },
2748531f
BA
1263 resign: function(e) {
1264 this.getRidOfTooltip(e.currentTarget);
c148615e
BA
1265 if (this.mode == "human" && this.oppConnected)
1266 {
1267 try {
1268 this.conn.send(JSON.stringify({code: "resign", oppid: this.oppid}));
1269 } catch (INVALID_STATE_ERR) {
1270 return; //socket is not ready (and not yet reconnected)
1271 }
1272 }
1273 this.endGame(this.mycolor=="w"?"0-1":"1-0");
1274 },
56a683cd 1275 newGame: function(mode, fenInit, color, oppId) {
aa78cc74 1276 let fen = fenInit || VariantRules.GenRandInitFen();
1d184b4c
BA
1277 console.log(fen); //DEBUG
1278 if (mode=="human" && !oppId)
1279 {
cd3174c5
BA
1280 const storageVariant = localStorage.getItem("variant");
1281 if (!!storageVariant && storageVariant !== variant)
6b5517b4
BA
1282 {
1283 return alert(translations["Finish your "] +
1284 storageVariant + translations[" game first!"]);
1285 }
1d184b4c 1286 // Send game request and wait..
d35f20e4
BA
1287 try {
1288 this.conn.send(JSON.stringify({code:"newgame", fen:fen}));
1289 } catch (INVALID_STATE_ERR) {
1290 return; //nothing achieved
1291 }
1a788978 1292 this.seek = true;
8ddc00a0
BA
1293 let modalBox = document.getElementById("modal-newgame");
1294 modalBox.checked = true;
1295 setTimeout(() => { modalBox.checked = false; }, 2000);
1d184b4c
BA
1296 return;
1297 }
56a683cd
BA
1298 if (["human","chat"].includes(this.mode))
1299 {
1300 // Start a new game vs. another human (or...) => forget about current one
1301 this.clearStorage();
1302 }
aa78cc74 1303 if (mode == "computer")
1a788978
BA
1304 {
1305 const storageVariant = localStorage.getItem("comp-variant");
aa78cc74 1306 if (!!storageVariant)
1a788978 1307 {
fb6ceeff
BA
1308 const score = localStorage.getItem("comp-score");
1309 if (storageVariant !== variant && score == "*")
aa78cc74 1310 {
6b5517b4
BA
1311 if (!confirm(storageVariant +
1312 translations[": unfinished computer game will be erased"]))
aa78cc74
BA
1313 {
1314 return;
1315 }
1316 }
fb6ceeff
BA
1317 else if (score == "*")
1318 return this.continueGame("computer");
1a788978
BA
1319 }
1320 }
56a683cd 1321 this.vr = new VariantRules(fen, []);
c148615e 1322 this.score = "*";
3840e240 1323 this.pgnTxt = ""; //redundant with this.score = "*", but cleaner
1d184b4c 1324 this.mode = mode;
56a683cd
BA
1325 this.incheck = [];
1326 this.fenStart = V.ParseFen(fen).position; //this is enough
1d184b4c
BA
1327 if (mode=="human")
1328 {
1329 // Opponent found!
56a683cd 1330 this.gameId = getRandString();
aa78cc74 1331 this.oppid = oppId;
56a683cd 1332 this.oppConnected = true;
aa78cc74
BA
1333 this.mycolor = color;
1334 this.seek = false;
56a683cd
BA
1335 if (this.sound >= 1)
1336 new Audio("/sounds/newgame.mp3").play().catch(err => {});
1337 document.getElementById("modal-newgame").checked = false;
1338 this.setStorage(); //in case of interruptions
1d184b4c 1339 }
2748531f 1340 else if (mode == "computer")
1d184b4c 1341 {
643479f8 1342 this.compWorker.postMessage(["init",this.vr.getFen()]);
56a683cd
BA
1343 this.mycolor = (Math.random() < 0.5 ? 'w' : 'b');
1344 this.setStorage(); //store game state
dfec5327 1345 if (this.mycolor != this.vr.turn)
643479f8 1346 this.playComputerMove();
1d184b4c 1347 }
c794dbb8 1348 //else: against a (IRL) friend or problem solving: nothing more to do
1d184b4c 1349 },
56a683cd
BA
1350 continueGame: function(mode) {
1351 this.mode = mode;
1352 this.oppid = (mode=="human" ? localStorage.getItem("oppid") : undefined);
1353 const prefix = (mode=="computer" ? "comp-" : "");
1354 this.mycolor = localStorage.getItem(prefix+"mycolor");
1355 const moves = JSON.parse(localStorage.getItem(prefix+"moves"));
1356 const fen = localStorage.getItem(prefix+"fen");
1357 const score = localStorage.getItem(prefix+"score"); //set in "endGame()"
1358 this.fenStart = localStorage.getItem(prefix+"fenStart");
1359 if (mode == "human")
1360 {
1361 this.gameId = localStorage.getItem("gameId");
1362 // Send ping to server (answer pong if opponent is connected)
1363 this.conn.send(JSON.stringify({
1364 code:"ping",oppid:this.oppid,gameId:this.gameId}));
1365 }
1366 else
1367 this.compWorker.postMessage(["init",fen]);
1368 this.vr = new VariantRules(fen, moves);
1369 if (moves.length > 0)
1370 {
1371 const lastMove = moves[moves.length-1];
1372 this.vr.undo(lastMove);
1373 this.incheck = this.vr.getCheckSquares(lastMove);
1374 this.vr.play(lastMove, "ingame");
1375 }
1376 if (score != "*")
1377 {
1378 // Small delay required when continuation run faster than drawing page
1379 setTimeout(() => this.endGame(score), 100);
1380 }
1381 },
1d184b4c 1382 playComputerMove: function() {
643479f8
BA
1383 this.timeStart = Date.now();
1384 this.compWorker.postMessage(["askmove"]);
1d184b4c
BA
1385 },
1386 // Get the identifier of a HTML table cell from its numeric coordinates o.x,o.y.
1387 getSquareId: function(o) {
1388 // NOTE: a separator is required to allow any size of board
1389 return "sq-" + o.x + "-" + o.y;
1390 },
1391 // Inverse function
1392 getSquareFromId: function(id) {
1393 let idParts = id.split('-');
1394 return [parseInt(idParts[1]), parseInt(idParts[2])];
1395 },
1396 mousedown: function(e) {
1397 e = e || window.event;
44461547
BA
1398 let ingame = false;
1399 let elem = e.target;
1400 while (!ingame && elem !== null)
1401 {
1402 if (elem.classList.contains("game"))
1403 {
1404 ingame = true;
1405 break;
1406 }
1407 elem = elem.parentElement;
1408 }
1409 if (!ingame) //let default behavior (click on button...)
1410 return;
1d184b4c
BA
1411 e.preventDefault(); //disable native drag & drop
1412 if (!this.selectedPiece && e.target.classList.contains("piece"))
1413 {
1414 // Next few lines to center the piece on mouse cursor
1415 let rect = e.target.parentNode.getBoundingClientRect();
1416 this.start = {
1417 x: rect.x + rect.width/2,
1418 y: rect.y + rect.width/2,
1419 id: e.target.parentNode.id
1420 };
1421 this.selectedPiece = e.target.cloneNode();
1422 this.selectedPiece.style.position = "absolute";
1423 this.selectedPiece.style.top = 0;
1424 this.selectedPiece.style.display = "inline-block";
1425 this.selectedPiece.style.zIndex = 3000;
8ddc00a0
BA
1426 const startSquare = this.getSquareFromId(e.target.parentNode.id);
1427 this.possibleMoves = [];
3a609580 1428 if (!["idle","chat"].includes(this.mode))
8ddc00a0
BA
1429 {
1430 const color = ["friend","problem"].includes(this.mode)
1431 ? this.vr.turn
1432 : this.mycolor;
1433 if (this.vr.canIplay(color,startSquare))
1434 this.possibleMoves = this.vr.getPossibleMovesFrom(startSquare);
1435 }
92342261
BA
1436 // Next line add moving piece just after current image
1437 // (required for Crazyhouse reserve)
5bd679d5 1438 e.target.parentNode.insertBefore(this.selectedPiece, e.target.nextSibling);
1d184b4c
BA
1439 }
1440 },
1441 mousemove: function(e) {
1442 if (!this.selectedPiece)
1443 return;
1444 e = e || window.event;
1445 // If there is an active element, move it around
1446 if (!!this.selectedPiece)
1447 {
ffea77d9
BA
1448 const [offsetX,offsetY] = !!e.clientX
1449 ? [e.clientX,e.clientY] //desktop browser
1450 : [e.changedTouches[0].pageX, e.changedTouches[0].pageY]; //smartphone
1451 this.selectedPiece.style.left = (offsetX-this.start.x) + "px";
1452 this.selectedPiece.style.top = (offsetY-this.start.y) + "px";
1d184b4c
BA
1453 }
1454 },
1455 mouseup: function(e) {
1456 if (!this.selectedPiece)
1457 return;
1458 e = e || window.event;
1459 // Read drop target (or parentElement, parentNode... if type == "img")
92342261 1460 this.selectedPiece.style.zIndex = -3000; //HACK to find square from final coords
ffea77d9
BA
1461 const [offsetX,offsetY] = !!e.clientX
1462 ? [e.clientX,e.clientY]
1463 : [e.changedTouches[0].pageX, e.changedTouches[0].pageY];
1464 let landing = document.elementFromPoint(offsetX, offsetY);
1d184b4c 1465 this.selectedPiece.style.zIndex = 3000;
92342261
BA
1466 // Next condition: classList.contains(piece) fails because of marks
1467 while (landing.tagName == "IMG")
1d184b4c 1468 landing = landing.parentNode;
92342261
BA
1469 if (this.start.id == landing.id)
1470 {
1471 // A click: selectedPiece and possibleMoves are already filled
1d184b4c 1472 return;
92342261 1473 }
1d184b4c
BA
1474 // OK: process move attempt
1475 let endSquare = this.getSquareFromId(landing.id);
1476 let moves = this.findMatchingMoves(endSquare);
1477 this.possibleMoves = [];
1478 if (moves.length > 1)
1479 this.choices = moves;
1480 else if (moves.length==1)
1481 this.play(moves[0]);
1482 // Else: impossible move
1483 this.selectedPiece.parentNode.removeChild(this.selectedPiece);
1484 delete this.selectedPiece;
1485 this.selectedPiece = null;
1486 },
1487 findMatchingMoves: function(endSquare) {
1488 // Run through moves list and return the matching set (if promotions...)
1489 let moves = [];
1490 this.possibleMoves.forEach(function(m) {
1491 if (endSquare[0] == m.end.x && endSquare[1] == m.end.y)
1492 moves.push(m);
1493 });
1494 return moves;
1495 },
1496 animateMove: function(move) {
1497 let startSquare = document.getElementById(this.getSquareId(move.start));
1498 let endSquare = document.getElementById(this.getSquareId(move.end));
1499 let rectStart = startSquare.getBoundingClientRect();
1500 let rectEnd = endSquare.getBoundingClientRect();
1501 let translation = {x:rectEnd.x-rectStart.x, y:rectEnd.y-rectStart.y};
92ff5bae
BA
1502 let movingPiece =
1503 document.querySelector("#" + this.getSquareId(move.start) + " > img.piece");
92342261 1504 // HACK for animation (with positive translate, image slides "under background")
1d184b4c
BA
1505 // Possible improvement: just alter squares on the piece's way...
1506 squares = document.getElementsByClassName("board");
1507 for (let i=0; i<squares.length; i++)
1508 {
1509 let square = squares.item(i);
1510 if (square.id != this.getSquareId(move.start))
1511 square.style.zIndex = "-1";
1512 }
92342261
BA
1513 movingPiece.style.transform = "translate(" + translation.x + "px," +
1514 translation.y + "px)";
1d184b4c
BA
1515 movingPiece.style.transitionDuration = "0.2s";
1516 movingPiece.style.zIndex = "3000";
1517 setTimeout( () => {
1518 for (let i=0; i<squares.length; i++)
1519 squares.item(i).style.zIndex = "auto";
1520 movingPiece.style = {}; //required e.g. for 0-0 with KR swap
1521 this.play(move);
1a788978 1522 }, 250);
1d184b4c
BA
1523 },
1524 play: function(move, programmatic) {
e64084da
BA
1525 if (!move)
1526 {
1527 // Navigate after game is over
1528 if (this.cursor >= this.vr.moves.length)
1529 return; //already at the end
1530 move = this.vr.moves[this.cursor++];
1531 }
1d184b4c
BA
1532 if (!!programmatic) //computer or human opponent
1533 {
1534 this.animateMove(move);
1535 return;
1536 }
1537 // Not programmatic, or animation is over
1538 if (this.mode == "human" && this.vr.turn == this.mycolor)
a29d9d6b 1539 this.conn.send(JSON.stringify({code:"newmove", move:move, oppid:this.oppid}));
3a609580 1540 if (!["idle","chat"].includes(this.mode))
3300df38 1541 {
aa78cc74
BA
1542 // Emergency check, if human game started "at the same time"
1543 // TODO: robustify this...
1544 if (this.mode == "human" && !!move.computer)
1545 return;
3300df38 1546 this.incheck = this.vr.getCheckSquares(move); //is opponent in check?
e64084da 1547 this.vr.play(move, "ingame");
e6dcb115
BA
1548 if (this.sound == 2)
1549 new Audio("/sounds/move.mp3").play().catch(err => {});
643479f8
BA
1550 if (this.mode == "computer")
1551 {
aa78cc74 1552 // Send the move to web worker (TODO: including his own moves?!)
643479f8
BA
1553 this.compWorker.postMessage(["newmove",move]);
1554 }
3300df38 1555 }
e64084da 1556 else
3300df38 1557 {
e64084da 1558 VariantRules.PlayOnBoard(this.vr.board, move);
3300df38
BA
1559 this.$forceUpdate(); //TODO: ?!
1560 }
3a609580 1561 if (!["idle","chat"].includes(this.mode))
e64084da
BA
1562 {
1563 const eog = this.vr.checkGameOver();
1564 if (eog != "*")
1a788978
BA
1565 {
1566 if (["human","computer"].includes(this.mode))
1567 this.endGame(eog);
1568 else
1569 {
1570 // Just show score on screen (allow undo)
1571 this.score = eog;
1572 this.showScoreMsg();
1573 }
1574 }
e64084da 1575 }
56a683cd
BA
1576 if (["human","computer"].includes(this.mode))
1577 this.updateStorage(); //after our moves and opponent moves
1578 if (this.mode == "computer" && this.vr.turn != this.mycolor && this.score == "*")
643479f8 1579 this.playComputerMove();
1d184b4c 1580 },
e64084da
BA
1581 undo: function() {
1582 // Navigate after game is over
1583 if (this.cursor == 0)
1584 return; //already at the beginning
3300df38
BA
1585 if (this.cursor == this.vr.moves.length)
1586 this.incheck = []; //in case of...
e64084da
BA
1587 const move = this.vr.moves[--this.cursor];
1588 VariantRules.UndoOnBoard(this.vr.board, move);
1589 this.$forceUpdate(); //TODO: ?!
2748531f
BA
1590 },
1591 undoInGame: function() {
1592 const lm = this.vr.lastMove;
1593 if (!!lm)
b5fb8e69 1594 {
2748531f 1595 this.vr.undo(lm);
e6dcb115
BA
1596 if (this.sound == 2)
1597 new Audio("/sounds/undo.mp3").play().catch(err => {});
b5fb8e69
BA
1598 const lmBefore = this.vr.lastMove;
1599 if (!!lmBefore)
1600 {
1601 this.vr.undo(lmBefore);
1602 this.incheck = this.vr.getCheckSquares(lmBefore);
1603 this.vr.play(lmBefore, "ingame");
1604 }
1605 else
1606 this.incheck = [];
1607 }
2748531f 1608 },
1d184b4c
BA
1609 },
1610})