aboutsummaryrefslogtreecommitdiffstats
path: root/libwc/map/mk_hkscs_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_hkscs_ucs_map.pl
parentAdding upstream version 0.3 (diff)
downloadw3m-upstream/0.5.1.tar.gz
w3m-upstream/0.5.1.zip
Adding upstream version 0.5.1upstream/0.5.1
Diffstat (limited to 'libwc/map/mk_hkscs_ucs_map.pl')
-rw-r--r--libwc/map/mk_hkscs_ucs_map.pl82
1 files changed, 82 insertions, 0 deletions
diff --git a/libwc/map/mk_hkscs_ucs_map.pl b/libwc/map/mk_hkscs_ucs_map.pl
new file mode 100644
index 0000000..26a66ff
--- /dev/null
+++ b/libwc/map/mk_hkscs_ucs_map.pl
@@ -0,0 +1,82 @@
+
+@NAME = ();
+while(<DATA>) {
+ chop;
+ s/\s+$//;
+ (($n, $m, $d) = split(" ", $_, 3)) >= 3 || next;
+ push(@NAME, $n);
+ $MAP{$n} = $m;
+ $DESC{$n} = $d;
+}
+
+@to_ucs = ();
+%from_ucs = ();
+
+foreach $name (@NAME) {
+
+$map = $MAP{$name};
+$desc = $DESC{$name};
+print STDERR "$name\t$map\t$desc\n";
+
+open(MAP, "< $map");
+while(<MAP>) {
+ (($c, $u) = split(" ")) || next;
+ $c = hex($c);
+ $u = hex($u);
+ if (($c < 0xA140 || $c > 0xF9FE) &&
+ (($u > 0 && $u < 0xE000) || $u > 0xF8FF)) {
+ $to_ucs[$c] = $u;
+ $from_ucs{$u} = $c;
+ }
+}
+close(MAP);
+
+}
+
+$name = $NAME[0];
+$desc = $DESC{$name};
+
+open(OUT, "> ${name}_ucs.map");
+
+print OUT <<EOF;
+/* $desc */
+
+static wc_uint16 ${name}_ucs_map[ 0x1E * 0x9D ] = {
+EOF
+
+for $i (0x88 .. 0xA0, 0xFA .. 0xFE) {
+for $j (0x40 .. 0x7E, 0xA1 .. 0xFE) {
+ $_ = $i * 0x100 + $j;
+ $u = $to_ucs[$_];
+ if ($u) {
+ printf OUT " 0x%.4X,", $u;
+ } else {
+ print OUT " 0,\t";
+ }
+ printf OUT "\t/* 0x%.4X */\n", $_;
+}
+}
+
+@ucs = sort { $a <=> $b } keys %from_ucs;
+$nucs = @ucs + 0;
+
+print OUT <<EOF;
+};
+
+#define N_ucs_${name}_map $nucs
+/*
+ UCS-2 HKSCS
+*/
+static wc_map ucs_${name}_map[ N_ucs_${name}_map ] = {
+EOF
+for(@ucs) {
+ $x = $from_ucs{$_};
+ printf OUT " { 0x%.4X, 0x%.4X },\n", $_, $x;
+}
+
+print OUT <<EOF;
+};
+EOF
+
+__END__
+hkscs private/hkscs.txt HKSCS (Chinese Hong Kong)