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