-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
154 lines (136 loc) · 3.85 KB
/
index.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
var express = require('express');
var app = require('express')();
var http = require('http').Server(app);
var io = require('socket.io')(http);
var _ = require('underscore');
function randomString() {
return Math.random().toString(36).substr(2, 5);
}
var Color = {
palette: {
red: {
name: 'red',
active: false,
hex: "#fe0000",
image: 'superb.png'
},
yellow: {
name: 'yellow',
active: false,
hex: "#f0ff00",
image: 'moche.png'
},
green: {
name: 'green',
active: false,
hex: "#09ff00",
image: 'sicr.png'
},
blue: {
name: 'blue',
active: false,
hex: "#011efe",
image: 'redb.png'
},
purple: {
name: 'purple',
active: false,
hex: "#ff00db",
image: 'mnc.png'
},
cyan: {
name: 'cyan',
active: false,
hex: "#00ecff",
image: 'meo.png'
}
},
pick: function() {
var available = _.where(Color.palette, {active: false});
var pick = undefined;
if (available.length > 0) {
pick = _.shuffle(available)[0];
Color.palette[pick.name].active = true;
}
return pick;
}
};
var Room = {
join: function(socket, room) {
// Sair de todas as salas e juntar-se à nova sala
socket.leaveAll();
socket.join(room);
// Voltar a entrar na sala do socket id
socket.join(socket.id);
// Variável globalizada no socket para referência no evento de disconnect
socket.room = room;
},
connections: function(room) {
// Retorna 0 se a sala existir e o número de ligações à sala se existir
return _.isUndefined(io.sockets.adapter.rooms[room]) ? 0:io.sockets.adapter.rooms[room].length;
},
exists: function(room) {
// Deprecated | pode ainda vir a ser usado
return _.has(Room.rooms, room);
},
check: function(socket, room) {
// O método connections retorna 0 se a sala não existir
if (Room.connections(room) > 1) {
// Se estiverem 2+ ligações estabelecidas, verifica se o yupp está inactivo
if (_.isUndefined(io.sockets.adapter.rooms[room].status)) {
//Activação de estado e selecção de cor
io.sockets.adapter.rooms[room].status = true;
io.sockets.adapter.rooms[room].color = Color.pick();
//Emissão de evento de activação para a sala com o objecto de cor
io.to(room).emit('yupp live', io.sockets.adapter.rooms[room].color);
}
// Caso esteja activo emite apenas para o socket a juntar-se à sala
else {
io.to(socket.id).emit('yupp live', io.sockets.adapter.rooms[room].color);
}
}
else {
// Se tiver apenas uma ligação verifica se o canal existe e se o yupp está activo
if (!_.isUndefined(io.sockets.adapter.rooms[room]) && !_.isUndefined(io.sockets.adapter.rooms[room].status)) {
io.sockets.adapter.rooms[room].status = undefined;
Color.palette[io.sockets.adapter.rooms[room].color.name].active = false;
io.to(room).emit('yupp halt');
}
}
}
}
app.use(express.static('public'));
app.get('/', function(req, res){
res.sendFile('public/index.htm', { root: __dirname });
});
app.get('/:room', function(req, res){
res.sendFile('public/index.htm', { root: __dirname });
});
io.on('connection', function(socket){
// Emissão de evento de boas-vindas ao socket que se ligou ao servidor
io.to(socket.id).emit('welcome');
socket.on('join room', function(room) {
Room.join(socket, room);
Room.check(socket, room);
});
socket.on('create room', function(){
var roomName = randomString();
while(!_.isUndefined(io.sockets.adapter.rooms[roomName])) {
roomName = randomString();
}
Room.join(socket, roomName);
io.to(socket.id).emit('room created', {name: roomName});
});
socket.on('pulse out', function(position) {
socket.broadcast.to(socket.room).emit('pulse in', position);
});
socket.on('disconnect', function () {
console.log('disconnected');
if (Room.connections(socket.room) < 2) {
Room.check(socket, socket.room);
}
});
});
http.listen(3000, function(){
console.log('up & running on *:3000');
});