aboutsummaryrefslogtreecommitdiffstats
path: root/libwc/map/mk_viet_ucs_map.pl
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--libwc/map/mk_viet_ucs_map.pl107
1 files changed, 107 insertions, 0 deletions
diff --git a/libwc/map/mk_viet_ucs_map.pl b/libwc/map/mk_viet_ucs_map.pl
new file mode 100644
index 0000000..a699894
--- /dev/null
+++ b/libwc/map/mk_viet_ucs_map.pl
@@ -0,0 +1,107 @@
+
+@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>) {
+ /^0/ || next;
+ (($i, $u) = split(" ")) || next;
+ $i = hex($i);
+ $u = hex($u);
+ if ($u > 0x7f) {
+ $to_ucs[$i] = $u;
+ $from_ucs{$u} = $i;
+ }
+}
+
+# print OUT <<EOF;
+# /*
+# These conversion tables between $code and
+# Unicode were made from
+#
+# http://www.vnet.org/vanlangsj/mozilla/$map.
+# */
+print OUT <<EOF;
+/* $code */
+
+static wc_uint16 ${name}1_ucs_map[ 0x80 ] = {
+EOF
+
+foreach $i (0x10 .. 0x1F) {
+ print OUT " ";
+foreach $j (0 .. 7) {
+ $_ = $i * 8 + $j;
+ $u = $to_ucs[$_];
+ if ($u) {
+ printf OUT " 0x%.4X,", $u;
+ } else {
+ print OUT " 0, ";
+ }
+}
+ print OUT "\n";
+}
+
+print OUT <<EOF;
+};
+
+static wc_uint16 ${name}2_ucs_map[ 0x20 ] = {
+EOF
+
+foreach $i (0x0 .. 0x3) {
+ print OUT " ";
+foreach $j (0 .. 7) {
+ $_ = $i * 8 + $j;
+ $u = $to_ucs[$_];
+ if ($u) {
+ printf OUT " 0x%.4X,", $u;
+ } else {
+ print OUT " 0, ";
+ }
+}
+ print OUT "\n";
+}
+
+
+@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%.2X },\n", $_, $from_ucs{$_};
+}
+
+print OUT <<EOF;
+};
+EOF
+
+close(MAP);
+}
+
+__END__
+tcvn5712 tcvn_uni.txt TCVN-5712 VN-1 (Vietnamese)
+viscii11 vis_uni.txt VISCII 1.1 (Vietnamese)
+vps vps_uni.txt VPS (Vietnamese)
+