-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
72 lines (57 loc) · 2.07 KB
/
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
const express = require('express');
const { Server } = require('socket.io');
const { createServer } = require('node:http');
const { join } = require('node:path');
// const cors = require('cors');
const app = express();
const server = createServer(app);
const io = new Server(server);
app.use((req,res)=>{
res.send("hello")
})
// app.use(cors());
io.on('connection', (socket) => {
console.log("connected");
socket.on('Played', (data) => {
socket.broadcast.emit('update', data);
});
})
// Start the server
const PORT = process.env.PORT || 3000;
server.listen(PORT, () => {
console.log(`Server is running on port ${PORT}`);
});
// Game instances (rooms)
// const gameRooms = {};
// io.on('connection', (socket) => {
// console.log('user visited the website');
// // Handle new player joining a specific game room
// socket.on('joinGame', (roomId, playerName) => {
// // Create a new room if it doesn't exist
// if (!gameRooms[roomId]) {
// gameRooms[roomId] = { players: [] };
// }
// // Join the specified room
// socket.join(roomId);
// // Add the player to the room
// gameRooms[roomId].players.push({ id: socket.id, name: playerName });
// // Notify everyone in the room about the new player
// io.to(roomId).emit('playerJoined', gameRooms[roomId].players);
// // Handle player input and game logic within the room
// socket.on('playerInput', (inputData) => {
// // Process player input and update game state
// // Broadcast the updated state to all players in the room
// io.to(roomId).emit('updateGameState', updatedState);
// });
// // Handle player disconnection
// socket.on('disconnect', () => {
// // Remove the player from the room
// gameRooms[roomId].players = gameRooms[roomId].players.filter(player => player.id !== socket.id);
// // Notify everyone in the room about the player leaving
// io.to(roomId).emit('playerLeft', gameRooms[roomId].players);
// });
// });
// socket.on('Played', (data) => {
// socket.broadcast.emit('update', data);
// });
// });