-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (82 loc) · 3.15 KB
/
index.html
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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Codenames</title>
<meta name="description" content="A portable, personal use version of the team-based board game Codenames.">
<meta name="keywords" content="codenames">
<link rel="icon" type="image/png" href="assets/static/favicon.png" />
<!-- Stylesheets -->
<link rel="stylesheet" href="assets/css/gameboy.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/toast.css">
<!-- Fonts -->
<link href='https://fonts.googleapis.com/css?family=Oswald:300,400,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Gloria+Hallelujah' rel='stylesheet' type='text/css'>
<!-- Javascript -->
<script src="./assets/js/qrcode.min.js"></script>
<script src="./assets/js/main.js"></script>
<script src="./assets/js/config.js"></script>
</head>
<body>
<main id="elm-node"></main>
<script type="text/javascript">
// prevent backspace from redirecting browser
window.addEventListener('keydown', function(e) {
if (e.keyIdentifier == 'U+0008' || e.keyIdentifier == 'Backspace' || e.keyCode == 8) {
if (e.target == document.body) {
e.preventDefault();
return false;
}
}
}, true);
var app = Elm.Codenames.init({node: document.getElementById('elm-node')});
function setupSocket() {
const urlParams = new URLSearchParams(window.location.search);
const room_name = urlParams.get('room');
socket = new WebSocket(server_host + room_name)
socket.onclose = function() {
alert("Connection to the server has been lost.");
}
socket.onerror = function() {
alert("Server connection has experienced an unknown error.");
}
socket.onopen = function() {
app.ports.outputPort.subscribe(function (data) {
console.log("Message from client:")
console.log(data);
socket.send(data);
});
}
// reconnect on socket close?
socket.addEventListener("close", () => {
alert('Reopened??')
this.setupSocket();
})
// got message from server
socket.addEventListener("message", (event) => {
console.log("Message from server: ")
newJSON = JSON.parse(event.data)
console.log( newJSON );
app.ports.inputPort.send( newJSON );
/*
if (data["action"] == "new_game") {
var sizepx = Math.round(Math.min(window.innerWidth * .85, window.innerHeight * .85));
const qrcodeContainer = document.getElementById("qrcode");
qrcodeContainer.innerHTML = "";
const qrcode = new QRCode(qrcodeContainer, {
width: sizepx,
height: sizepx,
correctLevel: QRCode.CorrectLevel.M
});
qrcode.makeCode(data["content"]);
}
*/
})
}
window.onload = function() {
setupSocket();
}
</script>
</body>
</html>