mirror of https://github.com/dirtbags/moth.git
move p2 scoreboard into mcp
This commit is contained in:
parent
c0106459a5
commit
e91911bd9f
|
@ -30,221 +30,138 @@ function escape(s) {
|
||||||
return s
|
return s
|
||||||
}
|
}
|
||||||
|
|
||||||
function print_bar(cat, teamid, teamname, n, d) {
|
function head() {
|
||||||
printf("<div class=\"t%s score\"" \
|
print "<!DOCTYPE html>"
|
||||||
" style=\"height: %.2f%%;\"" \
|
print "<html><head><title>Project 2 Scoreboard</title>"
|
||||||
" onmouseover=\"highlight('%s')\"" \
|
print "<meta http-equiv=\"refresh\" content=\"60\">"
|
||||||
" onmouseout=\"restore('%s')\">\n" \
|
print "<style>"
|
||||||
"<!-- %s --> %s: %s\n" \
|
print "html {background: black url(\"p2inv.png\") no-repeat top center; background-size: contain; min-height: 100%; color: white;}"
|
||||||
"</div>",
|
print "body {background: black; opacity: 0.92; margin: 0;}"
|
||||||
teamid,
|
print "p {margin: 0;}"
|
||||||
100 * n / d,
|
print "span {display: inline-block; margin: 0; border: 0;}"
|
||||||
teamid,
|
print ".cat0 {background-color: #a6cee3; color: black;}"
|
||||||
teamid,
|
print ".cat1 {background-color: #1f78b4;}"
|
||||||
cat, escape(name), n)
|
print ".cat2 {background-color: #b2df8a; color: black;}"
|
||||||
|
print ".cat3 {background-color: #33a02c;}"
|
||||||
|
print ".cat4 {background-color: #fb9a99;}"
|
||||||
|
print ".cat5 {background-color: #e31a1c;}"
|
||||||
|
print ".cat6 {background-color: #fdbf6f;}"
|
||||||
|
print ".cat7 {background-color: #ff7f00;}"
|
||||||
|
print ".cat8 {background-color: #cab2d6;}"
|
||||||
|
|
||||||
|
print ".name {position: absolute; right: 10px;}"
|
||||||
|
print "#scores p {margin: 0; padding: 0; border: thin solid #222; opacity: 0.92;}"
|
||||||
|
print "#scores p:hover {border: thin solid yellow;}"
|
||||||
|
print "</style>"
|
||||||
|
print "</head><body>"
|
||||||
|
print "<div id=\"scores\">"
|
||||||
}
|
}
|
||||||
|
|
||||||
function output( t, c) {
|
function foot() {
|
||||||
for (t in teams) {
|
|
||||||
score = 0;
|
|
||||||
for (c in points_by_cat) {
|
print " </div>"
|
||||||
if (points_by_cat[c] > 0) {
|
print " <pre style=\"position: fixed; bottom: 0; left: 20%; font-size: 250%;"
|
||||||
score += points_by_cat_team[c, t] / points_by_cat[c];
|
print " opacity: 0.8; background-color: black\">"
|
||||||
}
|
print "Project 2<br>"
|
||||||
}
|
print "<p>A CTF for people with limited time/patience/self-confidence.</p>"
|
||||||
if (score > maxscore) {
|
print "<p>Plug in ethernet at this table, download puzzles, go think.</p>"
|
||||||
maxscore = score
|
print "<p>http://10.0.0.2/</p>"
|
||||||
}
|
print "<p>Use the terminal to claim points when you've figured something out.</p>"
|
||||||
if (score > maxscores_by_team[t]) {
|
print " </pre>"
|
||||||
maxscores_by_team[t] = score
|
print " </body>"
|
||||||
}
|
print "</body></html>"
|
||||||
scores_by_team_time[t, lasttime] = score
|
|
||||||
}
|
|
||||||
timestamps[tslen++] = lasttime
|
|
||||||
}
|
}
|
||||||
|
|
||||||
BEGIN {
|
BEGIN {
|
||||||
base = ENVIRON["CTF_BASE"]
|
base = ENVIRON["CTF_BASE"]
|
||||||
|
if (! base) {
|
||||||
|
base = "/var/lib/ctf"
|
||||||
|
}
|
||||||
|
|
||||||
# Only display two decimal places
|
head()
|
||||||
CONVFMT = "%.2f"
|
|
||||||
|
|
||||||
# New point at least every 2.5 minutes
|
|
||||||
interval = 150
|
|
||||||
tslen = 0
|
|
||||||
|
|
||||||
nteams = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# MAINLOOP
|
# MAINLOOP
|
||||||
{
|
{
|
||||||
time = $1
|
time = $1
|
||||||
team = $2
|
hash = $2
|
||||||
cat = $3
|
cat = $3
|
||||||
points = int($4)
|
points = int($4)
|
||||||
|
|
||||||
if (! start) {
|
# Build a list of team names
|
||||||
start = time
|
if (! (hash in team_names)) {
|
||||||
|
fn = sprintf("%s/teams/names/%s", base, hash)
|
||||||
|
getline team_names[hash] < fn
|
||||||
|
close(fn)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (time > (outtime + interval)) {
|
# Total points possible so far in this category
|
||||||
outtime = time
|
if (! ((cat, points) in cat_pointval)) {
|
||||||
output()
|
cat_total[cat] += points
|
||||||
|
cat_pointval[cat, points] = 1
|
||||||
}
|
}
|
||||||
lasttime = time
|
|
||||||
|
|
||||||
teams[team] = nteams++
|
# Enumerate categories
|
||||||
points_by_cat[cat] += points
|
if (! (cat in seen_cats)) {
|
||||||
points_by_cat_team[cat, team] += points
|
seen_cats[cat] = 1
|
||||||
|
categories[ncats++] = cat
|
||||||
|
}
|
||||||
|
|
||||||
|
# Points this team has in this category
|
||||||
|
cat_points[hash, cat] += points
|
||||||
}
|
}
|
||||||
|
|
||||||
END {
|
END {
|
||||||
output()
|
# Adjust per-category points to a per-category percentage complete
|
||||||
|
for (hash in team_names) {
|
||||||
# Get team colors and names
|
for (cat in cat_total) {
|
||||||
for (team in teams) {
|
cat_score[hash, cat] = cat_points[hash, cat] / cat_total[cat]
|
||||||
# Busybox awk segfaults if you try to close a file that didn't
|
total_score[hash] += cat_score[hash, cat]
|
||||||
# exist. We work around it by calling cat.
|
}
|
||||||
cmd = sprintf("cat %s/state/teams/colors/%s", base, team)
|
scores[nteams++] = total_score[hash]
|
||||||
color = "444444";
|
if (total_score[hash] > max_score) {
|
||||||
cmd | getline color
|
max_score = total_score[hash]
|
||||||
colors_by_team[team] = color
|
}
|
||||||
close(cmd)
|
|
||||||
|
|
||||||
cmd = sprintf("cat %s/state/teams/names/%s", base, team)
|
|
||||||
name = "Phantoms"
|
|
||||||
cmd | getline name
|
|
||||||
names_by_team[team] = name
|
|
||||||
close(cmd)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Sort categories
|
# Sort scores
|
||||||
ncats = 0
|
|
||||||
for (cat in points_by_cat) {
|
|
||||||
cats[ncats++] = cat
|
|
||||||
}
|
|
||||||
qsort(cats, 0, ncats-1)
|
|
||||||
|
|
||||||
# Create a sorted list of scores
|
|
||||||
nteams = 0
|
|
||||||
for (team in teams) {
|
|
||||||
scores[nteams++] = scores_by_team_time[team, lasttime]
|
|
||||||
}
|
|
||||||
qsort(scores, 0, nteams-1)
|
qsort(scores, 0, nteams-1)
|
||||||
|
|
||||||
|
print "<p>"
|
||||||
# Now we can start writing the document
|
for (ncat = 0; ncat < ncats; ncat += 1) {
|
||||||
print "<!DOCTYPE html>"
|
printf("<span class=\"cat%d\">%s</span>\n", ncat, categories[ncat]);
|
||||||
print "<html class=\"scoreboard\">"
|
|
||||||
print " <head>"
|
|
||||||
print " <title>Scoreboard</title>"
|
|
||||||
print " <link rel=\"stylesheet\" href=\"ctf.css\" type=\"text/css\">"
|
|
||||||
print " <script type=\"application/javascript\" src=\"scoreboard.js\"></script>"
|
|
||||||
|
|
||||||
# Provide raw data for the chart
|
|
||||||
print " <script type=\"application/javascript\">"
|
|
||||||
print "function init() {"
|
|
||||||
printf(" plot(\"chart\", %d, %.2f, {\n", tslen, maxscore)
|
|
||||||
c = 0
|
|
||||||
for (team in teams) {
|
|
||||||
if (maxscores_by_team[team] / maxscore < 0.01) continue
|
|
||||||
printf(" \"%s\": [\"#%s\",[", teams[team], colors_by_team[team])
|
|
||||||
for (i = 1; i < tslen; i += 1) {
|
|
||||||
time = timestamps[i]
|
|
||||||
printf("[%d,%.2f],",
|
|
||||||
i, scores_by_team_time[team, time])
|
|
||||||
}
|
|
||||||
printf("]],\n");
|
|
||||||
}
|
}
|
||||||
print " });"
|
print "</p>"
|
||||||
print " if (location.hash) {"
|
|
||||||
print " cycle();"
|
|
||||||
print " setInterval(cycle, 10000);"
|
|
||||||
print " }"
|
|
||||||
print "}"
|
|
||||||
print "window.onload = init;"
|
|
||||||
print " </script>"
|
|
||||||
|
|
||||||
# Reload every minute
|
for (i = nteams-1; i >= 0; i -= 1) {
|
||||||
print " <meta http-equiv=\"refresh\" content=\"60\">"
|
score = scores[i];
|
||||||
|
if (score == scores[i-1]) continue; # Skip duplicates
|
||||||
|
|
||||||
# Set up team colors and a few page-specific styles
|
for (hash in team_names) {
|
||||||
print " <style type=\"text/css\">"
|
if (total_score[hash] != score) {
|
||||||
print " body { width: 100%; }"
|
continue;
|
||||||
print " .score { overflow: hidden; color: black; }"
|
|
||||||
for (team in teams) {
|
|
||||||
printf(" .t%s { background-color: #%s; }\n",
|
|
||||||
teams[team], colors_by_team[team])
|
|
||||||
}
|
|
||||||
print " </style>"
|
|
||||||
|
|
||||||
print " </head>"
|
|
||||||
print " <body>"
|
|
||||||
print " <h1>Scoreboard</h1>"
|
|
||||||
print " <p id=\"debug\"></p>"
|
|
||||||
print " <img src=\"backup.png?" NR "\" alt=\"\" style=\"display: none;\" height=\"1\" width=\"1\">"
|
|
||||||
print " <table id=\"scoreboard\">"
|
|
||||||
print " <tr>"
|
|
||||||
print " <th>Overall</th>"
|
|
||||||
|
|
||||||
# Print out category names
|
|
||||||
for (i = 0; i < ncats; i += 1) {
|
|
||||||
cat = cats[i]
|
|
||||||
points = points_by_cat[cat]
|
|
||||||
if (0 == points) continue
|
|
||||||
printf("<th>%s (%d)</th>\n", cat, points)
|
|
||||||
}
|
|
||||||
|
|
||||||
print " </tr>"
|
|
||||||
print " <tr>"
|
|
||||||
|
|
||||||
# Print out teams, ranked by score
|
|
||||||
print " <td>"
|
|
||||||
for (i = 0; i < nteams; i += 1) {
|
|
||||||
if (scores[i] == scores[i-1]) continue;
|
|
||||||
for (team in teams) {
|
|
||||||
if (scores[i] == scores_by_team_time[team, lasttime]) {
|
|
||||||
name = names_by_team[team]
|
|
||||||
print_bar("total", teams[team], name, scores[i], ncats)
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
print " </td>"
|
|
||||||
|
|
||||||
# Print out scores within each category
|
name = escape(team_names[hash])
|
||||||
for (i = 0; i < ncats; i += 1) {
|
print "<p>"
|
||||||
cat = cats[i]
|
printf("<span class=\"name\">%s</span>\n", name)
|
||||||
points = points_by_cat[cat]
|
|
||||||
if (0 == points) break;
|
|
||||||
|
|
||||||
print "<td>"
|
for (ncat = 0; ncat < ncats; ncat += 1) {
|
||||||
|
cat = categories[ncat];
|
||||||
|
points = cat_points[hash, cat];
|
||||||
|
|
||||||
# Create sorted list of scores in this category
|
if (cat_points[hash, cat] > 0) {
|
||||||
n = 0
|
width = cat_score[hash, cat] / max_score * 90
|
||||||
for (team in teams) {
|
printf("<!-- %s %s %s -->", cat, points, name)
|
||||||
l[n++] = points_by_cat_team[cat, team];
|
printf("<span class=\"cat%d\" style=\"width: %.2f%%;\">%d</span>",
|
||||||
}
|
ncat, width, cat_points[hash, cat])
|
||||||
qsort(l, 0, n-1)
|
|
||||||
|
|
||||||
# Print out teams, ranked by points
|
|
||||||
for (j = 0; j < n; j += 1) {
|
|
||||||
if (l[j] == l[j-1]) continue;
|
|
||||||
if (0 == l[j]) continue;
|
|
||||||
for (team in teams) {
|
|
||||||
points = points_by_cat_team[cat, team]
|
|
||||||
if (l[j] == points) {
|
|
||||||
name = names_by_team[team]
|
|
||||||
print_bar(cat, teams[team], name, points, points_by_cat[cat])
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
print "</p>"
|
||||||
}
|
}
|
||||||
|
|
||||||
print "</td>"
|
|
||||||
}
|
}
|
||||||
print " </tr>"
|
|
||||||
|
|
||||||
print " </table>"
|
foot()
|
||||||
print " <canvas id=\"chart\" width=\"1024\" height=\"240\"></canvas>"
|
|
||||||
print " </body>"
|
|
||||||
print "</html>"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue