-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsockio.js
44 lines (37 loc) · 1.39 KB
/
sockio.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Socket IO setup - KB
// I'm not sure if this is the best way to do this but we'll do it this way
// For now.
// This file gets imported and called by bin/www
let io = require('socket.io');
let rhedz = require('./rockethedz_game_server/js/server')
function setServer(server) {
server.of('/rockethedz/').on('connect', (socket) => {
console.log(`Socket ${socket.id} connected`);
socket.on('disconnect', (reason) => {
const rooms = Object.keys(socket.rooms).join();
console.log(`Socket ${socket.id} disconnectfor ${reason}. They are in ${rooms}`);
});
socket.on('disconnecting', (reason) => {
const rooms = Object.keys(socket.rooms).join();
console.log(`Socket ${socket.id} disconnecting for ${reason}. They are in ${rooms}`);
});
socket.on('error', (error) => {
console.log(`Socket ${socket.id} error for ${error}`);
});
socket.on('join', (data) => {
let room = data.room;
socket.join(room, (err) => {
if (err == null) {
console.log(`Socket ${socket.id} joined room ${room}`);
rhedz(socket, room).then(() => {
console.log('Game room joined successfully)')
}).catch( (err) => {
console.log(`Error creatign game ${err}`);
});
}
});
});
});
console.log('Configured socket.io server');
};
module.exports = setServer;