2020-02-29 17:12:35 -07:00
|
|
|
// jshint asi:true
|
|
|
|
|
2023-09-13 18:52:52 -06:00
|
|
|
// import { Chart, registerables } from "https://cdn.jsdelivr.net/npm/chart.js@3.0.2"
|
|
|
|
// import {DateTime} from "https://cdn.jsdelivr.net/npm/luxon@1.26.0"
|
|
|
|
// import "https://cdn.jsdelivr.net/npm/chartjs-adapter-luxon@0.1.1"
|
|
|
|
// Chart.register(...registerables)
|
|
|
|
|
|
|
|
const MILLISECOND = 1
|
|
|
|
const SECOND = 1000 * MILLISECOND
|
|
|
|
const MINUTE = 60 * SECOND
|
|
|
|
|
|
|
|
// If all else fails...
|
|
|
|
setInterval(() => location.reload(), 30 * SECOND)
|
|
|
|
|
2020-02-29 17:12:35 -07:00
|
|
|
function scoreboardInit() {
|
2023-09-13 18:52:52 -06:00
|
|
|
let chartColors = [
|
2020-02-29 17:12:35 -07:00
|
|
|
"rgb(255, 99, 132)",
|
|
|
|
"rgb(255, 159, 64)",
|
|
|
|
"rgb(255, 205, 86)",
|
|
|
|
"rgb(75, 192, 192)",
|
|
|
|
"rgb(54, 162, 235)",
|
|
|
|
"rgb(153, 102, 255)",
|
|
|
|
"rgb(201, 203, 207)"
|
|
|
|
]
|
2023-09-13 18:52:52 -06:00
|
|
|
|
|
|
|
for (let q of document.querySelectorAll("[data-url]")) {
|
|
|
|
let url = new URL(q.dataset.url, document.location)
|
|
|
|
q.textContent = url.hostname
|
|
|
|
if (url.port) {
|
|
|
|
q.textContent += `:${url.port}`
|
|
|
|
}
|
|
|
|
if (url.pathname != "/") {
|
|
|
|
q.textContent += url.pathname
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (let q of document.querySelectorAll(".qrcode")) {
|
|
|
|
let url = new URL(q.dataset.url, document.location)
|
|
|
|
let qr = new QRious({
|
|
|
|
element: q,
|
|
|
|
value: url.toString(),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
let chart
|
|
|
|
let canvas = document.querySelector("#chart canvas")
|
|
|
|
if (canvas) {
|
|
|
|
chart = new Chart(canvas.getContext("2d"), {
|
|
|
|
type: "line",
|
|
|
|
options: {
|
|
|
|
responsive: true,
|
|
|
|
scales: {
|
|
|
|
x: {
|
|
|
|
type: "time",
|
|
|
|
time: {
|
|
|
|
// XXX: the manual says this should do something, it does something in the samples, IDK
|
|
|
|
tooltipFormat: "HH:mm"
|
|
|
|
},
|
|
|
|
title: {
|
|
|
|
display: true,
|
|
|
|
text: "Time"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
y: {
|
|
|
|
title: {
|
|
|
|
display: true,
|
|
|
|
text: "Points"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
tooltips: {
|
|
|
|
mode: "index",
|
|
|
|
intersect: false
|
|
|
|
},
|
|
|
|
hover: {
|
|
|
|
mode: "nearest",
|
|
|
|
intersect: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
async function refresh() {
|
|
|
|
let resp = await fetch("../state")
|
|
|
|
let state = await resp.json()
|
|
|
|
|
2020-02-29 17:12:35 -07:00
|
|
|
for (let rotate of document.querySelectorAll(".rotate")) {
|
|
|
|
rotate.appendChild(rotate.firstElementChild)
|
|
|
|
}
|
2023-09-13 18:52:52 -06:00
|
|
|
window.scrollTo(0,0)
|
2020-02-29 17:12:35 -07:00
|
|
|
|
|
|
|
let element = document.getElementById("rankings")
|
2020-08-14 20:26:04 -06:00
|
|
|
let teamNames = state.TeamNames
|
|
|
|
let pointsLog = state.PointsLog
|
2020-02-29 17:12:35 -07:00
|
|
|
|
|
|
|
// Every machine that's displaying the scoreboard helpfully stores the last 20 values of
|
|
|
|
// points.json for us, in case of catastrophe. Thanks, y'all!
|
|
|
|
//
|
|
|
|
// We have been doing some variation on this "everybody backs up the server state" trick since 2009.
|
|
|
|
// We have needed it 0 times.
|
2023-09-13 18:52:52 -06:00
|
|
|
let pointsHistory = JSON.parse(localStorage.getItem("pointsHistory")) || []
|
|
|
|
if (pointsHistory.length >= 20) {
|
|
|
|
pointsHistory.shift()
|
2020-02-29 17:12:35 -07:00
|
|
|
}
|
2023-09-13 18:52:52 -06:00
|
|
|
pointsHistory.push(pointsLog)
|
|
|
|
localStorage.setItem("pointsHistory", JSON.stringify(pointsHistory))
|
2020-02-29 17:12:35 -07:00
|
|
|
|
|
|
|
let teams = {}
|
|
|
|
let highestCategoryScore = {} // map[string]int
|
|
|
|
|
|
|
|
// Initialize data structures
|
|
|
|
for (let teamId in teamNames) {
|
|
|
|
teams[teamId] = {
|
|
|
|
categoryScore: {}, // map[string]int
|
|
|
|
overallScore: 0, // int
|
|
|
|
historyLine: [], // []{x: int, y: int}
|
|
|
|
name: teamNames[teamId],
|
|
|
|
id: teamId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dole out points
|
|
|
|
for (let entry of pointsLog) {
|
|
|
|
let timestamp = entry[0]
|
|
|
|
let teamId = entry[1]
|
|
|
|
let category = entry[2]
|
|
|
|
let points = entry[3]
|
|
|
|
|
|
|
|
let team = teams[teamId]
|
|
|
|
|
|
|
|
let score = team.categoryScore[category] || 0
|
|
|
|
score += points
|
|
|
|
team.categoryScore[category] = score
|
|
|
|
|
|
|
|
let highest = highestCategoryScore[category] || 0
|
|
|
|
if (score > highest) {
|
|
|
|
highestCategoryScore[category] = score
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let teamId in teamNames) {
|
|
|
|
teams[teamId].categoryScore = {}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let entry of pointsLog) {
|
|
|
|
let timestamp = entry[0]
|
|
|
|
let teamId = entry[1]
|
|
|
|
let category = entry[2]
|
|
|
|
let points = entry[3]
|
|
|
|
|
|
|
|
let team = teams[teamId]
|
|
|
|
|
|
|
|
let score = team.categoryScore[category] || 0
|
|
|
|
score += points
|
|
|
|
team.categoryScore[category] = score
|
|
|
|
|
|
|
|
let overall = 0
|
|
|
|
for (let cat in team.categoryScore) {
|
|
|
|
overall += team.categoryScore[cat] / highestCategoryScore[cat]
|
|
|
|
}
|
|
|
|
|
2023-09-13 18:52:52 -06:00
|
|
|
team.historyLine.push({x: timestamp * 1000, y: overall})
|
2020-02-29 17:12:35 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Compute overall scores based on current highest
|
|
|
|
for (let teamId in teams) {
|
|
|
|
let team = teams[teamId]
|
|
|
|
team.overallScore = 0
|
|
|
|
for (let cat in team.categoryScore) {
|
|
|
|
team.overallScore += team.categoryScore[cat] / highestCategoryScore[cat]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sort by team score
|
|
|
|
function teamCompare(a, b) {
|
|
|
|
return a.overallScore - b.overallScore
|
|
|
|
}
|
|
|
|
|
|
|
|
// Figure out how to order each team on the scoreboard
|
|
|
|
let winners = []
|
|
|
|
for (let teamId in teams) {
|
|
|
|
winners.push(teams[teamId])
|
|
|
|
}
|
|
|
|
winners.sort(teamCompare)
|
|
|
|
winners.reverse()
|
|
|
|
|
|
|
|
// Let's make some better names for things we've computed
|
|
|
|
let winningScore = winners[0].overallScore
|
|
|
|
let numCategories = Object.keys(highestCategoryScore).length
|
|
|
|
|
|
|
|
// Clear out the element we're about to populate
|
|
|
|
Array.from(element.childNodes).map(e => e.remove())
|
|
|
|
|
|
|
|
let maxWidth = 100 / winningScore
|
|
|
|
for (let team of winners) {
|
|
|
|
let row = document.createElement("div")
|
|
|
|
let ncat = 0
|
|
|
|
for (let category in highestCategoryScore) {
|
|
|
|
let catHigh = highestCategoryScore[category]
|
|
|
|
let catTeam = team.categoryScore[category] || 0
|
|
|
|
let catPct = catTeam / catHigh
|
|
|
|
let width = maxWidth * catPct
|
|
|
|
|
|
|
|
let bar = document.createElement("span")
|
|
|
|
bar.classList.add("category")
|
|
|
|
bar.classList.add("cat" + ncat)
|
|
|
|
bar.style.width = width + "%"
|
|
|
|
bar.textContent = category + ": " + catTeam
|
|
|
|
bar.title = bar.textContent
|
|
|
|
|
|
|
|
row.appendChild(bar)
|
|
|
|
ncat += 1
|
|
|
|
}
|
|
|
|
|
|
|
|
let te = document.createElement("span")
|
|
|
|
te.classList.add("teamname")
|
|
|
|
te.textContent = team.name
|
|
|
|
row.appendChild(te)
|
|
|
|
|
|
|
|
element.appendChild(row)
|
|
|
|
}
|
|
|
|
|
2023-09-13 18:52:52 -06:00
|
|
|
if (!chart) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Update chart
|
|
|
|
*/
|
|
|
|
chart.data.datasets = []
|
2020-02-29 17:12:35 -07:00
|
|
|
for (let i in winners) {
|
|
|
|
if (i > 5) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
let team = winners[i]
|
|
|
|
let color = chartColors[i % chartColors.length]
|
2023-09-13 18:52:52 -06:00
|
|
|
chart.data.datasets.push({
|
2020-02-29 17:12:35 -07:00
|
|
|
label: team.name,
|
|
|
|
backgroundColor: color,
|
|
|
|
borderColor: color,
|
|
|
|
data: team.historyLine,
|
|
|
|
lineTension: 0,
|
|
|
|
fill: false
|
|
|
|
})
|
|
|
|
}
|
2023-09-13 18:52:52 -06:00
|
|
|
chart.update()
|
|
|
|
window.chart = chart
|
2020-02-29 17:12:35 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
function init() {
|
|
|
|
let base = window.location.href.replace("scoreboard.html", "")
|
|
|
|
let location = document.querySelector("#location")
|
|
|
|
if (location) {
|
|
|
|
location.textContent = base
|
|
|
|
}
|
|
|
|
|
2023-09-13 18:52:52 -06:00
|
|
|
setInterval(refresh, 20 * SECOND)
|
2020-02-29 17:12:35 -07:00
|
|
|
refresh()
|
|
|
|
}
|
|
|
|
|
|
|
|
init()
|
|
|
|
}
|
|
|
|
|
|
|
|
if (document.readyState === "loading") {
|
|
|
|
document.addEventListener("DOMContentLoaded", scoreboardInit)
|
|
|
|
} else {
|
|
|
|
scoreboardInit()
|
|
|
|
}
|