#!/usr/bin/perl use strict; =head1 NAME tbr2tbl --- PETBL/1.0 source(s) to completed table converter =cut my %CMD; my %C; $C{tbl_std_cl} = [split /\n/, < 0x01 U+0001 # 0x02 U+0002 # 0x03 U+0003 # 0x04 U+0004 # 0x05 U+0005 # 0x06 U+0006 # 0x07 U+0007 # 0x08 U+0008 # 0x09 U+0009 # 0x0A U+000A # 0x0B U+000B # 0x0C U+000C # 0x0D U+000D # 0x0E U+000E # 0x0F U+000F # 0x10 U+0010 # 0x11 U+0011 # 0x12 U+0012 # 0x13 U+0013 # 0x14 U+0014 # 0x15 U+0015 # 0x16 U+0016 # 0x17 U+0017 # 0x18 U+0018 # 0x19 U+0019 # 0x1A U+001A # 0x1B U+001B # 0x1C U+001C # 0x1D U+001D # 0x1E U+001E # 0x1F U+001F # EOH $C{tbl_std_20} = q(0x20 U+0020 # SPACE); $C{tbl_std_7f} = q(0x7F U+007F # DELETE); $C{tbl_std_cr} = [split /\n/, < 0x81 U+0081 # 0x82 U+0082 # 0x83 U+0083 # 0x84 U+0084 # 0x85 U+0085 # 0x86 U+0086 # 0x87 U+0087 # 0x88 U+0088 # 0x89 U+0089 # 0x8A U+008A # 0x8B U+008B # 0x8C U+008C # 0x8D U+008D # 0x8E U+008E # 0x8F U+008F # 0x90 U+0090 # 0x91 U+0091 # 0x92 U+0092 # 0x93 U+0093 # 0x94 U+0094 # 0x95 U+0095 # 0x96 U+0096 # 0x97 U+0097 # 0x98 U+0098 # 0x99 U+0099 # 0x9A U+009A # 0x9B U+009B # 0x9C U+009C # 0x9D U+009D # 0x9E U+009E # 0x9F U+009F # EOH $C{tbl_std_a0} = q(0xA0 # ); $C{tbl_std_ff} = q(0xFF # ); { my @name = split /\n/, require 'unicore/Name.pl'; my %name; for (@name) { if (/^(....) ([^\t]+)/) { $name{hex $1} = $2; } } sub charname ($) { ## TODO: be more strict! $_[0] < 0x0020 ? '' : $_[0] < 0x007F ? $name{$_[0]} : $_[0] < 0x00A0 ? '' : $name{$_[0]} ? $name{$_[0]} : $_[0] < 0x00A0 ? '' : $_[0] < 0x3400 ? '' : $_[0] < 0xA000 ? '' : $_[0] < 0xE000 ? '' : $_[0] < 0xF900 ? '' : ''; } } sub array_to_table (@%) { my ($source, $o) = @_; my @r; $o->{mode}->{DEFAULT} = 1; my $mode = 'DEFAULT'; for (@$source) { if (/^#\?if-mode ([A-Za-z0-9-]+)/) { $mode = $1; } elsif (/^#\?end-if-mode/) { $mode = 'DEFAULT'; } elsif ($o->{mode}->{$mode}) { ## mode is enabled if (/^#\?o/) { ## table option push @r, $_; } elsif (s/^#\?([A-Za-z0-9-]+)//) { my %opt = (cmd => $1); s{ ([A-Za-z0-9-]+)=(?:"((?:[^"\\]|\\.)*)"|([A-Za-z0-9-]+)) | ([A-Za-z0-9-]+)}{ my ($N, $V, $v, $n) = ($1, $2, $3, $4); $V =~ s/\\(.)/$1/g; $opt{ $N || $n } = $n ? 1 : ($V || $v); }gex; push @r, &{ $CMD{ $opt{cmd} } } (\%opt) if ref $CMD{ $opt{cmd} }; } elsif (/^##/) { ## Comment push @r, $_; } elsif (/^#;/) { ## Comment } elsif (/^#/) { ## Comment or unsupported function push @r, $_; } elsif (/^0x($o->{except} (?!3021)[0-9A-Fa-f]+)\t([^\t]*)\t([^\t]*)\t(.*)/x) { my ($u, $l, $f, $m) = (hex $1, $2, $3, $4); $f = $o->{fallback} if $o->{fallback}; my $offset = $o->{offset}; $offset += $u + $offset > 0xFF ? 0x8080 : 0x80 if $o->{right}; $m =~ s/^#\s*//; push @r, sprintf qq{0x%02X\t%s\t%s\t# %s}, $u+$offset, $l, $f, $m || charname ($l); } elsif (/^$/) { } else { #push @r, $_; } } # / mode is enabled } @r; } $CMD{import} = sub { my ($opt) = @_; if ($opt->{src}) { ## BUG: resolve of relative path open TBL, $opt->{src} or die "$0: $opt->{src}: Imported table not found"; my @tbl = ; close TBL; map {s/[\x0D\x0A]+$//} @tbl; my $m = {}; for (split /,/, $opt->{mode}) { $m->{$_} = 1 } shift (@tbl) if $tbl[0] =~ m!^#\?PETBL/1.0 SOURCE!; $opt->{except} = $opt->{except} ? qq((?!(?i)$opt->{except})) : ''; array_to_table (\@tbl, {offset => hex $opt->{offset}, fallback => $opt->{fallback}, mode => $m, except => $opt->{except}, right => $opt->{right}}); } elsif ($opt->{'std-cl'}) { @{ $C{tbl_std_cl} }; } elsif ($opt->{'std-cr'}) { @{ $C{tbl_std_cr} }; } elsif ($opt->{'std-0x20'} || $opt->{'std-sp'}) { $C{tbl_std_20}; } elsif ($opt->{'std-0x7F'} || $opt->{'std-del'}) { $C{tbl_std_7f}; } elsif ($opt->{'std-0xA0'}) { $C{tbl_std_a0}; } elsif ($opt->{'std-0xFF'}) { $C{tbl_std_ff}; } }; my @src; while (<>) { s/[\x0D\x0A]+$//; push @src, $_; } shift (@src) if $src[0] =~ m!^#\?PETBL/1.0 SOURCE!; @src = sort { $a =~ /^#/ ? 0 : $b =~ /^#/ ? 0 : $a cmp $b } array_to_table (\@src); binmode STDOUT; print "#?PETBL/1.0\n"; print join ("\n", @src)."\n"; =head1 AUTHOR Nanashi-san =head1 LICENSE Copyright 2002 AUTHOR This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. AUTHOR does NOT claim any right to the data generated by this script. License of generated data fully depends author of source data. =cut 1; ## $Date: 2002/10/05 05:01:24 $ ### tbr2tbl.pl ends here