-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.ts
132 lines (99 loc) · 2.97 KB
/
server.ts
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
import * as WebSocket from 'ws';
import { IncomingMessage } from 'http'
import { Board, Dimension, Piece } from './ttt';
const PORT = 8869;
declare const process: any;
type Player = {
side: Piece,
ws: WebSocket
};
class ServerBoard extends Board {
private players: Player[] = [];
private code: string;
constructor(code: string) {
super(Dimension.FOUR);
this.code = code;
console.log("new board", code);
}
empty(): boolean {
return this.players.length == 0;
}
add_player(ws: WebSocket) {
const sides = this.players.map(p => p.side);
const player: Player = {
side: !sides.includes(Piece.X) ? Piece.X : !sides.includes(Piece.O) ? Piece.O : null,
ws: ws
};
ws.on('message', data => {
this.onmessage(player, data);
});
ws.on('close', () => {
console.log("disconnect", ws._socket.remoteAddress);
const index = this.players.indexOf(player);
if(index >= 0)
this.players.splice(index, 1);
});
if(this.players.length == 0) {
this.send(ws, 'first');
} else {
this.send_board(ws);
}
this.send(ws, 'side', player.side);
console.log("new player", player.side, ws._socket.remoteAddress);
this.players.push(player);
}
onmessage(player: Player, json: string) {
const data = JSON.parse(json);
switch(data[0]) {
case 'reset':
super.reset(data[1]);
break;
case 'put_piece':
if(player.side == this.cur_piece) {
this.select = data[1];
super.put_piece();
}
break;
}
this.send_to_all();
}
send(ws, ...args: any[]) {
if(ws?.readyState == WebSocket.OPEN)
ws.send(JSON.stringify(args));
}
send_board(ws?: WebSocket) {
this.send(ws, 'board', this.serialize());
}
send_to_all() {
this.players.map(p => p.ws).forEach(ws => this.send_board(ws));
}
}
function main() {
const wss = new WebSocket.Server({
port: process.env.PORT ?? PORT
});
const boards = new Map<string, ServerBoard>();
const remove_empty = function() {
for(let [code, board] of boards) {
if(board.empty()) {
console.log("removing board", code);
boards.delete(code);
}
}
}
wss.on('connection', (ws: WebSocket, req: IncomingMessage) => {
const code = req.url.replace(/^\/+/, '');
if(code === '')
return;
if(boards.has(code)) {
boards.get(code).add_player(ws);
} else {
const board = new ServerBoard(code);
board.add_player(ws);
boards.set(code, board);
}
ws.on('close', remove_empty);
});
console.log("started");
}
main();