index: only use common stylesheet
[sheet.git] / nethack.plp
1 <(common.inc.plp)><:
2         our $VERSION = 'v1.0';
3
4         use Shiar_Sheet::KeySigns qw(%sign);
5
6         $header{content_type} = "text/html; charset=$sign{charset}";
7
8 :><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
9  "http://www.w3.org/TR/html4/loose.dtd">
10 <html>
11
12 <head>
13 <meta http-equiv="content-type" content="<:= $header{content_type} :>">
14 <title>nethack cheat sheet</title>
15 <:= stylesheet(qw'light dark circus mono red terse') :>
16 <!--[if lte IE 6]><style> .help dl.legend dt {margin:0 0 1px} </style><![endif]-->
17 <!--[if lte IE 7]><style> .help dl.legend dd {float:none} </style><![endif]--><:
18         our $showkeys = exists $get{keys} && $get{keys} ne '0';
19         print "\n".'<style type="text/css"> .no {visibility:hidden} </style>'
20                 unless $showkeys;
21         print "\n".'<style type="text/css"> .no, .alias {opacity:.5} </style>'
22                 if $showkeys and $get{keys} eq 'ghost';
23 :>
24 <script type="text/javascript" src="/keys.js"></script>
25
26 <body id="nethack">
27
28 <h1>NetHack cheat sheet</h1>
29
30 <h2>normal gameplay</h2>
31
32 <ul id="rows">
33
34 <li class="row">
35         <ul class="keys omni">
36         <li class="me chr27" onclick="setmode()"><b>Esc</b>
37                 <!-- static reset button, even though it's not (officially) in the game -->
38         </ul>
39 </li>
40
41 <:
42 use Shiar_Sheet::Keyboard;
43 my $keys = Shiar_Sheet::Keyboard->new({do 'nethack.inc.pl'});
44 $keys->map($get{map}) or undef $get{map};
45 $keys->print_rows($get{rows} || '4321-421', [3,2,1,0]);
46 :>
47 </ul>
48
49 <hr>
50
51 <div class="help">
52         <div class="left">
53                 <dl class="legend legend-types">
54                 <dt class="pm">direction
55                         <dd>Direction to move to or target a command (<:= $sign{motion} :>).
56                 <dt class="po">move
57                         <dd>Other character movement.
58                 <dt class="co">act
59                         <dd>Direct action command: takes a turn.
60                 <dt class="mi">info
61                         <dd>Informational command: shows/does something without ending the turn.
62                 <dt class="mo">invertory
63                         <dd>Display invertory menu.
64                 <dt class="mv">menu
65                         <dd>Enters some other menu.
66                 </dl>
67         </div>
68
69         <div class="right">
70                 <dl class="legend legend-options">
71                 <dt>key<:= $sign{arg} :>
72                         <dd>Commands with a dot need at least one argument afterwards.
73                 <dt>key<:= $sign{argi} :>
74                         <dd>Asks for an inventory item.
75                 <dt>key<:= $sign{argm} :>
76                         <dd>Requires a direction afterwards.
77                 </dl>
78
79                 <ul class="legend legend-set">
80                 <li>keyboard <strong>map</strong> is
81                         <:= $get{map} ? 'set to ' : '' :><em><:= $keys->{map} :></em>
82                 <li><strong>ascii</strong> mode is
83                         <:= defined $sign{-ascii} && 'forced ' :><em><:=
84                                 $sign{-ascii} ? 'on' : 'off' :></em>
85                 <li><strong>keys</strong> are
86                         <em><:= $showkeys ? 'always shown' : 'hidden if unassigned' :></em><:=
87                                 !exists $get{keys} && ' by default' :>
88                 <li>default <strong>style</strong> is
89                         <:= defined $get{style} && 'set to ' :><em><:= $style :></em>
90                 </ul>
91         </div>
92 </div>
93
94 <p class="footer">
95         <a href="/" rel="home">sheet.shiar.nl</a>/nethack.<a href="/source/nethack.plp"
96          rel="code" title="Written in Perl">plp</a>
97         <a href="http://git.shiar.nl/sheet.git/history/HEAD:/nethack.plp"
98          rel="vcs-git" title="Git repository"><:= $VERSION :></a>
99         created by <a href="http://shiar.nl/" rel="author">Shiar</a> <:= $sign{sep} :>
100         <a href="http://www.fsf.org/licensing/licenses/agpl-3.0.html" rel="copyright"
101          title="Licensed under the GNU Affero General Public License, version 3">AGPLv3</a>
102 </p>
103
104 </html>