X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/9ae15ec3a7007abdd580cd30e4d9e9fbb47628da..bac74b5934f22cc3d0e971d26fe0275f7f5db7b3:/font.plp diff --git a/font.plp b/font.plp index 5da4e53..fd55017 100644 --- a/font.plp +++ b/font.plp @@ -1,8 +1,10 @@ <(common.inc.plp)><: +my $font = $ENV{PATH_INFO} =~ s{^/}{}r; + Html({ - title => 'character support sheet', - version => 'v1.1', + title => 'font coverage '.($font ? "for $font" : 'sheet'), + version => '1.2', keywords => [qw( unicode font glyph char character support overview cover coverage script block symbol sign mark reference table @@ -11,6 +13,115 @@ Html({ data => [qw( unicode-cover.inc.pl )], }); +if ($font) { + my ($fontmeta, @cover) = do "ttfsupport/$font.inc.pl"; + $fontmeta or die "Unknown font $font\n"; + + require Unicode::UCD; + + my $pagerows = 0x200; + my $pagecols = 32; + 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.", + !!$_->[2] && qq( title="revision $_->[2]"), + $_->[1], $_->[0], + scalar @cover, + ) for [ + grep { $_ } + ($fontmeta->{date} || '?') =~ s/T.*//r, + EscapeHTML($fontmeta->{version}), + $fontmeta->{revision}, + ]; + for ($fontmeta->{os}) { + say '
'; + print ucfirst join(' ', + "distributed", + (map { "by $_" } $fontmeta->{oscorp} || "various sources"), + (map { "with $_" } $_ || ()), + ('and published as freeware "Core Web font"') x ($_ eq 'Windows 2000'), + (map { "under a $_ license" } + map { $fontmeta->{license} ? qq($_) : $_ } + $_ && $_ ne 'Android' ? 'proprietary' : 'free', + ), + ); + print '.'; + } + say '

'; + say "

$_

" for EscapeHTML($fontmeta->{copyright}) || (); + + 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 > $pagerows && sprintf('◄', 0), + $offset > 0 && sprintf( + '', + $offset - $pagerows, + ), + sprintf('U+%04X', $offset), + Unicode::UCD::charblock($offset), + $offset + $pagerows < 0x11_0000 && sprintf( + '', + $offset + $pagerows, + ), + ); + + for my $cp ($offset .. $offset+$pagerows-1) { + state $colpos; + my $block = Unicode::UCD::charblock($cp); + if ($block ne (state $sameblock = $block) and $block ne 'No_Block') { + print ''; + printf '
$_
%s', $pagecols+1, $block + unless $block eq 'No_Block'; + say ''; + $sameblock = $block; + $colpos = 0; + } + + say sprintf '
%X', $cp if $colpos++ % $pagecols == 0; + + my $info = $glyphs->glyph_info($cp); + my ($class, $name, $mnem, $html, $string) = @{$info}; + my $np = $class =~ /\bC\S\b/; # noprint if control or invalid + # display literal character, with placeholder circle if non-spacing/enclosing + my $html = ($class =~ /\bM[ne]\b/ && chr 9676) . EscapeHTML(chr $cp); + say sprintf '%s', + !$class ? ('l0', $cp, '', '') : + $cover{$cp} ? $np ? 'l2' : 'l5' : $np ? 'Xi' : 'l1', + $cp, !!$name && ": $name", + ($cover{$cp} || !$np) && $html; + } + say '
'; + + exit; +} + :>

Font coverage

@@ -22,22 +133,15 @@ Character support of Unicode
<: -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( lucida garamond )], # apple - android => [qw( roboto noto )], # google - oss => [qw( dvsans c2k unifont )], -); -my @ossel = qw( win95 mac10 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 = ( + 'version/11', + 'version/63', 'block/Latin-1 Supplement', 'block/Latin Extended-A', 'block/Latin Extended Additional', @@ -56,7 +160,9 @@ my @rows = ( 'table/punctuation', 'block/Dingbats', 'table/symbols', + 'category/Sc', # currency 'table/math', + 'category/Sm', # mathematical 'table/arrows/single', 'table/lines/single', 'table/block', @@ -64,8 +170,7 @@ my @rows = ( '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}; @@ -73,17 +178,26 @@ for my $group ($ENV{PATH_INFO} || ()) { # output character list -print ''; +print '
'; print ''; -print "" for map { scalar @{$oslist{$_}} } @ossel; +print "" + for map { scalar @{ $cover->{os}->{$_} } } @ossel; print ''; print ''; print ''; for (@rows) { @@ -91,12 +205,12 @@ for (@rows) { my $row = $cover->{$group}->{$name}; print ''; + $name = sprintf 'Unicode v%.1f', $name / 10 if $group eq 'version'; $name = sprintf '%s', EncodeURI("/chars/$group/$name"), EscapeHTML($name) - if $row->{-count} and $row->{-count} < 1280; + if $row->{count} and $row->{count} < 1280; print ''; }
'; -printf '%s fonts', scalar @{ $oslist{$_} }, $_ for @ossel; +for my $os (@ossel) { + my $osfonts = $cover->{os}->{$os}; + my $osfont = $cover->{fonts}->[ $osfonts->[0] ]; # first font + printf '%s', scalar @{$osfonts}, $osfont->{os} || '' +} print '
'; -printf '%s', $_ for @fontlist; +printf('%s', map { EscapeHTML($_) } + join("\n", $_->{name}, $_->{description}), + "/font/$_->{file}", + $_->{abbr}, +) for @{ $cover->{fonts} }[@fontlist]; say '
', $name; - print '', $row->{-count}; - for (@fontlist) { - my $count = $row->{$_}; + print '', $row->{count}; + for my $count (@{ $row->{support} }[@fontlist]) { if (not defined $count) { print '?'; next; @@ -105,14 +219,14 @@ for (@rows) { print '✘'; next; } - if ($count == $row->{-count}) { + if ($count == $row->{count}) { print '✔'; next; } - my $rel = $count / $row->{-count}; + my $rel = $count / $row->{count}; my $class = $rel < .5 ? 2 : $rel < .9 ? 3 : 4; - printf '%d%%', "l$class", $rel*100; + printf '%d', "l$class", $rel*10; } say '