X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/61b2b5fe396c3f1c47a926cd50eb50d60415d415..290c85c0f46c87ae95eeece911bdd3f57ba51dfd:/tools/mkfontinfo diff --git a/tools/mkfontinfo b/tools/mkfontinfo index dc8ddd6..ed328cf 100755 --- a/tools/mkfontinfo +++ b/tools/mkfontinfo @@ -64,12 +64,17 @@ eval { } or warn "Could not include count for html entities: $@"; eval { + my $agemap = do 'unicode-age.inc.pl' + or warn "Could not include unicode version data: $!"; + use Unicode::UCD 'charinfo'; for my $code (0 .. 256**2*2) { my $charinfo = charinfo($code) or next; next if $charinfo->{category} =~ /^[MC]/; # ignore Marks and "other" Control chars push @{ $charlist{$_}->{ $charinfo->{$_} } }, chr $code for qw( script category block ); + push @{ $charlist{version}->{$_} }, (chr $code) x ($agemap->{$code} <= $_) + for 11, 30, 63; } 1; } or warn "Could not include unicode groups: $@"; @@ -110,22 +115,27 @@ $charlist{fonts} = \@fontlist; my %osfonts = ( win95 => [qw( arial.win95 arialuni lucidau verdana.win95 times.win95 cour.win95 )], # microsoft - win7 => [qw( arial.win7 verdana.win7 times.win7 cour.win7 )], - win8 => [qw( arial.win8 verdana.win8 times.win8 cour.win8 )], - mac10 => [qw( helvetica.mac10 lucida.mac10 times.mac10 garamond.mac10 palatino.mac10 lucida.mac10 )], # apple - android => [qw( roboto notosans )], # google - oss => [qw( dvsans code2000 unifont opensans )], + win8 => [map {"$_.win8"} qw( arial verdana times georgia pala cour )], + mac109 => [map {"$_.mac109"} qw( helv lucida times pala )], # apple + android => [qw( roboto droidmono notosans )], # google + oss => [qw( dvsans freesans code2000 unifont )], ); +if (0) { + # copy rows to derive older os versions (same list with different trailing number) + s/8$/7/ for @{ $osfonts{ win7} = [@{ $osfonts{ win8} }] }; + s/9$/7/ for @{ $osfonts{mac107} = [@{ $osfonts{mac109} }] }; +} + my %fontnum = map { ($fontlist[$_]->{file} => $_) } 0 .. $#fontlist; while (my ($os, $fontids) = each %osfonts) { $charlist{os}->{$os} = [ map { $fontnum{$_} // () } @{$fontids} ]; } -$charlist{osdefault} = [qw( win95 win8 mac10 oss android )]; +$charlist{osdefault} = [qw( win95 win8 mac109 android oss )]; say "# automatically generated by $0"; say 'use utf8;'; say '+', pp(\%charlist) =~ s{ - ( \[ \s* \d [^]]* ) ,\s* # arrays of numbers, excluding trailing comma + ( \[ \s* \d [^]]* ) ,\s* (?= \] ) # arrays of numbers, excluding trailing comma }{ $1 =~ s/\s+//gr }msxgre; # strip whitespace __END__