X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/6e5b350ed0447acfe7b0b4cf02a8b11de08d376f..9aa3a0089bff9379b25186960929582f16e7b3f4:/nethack.plp diff --git a/nethack.plp b/nethack.plp index 312200a..5db14cd 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'; - -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; - } -} - -my $charset = $ascii ? 'us-ascii' : 'utf-8'; -my $ctype = "text/html; charset=$charset"; -$header{content_type} = $ctype; +use Shiar_Sheet::KeySigns qw(%sign); + +our $VERSION = 'v1.0'; + +$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'); :> @@ -118,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' :> @@ -130,15 +103,11 @@ $keys->print_rows($get{static});