X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/d3b21c80d4dbf66130064f4688f79f0ba7b22c41..5e459bbed48de06b1896f0ea685707a9ed66125a:/nethack.plp diff --git a/nethack.plp b/nethack.plp index ca7433e..3115e28 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.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 + '], + 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

@@ -50,10 +30,12 @@ $header{content_type} = "text/html; charset=$sign{charset}"; <: -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); $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 +84,3 @@ $keys->print_rows($get{static} || '4321-421'); - - -