From 604c11affe988bab23c87598c02248fff1d73f43 Mon Sep 17 00:00:00 2001 From: Fumitoshi UKAI Date: Mon, 22 Sep 2003 21:02:15 +0000 Subject: merge m17n patch add libwc --- libwc/map/mk_gbk_ucs_map.pl | 114 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 libwc/map/mk_gbk_ucs_map.pl (limited to 'libwc/map/mk_gbk_ucs_map.pl') diff --git a/libwc/map/mk_gbk_ucs_map.pl b/libwc/map/mk_gbk_ucs_map.pl new file mode 100644 index 0000000..5a2e529 --- /dev/null +++ b/libwc/map/mk_gbk_ucs_map.pl @@ -0,0 +1,114 @@ + +@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(MAP, "< $map"); +open(OUT, "> ${name}_ucs.map"); +while() { + /^#/ && next; + s/#.*//; + (($i, $u) = split(" ")) || next; + $i = hex($i); + $u = hex($u); + $a = $i >> 8; + $b = $i & 0x00FF; + if ($a >= 0xA1 && $a <= 0xFE && $b >= 0xA1 && $b <= 0xFE) { + ($i >= 0xA2A1 && $i <= 0xA2AA) || + ($i >= 0xA6E0 && $i <= 0xA6F5) || + ($i >= 0xA8BB && $i <= 0xA8BB) || + ($i >= 0xA8BD && $i <= 0xA8BD) || + ($i >= 0xA8BE && $i <= 0xA8BE) || + ($i >= 0xA8C0 && $i <= 0xA8C0) || next; + } + ($u < 0x80) && next; + $to_ucs{$i} = $u; + $from_ucs{$u} = $i; +} + +# print OUT < $b } keys %from_ucs; +$nucs = @ucs + 0; + +print OUT <