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_cp1258_ucs_map.pl | 108 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 libwc/map/mk_cp1258_ucs_map.pl (limited to 'libwc/map/mk_cp1258_ucs_map.pl') diff --git a/libwc/map/mk_cp1258_ucs_map.pl b/libwc/map/mk_cp1258_ucs_map.pl new file mode 100644 index 0000000..b44d430 --- /dev/null +++ b/libwc/map/mk_cp1258_ucs_map.pl @@ -0,0 +1,108 @@ + +@NAME = (); +while() { + chop; + s/\s*$//; + (($n, $m, $c) = split(" ", $_, 3)) >= 3 || next; + push(@NAME, $n); + $MAP{$n} = $m; + $CODE{$n} = $c; +} + +@to_ucs = (); +%to_ucs2 = (); +%from_ucs = (); +foreach $name (@NAME) { + +$code = $CODE{$name}; +$map = $MAP{$name}; + +print "$name\t$map\t$code\n"; + +open(MAP, "< $map"); +while() { + /^0/ || next; + (($i, $u) = split(" ")) || next; + $i = hex($i); + $u = hex($u); + if ($map =~ /^V/ && $u > 0x7f) { + $to_ucs[$i] = $u; + $from_ucs{$u} = $i; + } + if ($map =~ /^c/ && $i > 0x100) { + $to_ucs2{$i} = $u; + if (! defined($from_ucs{$u})) { + $from_ucs{$u} = $i; + } + } +} +close(MAP); +} + +$name = $NAME[0]; +$code = $CODE{$name}; +$map = $MAP{$name}; +open(OUT, "> ${name}_ucs.map"); + +# print OUT < $b } keys %to_ucs2; +$cp = @cp + 0; + +print OUT < $b } keys %from_ucs; +$nucs = @ucs + 0; + +print OUT <