X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=server%2Fsockets.js;h=a8e393e6515e3f1a6f942c493f3b0dfb945164e2;hp=ae5cc7bdec0680257740def31d78cfd8cdada827;hb=a6bddfc684bd3cc4defd7d49cc15bf59f2d9a9e9;hpb=81d9ce72c32c32e62a8b43ca8e94fcb974f4a685 diff --git a/server/sockets.js b/server/sockets.js index ae5cc7bd..a8e393e6 100644 --- a/server/sockets.js +++ b/server/sockets.js @@ -57,9 +57,9 @@ module.exports = function(wss) { clients[obj.target].send( JSON.stringify({code:"askidentity",from:sid})); break; - case "askchallenges": + case "askchallenge": clients[obj.target].send( - JSON.stringify({code:"askchallenges",from:sid})); + JSON.stringify({code:"askchallenge",from:sid})); break; case "askgame": clients[obj.target].send( @@ -69,12 +69,25 @@ module.exports = function(wss) { clients[obj.target].send( JSON.stringify({code:"identity",user:obj.user})); break; - case "askchallenges": + 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 "withdrawchallenge": + clients[obj.target].send( + JSON.stringify({code:"withdrawchallenge", cid:obj.cid, from:sid})); break; - case "newchallenge": - clients[obj.target].send(JSON.stringify({code:"newchallenge",chall:obj.chall})); - case "askgames": - // TODO: ask directly to people (webRTC) + case "newgame": + clients[obj.target].send(JSON.stringify( + {code:"newgame", gameInfo:obj.gameInfo})); + break; + case "game": + // TODO: relay (live) game to other player break; case "newchat": clients[obj.target].send(JSON.stringify({code:"newchat",msg:obj.msg})); @@ -94,24 +107,12 @@ module.exports = function(wss) { clients[oppId].send(JSON.stringify(obj)); break; // TODO: moreover, here, game info should be sent (through challenge; not stored here) - case "newgame": - clients[obj.target].send(JSON.stringify({code:"newgame", game:obj.game})); - break; - case "cancelnewgame": //if a user cancel his seek - // TODO: just transmit event - //delete games[page]; - break; // TODO: also other challenge events case "resign": clients[obj.target].send(JSON.stringify({code:"resign"})); 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", () => {