X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=server%2Fsockets.js;h=b547c6a1fe9893b34346aede7e922cd9b1afaa45;hp=3637c8f47ea4ef495b4ecd59c44f40a0c26ee205;hb=80ee5d5a70f17f78900a8a3ae2d803ed1f2f14c9;hpb=f41ce5806b989c06091a403d7e26ff3c457650c9 diff --git a/server/sockets.js b/server/sockets.js index 3637c8f4..b547c6a1 100644 --- a/server/sockets.js +++ b/server/sockets.js @@ -21,24 +21,36 @@ module.exports = function(wss) { if (!!clients[sid]) return socket.send(JSON.stringify({code:"duplicate"})); clients[sid] = {sock: socket, page: query["page"]}; - const notifyRoom = (page,code) => { + const notifyRoom = (page,code,obj={},excluded=[]) => { Object.keys(clients).forEach(k => { + if (k in excluded) + return; if (k != sid && clients[k].page == page) - clients[k].sock.send(JSON.stringify({code:code,sid:sid})); + { + clients[k].sock.send(JSON.stringify(Object.assign( + {code:code, from:sid}, obj))); + } }); }; - notifyRoom(query["page"],"connect"); + notifyRoom(query["page"], "connect"); //Hall or Game socket.on("message", objtxt => { let obj = JSON.parse(objtxt); if (!!obj.target && !clients[obj.target]) return; //receiver not connected, nothing we can do + +console.log(obj.code); +console.log(clients); + switch (obj.code) { case "pollclients": const curPage = clients[sid].page; socket.send(JSON.stringify({code:"pollclients", - sockIds: Object.keys(clients).filter(k => - k != sid && clients[k].page == curPage)})); + sockIds: Object.keys(clients).filter(k => k != sid && + (clients[k].page == curPage || + // Consider that people playing are in Hall too: + (curPage == "/" && clients[k].page.indexOf("/game/") >= 0)) + )})); break; case "pagechange": notifyRoom(clients[sid].page, "disconnect"); @@ -54,6 +66,14 @@ module.exports = function(wss) { {code:"askchallenge",from:sid})); break; case "askgame": + // Check all clients playing, and send them a "askgame" message + Object.keys(clients).forEach(k => { + if (k != sid && clients[k].page.indexOf("/game/") >= 0) + { + clients[k].sock.send(JSON.stringify( + {code:"askgame", from: sid})); + } + }); clients[obj.target].sock.send(JSON.stringify( {code:"askgame",from:sid})); break; @@ -78,17 +98,24 @@ module.exports = function(wss) { {code:"challenge", chall:obj.chall, from:sid})); break; case "game": - clients[obj.target].sock.send(JSON.stringify( - {code:"game", game:obj.game, from:sid})); + if (!!obj.target) + { + clients[obj.target].sock.send(JSON.stringify( + {code:"game", game:obj.game, from:sid})); + } + else + { + // Notify all room except opponent and me: + notifyRoom("/", "game", {game:obj.game}, [obj.oppsid]); + } break; case "newchat": - clients[obj.target].sock.send(JSON.stringify( - {code:"newchat",msg:obj.msg})); + notifyRoom(query["page"], "newchat", {msg:obj.msg, name:obj.name}); break; // TODO: WebRTC instead in this case (most demanding?) case "newmove": clients[obj.target].sock.send(JSON.stringify( - {code:"newmove",move:obj.move})); + {code:"newmove", move:obj.move})); break; case "lastate": clients[obj.target].sock.send(JSON.stringify(