countries: change antarctica class to .an
[sheet.git] / font.plp
index 66f6e4a58d209ea4b77576fe308be3ea1792d31c..1c29f242c9a5008f2d3c2b5b95ed0185fc55e34f 100644 (file)
--- a/font.plp
+++ b/font.plp
@@ -2,20 +2,21 @@
 
 Html({
        title => 'character support sheet',
-       version => 'v1.0',
-       keywords => [qw'
-               unicode glyph char character reference common ipa symbol sign mark table digraph
-       '],
-       stylesheet => [qw'light dark mono circus red'],
-       data => [qw'unicode-table.inc.pl unicode-char.inc.pl'],
+       version => 'v1.1',
+       keywords => [qw(
+               unicode font glyph char character support overview cover coverage
+               script block symbol sign mark reference table
+       )],
+       stylesheet => [qw( light dark mono circus red )],
+       data => [qw( unicode-cover.inc.pl )],
 });
 
 :>
-<h1>Character support</h1>
+<h1>Font coverage</h1>
 
 <p>
-Selected characters from Unicode <a href="/unicode">preset</a>
-or <a href="/charset">range</a>.
+Character support of Unicode
+<a href="/charset">blocks</a> and <a href="/unicode">presets</a>.
 </p>
 
 <div>
@@ -26,109 +27,93 @@ use Shiar_Sheet::FormatChar;
 my $glyphs = Shiar_Sheet::FormatChar->new;
 
 my %oslist = (
-       win95   => [qw( arial ariuni verdana times )],  # microsoft
-       mac10   => [qw( )],  # apple
+       win95   => [qw( arial ariuni verdana times courier )],  # microsoft
+       mac10   => [qw( lucida garamond )],  # apple
        android => [qw( droidsans )],  # google
        oss     => [qw( dvsans c2k unifont )],
 );
-my @ossel = qw( win95 oss android );
-
-my $tables = do 'unicode-table.inc.pl' or die $@ || $!;
-my (%font, @fontlist);
-for my $os (@ossel) {
-       my $osfonts = $oslist{$os};
-       for my $fontid (@{$osfonts}) {
-               push @fontlist, $fontid;
-               my ($fontmeta, @fontrange) = do "ttfsupport/$fontid.inc.pl";
-               $fontmeta or next;
-               $font{$fontid} = {
-                       -id   => $fontmeta->{id} || $fontid,
-                       -name => $fontmeta->{name},
-                       map { (chr $_ => 1) } @fontrange
-               };
-       }
-}
+my @ossel = qw( win95 mac10 oss android );
+my @fontlist = map { @{ $oslist{$_} } } @ossel;
+
+my $cover = do 'unicode-cover.inc.pl' or die $@ || $!;
+
+my @rows = (
+       'block/Latin-1 Supplement',
+       'block/Latin Extended-A',
+       'block/Latin Extended Additional',
+       'block/Latin Extended-B',
+       'script/Latin',
+       'script/Greek',
+       'script/Cyrillic',
+       'script/Arabic',
+       'script/Hebrew',
+       'script/Devanagari',
+       'script/Thai',
+       'script/Hangul',
+       'table/japanese',
+       'script/Han',
+       'table/ipa',
+       'table/punctuation',
+       'block/Dingbats',
+       'table/symbols',
+       'table/math',
+       'table/arrows/single',
+       'table/lines/single',
+       'table/block',
+       'table/lines',
+);
 
-# parse input
-
-my @chars;
-
-my $query = $ENV{PATH_INFO} || $get{q} || 'ipa';
-for ($query) {
-       s{^/}{};
-       when (qr{^[a-z]+(?:/|\z)}) {
-               for (split / /) {
-                       my ($tablegroup, $tablename) = split m{/}, $_, 2;
-                       my @tables = $tablename ? $tables->{$tablegroup}->{$tablename}
-                                  : sort values %{ $tables->{$tablegroup} };
-                       for (@tables) {
-                               my $includerows;  # ignore rows before body row
-                               for (@{$_}) {
-                                       $includerows ||= m/^[.]/ or next;
-                                       next if /^[.-]/;
-                                       next if $_ eq '>' or $_ eq '=';
-                                       push @chars, $_;
-                               }
-                       }
-               }
-       }
-       when (qr{[\d,;\s+-]+}) {
-               for (map { split /[^\d-]/ } $_) {
-                       my ($charnum, $range) = split /-/, $_;
-                       push @chars, chr $_ for $charnum .. ($range // $charnum);
-               }
-       }
-       when (qr{[A-Z]}) {
-               eval {
-                       my $match = qr/\A\p{$_}\z/;
-                       push @chars, grep { m/$match/ } map { chr $_ }
-                               0..0xD7FF, 0xE000..0xFDCF, 0xFDF0..0xFFFD;
-               } or die "invalid unicode match: $_\n";
-       }
-       default {
-               die "unknown parameter: $_\n";
-       }
+for my $group ($ENV{PATH_INFO} || ()) {
+       $group =~ s{^/}{};
+       my $grouprows = $cover->{$group}
+               or die "Unknown character category $_\n";
+       @rows = map { "$group/$_" } sort keys %{$grouprows};
 }
 
-@chars <= 1500
-       or die sprintf 'too many matches (%d)'."\n", scalar @chars;
-
 # output character list
 
 print '<table class=mapped>';
-print '<col>' x 3;
-print "<colgroup span=$_>" for 2, map { scalar @{$oslist{$_}} } @ossel;
+print '<col><col>';
+print "<colgroup span=$_>" for map { scalar @{$oslist{$_}} } @ossel;
 
 print '<thead><tr>';
-print '<td colspan=3>character';
-print '<td colspan=2>input';
-printf '<td colspan=%d>%s fonts', scalar @{ $oslist{$_} }, $_
-       for @ossel;
+print '<th colspan=2>';
+printf '<th colspan=%d>%s fonts', scalar @{ $oslist{$_} }, $_ for @ossel;
 
 print '<tr>';
-print '<td colspan=2>unicode';
-print '<td>name';
-print '<td>di<td>html';
-printf '<td title="%s">%s', $font{$_}->{-name}, $font{$_}->{-id} // $_
-       for @fontlist;
+print '<th colspan=2>';
+printf '<td>%s', $_ for @fontlist;
 say '</thead>';
 
-for my $chr (@chars) {
-       my $codepoint = ord $chr;
-       my $ascii = $codepoint <= 127;
-
-       print "<tr><th>$chr\n";
-       my $info = $glyphs->glyph_info($codepoint);
-       my ($class, $name, $mnem, $html, $string) = @$info;
-       print "<td>$_" for sprintf('%X', $codepoint), EscapeHTML($name || '?');
-       printf '<td class="%s">%s', @$_ for (
-               [$ascii ? 'l0' : defined $mnem ? 'l4' : 'l1', $mnem // ''],
-               [$ascii ? 'l0' : defined $html ? 'l4' : 'l1', $html // ''],
-               (map {
-                       !$font{$_}->{-id} ? [l0 => '?'] :
-                       $font{$_}->{$chr} ? [l4 => '✔'] : [l1 => '✘']
-               } @fontlist),
-       );
+for (@rows) {
+       my ($group, $name) = split m{/}, $_, 2;
+       my $row = $cover->{$group}->{$name};
+
+       print '<tr>';
+       $name = sprintf '<a href="%s">%s</a>', EncodeURI("/chars/$group/$name"), EscapeHTML($name)
+               if $row->{-count} and $row->{-count} < 1280;
+       print '<th>', $name;
+       print '<td class=right>', $row->{-count};
+       for (@fontlist) {
+               my $count = $row->{$_};
+               if (not defined $count) {
+                       print '<td class="l0">?';
+                       next;
+               }
+               if (not $count) {
+                       print '<td class="l1">✘';
+                       next;
+               }
+               if ($count == $row->{-count}) {
+                       print '<td class="l5">✔';
+                       next;
+               }
+
+               my $rel = $count / $row->{-count};
+               my $class = $rel < .5 ? 2 : $rel < .9 ? 3 : 4;
+               printf '<td class="%s">%d%%', "l$class", $rel*100;
+       }
+       say '</tr>';
 }
 
 say "</table>\n";