countries: rename ez title to eurozone
[sheet.git] / tools / mkttfinfo
index 72564bffa9e656f16103fa91d4ef285a0d484291..2523b8f9f0c5531a5df7746ba4bafdf0987ea0e1 100755 (executable)
@@ -30,12 +30,19 @@ for ($outfile || ()) {
 }
 
 {
-       my $ttf = Font::TTF::Font->open($ttfuri) or do {
-               warn "Cannot open truetype in $ttfuri: $!";
+       my $ttf = eval {
+               if ($ttfuri =~ /\.ttc\z/) {
+                       require Font::TTF::Ttc;
+                       my $collection = Font::TTF::Ttc->open($ttfuri) or die $!;
+                       return $collection->{directs}->[0];  # first sub-font object
+               }
+               return Font::TTF::Font->open($ttfuri);
+       } or do {
+               warn "Cannot open font file $ttfuri: ", $@ // $!;
                exit 65; # EX_DATAERR
        };
 
-       my $ttfname = ($ttfuri =~ m{([^/.]+) (?:[.]ttf)? \z}msx)[0];
+       my ($ttfname, @ttfext) = split /\./, ($ttfuri =~ m{([^/]+)\z}ms)[0];
        my $ttfmeta = $ttf->{name}->read;
        my %meta = (
                source   => abs_path($ttfuri) =~ m{(^/usr/.+ | [^/]+) \z}msx,
@@ -54,12 +61,23 @@ for ($outfile || ()) {
        $meta{abbr} = lc join '', $meta{name} =~ s/ MS$//r =~ m{
                (?!Sans) (?<! [0-9]) ([[:upper:]0-9])
        }gx;
+       $meta{os} = $_ for "@ttfext[0 .. $#ttfext-1]" || (
+               $meta{copyright} =~ /\bGoogle\b/ ? "Android" :
+               $ttfname eq 'arialuni' ? 'win2k' :
+               ()
+       );
+       $meta{oscorp} = (
+               s/^mac10/OS X 10./ ? 'Apple' :
+               s/^win(.+)/'Windows '.($1 eq '2k' ? 2000 : $1)/e ? 'Microsoft' :
+               m/^Android/ ? 'Google' :
+               undef
+       ) for $meta{os} || ();
 
        say "# automatically generated by $0";
        say '+', pp(\%meta), ',';
 
        my $support = $ttf->{cmap}->find_ms->{val};
-       warn scalar keys %$support, " characters read from $ttfname\n"
+       warn scalar keys %$support, " characters read from $ttfuri\n"
                if $opt{verbose};
        say pp(sort { $a <=> $b } keys %$support);
 }