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