File tree 2 files changed +44
-3
lines changed
2 files changed +44
-3
lines changed Original file line number Diff line number Diff line change @@ -30,5 +30,5 @@ ctanks.o: ctanks.h
30
30
m4 $< > $@
31
31
32
32
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
34
34
rm -f $(BINARIES ) $(HTML )
Original file line number Diff line number Diff line change @@ -23,9 +23,12 @@ expr $next + 1 > next-round
23
23
24
24
fn=$( printf " round-%04d.html" $next )
25
25
rfn=$( printf " results-%04d.txt" $next )
26
-
26
+ jfn=$( printf " round-%04d.json" $next )
27
+ cfn=" current$$ .html" ;
27
28
28
29
echo -n " Running round $next ... "
30
+ $TANKS_GAME $tanks >> $jfn 3> $rfn
31
+
29
32
cat << EOF >$fn
30
33
<!DOCTYPE html>
31
34
<html>
@@ -38,7 +41,7 @@ cat <<EOF >$fn
38
41
start("battlefield",
39
42
// Start JSON data
40
43
EOF
41
- $TANKS_GAME $tanks >> $fn 3> $rfn
44
+ cat $jfn >> $fn
42
45
cat << EOF >>$fn
43
46
// end JSON data
44
47
);
@@ -58,6 +61,44 @@ cat <<EOF >>$fn
58
61
</html>
59
62
EOF
60
63
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
+
61
102
summary.awk $tanks > summary.html.$$
62
103
mv summary.html.$$ summary.html
63
104
You can’t perform that action at this time.
0 commit comments