Skip to content

Commit d8827ae

Browse files
author
Adam Thomas
committed
add current.html with just the canvas
1 parent 75e49a4 commit d8827ae

File tree

2 files changed

+44
-3
lines changed

2 files changed

+44
-3
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ ctanks.o: ctanks.h
3030
m4 $< > $@
3131

3232
clean:
33-
rm -f *.o next-round round-*.html results-*.txt
33+
rm -f *.o next-round round-*.html round-*.json results-*.txt current.html
3434
rm -f $(BINARIES) $(HTML)

run-tanks

+43-2
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,12 @@ expr $next + 1 > next-round
2323

2424
fn=$(printf "round-%04d.html" $next)
2525
rfn=$(printf "results-%04d.txt" $next)
26-
26+
jfn=$(printf "round-%04d.json" $next)
27+
cfn="current$$.html";
2728

2829
echo -n "Running round $next... "
30+
$TANKS_GAME $tanks >>$jfn 3>$rfn
31+
2932
cat <<EOF >$fn
3033
<!DOCTYPE html>
3134
<html>
@@ -38,7 +41,7 @@ cat <<EOF >$fn
3841
start("battlefield",
3942
// Start JSON data
4043
EOF
41-
$TANKS_GAME $tanks >>$fn 3>$rfn
44+
cat $jfn >> $fn
4245
cat <<EOF >>$fn
4346
// end JSON data
4447
);
@@ -58,6 +61,44 @@ cat <<EOF >>$fn
5861
</html>
5962
EOF
6063

64+
cat <<EOF >$cfn
65+
<!DOCTYPE html>
66+
<html>
67+
<head>
68+
<title>Tanks Round $next</title>
69+
<script type="application/javascript" src="tanks.js"></script>
70+
<meta http-equiv="Refresh" content="60" />
71+
<style type="text/css">
72+
html {
73+
background: #222;
74+
}
75+
#battlefield {
76+
border: 1px solid green;
77+
}
78+
</style>
79+
<script type="application/javascript">
80+
function go() {
81+
start("battlefield",
82+
// Start JSON data
83+
EOF
84+
cat $jfn >> $cfn
85+
cat <<EOF >>$cfn
86+
// end JSON data
87+
);
88+
}
89+
window.onload = go;
90+
</script>
91+
</head>
92+
<body>
93+
<div id="game_box"><canvas id="battlefield"></canvas></div>
94+
EOF
95+
cat <<EOF >>$cfn
96+
</body>
97+
</html>
98+
EOF
99+
100+
mv "current$$.html" "current.html"
101+
61102
summary.awk $tanks > summary.html.$$
62103
mv summary.html.$$ summary.html
63104

0 commit comments

Comments
 (0)