aboutsummaryrefslogtreecommitdiffstats
path: root/libwc/map/mk_uhc_ucs_map.pl
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@vega.ocn.ne.jp>2011-05-04 07:05:14 +0000
committerTatsuya Kinoshita <tats@vega.ocn.ne.jp>2011-05-04 07:05:14 +0000
commit72f72d64a422d6628c4796f5c0bf2e508f134214 (patch)
tree0c9ea90cc53310832c977265521fb44db24a515e /libwc/map/mk_uhc_ucs_map.pl
parentAdding upstream version 0.3 (diff)
downloadw3m-1ef51c20e0ea7b35c8c9cad6f9d9bc1e16664cc5.tar.gz
w3m-1ef51c20e0ea7b35c8c9cad6f9d9bc1e16664cc5.zip
Adding upstream version 0.5.1upstream/0.5.1
Diffstat (limited to 'libwc/map/mk_uhc_ucs_map.pl')
-rw-r--r--libwc/map/mk_uhc_ucs_map.pl93
1 files changed, 93 insertions, 0 deletions
diff --git a/libwc/map/mk_uhc_ucs_map.pl b/libwc/map/mk_uhc_ucs_map.pl
new file mode 100644
index 0000000..2e62234
--- /dev/null
+++ b/libwc/map/mk_uhc_ucs_map.pl
@@ -0,0 +1,93 @@
+
+@NAME = ();
+while(<DATA>) {
+ 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(<MAP>) {
+ /^#/ && 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 >= 0xA2E6 && $i <= 0xA2E7) || next;
+ }
+ ($u < 0x80) && next;
+ $to_ucs{$i} = $u;
+ $from_ucs{$u} = $i;
+}
+
+# print OUT <<EOF;
+# /*
+# These conversion tables between $code and
+# Unicode were made from
+#
+# ftp://ftp.unicode.org/Public/MAPPINGS/$map.
+# */
+print OUT <<EOF;
+/* $code */
+
+static wc_uint16 ${name}_ucs_map[ 0x20 * 0xB2 + 0x27 * 0x54 + 2 ] = {
+EOF
+
+for $ub (0x81 .. 0xA0) {
+ for $lb (0x41 .. 0x5A, 0x61 .. 0x7A, 0x81 .. 0xFE) {
+ $_ = ($ub << 8) + $lb;
+ printf OUT " 0x%.4X,\t/* 0x%.4X */\n", $to_ucs{$_}, $_;
+ }
+}
+for $ub (0xA1 .. 0xC7) {
+ for $lb (0x41 .. 0x5A, 0x61 .. 0x7A, 0x81 .. 0xA0) {
+ $_ = ($ub << 8) + $lb;
+ printf OUT " 0x%.4X,\t/* 0x%.4X */\n", $to_ucs{$_}, $_;
+ }
+ if ($ub == 0xA2) {
+ for $lb (0xE6 .. 0xE7) {
+ $_ = ($ub << 8) + $lb;
+ printf OUT " 0x%.4X,\t/* 0x%.4X */\n", $to_ucs{$_}, $_;
+ }
+ }
+}
+
+@ucs = sort { $a <=> $b } keys %from_ucs;
+$nucs = @ucs + 0;
+
+print OUT <<EOF;
+};
+
+#define N_ucs_${name}_map $nucs
+
+static wc_map ucs_${name}_map[ N_ucs_${name}_map ] = {
+EOF
+for(@ucs) {
+ printf OUT " { 0x%.4X, 0x%.4X },\n", $_, $from_ucs{$_};
+}
+
+print OUT <<EOF;
+};
+EOF
+
+close(MAP);
+}
+
+__END__
+uhc VENDORS/MICSFT/WINDOWS/CP949.TXT UHC/CP949 (Korean)