From 72f72d64a422d6628c4796f5c0bf2e508f134214 Mon Sep 17 00:00:00 2001 From: Tatsuya Kinoshita Date: Wed, 4 May 2011 16:05:14 +0900 Subject: Adding upstream version 0.5.1 --- libwc/map/mk_tis_ucs_map.pl | 71 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 libwc/map/mk_tis_ucs_map.pl (limited to 'libwc/map/mk_tis_ucs_map.pl') diff --git a/libwc/map/mk_tis_ucs_map.pl b/libwc/map/mk_tis_ucs_map.pl new file mode 100644 index 0000000..2172d3e --- /dev/null +++ b/libwc/map/mk_tis_ucs_map.pl @@ -0,0 +1,71 @@ + +@NAME = (); +while() { + chop; + s/\s*$//; + (($n, $m, $c) = split(" ", $_, 3)) >= 3 || next; + push(@NAME, $n); + $MAP{$n} = $m; + $CODE{$n} = $c; +} + +foreach $name (@NAME) { + +$code = $CODE{$name}; +$map = $MAP{$name}; + +print "$name\t$map\t$code\n"; + +@to_ucs = (); +%from_ucs = (); +open(OUT, "> ${name}_ucs.map"); + +for $i (0xA1 .. 0xDA, 0xDF .. 0xFB) { + $u = $i - 0xA0 + 0xE00; + $to_ucs[$i] = $u; + $from_ucs{$u} = $i; +} + +print OUT < $b } keys %from_ucs; +$nucs = @ucs + 0; + +print OUT <