summaryrefslogtreecommitdiff
path: root/language/japanese/japanese-otf/src/script/mkcidofm.pl
blob: 4b4d34b1293a2b96ca4a0474c2837546bce49777 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
opendir(OPLD, "opl") || mkdir("opl",0755) || die "cannot mkdir opl";
opendir(OFMD, "ofm") || mkdir("ofm",0755) || die "cannot mkdir ofm";
$font_at=1.0;
@font_base_name=("cjmr", "cjgr", "cjmb", "cjgb", "cjmgr", "cjml", "cjge");
for ($d=0; $d<=1; $d++){
	if ($d==0){$dir="h";}elsif($d==1){$dir="v";}
	foreach $base_name(@font_base_name){
		$font_name="otf-$base_name-$dir";
		open(OPL, ">opl/$font_name.opl") || die "cannot make file";
		print OPL "(OFMLEVEL D 1)\n";
		printf OPL "(FONTDIR %s)\n", $d==1 ? "RT" : "TL";
		print OPL "(FAMILY HIRAMIN)\n";
		print OPL "(FACE F MRR)\n";
		print OPL "(CODINGSCHEME UNSPECIFIED)\n";
		print OPL "(DESIGNSIZE R 10.0)\n";
		print OPL "(COMMENT DESIGNSIZE IS IN POINTS)\n";
		print OPL "(COMMENT OTHER SIZES ARE MULTIPLES OF DESIGNSIZE)\n";
		print OPL "(CHECKSUM H 0)\n";
		print OPL "(SEVENBITSAFEFLAG FALSE)\n";
		print OPL "(FONTDIMEN\n";
		print OPL "   (SLANT R 0.0)\n";
		print OPL "   (SPACE R 0.0)\n";
		printf OPL "   (STRETCH R %f)\n", $font_at/10;
		print OPL "   (SHRINK R 0.0)\n";
		printf OPL "   (XHEIGHT R %f)\n", $font_at;
		printf OPL "   (QUAD R %f)\n", $font_at;
		print OPL "   )\n";
		for($cidcode=0; $cidcode<=23059; $cidcode++){
			if ($dir eq "h"){
				if (($cidcode >= 231) && ($cidcode <= 632)){
					$width=0.5;
				}elsif(($cidcode == 8718) || ($cidcode == 8719)){
					$width=0.5;
				}elsif((12063 <= $cidcode) && ($cidcode <= 12087)){
					$width=0.5;
				}elsif((9738 <= $cidcode) && ($cidcode <= 9757)){
					$width=0.25;
				}elsif((9758 <= $cidcode) && ($cidcode <= 9778)){
					$width=0.333333;
				}else{$width=1.0;}
			}elsif($dir eq "v"){
				if ((8950 <= $cidcode) && ($cidcode <= 9353)){
					$width=0.5;
				}elsif((13254 <= $cidcode) && ($cidcode <= 13273)){
					$width=0.25;
				}elsif((13274 <= $cidcode) && ($cidcode <= 13294)){
					$width=0.333333;
				}else{$width=1.0;}
			}
			if ($dir eq "h"){
				$accender=0.88;
				$decender=0.12;
			}elsif($dir eq "v"){
				$accender=0.5;
				$decender=0.5;
			}
			printf OPL "(CHARACTER D %d\n", $cidcode;
			printf OPL "   (CHARWD R %f)\n", $width*$font_at;
			printf OPL "   (CHARHT R %f)\n", $font_at*$accender ;
			printf OPL "   (CHARDP R %f)\n", $font_at*$decender;
			print  OPL "   )\n";
		}
		close(OPL);
		system("opl2ofm opl/$font_name.opl ofm/$font_name.ofm")
	}
}