X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FGame.vue;h=803751eb519a31ea00db94cbc092688768bc0825;hp=ea5ea36549b5bcda9215bc6b7f6dbe8aef7cfbc0;hb=40477190d905a715d59a800279a20da4ef8135ed;hpb=a36a09c039d2abaa130c7daddd865009f1456bf7 diff --git a/client/src/views/Game.vue b/client/src/views/Game.vue index ea5ea365..803751eb 100644 --- a/client/src/views/Game.vue +++ b/client/src/views/Game.vue @@ -185,6 +185,12 @@ export default { case "abort": this.$refs["basegame"].endGame("?", "Abort: " + data.msg); break; + case "draw": + this.$refs["basegame"].endGame("1/2", "Mutual agreement"); + break; + case "drawoffer": + this.drawOffer = "received"; + break; // TODO: drawaccepted (click draw button before sending move ==> draw offer in move) // ==> on "newmove", check "drawOffer" field // TODO: also use (dis)connect info to count online players? @@ -205,6 +211,7 @@ export default { break; } }; + // TODO: onopen, ask lastState informations + update observers and players status const socketCloseListener = () => { this.st.conn.addEventListener('message', socketMessageListener); this.st.conn.addEventListener('close', socketCloseListener); @@ -214,34 +221,21 @@ export default { }, methods: { offerDraw: function() { + // TODO: also for corr games if (this.drawOffer == "received") { - if (!confirm("Offer draw?")) + if (!confirm("Accept draw?")) return; this.st.conn.send(JSON.stringify({code:"draw", target:this.game.oppid})); + this.$refs["basegame"].endGame("1/2", "Mutual agreement"); + } else if (this.drawOffer == "sent") this.drawOffer = ""; else { if (!confirm("Offer draw?")) return; - // Stay in "draw offer sent" state until next move is played - this.drawOfferSent = true; - if (this.subMode == "corr") - { - // TODO: set drawOffer on in game (how ?) - } - else //live game - { - this.opponents.forEach(o => { - if (!!o.online) - { - try { - } catch (INVALID_STATE_ERR) { - return; - } - } - }); + this.st.conn.send(JSON.stringify({code:"drawoffer", target:this.game.oppid})); } }, // + conn handling: "draw" message ==> agree for draw (if we have "drawOffered" at true)