X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/d4937c088ffb429c8b3fdf1b3d35b8cbc78d1290..a0ba9298856b2426c5c66b6d2f2b284d98cee594:/nethack.plp diff --git a/nethack.plp b/nethack.plp index 3cedd6e..ca7433e 100644 --- a/nethack.plp +++ b/nethack.plp @@ -5,21 +5,11 @@ use warnings; no warnings 'qw'; # you know what you doing no warnings 'uninitialized'; # save some useless checks for more legible code -our $VERSION = '1.0'; +use Shiar_Sheet::KeySigns qw(%sign); -our $ascii = 0; -if (exists $get{ascii}) { - $ascii = $get{ascii} ne '0'; # manual override -} elsif (defined $ENV{HTTP_ACCEPT_CHARSET}) { - $ascii = 1; - for (split q{,}, $ENV{HTTP_ACCEPT_CHARSET}) { - $ascii = 0, last if $_ eq '*' or m{utf-?8}i; - } -} +our $VERSION = '1.0'; -my $charset = $ascii ? 'us-ascii' : 'utf-8'; -my $ctype = "text/html; charset=$charset"; -$header{content_type} = $ctype; +$header{content_type} = "text/html; charset=$sign{charset}"; :> @@ -27,7 +17,7 @@ $header{content_type} = $ctype; nethack cheat sheet - + <: @@ -54,33 +44,16 @@ $header{content_type} = $ctype;
  • <: -our %sign = ( - arg => $ascii ? '.' : '·', # described as 'dot' - args => $ascii ? ':' : '⁚', - argi => $ascii ? "'" : '′', - argm => $ascii ? '|' : '↕', - motion => $ascii ? '|' : '↕', - alias => $ascii ? 'see: ' : '»', - up => $ascii ? 'up' : '▲', - right => $ascii ? 'right' : '▶', - down => $ascii ? 'down' : '▼', - left => $ascii ? 'left' : '◀', - sep => $ascii ? '*' : '•', - _ => exists $get{ascii} && !$ascii ? "\x{200b}" : '', - # use the correct ZWNJ only when unicode is forced on - # default to use unofficial html for best support -); - 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}); +$keys->print_rows($get{static} || '4321-421'); :> @@ -89,8 +62,6 @@ $keys->print_rows($get{static});
    -
    -
    direction
    Direction to move to or target a command (<:= $sign{motion} :>).
    move @@ -103,8 +74,6 @@ $keys->print_rows($get{static});
    Display invertory menu.
    menu
    Enters some other menu. -
    -
    @@ -115,8 +84,6 @@ $keys->print_rows($get{static});
    key<:= $sign{argi} :>
    Asks for an inventory item.
    key<:= $sign{argm} :> -
    Thing -
    key<:= $sign{motion} :>
    Requires a direction afterwards. @@ -124,8 +91,8 @@ $keys->print_rows($get{static});
  • keyboard map is <:= $get{map} ? 'set to ' : '' :><:= $keys->{map} :>
  • ascii mode is - <:= exists $get{ascii} && 'forced ' :><:= - $ascii ? 'on' : 'off' :> + <:= defined $sign{-ascii} && 'forced ' :><:= + $sign{-ascii} ? 'on' : 'off' :>
  • keys are <:= $showkeys ? 'always shown' : 'hidden if unassigned' :><:= !exists $get{keys} && ' by default' :> @@ -136,10 +103,10 @@ $keys->print_rows($get{static});