sc: import starcraft unit sheet
[sheet.git] / nethack.plp
1 <(common.inc.plp)><:
2
3 Html({
4         title => 'nethack cheat sheet',
5         version => 'v1.0',
6         description => [
7                 "Keyboard overview sheet for the Nethack console RPG game,",
8                 "describing the default controls.",
9         ],
10         keywords => [qw'
11                 nethack rogue game control controls sheet reference overview keyboard
12         '],
13         charset => $sign{charset},
14         stylesheet => [qw'light dark circus mono red terse'],
15         keys => 1,
16 });
17
18 :>
19 <h1>NetHack cheat sheet</h1>
20
21 <h2>normal gameplay</h2>
22
23 <ul id="rows">
24
25 <li class="row">
26         <ul class="keys omni">
27         <li class="me chr27" onclick="setmode()"><b>Esc</b>
28                 <!-- static reset button, even though it's not (officially) in the game -->
29         </ul>
30 </li>
31
32 <:
33 use Shiar_Sheet::Keyboard;
34 my $keys = Shiar_Sheet::Keyboard->new({do 'nethack.inc.pl'});
35 $keys->map($get{map}) or undef $get{map};
36 $keys->print_rows($get{rows} || '4321-421', [3,2,1,0]);
37 :>
38 </ul>
39
40 <hr>
41
42 <div class="help">
43         <div class="left">
44                 <dl class="legend legend-types">
45                 <dt class="pm">direction
46                         <dd>Direction to move to or target a command (<:= $sign{motion} :>).
47                 <dt class="po">move
48                         <dd>Other character movement.
49                 <dt class="co">act
50                         <dd>Direct action command: takes a turn.
51                 <dt class="mi">info
52                         <dd>Informational command: shows/does something without ending the turn.
53                 <dt class="mo">invertory
54                         <dd>Display invertory menu.
55                 <dt class="mv">menu
56                         <dd>Enters some other menu.
57                 </dl>
58         </div>
59
60         <div class="right">
61                 <dl class="legend legend-options">
62                 <dt>key<:= $sign{arg} :>
63                         <dd>Commands with a dot need at least one argument afterwards.
64                 <dt>key<:= $sign{argi} :>
65                         <dd>Asks for an inventory item.
66                 <dt>key<:= $sign{argm} :>
67                         <dd>Requires a direction afterwards.
68                 </dl>
69
70                 <ul class="legend legend-set">
71                 <li>keyboard <strong>map</strong> is
72                         <:= $get{map} ? 'set to ' : '' :><em><:= $keys->{map} :></em>
73                 <li><strong>ascii</strong> mode is
74                         <:= defined $sign{-ascii} && 'forced ' :><em><:=
75                                 $sign{-ascii} ? 'on' : 'off' :></em>
76                 <li><strong>keys</strong> are
77                         <em><:= $showkeys ? 'always shown' : 'hidden if unassigned' :></em><:=
78                                 !exists $get{keys} && ' by default' :>
79                 <li>default <strong>style</strong> is
80                         <:= defined $get{style} && 'set to ' :><em><:= $style :></em>
81                 </ul>
82         </div>
83 </div>
84