Vue.component('my-board', {
// Last move cannot be guessed from here, and is required to highlight squares
// vr: object to check moves, print board...
- props: ["vr","lastMove","mode","orientation","userColor","gameOver"],
+ // mode: HH, HC or analyze
+ // userColor: for mode HH or HC
+ props: ["vr","lastMove","mode","orientation","userColor"],
data: function () {
return {
hints: (!localStorage["hints"] ? true : localStorage["hints"] === "1"),
// Game logic on a variant page: 3 modes, analyze, computer or human
Vue.component('my-game', {
// gameId: to find the game in storage (assumption: it exists)
+ // fen: to start from a FEN without identifiers (analyze mode)
props: ["gameId","fen","mode","allowChat","allowMovelist"],
data: function() {
return {
compWorker: new Worker('/javascripts/playCompMove.js'),
timeStart: undefined, //time when computer starts thinking
vr: null, //VariantRules object, describing the game state + rules
+
+ // orientation :: button flip
+ // userColor: given by gameId, or fen (if no game Id)
+ // gameOver: known if gameId; otherwise assue false
+ // lastMove: update after every play, initialize with last move from list (if continuation)
+ //orientation ? userColor ? gameOver ? lastMove ?
+
};
},
watch: {
`,
created: function() {
const url = socketUrl;
- this.conn = new WebSocket(url + "/?sid=" + this.myid + "&page=" + variant._id);
+
+// TODO: connexion initialized in variant.js and passed as a prop
+
// TODO: after game, archive in indexedDB
// TODO: this events listener is central. Refactor ? How ?
const socketMessageListener = msg => {
};
const socketCloseListener = () => {
- this.conn = new WebSocket(url + "/?sid=" + this.myid + "&page=" + variant._id);
this.conn.addEventListener('message', socketMessageListener);
this.conn.addEventListener('close', socketCloseListener);
};
data: {
display: "undefined", //default to main hall; see "created()" function
gameid: "undefined", //...yet
-
+
+ conn: null,
+
// TEMPORARY: DEBUG
- vr: null,
mode: "analyze",
orientation: "w",
userColor: "w",
- gameOver: false,
},
created: function() {
// TODO: navigation becomes a little more complex
const page = (hashPos >= 0 ? url.substr(hashPos+1) : "room");
this.setDisplay(page);
+ this.conn = new WebSocket(url + "/?sid=" + this.myid + "&page=" + variant._id);
+ const socketCloseListener = () => {
+ this.conn = new WebSocket(url + "/?sid=" + this.myid + "&page=" + variant._id);
+ }
+ this.conn.onclose = socketCloseListener;
+
this.vr = new VariantRules( V.GenRandInitFen() );
},
methods: {
div
a(href="https://github.com/yagu0/vchess") Source code
p.clickable(onClick="document.getElementById('modalContact').checked=true")
- =translations["Contact"]
+ =translations["Contact form"]
script(src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js")
script(src="/javascripts/utils/misc.js")
//my-problems(v-show="display=='problems'")
//my-game(v-show="display=='game'" :gameId="gameid")
my-board(:vr="vr" :mode="mode" :orientation="orientation"
- :user-color="userColor" :game-over="gameOver"
- v-on:play-move="play")
+ :user-color="userColor" v-on:play-move="play")
block javascripts
script(src="/javascripts/utils/array.js")