-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.js
89 lines (85 loc) · 2.47 KB
/
client.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
function joined_match(event, websocket) {
$("#match-id").text(event.id);
$("#team1-players").text(event.team1_players);
$("#team2-players").text(event.team2_players);
}
function joined_team(event, websocket) {
$("#team").text(event.team);
}
function team_player_update(event, websocket) {
switch (event.team) {
case "TEAM1":
$("#team1-players").text(event.players);
break;
case "TEAM2":
$("#team2-players").text(event.players);
break;
}
}
function team_box_update(event, websocket) {
switch (event.team) {
case "TEAM1":
$("#team1-box").text(JSON.stringify(event.box));
break;
case "TEAM2":
$("#team2-box").text(JSON.stringify(event.box));
break;
}
}
$(function () {
const websocket = new WebSocket("ws://localhost:8001/");
websocket.addEventListener("message", ({ data }) => {
const event = JSON.parse(data);
console.log(event);
switch (event.type) {
case "joined_match":
joined_match(event, websocket);
break;
case "joined_team":
joined_team(event, websocket);
break;
case "team_player_update":
team_player_update(event, websocket);
break;
case "team_box_update":
team_box_update(event, websocket);
break;
}
});
$("#new-match").click(function() {
const event = {
type: "new_match"
};
websocket.send(JSON.stringify(event));
});
$("#join-match").click(function() {
const event = {
type: "join_match",
id: $("#join-match-id").val()
};
websocket.send(JSON.stringify(event));
});
$("#join-team1").click(function() {
const event = {
type: "join_team",
team: "TEAM1",
name: $("#player-name").val()
};
websocket.send(JSON.stringify(event));
});
$("#join-team2").click(function() {
const event = {
type: "join_team",
team: "TEAM2",
name: $("#player-name").val()
};
websocket.send(JSON.stringify(event));
});
$("#update-box").click(function() {
const event = {
type: "update_box",
box_paste: $("#box-input").val()
};
websocket.send(JSON.stringify(event));
});
});