open(C, "ucs_combining.map"); while() { /^\s*\{/ || next; /\{\s*(\w+),\s*(\w+)\s*\}/; ($a, $b) = ($1, $2); for $c (hex($a) .. hex($b)) { $COMB{$c} = 1; } } close(C); @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"); while() { /^#/ && next; s/#.*//; (($i, $u) = split(" ")) || next; $i = hex($i); $u = hex($u); if ($u >= 0xa0) { $to_ucs[$i] = $u; if ($i < 0x80) { print STDERR "$map $i $u\n"; # $from_ucs{$u} = $i; } else { $from_ucs{$u} = $i; } } } close(MAP); $ok = 0; @comb = (); foreach $i (0x80 .. 0xFF) { $comb[$i] = $COMB{$to_ucs[$i]} ? 1 : 0; $comb[$i] && ($ok = 1); } $ok || next; open(OUT, "> ${name}_combining.map"); print OUT <