Compare commits

...

2 Commits

Author SHA1 Message Date
Marcus Noble 623b53d542 Some style tweaks 2020-11-27 18:38:56 +00:00
Marcus Noble aad99975c6 Better handling of room creation and management 2020-11-27 18:29:18 +00:00
11 changed files with 2937 additions and 105 deletions

View File

@ -16,4 +16,4 @@
"engines": { "engines": {
"node": "12.x" "node": "12.x"
} }
} }

1
public/build/bundle.css Normal file
View File

@ -0,0 +1 @@
main.svelte-1tky8bj{text-align:center;padding:1em;max-width:240px;margin:0 auto}h1.svelte-1tky8bj{color:#ff3e00;text-transform:uppercase;font-size:4em;font-weight:100}@media(min-width: 640px){main.svelte-1tky8bj{max-width:none}}main.svelte-1tky8bj{text-align:center;padding:1em;max-width:240px;margin:0 auto}h1.svelte-1tky8bj{color:#ff3e00;text-transform:uppercase;font-size:4em;font-weight:100}@media(min-width: 640px){main.svelte-1tky8bj{max-width:none}}main.svelte-1tky8bj{text-align:center;padding:1em;max-width:240px;margin:0 auto}h1.svelte-1tky8bj{color:#ff3e00;text-transform:uppercase;font-size:4em;font-weight:100}@media(min-width: 640px){main.svelte-1tky8bj{max-width:none}}main.svelte-1tky8bj{text-align:center;padding:1em;max-width:240px;margin:0 auto}h1.svelte-1tky8bj{color:#ff3e00;text-transform:uppercase;font-size:4em;font-weight:100}@media(min-width: 640px){main.svelte-1tky8bj{max-width:none}}

2726
public/build/bundle.js Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -10,7 +10,6 @@ body {
} }
h1 { h1 {
font-style: italic;
color: #373fff; color: #373fff;
line-height: 1.1; line-height: 1.1;
} }
@ -22,22 +21,30 @@ form {
padding: 1em; padding: 1em;
max-width: 40ch; max-width: 40ch;
margin: 0 auto; margin: 0 auto;
box-shadow: grey 1px 1px 3px;
border-radius: .25em;
}
label {
font-weight: bold;
} }
input[type=text] { input[type=text] {
text-transform: lowercase; text-transform: lowercase;
border-radius: .25em;
} }
input { input {
border: 1px solid silver; border: 1px solid silver;
display: block; display: block;
text-align: center;
font-size: 16px; font-size: 16px;
margin-bottom: 10px; margin-bottom: 10px;
padding: 5px; padding: 5px;
width: 100%; width: 100%;
} }
form button { button {
background-color: #bbbbf2; background-color: #bbbbf2;
border: 2px solid currentColor; border: 2px solid currentColor;
border-radius: .25em; border-radius: .25em;
@ -57,6 +64,20 @@ footer {
border-top: 1px solid lightgrey; border-top: 1px solid lightgrey;
} }
blockquote {
background-color: #eee;
display: block;
margin: 1em auto;
padding: 1em;
max-width: 40ch;
box-shadow: grey 1px 1px 3px;
border-radius: .25em;
}
blockquote a {
color: #373fff;
}
#buzzer { #buzzer {
width: 95vw; width: 95vw;
height: 95vw; height: 95vw;
@ -73,6 +94,11 @@ footer {
text-shadow: 2px 2px 2px black; text-shadow: 2px 2px 2px black;
} }
#buzzer.active {
background: greenyellow;
box-shadow: inset 4px 4px 4px rgba(0,0,0,.5);
}
#buzzer:active { #buzzer:active {
box-shadow: inset 4px 4px 4px rgba(0,0,0,.5); box-shadow: inset 4px 4px 4px rgba(0,0,0,.5);
} }
@ -112,7 +138,7 @@ figure.participant figcaption {
10%, 90% { 10%, 90% {
transform: rscale(1.3) otate(-10deg); transform: rscale(1.3) otate(-10deg);
} }
20%, 80% { 20%, 80% {
transform: rscale(1.3) otate(20deg); transform: rscale(1.3) otate(20deg);
} }
@ -148,4 +174,8 @@ figure.participant figcaption {
#messageBox.hide { #messageBox.hide {
display: none; display: none;
} }
#participants {
margin-top: 1em;
}

103
room.js
View File

@ -11,7 +11,7 @@ function shuffle(a) {
function getOrCreateRoom(roomId) { function getOrCreateRoom(roomId) {
let room = rooms[roomId]; let room = rooms[roomId];
if (!room) { if (!room) {
room = { room = {
roomId: roomId, roomId: roomId,
@ -22,43 +22,49 @@ function getOrCreateRoom(roomId) {
}; };
rooms[roomId] = room; rooms[roomId] = room;
} }
return room; return room;
} }
function addParticipant(roomId, participantId, participantName) { function addParticipant(roomId, participantId, participantName) {
let room = getOrCreateRoom(roomId); let room = getOrCreateRoom(roomId);
room.participants.push({ room.participants.push({
participantId, participantId,
participantName, participantName,
character: room.characters[room.participants.length], character: room.characters[room.participants.length],
active: true active: true
}); });
rooms[roomId] = room; rooms[roomId] = room;
} }
function removeParticipant(roomId, participantId) { function removeParticipant(roomId, participantId) {
let room = getOrCreateRoom(roomId); let room = getOrCreateRoom(roomId);
room.participants.find(p => p.participantId === participantId).active = false; let participant = room.participants.find(p => p.participantId === participantId);
room.audience.forEach(ws => { if (participant) {
ws.send(JSON.stringify({ participant.active = false;
type: "participants", room.audience.forEach(ws => {
participants: room.participants ws.send(JSON.stringify({
})); type: "participants",
}); participants: room.participants
}));
});
}
} }
function addParticipantWS(roomId, participantId, ws) { function addParticipantWS(roomId, participantId, ws) {
let room = getOrCreateRoom(roomId); let room = getOrCreateRoom(roomId);
room.participants.find(p => p.participantId === participantId).ws = ws; let participant = room.participants.find(p => p.participantId === participantId);
room.audience.forEach(ws => { if (participant) {
ws.send(JSON.stringify({ participant.ws = ws;
type: "participants", room.audience.forEach(ws => {
participants: room.participants ws.send(JSON.stringify({
})); type: "participants",
}); participants: room.participants
}));
});
}
} }
function addAudienceWS(roomId, ws) { function addAudienceWS(roomId, ws) {
@ -74,26 +80,53 @@ function buzz(roomId, participant) {
let room = getOrCreateRoom(roomId); let room = getOrCreateRoom(roomId);
if (room.canBuzz) { if (room.canBuzz) {
room.canBuzz = false; room.canBuzz = false;
setTimeout(() => room.canBuzz = true, 5000);
participant = room.participants.find(p => p.participantId === participant.participantId); participant = room.participants.find(p => p.participantId === participant.participantId);
room.participants.forEach(p => { if (participant) {
if (p.ws && p.participantId !== participant.participantId) { room.participants.forEach(p => {
p.ws.send(JSON.stringify({ if (p.ws && p.participantId !== participant.participantId) {
p.ws.send(JSON.stringify({
type: "buzz",
participant: participant.participantName,
msg: `<img src="${participant.character}"><div>${participant.participantName} buzzed!</div>`
}));
}
});
room.audience.forEach(ws => {
ws.send(JSON.stringify({
type: "buzz", type: "buzz",
participant: participant.participantName, participant: participant
msg: `<img src="${participant.character}"><div>${participant.participantName} buzzed!</div>`
})); }));
} });
}); }
room.audience.forEach(ws => {
ws.send(JSON.stringify({
type: "buzz",
participant: participant
}));
});
} }
} }
module.exports = {getOrCreateRoom, addParticipant, addParticipantWS, addAudienceWS, buzz, removeParticipant} function reset(roomId) {
let room = getOrCreateRoom(roomId);
room.canBuzz = true;
room.participants.forEach(p => {
p.ws.send(JSON.stringify({
type: "reset"
}));
});
}
function closeRoom(roomId) {
let room = getOrCreateRoom(roomId);
room.canBuzz = false;
room.participants.forEach(p => {
if (p.ws) {
p.ws.send(JSON.stringify({
type: "close"
}));
}
});
delete rooms[roomId];
}
module.exports = {getOrCreateRoom, addParticipant, addParticipantWS, addAudienceWS, buzz, removeParticipant, reset, closeRoom}

View File

@ -6,6 +6,7 @@ const WebSocket = require('ws');
const http = require('http'); const http = require('http');
const randomWords = require('random-words'); const randomWords = require('random-words');
const rooms = require('./room'); const rooms = require('./room');
const room = require("./room");
const app = express(); const app = express();
const server = http.createServer(app); const server = http.createServer(app);
@ -25,32 +26,33 @@ app.get("/", (request, response) => {
}); });
}); });
app.get("/:roomId/join", (request, response) => { app.get("/:roomId", (request, response) => {
let room = rooms.getOrCreateRoom(request.params.roomId.toLowerCase()); let room = rooms.getOrCreateRoom(request.params.roomId.trim().toLowerCase());
let participant = room.participants.find(p => p.participantId === request.fingerprint.hash); let participant = room.participants.find(p => p.participantId === request.fingerprint.hash);
if (participant) { if (room.audience.length === 0) {
response.render('audience', {
layout: false,
room: request.params.roomId.trim().toLowerCase(),
participants: room.participants,
});
} else if (participant) {
response.render('room', { response.render('room', {
layout: false, layout: false,
room: request.params.roomId.toLowerCase(), room: request.params.roomId.trim().toLowerCase(),
name: participant.participantName, name: participant.participantName,
participantName: participant.participantName, participantName: participant.participantName,
participantId: participant.participantId, participantId: participant.participantId,
character: participant.character, character: participant.character,
}); });
} else { } else {
response.render('join', {layout: false, room: request.params.roomId.toLowerCase()}); response.render('join', {layout: false, room: request.params.roomId.trim().toLowerCase()});
} }
}); });
app.get("/:roomId/audience", (request, response) => { app.post("/:roomId", (request, response) => {
let room = rooms.getOrCreateRoom(request.params.roomId.toLowerCase());
response.render('audience', {layout: false, room: request.params.roomId.toLowerCase(), participants: room.participants });
});
app.post("/:roomId/join", (request, response) => {
rooms.addParticipant(request.params.roomId.toLowerCase(), request.fingerprint.hash, request.body.name); rooms.addParticipant(request.params.roomId.toLowerCase(), request.fingerprint.hash, request.body.name);
response.redirect(`/${request.params.roomId.toLowerCase()}/join`); response.redirect(`/${request.params.roomId.toLowerCase()}`);
}); });
server.listen(process.env.PORT, () => { server.listen(process.env.PORT, () => {
@ -65,6 +67,17 @@ wss.on('connection', (ws, req) => {
if (roomId.includes("/audience")) { if (roomId.includes("/audience")) {
roomId = roomId.replace("/audience", ""); roomId = roomId.replace("/audience", "");
rooms.addAudienceWS(roomId, ws); rooms.addAudienceWS(roomId, ws);
ws.on('message', (message) => {
message = JSON.parse(message);
if (message.type === "reset") {
rooms.reset(roomId);
}
});
ws.on('close', () => {
room.closeRoom(roomId);
});
} else { } else {
let participant; let participant;
ws.on('message', (message) => { ws.on('message', (message) => {

View File

@ -14,40 +14,61 @@
</header> </header>
<main> <main>
<blockquote>
Share this link for players to join:<br>
<a id="playerRoom" href=""></a>
</blockquote>
<h2>Participants</h2> <h2>Participants</h2>
<div id="participants"></div> <button id="resetBuzzers">Reset Buzzers</button>
<div id="participants">
No participants yet :(
</div>
</main> </main>
<script> <script>
let socket = new WebSocket(`wss://${window.location.hostname}/{{room}}/audience`); document.getElementById("playerRoom").href = window.location;
document.getElementById("playerRoom").innerText = window.location;
let proto = location.protocol == 'http:' ? 'ws' : 'wss'
let socket = new WebSocket(`${proto}://${window.location.hostname}:${window.location.port}/{{room}}/audience`);
let buzzed;
socket.onmessage = function(event) { socket.onmessage = function(event) {
let msg = JSON.parse(event.data); let msg = JSON.parse(event.data);
if (msg.type === "buzz") { if (msg.type === "buzz") {
beep(); beep();
let buzzed = document.getElementById(`p-${msg.participant.participantId}`); buzzed = document.getElementById(`p-${msg.participant.participantId}`);
buzzed.classList.add('buzzed'); buzzed.classList.add('buzzed');
setTimeout(() => buzzed.classList.remove('buzzed'), 5000)
} else if (msg.type === "participants") { } else if (msg.type === "participants") {
let participantContainer = document.getElementById('participants'); let participantContainer = document.getElementById('participants');
let contents = ''; if (msg.participants.length) {
msg.participants.forEach(p => { let contents = '';
contents += ` msg.participants.forEach(p => {
<figure class="participant ${!p.active ? 'hide': ''}" id="p-${p.participantId}"> contents += `
<img src="${p.character}" /> <figure class="participant ${!p.active ? 'hide': ''}" id="p-${p.participantId}">
<figcaption>${p.participantName}</figcaption> <img src="${p.character}" />
</figure> <figcaption>${p.participantName}</figcaption>
`; </figure>
}); `;
participantContainer.innerHTML = contents; });
participantContainer.innerHTML = contents;
}
} }
}; };
function beep() { function beep() {
window.navigator.vibrate(500); window.navigator.vibrate(500);
} }
document.getElementById('resetBuzzers').addEventListener('click', function() {
socket.send(JSON.stringify({
type: "reset"
}));
buzzed.classList.remove('buzzed');
})
</script> </script>
</body> </body>
</html> </html>

View File

@ -10,16 +10,13 @@
</head> </head>
<body> <body>
<header> <header>
<h1>Join room</h1> <img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABmJLR0QA/wD/AP+gvaeTAAADuUlEQVRoge2YW2hcVRSGv31ym2YyoraasanFEWtaQW0StAYRB2JRFAKCpm1C6c0bSCg++dKHWH32QX0Sq7QkLZlSxcubUGpS0Je0RtJipZnElIIWhlDmkrn1LB9mjMnkzLnMnDO2MN/LMGuvtde/zl57nz0DderUuaNRbk0ku0JPguoD9QxIJ/Ag0FYcTgALoP5Ayc+InFXjc9Nu5K2qAOnvDODLvoXSDoFscxh+GTiGvu5zdfpSolINFRUg4XAjwYVhhCPAvZUmLyiQGKI+4u/Nn6lz5/KOw50GyJ6HtqJrp4DtTmMtZr6Izh51eu6KkyhHBcjuUD+ixvivt1fzaDfseAm2dMGGjdB2N0RnYGSX3RRxRIZUZO57uwGNdh1ld2gvor40jXn/GPjvsjulEQGU+loGQgdUZG7UToCtFSg++TOUiu/pg3wOpicK35/th/s2wew0XL8KiZuQTTsroUAeeFWNR3+wcrQsQAYf3sItpoDAsrGhAfaPwM5BSMXhoMvboUACTX9KnZr/3cxJMxuUcLiRW0QoFX/404L4bBq++sAduWtpQ9fGJBw2bXPTAgguDFN62uwfgadfhORNODoIk99UK9SMbtoX3jVzKNtCsrfdT9Y/D2xYNva+Aoc/KTz5o0Nw9VfXlJZXKDFSzSH13ZW40XD5Fci0vsNK8QD7jhQ+j39YG/EAotazLvdmueHy/VW4Hqy2nf8WtAY4O+6aPpscAj42GjBsoeLFrEaP2C7qcTU+O1NqNW4h4QXP9ThG+oysxgUobYenWipCeo2sZTaxbPVSSmWoTiNrmRWQjZ5qqYxNRsYye0AFDO3/L4aa7F3mzvAAOvNAs5uKTMghhNQA160cza8S/6LzNrUTD9CEouzLayXWt9EIzSj+BIJVy3LGDfxsVi+TMXOyXgGNAWovHuB+krxm5WRdgDDsipzKeM/Kwfgqcbn0EnR7oB5bq9feJr6Nsf2j3gkXoh1EfnmC2b/WA/BIMMbrvb/RHbI8FR3jeguNTnRxYqLHcGzf81MMPXex0qm9b6GpaAcnJnoQIJNKkFiMEV+MkU4lEeD4Tz1ciHa4mdLdAkYnuwHIpJJklpbQdR3RdbJLKTKpZNGny82U7hSQzjUyNtnFpWvtAOQza/8LyqULtplrQU6e304m7872M9wDOwffqOoYjS/GEF1fnUhrIHBPdf8D/3jyi9oco00tPgNbixepvDlGW1r9AOSKrdTU4lu2uY0nBSjA1+rH55Holdzxb+J6AXXq1KlTFf8AtEULoLOzQvEAAAAASUVORK5CYII=" />
<h1>Buzzers</h1>
</header> </header>
<main> <main>
<h2>Oh hi!</h2> <h2>Create or join a game room</h2>
<p>
Create or join a room
</p>
<form> <form>
<label> <label>
Room ID Room ID
@ -28,13 +25,12 @@
<button type="submit" id="submit-name">Submit</button> <button type="submit" id="submit-name">Submit</button>
</form> </form>
</main> </main>
<script> <script>
document.querySelector('form').addEventListener('submit', function(event) { document.querySelector('form').addEventListener('submit', function(event) {
event.preventDefault(); event.preventDefault();
let roomId = document.getElementById('roomId').value; let roomId = document.getElementById('roomId').value;
window.location = `//${window.location.host}/${roomId}/join`; window.location = `//${window.location.host}/${roomId}`;
}); });
</script> </script>
</body> </body>

View File

@ -10,13 +10,11 @@
</head> </head>
<body> <body>
<header> <header>
<h1>Join {{room}}</h1> <h1>Join '{{room}}'</h1>
</header> </header>
<main> <main>
<h2>Oh hi,</h2> <h2>Please tell me your (team) name:</h2>
<p>Tell me your (team) name:</p>
<form method="POST"> <form method="POST">
<label> <label>
@ -25,10 +23,6 @@
</label> </label>
<button type="submit" id="submit-name">Submit</button> <button type="submit" id="submit-name">Submit</button>
</form> </form>
<p>
<a href="/{{room}}/audience">Join the audience</a>
</p>
</main> </main>
</body> </body>
</html> </html>

View File

@ -14,19 +14,20 @@
</header> </header>
<main> <main>
<h2>Oh hi, {{name}} <img src="{{character}}"/></h2> <h2>{{name}} <img src="{{character}}"/></h2>
<button id="buzzer"> <button id="buzzer">
BUZZ BUZZ
</button> </button>
</main> </main>
<div id="messageBox" class="hide"> <div id="messageBox" class="hide">
</div> </div>
<script> <script>
let socket = new WebSocket(`wss://${window.location.hostname}/{{room}}`); let proto = location.protocol == 'http:' ? 'ws' : 'wss'
let socket = new WebSocket(`${proto}://${window.location.hostname}:${window.location.port}/{{room}}`);
socket.onopen = function(e) { socket.onopen = function(e) {
socket.send(JSON.stringify({ socket.send(JSON.stringify({
@ -42,35 +43,51 @@
let msg = JSON.parse(event.data); let msg = JSON.parse(event.data);
if (msg.type === "buzz") { if (msg.type === "buzz") {
showMessage(msg.msg); showMessage(msg.msg);
} else if (msg.type === "reset") {
reset();
} else if (msg.type === "close") {
roomClosed();
} }
}; };
document.getElementById('buzzer').addEventListener('touchstart', function() { document.getElementById('buzzer').addEventListener('touchstart', function() {
beep(); beep();
socket.send(JSON.stringify({ socket.send(JSON.stringify({
type: "buzz" type: "buzz"
})); }));
document.getElementById('buzzer').classList.add('active');
}); });
document.getElementById('buzzer').addEventListener('mousedown', function() { document.getElementById('buzzer').addEventListener('mousedown', function() {
beep(); beep();
socket.send(JSON.stringify({ socket.send(JSON.stringify({
type: "buzz" type: "buzz"
})); }));
document.getElementById('buzzer').classList.add('active');
}); });
function showMessage(msg) { function showMessage(msg) {
window.navigator.vibrate(500); window.navigator.vibrate(500);
document.getElementById('buzzer').disabled = true; document.getElementById('buzzer').disabled = true;
let mb = document.getElementById('messageBox'); let mb = document.getElementById('messageBox');
mb.innerHTML = msg; mb.innerHTML = msg;
mb.classList.remove('hide'); mb.classList.remove('hide');
setTimeout(() => {
document.getElementById('buzzer').disabled = false;
mb.classList.add('hide');
}, 5000)
} }
function reset() {
document.getElementById('buzzer').disabled = false;
document.getElementById('buzzer').classList.remove('active');
let mb = document.getElementById('messageBox');
mb.classList.add('hide');
}
function roomClosed() {
document.getElementById('buzzer').disabled = true;
let mb = document.getElementById('messageBox');
mb.innerHTML = "Room closed";
mb.classList.remove('hide');
}
function beep() { function beep() {
window.navigator.vibrate(500); window.navigator.vibrate(500);
} }