108 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			108 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Perl
		
	
	
	
	
	
| 
 | |
| @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)
 | |
| 
 |