charset: check ucplanes for modification date
[sheet.git] / nethack.plp
index dc8e616d826a36897e22b19c20851e53abbe818f..447ad271529632251fd9ea65c232cc4521fce00e 100644 (file)
@@ -1,98 +1,48 @@
-<:
-use utf8;
-use strict;
-use warnings;
-no  warnings 'qw';  # you know what you doing
-no  warnings 'uninitialized';  # save some useless checks for more legible code
-
-use Shiar_Sheet::KeySigns qw(%sign);
-
-our $VERSION = '1.0';
-
-$header{content_type} = "text/html; charset=$sign{charset}";
-
-:><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
- "http://www.w3.org/TR/html4/loose.dtd">
-<html>
-
-<head>
-<title>nethack cheat sheet</title>
-<meta http-equiv="content-type" content="<:= $header{content_type} :>">
-<link rel="stylesheet" type="text/css" media="all" href="base.css">
-<!--[if lte IE 6]><style> .help dl.legend dt {margin:0 0 1px} </style><![endif]-->
-<!--[if lte IE 7]><style> .help dl.legend dd {float:none} </style><![endif]--><:
-       my %styles = map {$_ => $_} qw(dark circus mono red terse);
-       our $style = exists $get{style} && $styles{$get{style}} || 'light';
-       printf(qq{\n<link rel="%s" type="text/css" media="all" href="%s" title="%s">},
-               $_ eq $style ? 'stylesheet' : 'alternate stylesheet', "$_.css", $_
-       ) for keys %styles;
+<(common.inc.plp)><:
+
+Html({
+       title => 'nethack cheat sheet',
+       version => '1.1',
+       description => [
+               "Keyboard overview sheet for the Nethack console RPG game,",
+               "describing the default controls.",
+       ],
+       keywords => [qw'
+               nethack rogue game control controls sheet reference overview keyboard
+       '],
+       stylesheet => [qw'light dark circus mono red terse'],
+       keys => 1,
+});
 
-       our $showkeys = exists $get{keys} && $get{keys} ne '0';
-       print "\n<style> .no {visibility:hidden} </style>" unless $showkeys;
-       print "\n<style> .no, .alias {opacity:.5} </style>"
-               if $showkeys and $get{keys} eq 'ghost';
 :>
-<script type="text/javascript" src="/keys.js"></script>
-
-<body id="nethack">
-
 <h1>NetHack cheat sheet</h1>
 
 <h2>normal gameplay</h2>
 
-<ul id="rows">
-
-<li class="row">
-       <ul class="keys omni">
-       <li class="me" onclick="setmode()"><b>Esc</b>
-               <!-- static reset button, even though it's not (officially) in the game -->
-       </ul>
-</li>
-
 <:
-use Shiar_Sheet::Keyboard;
-my $keys = Shiar_Sheet::Keyboard->new({do 'nethack.inc.pl'});
+use Shiar_Sheet::Keyboard 2;
+my $info = do 'nethack.eng.inc.pl' or die $@;
+$info->{def} = do 'nethack.inc.pl';
+my $keys = Shiar_Sheet::Keyboard->new($info);
+$_->{"\e"} = ['me mode'] for values %{ $info->{def} };
+       # static reset button, even though it's not (officially) in the game
 $keys->map($get{map}) or undef $get{map};
-$keys->print_rows($get{static});
+$keys->print_rows($get{rows} || '4321-421', [3,2,1,0]);
 :>
-</ul>
 
 <hr>
 
 <div class="help">
        <div class="left">
-               <dl class="legend legend-types">
-               <dt class="pm">direction
-                       <dd>Direction to move to or target a command (<:= $sign{motion} :>).
-               <dt class="po">move
-                       <dd>Other character movement.
-               <dt class="co">act
-                       <dd>Direct action command: takes a turn.
-               <dt class="mi">info
-                       <dd>Informational command: shows/does something without ending the turn.
-               <dt class="mo">invertory
-                       <dd>Display invertory menu.
-               <dt class="mv">menu
-                       <dd>Enters some other menu.
-               </dl>
+<: $keys->print_legend('legend-types', ['g2' .. 'g4', 'g6' .. 'g8']) :>
        </div>
 
        <div class="right">
-               <dl class="legend legend-options">
-               <dt>key<:= $sign{arg} :>
-                       <dd>Commands with a dot need at least one argument afterwards.
-               <dt>key<:= $sign{argi} :>
-                       <dd>Asks for an inventory item.
-               <dt>key<:= $sign{argm} :>
-                       <dd>Requires a direction afterwards.
-               </dl>
+<: $keys->print_legend('legend-options', [qw( arg argi argm )]) :>
 
                <ul class="legend legend-set">
                <li>keyboard <strong>map</strong> is
                        <:= $get{map} ? 'set to ' : '' :><em><:= $keys->{map} :></em>
-               <li><strong>ascii</strong> mode is
-                       <:= defined $sign{-ascii} && 'forced ' :><em><:=
-                               $sign{-ascii} ? 'on' : 'off' :></em>
                <li><strong>keys</strong> are
                        <em><:= $showkeys ? 'always shown' : 'hidden if unassigned' :></em><:=
                                !exists $get{keys} && ' by default' :>
@@ -102,16 +52,3 @@ $keys->print_rows($get{static});
        </div>
 </div>
 
-<p class="footer">
-       <a href="http://sheet.shiar.nl/" rel="home">sheet.shiar.nl</a>/nethack
-       <a href="git://dev.shiar.nl/sheet" rel="vcs-git" title="Git repository"><:= "v$VERSION" :></a>
-       created by <a href="http://shiar.nl/" rel="author">Shiar</a> <:= $sign{sep} :>
-       <a title="Licensed under the GNU Affero General Public License, version 3" rel="copyright"
-          href="http://www.fsf.org/licensing/licenses/agpl-3.0.html">AGPLv3</a> <:= $sign{sep} :>
-       last update <:
-               use Time::Format qw(time_format);
-               print time_format('yyyy-mm-dd', (stat 'nethack.inc.pl')[9]);
-       :>
-</p>
-
-</html>