X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/d3b21c80d4dbf66130064f4688f79f0ba7b22c41..1d743a55b5335cd7aaa5f9a8f2c782e7a46564b7:/nethack.plp diff --git a/nethack.plp b/nethack.plp index ca7433e..eaea76c 100644 --- a/nethack.plp +++ b/nethack.plp @@ -1,41 +1,21 @@ -<: -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}"; - -:> - +<(common.inc.plp)><: + +Html({ + title => 'nethack cheat sheet', + version => 'v1.0', + 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 + '], + charset => $sign{charset}, + stylesheet => [qw'light dark circus mono red terse'], + keys => 1, +}); - -nethack cheat sheet - - - -<: - my %styles = map {$_ => $_} qw(dark circus mono red terse); - our $style = exists $get{style} && $styles{$get{style}} || 'light'; - printf(qq{\n}, - $_ eq $style ? 'stylesheet' : 'alternate stylesheet', "$_.css", $_ - ) for keys %styles; - - our $showkeys = exists $get{keys} && $get{keys} ne '0'; - print "\n" unless $showkeys; - print "\n" - if $showkeys and $get{keys} eq 'ghost'; :> - - - -

NetHack cheat sheet

normal gameplay

@@ -53,7 +33,7 @@ $header{content_type} = "text/html; charset=$sign{charset}"; use Shiar_Sheet::Keyboard; my $keys = Shiar_Sheet::Keyboard->new({do 'nethack.inc.pl'}); $keys->map($get{map}) or undef $get{map}; -$keys->print_rows($get{static} || '4321-421'); +$keys->print_rows($get{rows} || '4321-421', [3,2,1,0]); :> @@ -102,16 +82,3 @@ $keys->print_rows($get{static} || '4321-421'); - - -