-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignaling-server.js
81 lines (67 loc) · 3.34 KB
/
signaling-server.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
const WebSocket = require('ws');
const port = process.env.PORT || 8080;
const wss = new WebSocket.Server({ port: port });
let clientCount = 0; // クライアントの接続番号を管理
let clients = new Set(); // クライアントを管理
let firstBuzzerTimestamp = null; // 最初に押されたタイムスタンプを保存
// WebSocketサーバーへの接続イベント
wss.on('connection', function connection(ws) {
clientCount++;
clients.add(ws);
ws.clientId = clientCount;
console.log(`Client ${ws.clientId} connected.`);
// クライアントに接続された番号を送信
ws.send(JSON.stringify({ type: 'clientId', id: ws.clientId }));
// メッセージ受信イベント
ws.on('message', function incoming(message) {
console.log('received: %s', message);
// JSONデータに変換してメッセージを処理
const data = JSON.parse(message);
// タイプが "buzzer" のときだけタイムスタンプの比較を行う
if (data.type === 'buzzer') {
const currentTimestamp = data.timestamp;
// 最初の押下タイミングかどうかを判定
if (firstBuzzerTimestamp === null || currentTimestamp < firstBuzzerTimestamp) {
firstBuzzerTimestamp = currentTimestamp;
// 最初に押したクライアントを他の全クライアントにブロードキャスト
clients.forEach(function each(client) {
if (client.readyState === WebSocket.OPEN) {
client.send(JSON.stringify(data)); // JSONに変換して送信
}
});
} else {
console.log(`Client ${ws.clientId}'s buzzer was ignored due to a later timestamp.`);
}
} else if (data.type === 'reset') {
// クイズのリセット時にタイムスタンプをリセット
firstBuzzerTimestamp = null;
// リセットメッセージをすべてのクライアントに送信
clients.forEach(function each(client) {
if (client.readyState === WebSocket.OPEN) {
client.send(JSON.stringify(data)); // JSONに変換して送信
}
});
} else if (data.type === 'clientId') {
// クライアントIDの処理は既に行っているので無視
console.log(`Client ${ws.clientId} received its ID.`);
} else {
// buzzer, reset, clientId のどれでもない場合はブロードキャスト
clients.forEach(function each(client) {
if (client.readyState === WebSocket.OPEN) {
client.send(JSON.stringify(data)); // 他のクライアントにそのまま送信
}
});
}
});
// クライアント切断時のイベント
ws.on('close', function close() {
clients.delete(ws); // クライアント削除
console.log(`Client ${ws.clientId} disconnected.`);
// すべてのクライアントが切断されたときにclientCountをリセット
if (clients.size === 0) {
clientCount = 0;
console.log('All clients disconnected. Resetting client count.');
}
});
});
console.log(`WebSocket server is running on port ${port}`);