rearrange room.js draft. think about game list components
[vchess.git] / public / javascripts / components / game.js
CommitLineData
fd373b27 1// Game logic on a variant page: 3 modes, analyze, computer or human
a3ab5fdb
BA
2// TODO: envoyer juste "light move", sans FEN ni notation ...etc
3// TODO: if I'm an observer and player(s) disconnect/reconnect, how to find me ?
1d184b4c 4Vue.component('my-game', {
fd373b27 5 // gameId: to find the game in storage (assumption: it exists)
81bc1102 6 // fen: to start from a FEN without identifiers (analyze mode)
a3ab5fdb
BA
7 // subMode: "auto" (game comp vs comp) or "corr" (correspondance game),
8 // or "examine" (after human game: TODO)
9 props: ["conn","gameId","fen","mode","subMode","allowChat","allowMovelist",
10 "queryHash","settings"],
1d184b4c
BA
11 data: function() {
12 return {
643479f8
BA
13 // Web worker to play computer moves without freezing interface:
14 compWorker: new Worker('/javascripts/playCompMove.js'),
15 timeStart: undefined, //time when computer starts thinking
fd373b27 16 vr: null, //VariantRules object, describing the game state + rules
d44df0b0
BA
17 endgameMessage: "",
18 orientation: "w",
d337a94c 19 lockCompThink: false, //used to avoid some ghost moves
a3ab5fdb
BA
20 myname: user.name, //may be anonymous (thus no name)
21 opponents: {}, //filled later (potentially 2 or 3 opponents)
22 drawOfferSent: false, //did I just ask for draw?
23 people: {}, //observers
59d58d7d 24 score: "*", //'*' means 'unfinished'
582df349 25 // userColor: given by gameId, or fen in problems mode (if no game Id)...
59d58d7d 26 mycolor: "w",
7d9e99bc 27 fenStart: "",
d44df0b0 28 moves: [], //TODO: initialize if gameId is defined...
d337a94c 29 cursor: -1, //index of the move just played
59d58d7d 30 lastMove: null,
1d184b4c
BA
31 };
32 },
fd08ab2c
BA
33 watch: {
34 fen: function(newFen) {
d337a94c
BA
35 // (Security) No effect if a computer move is in progress:
36 if (this.mode == "computer" && this.lockCompThink)
37 return this.$emit("computer-think");
a3ab5fdb 38 this.newGameFromFen(newFen);
fd08ab2c 39 },
d44df0b0
BA
40 gameId: function() {
41 this.loadGame();
42 },
582df349
BA
43 queryHash: function(newQhash) {
44 // New query hash = "id=42"; get 42 as gameId
45 this.gameId = parseInt(newQhash.substr(2));
46 this.loadGame();
47 },
fd08ab2c 48 },
81da2786 49 computed: {
81da2786 50 showChat: function() {
fd373b27 51 return this.allowChat && this.mode=='human' && this.score != '*';
81da2786
BA
52 },
53 showMoves: function() {
7d9e99bc 54 return true;
fd373b27
BA
55 return this.allowMovelist && window.innerWidth >= 768;
56 },
57 showFen: function() {
58 return variant.name != "Dark" || this.score != "*";
c794dbb8
BA
59 },
60 },
81da2786
BA
61 // Modal end of game, and then sub-components
62 template: `
63 <div class="col-sm-12 col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
64 <input id="modal-eog" type="checkbox" class="modal"/>
65 <div role="dialog" aria-labelledby="eogMessage">
66 <div class="card smallpad small-modal text-center">
fd373b27
BA
67 <label for="modal-eog" class="modal-close">
68 </label>
69 <h3 id="eogMessage" class="section">
70 {{ endgameMessage }}
71 </h3>
936dc463
BA
72 </div>
73 </div>
a3ab5fdb
BA
74 <my-chat v-if="showChat" :conn="conn" :myname="myname"
75 :opponents="opponents" :people="people">
fd373b27 76 </my-chat>
582df349
BA
77 <my-board v-bind:vr="vr" :last-move="lastMove" :mode="mode"
78 :orientation="orientation" :user-color="mycolor" :settings="settings"
79 @play-move="play">
fd373b27 80 </my-board>
7d9e99bc
BA
81 <div class="button-group">
82 <button @click="() => play()">Play</button>
83 <button @click="() => undo()">Undo</button>
84 <button @click="flip">Flip</button>
85 <button @click="gotoBegin">GotoBegin</button>
86 <button @click="gotoEnd">GotoEnd</button>
87 </div>
a3ab5fdb
BA
88 <div v-if="mode=='human'" class="button-group">
89 <button @click="offerDraw">Draw</button>
90 <button @click="abortGame">Abort</button>
91 <button @click="resign">Resign</button>
92 </div>
d337a94c
BA
93 <div v-if="mode=='human' && subMode=='corr'">
94 <textarea v-show="score=='*' && vr.turn==mycolor" v-model="corrMsg">
95 </textarea>
96 <div v-show="cursor>=0">
97 {{ moves[cursor].message }}
98 </div>
99 </div>
d44df0b0 100 <div v-if="showFen && !!vr" id="fen-div" class="section-content">
fd373b27
BA
101 <p id="fen-string" class="text-center">
102 {{ vr.getFen() }}
103 </p>
104 </div>
81da2786 105 <div id="pgn-div" class="section-content">
4608eed9 106 <a id="download" href="#">
fd373b27 107 </a>
a6403027
BA
108 <div class="button-group">
109 <button id="downloadBtn" @click="download">
110 {{ translate("Download PGN") }}
111 </button>
112 <button>Import game</button>
113 </div>
fd373b27 114 </div>
7d9e99bc 115 <my-move-list v-if="showMoves" :moves="moves" :cursor="cursor" @goto-move="gotoMove">
fd373b27 116 </my-move-list>
81da2786
BA
117 </div>
118 `,
1d184b4c 119 created: function() {
d44df0b0
BA
120 if (!!this.gameId)
121 this.loadGame();
122 else if (!!this.fen)
7d9e99bc 123 {
d44df0b0 124 this.vr = new VariantRules(this.fen);
7d9e99bc
BA
125 this.fenStart = this.fen;
126 }
a3ab5fdb
BA
127 // TODO: also handle "draw accepted" (use opponents array?)
128 // --> must give this info also when sending lastState...
129 // and, if all players agree then OK draw (end game ...etc)
d35f20e4 130 const socketMessageListener = msg => {
1d184b4c 131 const data = JSON.parse(msg.data);
edcd679a 132 let L = undefined;
1d184b4c
BA
133 switch (data.code)
134 {
1d184b4c 135 case "newmove": //..he played!
a3ab5fdb 136 this.play(data.move, variant.name!="Dark" ? "animate" : null);
1d184b4c 137 break;
f3802fcd 138 case "pong": //received if we sent a ping (game still alive on our side)
56a683cd
BA
139 if (this.gameId != data.gameId)
140 break; //games IDs don't match: definitely over...
1d184b4c 141 this.oppConnected = true;
a3ab5fdb 142 // Send our "last state" informations to opponent(s)
edcd679a 143 L = this.vr.moves.length;
a3ab5fdb
BA
144 Object.keys(this.opponents).forEach(oid => {
145 this.conn.send(JSON.stringify({
146 code: "lastate",
147 oppid: oid,
148 gameId: this.gameId,
149 lastMove: (L>0?this.vr.moves[L-1]:undefined),
150 movesCount: L,
151 }));
152 });
1d184b4c 153 break;
a3ab5fdb 154 // TODO: refactor this, because at 3 or 4 players we may have missed 2 or 3 moves (not just one)
56a683cd 155 case "lastate": //got opponent infos about last move
edcd679a 156 L = this.vr.moves.length;
56a683cd
BA
157 if (this.gameId != data.gameId)
158 break; //games IDs don't match: nothing we can do...
159 // OK, opponent still in game (which might be over)
edcd679a 160 if (this.score != "*")
a29d9d6b 161 {
56a683cd 162 // We finished the game (any result possible)
a29d9d6b 163 this.conn.send(JSON.stringify({
56a683cd
BA
164 code: "lastate",
165 oppid: data.oppid,
166 gameId: this.gameId,
167 score: this.score,
a29d9d6b
BA
168 }));
169 }
56a683cd
BA
170 else if (!!data.score) //opponent finished the game
171 this.endGame(data.score);
172 else if (data.movesCount < L)
a29d9d6b
BA
173 {
174 // We must tell last move to opponent
a29d9d6b 175 this.conn.send(JSON.stringify({
56a683cd 176 code: "lastate",
a3ab5fdb 177 oppid: this.opponent.id,
edcd679a 178 gameId: this.gameId,
56a683cd
BA
179 lastMove: this.vr.moves[L-1],
180 movesCount: L,
a29d9d6b
BA
181 }));
182 }
56a683cd 183 else if (data.movesCount > L) //just got last move from him
a29d9d6b 184 this.play(data.lastMove, "animate");
ecf44502 185 break;
1d184b4c 186 case "resign": //..you won!
dfb4afc1 187 this.endGame(this.mycolor=="w"?"1-0":"0-1");
1d184b4c 188 break;
f3802fcd 189 // TODO: also use (dis)connect info to count online players?
1d184b4c
BA
190 case "connect":
191 case "disconnect":
a3ab5fdb 192 if (this.mode=="human")
3a609580 193 {
a3ab5fdb
BA
194 const online = (data.code == "connect");
195 // If this is an opponent ?
196 if (!!this.opponents[data.id])
197 this.opponents[data.id].online = online;
198 else
199 {
200 // Or an observer ?
201 if (!online)
202 delete this.people[data.id];
203 else
204 this.people[data.id] = data.name;
205 }
3a609580 206 }
1d184b4c
BA
207 break;
208 }
209 };
d35f20e4 210 const socketCloseListener = () => {
d35f20e4
BA
211 this.conn.addEventListener('message', socketMessageListener);
212 this.conn.addEventListener('close', socketCloseListener);
213 };
582df349
BA
214 if (!!this.conn)
215 {
216 this.conn.onmessage = socketMessageListener;
217 this.conn.onclose = socketCloseListener;
218 }
a3ab5fdb 219 // Computer moves web worker logic: (TODO: also for observers in HH games ?)
8d7e2786 220 this.compWorker.postMessage(["scripts",variant.name]);
d337a94c
BA
221 this.compWorker.onmessage = e => {
222 this.lockCompThink = true; //to avoid some ghost moves
aa78cc74 223 let compMove = e.data;
6e62b1c7
BA
224 if (!Array.isArray(compMove))
225 compMove = [compMove]; //to deal with MarseilleRules
d337a94c
BA
226 // Small delay for the bot to appear "more human"
227 const delay = Math.max(500-(Date.now()-this.timeStart), 0);
643479f8 228 setTimeout(() => {
d337a94c
BA
229 const animate = variant.name != "Dark";
230 this.play(compMove[0], animate);
6e62b1c7 231 if (compMove.length == 2)
d337a94c
BA
232 setTimeout( () => { this.play(compMove[1], animate); }, 750);
233 else //250 == length of animation (TODO: should be a constant somewhere)
234 setTimeout( () => this.lockCompThink = false, 250);
643479f8
BA
235 }, delay);
236 }
1d184b4c 237 },
a3ab5fdb
BA
238 // dans variant.js (plutôt room.js) conn gère aussi les challenges
239 // et les chats dans chat.js. Puis en webRTC, repenser tout ça.
81da2786 240 methods: {
a3ab5fdb
BA
241 offerDraw: function() {
242 if (!confirm("Offer draw?"))
243 return;
244 // Stay in "draw offer sent" state until next move is played
245 this.drawOfferSent = true;
246 if (this.subMode == "corr")
247 {
248 // TODO: set drawOffer on in game (how ?)
249 }
250 else //live game
251 {
252 this.opponents.forEach(o => {
253 if (!!o.online)
254 {
255 try {
256 this.conn.send(JSON.stringify({code: "draw", oppid: o.id}));
257 } catch (INVALID_STATE_ERR) {
258 return;
259 }
260 }
261 });
262 }
263 },
264 // + conn handling: "draw" message ==> agree for draw (if we have "drawOffered" at true)
265 receiveDrawOffer: function() {
266 //if (...)
267 // TODO: ignore if preventDrawOffer is set; otherwise show modal box with option "prevent future offers"
268 // if accept: send message "draw"
269 },
270 abortGame: function() {
271 if (!confirm("Abort the game?"))
272 return;
273 //+ bouton "abort" avec score == "?" + demander confirmation pour toutes ces actions,
274 //send message: "gameOver" avec score "?"
275 },
276 resign: function(e) {
277 if (!confirm("Resign the game?"))
278 return;
279 if (this.mode == "human" && this.oppConnected(this.oppid))
280 {
281 try {
282 this.conn.send(JSON.stringify({code: "resign", oppid: this.oppid}));
283 } catch (INVALID_STATE_ERR) {
284 return;
285 }
286 }
287 this.endGame(this.mycolor=="w"?"0-1":"1-0");
288 },
d44df0b0 289 translate: translate,
a3ab5fdb
BA
290 newGameFromFen: function(fen) {
291 this.vr = new VariantRules(fen);
292 this.moves = [];
293 this.cursor = -1;
294 this.fenStart = newFen;
295 this.score = "*";
296 if (this.mode == "analyze")
297 {
298 this.mycolor = V.ParseFen(newFen).turn;
299 this.orientation = this.mycolor;
300 }
301 else if (this.mode == "computer") //only other alternative (HH with gameId)
302 {
303 this.mycolor = (Math.random() < 0.5 ? "w" : "b");
304 this.orientation = this.mycolor;
305 this.compWorker.postMessage(["init",newFen]);
306 if (this.mycolor != "w" || this.subMode == "auto")
307 this.playComputerMove();
308 }
309 },
d44df0b0 310 loadGame: function() {
59d58d7d 311 const game = getGameFromStorage(this.gameId);
a3ab5fdb
BA
312 this.opponent.id = game.oppid; //opponent ID in case of running HH game
313 this.opponent.name = game.oppname; //maye be blank (if anonymous)
59d58d7d 314 this.score = game.score;
a3ab5fdb 315 this.mycolor = game.mycolor;
59d58d7d
BA
316 this.fenStart = game.fenStart;
317 this.moves = game.moves;
d337a94c
BA
318 this.cursor = game.moves.length-1;
319 this.lastMove = (game.moves.length > 0 ? game.moves[this.cursor] : null);
d44df0b0 320 },
fd373b27
BA
321 setEndgameMessage: function(score) {
322 let eogMessage = "Undefined";
323 switch (score)
324 {
325 case "1-0":
326 eogMessage = translations["White win"];
327 break;
328 case "0-1":
329 eogMessage = translations["Black win"];
330 break;
331 case "1/2":
332 eogMessage = translations["Draw"];
333 break;
334 case "?":
335 eogMessage = "Unfinished";
336 break;
337 }
338 this.endgameMessage = eogMessage;
339 },
01ca2adc 340 download: function() {
59d58d7d 341 const content = this.getPgn();
01ca2adc
BA
342 // Prepare and trigger download link
343 let downloadAnchor = document.getElementById("download");
344 downloadAnchor.setAttribute("download", "game.pgn");
edcd679a 345 downloadAnchor.href = "data:text/plain;charset=utf-8," + encodeURIComponent(content);
01ca2adc
BA
346 downloadAnchor.click();
347 },
59d58d7d
BA
348 getPgn: function() {
349 let pgn = "";
350 pgn += '[Site "vchess.club"]\n';
351 const opponent = (this.mode=="human" ? "Anonymous" : "Computer");
352 pgn += '[Variant "' + variant.name + '"]\n';
353 pgn += '[Date "' + getDate(new Date()) + '"]\n';
354 const whiteName = ["human","computer"].includes(this.mode)
355 ? (this.mycolor=='w'?'Myself':opponent)
356 : "analyze";
357 const blackName = ["human","computer"].includes(this.mode)
358 ? (this.mycolor=='b'?'Myself':opponent)
359 : "analyze";
360 pgn += '[White "' + whiteName + '"]\n';
361 pgn += '[Black "' + blackName + '"]\n';
362 pgn += '[Fen "' + this.fenStart + '"]\n';
363 pgn += '[Result "' + this.score + '"]\n\n';
364 let counter = 1;
365 let i = 0;
366 while (i < this.moves.length)
367 {
368 pgn += (counter++) + ".";
369 for (let color of ["w","b"])
370 {
371 let move = "";
372 while (i < this.moves.length && this.moves[i].color == color)
373 move += this.moves[i++].notation[0] + ",";
374 move = move.slice(0,-1); //remove last comma
375 pgn += move + (i < this.moves.length-1 ? " " : "");
376 }
377 }
378 return pgn + "\n";
379 },
fd373b27
BA
380 showScoreMsg: function(score) {
381 this.setEndgameMessage(score);
ecf44502 382 let modalBox = document.getElementById("modal-eog");
186516b8 383 modalBox.checked = true;
1a788978
BA
384 setTimeout(() => { modalBox.checked = false; }, 2000);
385 },
386 endGame: function(score) {
387 this.score = score;
fd373b27 388 this.showScoreMsg(score);
d337a94c 389 if (this.mode == "human")
d337a94c 390 localStorage["score"] = score;
a3ab5fdb 391 this.$emit("game-over");
1d184b4c 392 },
a3ab5fdb
BA
393 oppConnected: function(uid) {
394 return this.opponents.any(o => o.id == uidi && o.online);
067c675b 395 },
1d184b4c 396 playComputerMove: function() {
643479f8
BA
397 this.timeStart = Date.now();
398 this.compWorker.postMessage(["askmove"]);
1d184b4c 399 },
fd373b27 400 animateMove: function(move) {
582df349
BA
401 let startSquare = document.getElementById(getSquareId(move.start));
402 let endSquare = document.getElementById(getSquareId(move.end));
fd373b27
BA
403 let rectStart = startSquare.getBoundingClientRect();
404 let rectEnd = endSquare.getBoundingClientRect();
405 let translation = {x:rectEnd.x-rectStart.x, y:rectEnd.y-rectStart.y};
406 let movingPiece =
582df349 407 document.querySelector("#" + getSquareId(move.start) + " > img.piece");
fd373b27
BA
408 // HACK for animation (with positive translate, image slides "under background")
409 // Possible improvement: just alter squares on the piece's way...
410 squares = document.getElementsByClassName("board");
411 for (let i=0; i<squares.length; i++)
412 {
413 let square = squares.item(i);
582df349 414 if (square.id != getSquareId(move.start))
fd373b27
BA
415 square.style.zIndex = "-1";
416 }
417 movingPiece.style.transform = "translate(" + translation.x + "px," +
418 translation.y + "px)";
419 movingPiece.style.transitionDuration = "0.2s";
420 movingPiece.style.zIndex = "3000";
421 setTimeout( () => {
422 for (let i=0; i<squares.length; i++)
423 squares.item(i).style.zIndex = "auto";
424 movingPiece.style = {}; //required e.g. for 0-0 with KR swap
a3ab5fdb 425 this.play(move);
fd373b27
BA
426 }, 250);
427 },
428 play: function(move, programmatic) {
d337a94c 429 let navigate = !move;
7d9e99bc 430 // Forbid playing outside analyze mode when cursor isn't at moves.length-1
d337a94c
BA
431 // (except if we receive opponent's move, human or computer)
432 if (!navigate && this.mode != "analyze" && !programmatic
433 && this.cursor < this.moves.length-1)
434 {
7d9e99bc 435 return;
d337a94c 436 }
7d9e99bc
BA
437 if (navigate)
438 {
d337a94c 439 if (this.cursor == this.moves.length-1)
7d9e99bc 440 return; //no more moves
d337a94c 441 move = this.moves[this.cursor+1];
7d9e99bc 442 }
d337a94c
BA
443 if (!!programmatic) //computer or (remote) human opponent
444 {
445 if (this.cursor < this.moves.length-1)
446 this.gotoEnd(); //required to play the move
fd373b27 447 return this.animateMove(move);
d337a94c 448 }
fd373b27 449 // Not programmatic, or animation is over
a3ab5fdb
BA
450 if (this.mode == "human" && this.subMode == "corr" && this.mycolor == this.vr.turn)
451 {
452 // TODO: show confirm box "validate move ?"
453 }
fd373b27
BA
454 if (!move.notation)
455 move.notation = this.vr.getNotation(move);
7d9e99bc
BA
456 if (!move.color)
457 move.color = this.vr.turn;
fd373b27 458 this.vr.play(move);
7d9e99bc 459 this.cursor++;
59d58d7d 460 this.lastMove = move;
fd373b27
BA
461 if (!move.fen)
462 move.fen = this.vr.getFen();
582df349 463 if (this.settings.sound == 2)
fd373b27
BA
464 new Audio("/sounds/move.mp3").play().catch(err => {});
465 if (this.mode == "human")
466 {
467 updateStorage(move); //after our moves and opponent moves
582df349 468 if (this.vr.turn == this.mycolor)
fd373b27
BA
469 this.conn.send(JSON.stringify({code:"newmove", move:move, oppid:this.oppid}));
470 }
471 else if (this.mode == "computer")
472 {
473 // Send the move to web worker (including his own moves)
474 this.compWorker.postMessage(["newmove",move]);
475 }
7d9e99bc 476 if (!navigate && (this.score == "*" || this.mode == "analyze"))
fd373b27 477 {
7d9e99bc
BA
478 // Stack move on movesList at current cursor
479 if (this.cursor == this.moves.length)
480 this.moves.push(move);
481 else
482 this.moves = this.moves.slice(0,this.cursor-1).concat([move]);
fd373b27
BA
483 }
484 // Is opponent in check?
485 this.incheck = this.vr.getCheckSquares(this.vr.turn);
486 const score = this.vr.getCurrentScore();
487 if (score != "*")
488 {
489 if (["human","computer"].includes(this.mode))
490 this.endGame(score);
491 else //just show score on screen (allow undo)
492 this.showScoreMsg(score);
fd373b27 493 }
d337a94c
BA
494 // subTurn condition for Marseille (and Avalanche) rules
495 else if ((this.mode == "computer" && (!this.vr.subTurn || this.vr.subTurn <= 1))
496 && (this.subMode == "auto" || this.vr.turn != this.mycolor))
497 {
fd373b27 498 this.playComputerMove();
d337a94c 499 }
59d58d7d 500 // https://vuejs.org/v2/guide/list.html#Caveats (also for undo)
7d9e99bc
BA
501 if (navigate)
502 this.$children[0].$forceUpdate(); //TODO!?
fd373b27
BA
503 },
504 undo: function(move) {
7d9e99bc
BA
505 let navigate = !move;
506 if (navigate)
507 {
d337a94c 508 if (this.cursor < 0)
7d9e99bc 509 return; //no more moves
d337a94c 510 move = this.moves[this.cursor];
7d9e99bc 511 }
fd373b27 512 this.vr.undo(move);
7d9e99bc 513 this.cursor--;
d337a94c 514 this.lastMove = (this.cursor >= 0 ? this.moves[this.cursor] : undefined);
582df349 515 if (this.settings.sound == 2)
fd373b27
BA
516 new Audio("/sounds/undo.mp3").play().catch(err => {});
517 this.incheck = this.vr.getCheckSquares(this.vr.turn);
7d9e99bc 518 if (navigate)
a3ab5fdb
BA
519 this.$children[0].$forceUpdate(); //TODO!?
520 else if (this.mode == "analyze") //TODO: can this happen?
521 this.moves.pop();
7d9e99bc
BA
522 },
523 gotoMove: function(index) {
524 this.vr = new VariantRules(this.moves[index].fen);
d337a94c 525 this.cursor = index;
59d58d7d 526 this.lastMove = this.moves[index];
7d9e99bc
BA
527 },
528 gotoBegin: function() {
529 this.vr = new VariantRules(this.fenStart);
d337a94c 530 this.cursor = -1;
59d58d7d 531 this.lastMove = null;
7d9e99bc
BA
532 },
533 gotoEnd: function() {
534 this.gotoMove(this.moves.length-1);
535 },
536 flip: function() {
537 this.orientation = V.GetNextCol(this.orientation);
fd373b27 538 },
1d184b4c
BA
539 },
540})