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