-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsocketLogics.js
83 lines (65 loc) · 2.33 KB
/
socketLogics.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
function socketLogics(app) {
const http = require("http").Server(app);
const io = require("socket.io")(http);
var gameboard = {};
var players = [];
// Todo: confirm player is in current session. If not send signal for relogin
// Set up socket.io action
io.on("connection", function (socket) {
// Notify send over socket identifying info and notify other players
console.log("user id: " + socket.id + " connected");
io.to(socket.id).emit("id assignment", socket.id);
io.emit("new player", players);
// Detect player login
socket.on("new player", playerName => {
const player = {
name: playerName,
id: socket.id
}
console.log("new player", player);
players.push(player);
io.emit("new player", players);
});
// Detect dice roll
socket.on("dice action", (playerId, dice) => {
if (players.findIndex(obj => obj.id == playerId) !== -1) {
const playerName = players[players.findIndex(obj => obj.id == socket.id)].name;
// initialize player to grameboard
if (!gameboard[playerId]) {
console.log(playerName + " added in gameboard");
gameboard[playerId] = {
name: playerName,
id: playerId,
}
}
gameboard[playerId] = { ...gameboard[playerId], dice }
io.emit("player rolled", playerName);
console.log("recorded", playerName, playerId, gameboard[playerId].dice);
}
});
// On receiving game action, emit to everyone including the sender
socket.on("game action", action => {
console.log("game action: ", action);
if (action === "reveal") {
io.emit("reveal score", gameboard);
gameboard = {};
}
});
socket.on("disconnect", function () {
const playerIndex = players.findIndex(player => player.id === socket.id);
delete gameboard[socket.id];
if (playerIndex != -1) {
console.log("playerIndex", playerIndex);
const playerName = players[playerIndex].name;
players.splice(playerIndex, 1);
io.emit("player left", players);
console.log(playerName, socket.id, "disconnected");
}
});
});
const port = process.env.PORT || 5000;
http.listen(port, function () {
console.log(`listening on port: ${port}`);
});
}
module.exports = socketLogics;