X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FGame.vue;h=8f49c5d7723c6c3ae959e387ea473959547e3026;hb=8d1fcc37a933554e13bc996b5611f8307a4701e8;hp=6c289e61be7fa380368d30a16b98a8194d8699df;hpb=1051336271ad4d4128ef1f66953f54973601d774;p=vchess.git diff --git a/client/src/views/Game.vue b/client/src/views/Game.vue index 6c289e61..8f49c5d7 100644 --- a/client/src/views/Game.vue +++ b/client/src/views/Game.vue @@ -14,10 +14,10 @@ main span {{ Object.keys(people).length + " " + st.tr["participant(s):"] }} span( v-for="p in Object.values(people)" - v-if="!!p.name" + v-if="p.name" ) | {{ p.name }} - span.anonymous(v-if="Object.values(people).some(p => !p.name)") + span.anonymous(v-if="Object.values(people).some(p => !p.name && p.id === 0)") | + @nonymous Chat( :players="game.players" @@ -240,12 +240,11 @@ export default { switch (data.code) { case "pollclients": data.sockIds.forEach(sid => { - this.$set(this.people, sid, { id: 0, name: "" }); if (sid != this.st.user.sid) { this.send("askidentity", { target: sid }); // Ask potentially missed last state, if opponent and I play if ( - !!this.game.mycolor && + this.game.mycolor && this.game.type == "live" && this.game.score == "*" && this.game.players.some(p => p.sid == sid) @@ -256,10 +255,7 @@ export default { }); break; case "connect": - if (!this.people[data.from]) - // TODO: people array should be init only after identity is known - this.$set(this.people, data.from, { name: "", id: 0 }); - if (!this.people[data.from].name) { + if (!this.people[data.from]) { this.newConnect[data.from] = true; //for self multi-connects tests this.send("askidentity", { target: data.from }); } @@ -267,8 +263,7 @@ export default { case "disconnect": this.$delete(this.people, data.from); break; - case "mconnect": - { + case "mconnect": { // TODO: from MyGames page : send mconnect message with the list of gid (live and corr) // Either me (another tab) or opponent const sid = data.from; @@ -290,7 +285,7 @@ export default { alert(this.st.tr["New connexion detected: tab now offline"]); break; case "askidentity": { - // Request for identification (TODO: anonymous shouldn't need to reply) + // Request for identification const me = { // Decompose to avoid revealing email name: this.st.user.name, @@ -301,8 +296,8 @@ export default { break; } case "identity": { - // TODO: init people array here. const user = data.data; + this.$set(this.people, user.sid, { name: user.name, id: user.id }); if (user.name) { // If I multi-connect, kill current connexion if no mark (I'm older) if ( @@ -316,13 +311,6 @@ export default { this.killed[this.st.user.sid] = true; } } - if (user.sid != this.st.user.sid) { - //I already know my identity... - this.$set(this.people, user.sid, { - id: user.id, - name: user.name - }); - } } delete this.newConnect[user.sid]; break; @@ -517,8 +505,10 @@ export default { if (L >= 1) { const gameLastupdate = game.moves[L-1].played; game.initime[L % 2] = gameLastupdate; - if (L >= 2) - game.clocks[L % 2] = Date.now() - gameLastupdate; + if (L >= 2) { + game.clocks[L % 2] = + tc.mainTime - (Date.now() - gameLastupdate) / 1000; + } } } // Sort chat messages from newest to oldest