X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=server%2Fsockets.js;h=e146ca5f1d6c314420b34dc2960169d841945604;hp=09b21eaf1fd4eb5b69849e2d94197620ec23c448;hb=bb7dd7db3df3d1a0445dcd5e0840a2ce79b53297;hpb=dd75774d31a140cabf80790bdade9a40048c38d5 diff --git a/server/sockets.js b/server/sockets.js index 09b21eaf..e146ca5f 100644 --- a/server/sockets.js +++ b/server/sockets.js @@ -71,12 +71,16 @@ module.exports = function(wss) { break; case "challenge": // Relay challenge to other player + clients[obj.target].send( + JSON.stringify({code:"challenge", chall:obj.chall, from:sid})); + break; + case "acceptchallenge": + clients[obj.target].send( + JSON.stringify({code:"acceptchallenge", cid:obj.cid, from:sid})); break; case "game": - // Relay (live) game to other player + // TODO: relay (live) game to other player break; - case "newchallenge": - clients[obj.target].send(JSON.stringify({code:"newchallenge",chall:obj.chall})); case "newchat": clients[obj.target].send(JSON.stringify({code:"newchat",msg:obj.msg})); break; @@ -108,11 +112,6 @@ module.exports = function(wss) { break; // TODO: case "challenge" (get ID) --> send to all, "acceptchallenge" (with ID) --> send to all, "cancelchallenge" --> send to all // also, "sendgame" (give current game info, if any) --> to new connections, "sendchallenges" (same for challenges) --> to new connections - case "newchallenge": - console.log("challenge received"); - console.log(obj.sender); - console.log(obj); - break; } }); socket.on("close", () => {