font: ?q offset by hex value or block name
[sheet.git] / font.plp
index 644e1d03c9125fc86ad7a6573c66b311eedadc5b..886792114ba97f74b23ad6c146e0e729ca22ccff 100644 (file)
--- a/font.plp
+++ b/font.plp
@@ -1,4 +1,5 @@
 <(common.inc.plp)><:
+use 5.014;
 
 Html({
        title => 'character support sheet',
@@ -11,6 +12,79 @@ Html({
        data => [qw( unicode-cover.inc.pl )],
 });
 
+if (my $font = $ENV{PATH_INFO} =~ s{^/}{}r) {
+       my ($fontmeta, @cover) = do "ttfsupport/$font.inc.pl";
+       $fontmeta or die "Unknown font $font\n";
+
+       require Unicode::UCD;
+
+       my $size = 0x200;
+       my $offset = eval {
+               local $_ = $get{q} || 0;
+               return $_ if /\A\d+\z/;  # numeric
+               return hex $1 if /\A (?: 0?x | u\W* ) ([0-9a-f]+) \z/ix;  # hexadecimal
+               return $_->[0]->[0] for Unicode::UCD::charblock(ucfirst) || ();  # block
+               die "Unknown offset query '$_'\n";
+       };
+       die $@ if $@;
+
+       say "<h1>Font coverage</h1>";
+       say "<h2>$_</h2>" for EscapeHTML($fontmeta->{name});
+       printf("<p>Version <strong%s>%s</strong> released %s contains %d glyphs.</p>\n",
+               !!$_->[2] && qq( title="revision $_->[2]"),
+               $_->[1], $_->[0],
+               scalar @cover,
+       ) for [
+               grep { $_ }
+               ($fontmeta->{date} || '?') =~ s/T.*//r,
+               EscapeHTML($fontmeta->{version}),
+               $fontmeta->{revision},
+       ];
+       printf "<p>%s</p>\n", join('<br>', map { $_ ? EscapeHTML($_) : () }
+               $fontmeta->{copyright}, $fontmeta->{license},
+       );
+
+       require Shiar_Sheet::FormatChar;
+       my $glyphs = Shiar_Sheet::FormatChar->new;
+
+       my %cover = map { ($_ => 1) } @cover;  # lookup map
+
+       say <<"EOT";
+
+<style>
+       .glyphs tbody th { text-align: right }
+       .glyphs tbody td { font-family: "$fontmeta->{name}" }
+</style>
+EOT
+       say '<table class="glyphs big">';
+       say "<caption>$_</caption>" for join(' ', grep {$_}
+               $offset > $size && sprintf('<a rel="start" href="?q=%d">◄</a>', 0),
+               $offset > 0 && sprintf(
+                       '<a rel="prev" href="?q=%d" title="U+%1$04X">◅</a>',
+                       $offset - $size,
+               ),
+               sprintf('U+%04X', $offset), #TODO: block name
+               $offset + $size < 0x11_0000 && sprintf(
+                       '<a rel="next" href="?q=%d" title="U+%1$04X">▻</a>',
+                       $offset + $size,
+               ),
+       );
+       for my $cp ($offset .. $offset+$size-1) {
+               my $info = $glyphs->glyph_info($cp);
+               my ($class, $name, $mnem, $html, $string) = @{$info};
+               my $np = $class =~ /\bC\S\b/;  # noprint if control or invalid
+               say sprintf '<tr><th>%X', $cp if $cp % 32 == 0;
+               say sprintf '<td class="%s" title="U+%04X%s">%s',
+                       !$class ? ('l0', $cp, '', '') :
+                       $cover{$cp} ? $np ? 'l2' : 'l5' : $np ? 'Xi' : 'l1',
+                       $cp, !!$name && ": $name",
+                       ($cover{$cp} || !$np) && EscapeHTML(chr $cp);
+       }
+       say '</table>';
+
+       exit;
+}
+
 :>
 <h1>Font coverage</h1>
 
@@ -22,21 +96,12 @@ Character support of Unicode
 <div>
 
 <:
-use 5.010;
-use Shiar_Sheet::FormatChar;
-my $glyphs = Shiar_Sheet::FormatChar->new;
-
-my %oslist = (
-       win95   => [qw( arial ariuni verdana times courier )],  # microsoft
-       mac10   => [qw( )],  # apple
-       android => [qw( droidsans )],  # google
-       oss     => [qw( dvsans c2k unifont )],
-);
-my @ossel = qw( win95 oss android );
-my @fontlist = map { @{ $oslist{$_} } } @ossel;
 
 my $cover = do 'unicode-cover.inc.pl' or die $@ || $!;
 
+my @ossel = @{ $cover->{osdefault} };
+my @fontlist = map { @{ $cover->{os}->{$_} } } @ossel;
+
 my @rows = (
        'block/Latin-1 Supplement',
        'block/Latin Extended-A',
@@ -56,15 +121,17 @@ my @rows = (
        'table/punctuation',
        'block/Dingbats',
        'table/symbols',
+       'category/Sc', # currency
        'table/math',
+       'category/Sm', # mathematical
        'table/arrows/single',
        'table/lines/single',
        'table/block',
        'table/lines',
+       'table/html',
 );
 
-for my $group ($ENV{PATH_INFO} || ()) {
-       $group =~ s{^/}{};
+if (my $group = $get{q}) {
        my $grouprows = $cover->{$group}
                or die "Unknown character category $_\n";
        @rows = map { "$group/$_" } sort keys %{$grouprows};
@@ -74,15 +141,21 @@ for my $group ($ENV{PATH_INFO} || ()) {
 
 print '<table class=mapped>';
 print '<col><col>';
-print "<colgroup span=$_>" for map { scalar @{$oslist{$_}} } @ossel;
+print "<colgroup span=$_>"
+       for map { scalar @{ $cover->{os}->{$_} } } @ossel;
 
 print '<thead><tr>';
 print '<th colspan=2>';
-printf '<th colspan=%d>%s fonts', scalar @{ $oslist{$_} }, $_ for @ossel;
+printf '<td colspan=%d>%s fonts', scalar @{ $cover->{os}->{$_} }, $_
+       for @ossel;
 
 print '<tr>';
 print '<th colspan=2>';
-printf '<td>%s', $_ for @fontlist;
+printf('<td title="%s"><a href="%s">%s</a>', map { EscapeHTML($_) }
+       join("\n", $_->{name}, $_->{description}),
+       "/font/$_->{file}",
+       $_->{abbr},
+) for @{ $cover->{fonts} }[@fontlist];
 say '</thead>';
 
 for (@rows) {
@@ -91,11 +164,10 @@ for (@rows) {
 
        print '<tr>';
        $name = sprintf '<a href="%s">%s</a>', EncodeURI("/chars/$group/$name"), EscapeHTML($name)
-               if $row->{-count} and $row->{-count} < 1280;
+               if $row->{count} and $row->{count} < 1280;
        print '<th>', $name;
-       print '<td class=right>', $row->{-count};
-       for (@fontlist) {
-               my $count = $row->{$_};
+       print '<td class=right>', $row->{count};
+       for my $count (@{ $row->{support} }[@fontlist]) {
                if (not defined $count) {
                        print '<td class="l0">?';
                        next;
@@ -104,12 +176,12 @@ for (@rows) {
                        print '<td class="l1">✘';
                        next;
                }
-               if ($count == $row->{-count}) {
+               if ($count == $row->{count}) {
                        print '<td class="l5">✔';
                        next;
                }
 
-               my $rel = $count / $row->{-count};
+               my $rel = $count / $row->{count};
                my $class = $rel < .5 ? 2 : $rel < .9 ? 3 : 4;
                printf '<td class="%s">%d%%', "l$class", $rel*100;
        }