chiark / gitweb /
Try to give a more friendly message if anything goes wrong during
[sgt-puzzles.git] / html / jspage.pl
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 open my $footerfile, "<", shift @ARGV or die "footer: open: $!\n";
7 my $footer = "";
8 $footer .= $_ while <$footerfile>;
9 close $footerfile;
10
11 for my $arg (@ARGV) {
12     $arg =~ /(.*\/)?([^\/]+)\.html$/ or die;
13     my $filename = $2;
14     open my $gamefile, "<", $arg or die "$arg: open: $!\n";
15     my $unfinished = 0;
16     my $docname = $filename;
17     chomp(my $puzzlename = <$gamefile>);
18     while ($puzzlename =~ s/^([^:=]+)(=([^:]+))?://) {
19         if ($1 eq "unfinished") {
20             $unfinished = 1;
21         } elsif ($1 eq "docname") {
22             $docname = $3;
23         } else {
24             die "$arg: unknown keyword '$1'\n";
25         }
26     }
27     my $instructions = "";
28     $instructions .= $_ while <$gamefile>;
29     close $gamefile;
30
31     open my $outpage, ">", "${filename}.html";
32
33     my $unfinishedtitlefragment = $unfinished ? "an unfinished puzzle " : "";
34     my $unfinishedheading = $unfinished ? "<h2 align=center>an unfinished puzzle</h2>\n" : "";
35     my $unfinishedpara;
36     my $links;
37     if ($unfinished) {
38         $unfinishedpara = <<EOF;
39 <p>
40 You have found your way to a page containing an <em>unfinished</em>
41 puzzle in my collection, not linked from the <a href="../">main
42 puzzles page</a>. Don't be surprised if things are hard to understand
43 or don't work as you expect.
44 EOF
45         $links = <<EOF;
46 <p align="center">
47 <a href="../">Back to main puzzles page</a> (which does not link to this)
48 EOF
49     } else {
50         $unfinishedpara = "";
51         $links = <<EOF;
52 <p align="center">
53 <a href="../doc/${docname}.html#${docname}">Full instructions</a>
54 |
55 <a href="../">Back to main puzzles page</a>
56 EOF
57     }
58
59     print $outpage <<EOF;
60 <html>
61 <head>
62 <meta http-equiv="Content-Type" content="text/html; charset=ASCII" />
63 <title>${puzzlename}, ${unfinishedtitlefragment}from Simon Tatham's Portable Puzzle Collection</title>
64 <script type="text/javascript" src="${filename}.js"></script>
65 </head>
66 <body onLoad="initPuzzle();">
67 <h1 align=center>${puzzlename}</h1>
68 ${unfinishedheading}
69 <h2 align=center>from Simon Tatham's Portable Puzzle Collection</h2>
70
71 ${unfinishedpara}
72
73 <hr>
74 <div id="puzzle" style="display: none">
75 <p align=center>
76   <input type="button" id="new" value="New game">
77   <input type="button" id="restart" value="Restart game">
78   <input type="button" id="undo" value="Undo move">
79   <input type="button" id="redo" value="Redo move">
80   <input type="button" id="solve" value="Solve game">
81   <input type="button" id="specific" value="Enter game ID">
82   <input type="button" id="random" value="Enter random seed">
83   <select id="gametype"></select>
84 </p>
85 <p align=center>
86   <table cellpadding="0" cellspacing="0">
87     <tr>
88       <td>
89         <canvas id="puzzlecanvas" width="1" height="1" tabindex="1">
90       </td>
91     <tr>
92       <td id="statusbarholder">
93       </td>
94     </tr>
95   </table>
96 </p>
97 <p align=center>
98   Link to this puzzle:
99   <a id="permalink-desc">by game ID</a>
100   <a id="permalink-seed">by random seed</a>
101 </p>
102 </div>
103 <div id="apology">
104 Sorry, this Javascript puzzle doesn't seem to work on your web
105 browser. Perhaps you have Javascript disabled, or perhaps your browser
106 doesn't provide a feature they depend on. These puzzles have been
107 successfully run in Firefox 19 and Chrome 25.
108 </div>
109 <hr>
110
111 ${instructions}
112
113 ${links}
114
115 ${footer}
116 </body>
117 </html>
118 EOF
119
120     close $outpage;
121 }