X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/57f9cfa126a76ddeaac15fd55e05277afdcba98f..25a210c5de3a4e164a39839dedeb997d56f31faf:/font.plp diff --git a/font.plp b/font.plp index b081ac2..8867921 100644 --- a/font.plp +++ b/font.plp @@ -1,144 +1,191 @@ <(common.inc.plp)><: +use 5.014; 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 )], }); +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 "

Font coverage

"; + say "

$_

" for EscapeHTML($fontmeta->{name}); + printf("

Version %s released %s contains %d glyphs.

\n", + !!$_->[2] && qq( title="revision $_->[2]"), + $_->[1], $_->[0], + scalar @cover, + ) for [ + grep { $_ } + ($fontmeta->{date} || '?') =~ s/T.*//r, + EscapeHTML($fontmeta->{version}), + $fontmeta->{revision}, + ]; + printf "

%s

\n", join('
', 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"; + + +EOT + say ''; + say "" for join(' ', grep {$_} + $offset > $size && sprintf('◄', 0), + $offset > 0 && sprintf( + '', + $offset - $size, + ), + sprintf('U+%04X', $offset), #TODO: block name + $offset + $size < 0x11_0000 && sprintf( + '', + $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 '
$_
%X', $cp if $cp % 32 == 0; + say sprintf '%s', + !$class ? ('l0', $cp, '', '') : + $cover{$cp} ? $np ? 'l2' : 'l5' : $np ? 'Xi' : 'l1', + $cp, !!$name && ": $name", + ($cover{$cp} || !$np) && EscapeHTML(chr $cp); + } + say '
'; + + exit; +} + :> -

Character support

+

Font coverage

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

<: -use 5.010; -use Shiar_Sheet::FormatChar; -my $glyphs = Shiar_Sheet::FormatChar->new; - -my %oslist = ( - win95 => [qw( arial ariuni verdana times )], # microsoft - mac10 => [qw( )], # apple - android => [qw( droidsans )], # google - oss => [qw( dvsans c2k unifont )], + +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', + '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', + 'category/Sc', # currency + 'table/math', + 'category/Sm', # mathematical + 'table/arrows/single', + 'table/lines/single', + 'table/block', + 'table/lines', + 'table/html', ); -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 - }; - } -} -# parse input - -my @chars; -my @querydesc; - -my $query = $ENV{PATH_INFO} || $get{q} || 'ipa'; -for ($query) { - s{^/}{}; - when (qr{^[a-z]+(?:/|\z)}) { - for (split / /) { - push @querydesc, "preset group $_"; - 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 ('ipa') { - @chars = grep { !m/[a-zA-Z]/ } @chars; - } - } - when (qr{[\d,;\s+-]+}) { - push @querydesc, "character codepoints $_"; - for (map { split /[^\d-]/ } $_) { - my ($charnum, $range) = split /-/, $_; - push @chars, chr $_ for $charnum .. ($range // $charnum); - } - } - when (qr{[A-Z]}) { - push @querydesc, "unicode match $_"; - 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"; - } +if (my $group = $get{q}) { + 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) for %s'."\n", - scalar @chars, join(', ', @querydesc), -); - # output character list print ''; -say ''; -print '' x 3; -print "" for 2, map { scalar @{$oslist{$_}} } @ossel; +print ''; +print "" + for map { scalar @{ $cover->{os}->{$_} } } @ossel; print ''; -print ''; -print ''; -for my $chr (@chars) { - my $codepoint = ord $chr; - my $ascii = $codepoint <= 127; - - print "'; + $name = sprintf '%s', EncodeURI("/chars/$group/$name"), EscapeHTML($name) + if $row->{count} and $row->{count} < 1280; + print ''; } say "
'.EscapeHTML(join ', ', @querydesc).'
character'; -print 'input'; -printf '%s fonts', scalar @{ $oslist{$_} }, $_ +print ''; +printf '%s fonts', scalar @{ $cover->{os}->{$_} }, $_ for @ossel; print '
unicode'; -print 'name'; -print 'dihtml'; -printf '%s', $font{$_}->{-name}, $font{$_}->{-id} // $_ - for @fontlist; +print ''; +printf('%s', map { EscapeHTML($_) } + join("\n", $_->{name}, $_->{description}), + "/font/$_->{file}", + $_->{abbr}, +) for @{ $cover->{fonts} }[@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 ? $class =~ /\bu-di\b/ ? 'l4' : 'l3' : '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 '
', $name; + print '', $row->{count}; + for my $count (@{ $row->{support} }[@fontlist]) { + if (not defined $count) { + print '?'; + next; + } + if (not $count) { + print '✘'; + next; + } + if ($count == $row->{count}) { + print '✔'; + next; + } + + my $rel = $count / $row->{count}; + my $class = $rel < .5 ? 2 : $rel < .9 ? 3 : 4; + printf '%d%%', "l$class", $rel*100; + } + say '
\n";