X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/7198370583edc12c00f9e1dacd7eb084a8f4408b..6721f1111bc49b8ee5efc0b39d74321c1393cdfb:/font.plp diff --git a/font.plp b/font.plp index f9b7ac6..50d8dcb 100644 --- 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 )], }); :> -

Character support

+

Font coverage

-Selected characters from Unicode preset -or range. +Character support of Unicode +blocks and presets.

@@ -26,97 +27,58 @@ use Shiar_Sheet::FormatChar; my $glyphs = Shiar_Sheet::FormatChar->new; my %oslist = ( - win95 => [qw( arial ariuni verdana times )], - mac10 => [qw( )], - oss => [qw( dvsans droid c2k guf )], - - android => ['droid'], + 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); - -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 - }; - } -} - -# parse input - -my @chars; - -for ($ENV{PATH_INFO} || $get{q} || ()) { - s{^/}{}; - when ('') { - next; - } - when (qr{/}) { - push @{ $get{'@g'} }, $_; - } - default { - die "unknown parameter: $_\n"; - } -} - -$get{'@g'} //= ['latin/sample']; - -for (map { split / / } @{ $get{'@g'} }) { - my ($tablegroup, $tablename) = split m{/}, $_, 2; - my $table = $tables->{$tablegroup}->{$tablename}; +my @ossel = qw( win95 oss android ); +my @fontlist = map { @{ $oslist{$_} } } @ossel; - for (@{$table}) { - m/^[.]/ .. 1 or next; - next if /^[.-]/; - next if $_ eq '>' or $_ eq '='; - push @chars, $_; - } -} +my $cover = do 'unicode-cover.inc.pl' or die $@ || $!; # output character list print ''; -print '' x 3; -print "" for 2, map { scalar @{$oslist{$_}} } @ossel; +print ''; +print "" for map { scalar @{$oslist{$_}} } @ossel; print ''; -print ''; -print ''; -for my $chr (@chars) { - my $codepoint = ord $chr; - my $ascii = $codepoint <= 127; - - print "'; +for my $name (sort keys %{ $cover->{$group} }) { + my $row = $cover->{$group}->{$name}; + print ''; + $name = qq{$name} + if $row->{-count} and $row->{-count} < 1280; + print ''; +} + say ''; } say "
character'; -print 'input'; -printf '%s fonts', scalar @{ $oslist{$_} }, $_ - for @ossel; +print ''; +printf '%s fonts', scalar @{ $oslist{$_} }, $_ for @ossel; print '
unicode'; -print 'name'; -print 'dihtml'; -printf '%s', $font{$_}->{-name}, $font{$_}->{-id} // $_ - for @fontlist; +print ''; +printf '%s', $_ for @fontlist; say '
$chr\n"; - my $info = $glyphs->glyph_info($codepoint); - my ($class, $name, $mnem, $html, $string) = @$info; - print "$_" for sprintf('%X', $codepoint), EscapeHTML($name); - printf '%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 my $group (sort keys %{$cover}) { + say '
', $name; + print '', $row->{-count}; + for (@fontlist) { + my $count = $row->{$_}; + if (not defined $count) { + print '?'; + next; + } + if (not $count) { + print '0'; + next; + } + + my $rel = $count / $row->{-count}; + my $class = $rel < .5 ? 2 : $rel < .75 ? 3 : $rel < 1 ? 4 : 5; + printf '%d%%', "l$class", $rel*100; + } + say '
\n";