-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfigure.py
813 lines (748 loc) · 23.4 KB
/
configure.py
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
import json
import codecs
from functools import reduce
from itertools import product
from types import SimpleNamespace as Namespace
class Config:
version = "0.2.1"
fontRevision = 0.0201
vendor = "Nowar Typeface"
vendorId = "NOWR"
vendorUrl = "https://github.com/nowar-fonts"
copyright = "Copyright © 2019—2020 Cyano Hao and Nowar Typeface, with reserved font name “Nowar”, “有爱”, and “有愛”. Portions Copyright 2015 Google Inc. Portions © 2014-2019 Adobe (http://www.adobe.com/)."
designer = "Cyano Hao (character set definition, autohinting & modification for World of Warcraft); Monotype Design Team (Latin, Greek & Cyrillic); Ryoko NISHIZUKA 西塚涼子 (kana, bopomofo & ideographs); Sandoll Communications 산돌커뮤니케이션, Soo-young JANG 장수영 & Joo-yeon KANG 강주연 (hangul elements, letters & syllables); Dr. Ken Lunde (project architect, glyph set definition & overall production); Masataka HATTORI 服部正貴 (production & ideograph elements)"
designerUrl = "https://github.com/CyanoHao"
license = "This Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software."
licenseUrl = "https://scripts.sil.org/OFL"
fontPackWeight = [ 200, 300, 400, 500, 700 ]
fontPackFeature = [ "OSF", "SC", "RP" ]
# if there are feature variants, feature tags must be identically ordered as in fontPackFeature.
# e. g. `("CN", [ "OSF", "RP" ])`
fontPackVariant = [
"CN", "TW", "HK", "JP", "KR",
"CL", ("CL", [ "OSF" ]), ("CL", [ "SC" ]),
"GB", ("GB", [ "RP" ]),
]
config = Config()
weightMap = {
100: "Thin",
200: "ExtraLight",
300: "Light",
400: "Regular",
500: "Medium",
600: "SemiBold",
700: "Bold",
800: "ExtraBold",
900: "Black",
}
widthMap = {
3: "Condensed",
4: "SemiCondensed",
5: None,
7: "Extended",
}
notoWidthMap = {
3: 3,
5: 4,
7: 5,
}
morpheusWeightMap = {
200: 100,
300: 200,
400: 500,
500: 600,
700: 800,
}
# define font pack orthographies for diffrent WoW language
# Latn -- Chinese characters in European languages, must be defined.
# Hans -- 简体中文; if set to `None`, the font pack will not override 简体中文 font.
# Hans -- 繁體中文, can be `None`.
# ko -- 漢字 in 한국어, can be `None`.
regionalVariant = {
"CN": {
"Latn": "CN",
"Hans": "CN",
"Hant": "TW",
"ko": "KR",
},
"TW": {
"Latn": "TW",
"Hans": "CN",
"Hant": "TW",
"ko": "KR",
},
"HK": {
"Latn": "HK",
"Hans": "CN",
"Hant": "HK",
"ko": "KR",
},
"JP": {
"Latn": "JP",
"Hans": "CN",
"Hant": "TW",
"ko": "KR",
},
"KR": {
"Latn": "KR",
"Hans": "CN",
"Hant": "TW",
"ko": "KR",
},
"CL": {
"Latn": "CL",
"Hans": "CL",
"Hant": "CL",
"ko": "CL",
},
"GB": {
"Latn": "GB",
"Hans": "GB",
"Hant": "GB",
"ko": None,
},
}
# map orthography to source file
regionSourceMap = {
"CN": "SourceHanSansSC",
"TW": "SourceHanSansTC",
"HK": "SourceHanSansHC",
"JP": "SourceHanSans",
"KR": "SourceHanSansK",
"CL": "SourceHanSansK",
"GB": "SourceHanSansCN",
}
regionNameMap = {
"CN": "CN",
"TW": "TW",
"HK": "HK",
"JP": "JP",
"KR": "KR",
"CL": "Classical",
"GB": "GB18030",
}
tagNameMap = dict(regionNameMap)
tagNameMap.update({
"OSF": "Oldstyle",
"SC": "Smallcaps",
"RP": "Roleplaying",
})
# set OS/2 encoding to make Windows show font icon in proper language
encoding = [
"unspec", # 文字美
"gbk", # 简体字
"big5", # 繁體字
"jis", # あア亜
"korean", # 한글
]
def GetRegion(p):
if hasattr(p, "region"):
return p.region
else:
return ""
def LocalizedFamily(p):
if "nameList" not in LocalizedFamily.__dict__:
LocalizedFamily.nameList = {
"Sans": {
0x0409: "Nowar C²",
0x0804: "有爱锐方",
0x0404: "有愛銳方",
0x0C04: "有愛鋭方",
0x0411: "有愛鋭方",
0x0412: "有愛예방",
},
"UI": {
0x0409: "Nowar C² UI",
0x0804: "有爱锐方 UI",
0x0404: "有愛銳方 UI",
0x0C04: "有愛鋭方 UI",
0x0411: "有愛鋭方 UI",
0x0412: "有愛예방 UI",
},
"WarcraftSans": {
0x0409: "Nowar C² Warcraft",
0x0804: "有爱魔兽锐方",
0x0404: "有愛魔獸銳方",
0x0C04: "有愛魔獸鋭方",
0x0411: "有愛鋭方ウォークラフト",
0x0412: "有愛예방 워크래프트",
},
"WarcraftUI": {
0x0409: "Nowar C² Warcraft UI",
0x0804: "有爱魔兽锐方 UI",
0x0404: "有愛魔獸銳方 UI",
0x0C04: "有愛魔獸黑體 UI",
0x0411: "有愛鋭方ウォークラフト UI",
0x0412: "有愛예방 워크래프트 UI",
},
}
if p.family == "Latin":
return {
0x0409: "Nowar C² UI LCG",
0x0804: "Nowar C² UI LCG",
0x0404: "Nowar C² UI LCG",
0x0C04: "Nowar C² UI LCG",
0x0411: "Nowar C² UI LCG",
0x0412: "Nowar C² UI LCG",
}
isLocalized = {
0x0804: bool(regionalVariant[p.region]["Hans"]),
0x0404: bool(regionalVariant[p.region]["Hant"]),
0x0C04: bool(regionalVariant[p.region]["Hant"]),
0x0411: bool(regionalVariant[p.region]["Hans"]),
0x0412: bool(regionalVariant[p.region]["ko"]),
}
result = dict(LocalizedFamily.nameList[p.family])
result.update({ lang: result[0x0409] for lang, local in isLocalized.items() if not local })
return result
def GetTagList(p):
if p.family == "Latin":
tagList = p.feature
else:
tagList = [ p.region ] + p.feature
return tagList
def GetTagStr(p):
tagList = GetTagList(p)
return ",".join(tagList)
def TagListToStr(lst):
return ",".join(lst)
def TagStrToList(s):
return s.split(",")
def GenerateFamily(p):
localizedFamily = LocalizedFamily(p)
tagList = GetTagList(p)
if len(tagList):
return {
lang: localizedFamily[lang] + " " + " ".join([ tagNameMap[tag] for tag in tagList ])
for lang in localizedFamily
}
else:
return localizedFamily
def GenerateSubfamily(p):
width = widthMap[p.width]
weight = weightMap[p.weight]
if hasattr(p, "italic") and p.italic:
if p.weight == 400:
return width + " Italic" if width else "Italic"
else:
return ("{} {}".format(width, weight) if width else weight) + " Italic"
else:
if p.weight == 400:
return width if width else "Regular"
else:
return "{} {}".format(width, weight) if width else weight
def GenerateFriendlyFamily(p):
return { k: "{} {}".format(v, GenerateSubfamily(p)) for k, v in GenerateFamily(p).items() }
def GenerateLegacySubfamily(p):
width = widthMap[p.width]
weight = weightMap[p.weight]
if hasattr(p, "italic") and p.italic:
if p.weight == 400:
return width or "", "Italic"
elif p.weight == 700:
return width or "", "Bold Italic"
else:
return "{} {}".format(width, weight) if width else weight, "Italic"
else:
if p.weight == 400 or p.weight == 700:
return width or "", weight
else:
return "{} {}".format(width, weight) if width else weight, "Regular"
def GenerateFilename(p):
if p.family in [ "Sans", "UI", "WarcraftSans", "WarcraftUI" ]:
encodingPrefix = p.encoding + "-"
nameList = {
"Sans": "NowarCnC",
"UI": "NowarCnCUI",
"WarcraftSans": "NowarCnCWarcraft",
"WarcraftUI": "NowarCnCWarcraftUI",
}
familyName = nameList[p.family] + "-" + GetTagStr(p)
elif p.family == "Latin":
encodingPrefix = ""
nameList = {
"Latin": "NowarCnCLCG",
}
familyName = nameList[p.family] + "-" + GetTagStr(p)
else:
encodingPrefix = ""
nameList = {
"Noto": lambda p: "NotoSans",
"Source": lambda p: p.region,
}
familyName = nameList[p.family](p)
return encodingPrefix + familyName + "-" + GenerateSubfamily(p).replace(" ", "")
def ResolveDependency(p):
result = {
"Latin": Namespace(
family = "Noto",
width = notoWidthMap[p.width],
weight = p.weight
)
}
if p.family in [ "WarcraftSans", "WarcraftUI" ]:
result["Numeral"] = Namespace(
family = "Noto",
width = 3,
weight = p.weight
)
if p.family in [ "Sans", "UI", "WarcraftSans", "WarcraftUI" ]:
result["CJK"] = Namespace(
family = "Source",
weight = p.weight,
width = 5,
region = regionSourceMap[p.region]
)
return result
def GetMorpheus(weight, feature):
return Namespace(
weight = morpheusWeightMap[weight],
width = 3,
family = "Latin",
feature = feature,
)
def GetSkurri(weight, feature):
return Namespace(
weight = weight,
width = 7,
family = "Latin",
feature = feature,
)
def GetLatinFont(weight, region, feature):
return Namespace(
weight = weight,
width = 7,
family = "UI",
region = regionalVariant[region]["Latn"],
feature = feature,
encoding = "unspec"
)
def GetLatinChatFont(weight, region, feature):
return Namespace(
weight = weight,
width = 3,
family = "UI",
region = regionalVariant[region]["Latn"],
feature = feature,
encoding = "unspec"
)
def GetHansFont(weight, region, feature):
return Namespace(
weight = weight,
width = 5,
family = "WarcraftSans",
region = regionalVariant[region]["Hans"],
feature = feature,
encoding = "gbk"
)
def GetHansCombatFont(weight, region, feature):
return Namespace(
weight = weight,
width = 7,
family = "Sans",
region = regionalVariant[region]["Hans"],
feature = feature,
encoding = "gbk"
)
def GetHansChatFont(weight, region, feature):
return Namespace(
weight = weight,
width = 3,
family = "Sans",
region = regionalVariant[region]["Hans"],
feature = feature,
encoding = "gbk"
)
def GetHantFont(weight, region, feature):
return Namespace(
weight = weight,
width = 5,
family = "WarcraftSans",
region = regionalVariant[region]["Hant"],
feature = feature,
encoding = "big5"
)
def GetHantCombatFont(weight, region, feature):
return Namespace(
weight = weight,
width = 7,
family = "Sans",
region = regionalVariant[region]["Hant"],
feature = feature,
encoding = "big5"
)
def GetHantNoteFont(weight, region, feature):
return Namespace(
weight = weight,
width = 5,
family = "Sans",
region = regionalVariant[region]["Hant"],
feature = feature,
encoding = "big5"
)
def GetHantChatFont(weight, region, feature):
return Namespace(
weight = weight,
width = 3,
family = "Sans",
region = regionalVariant[region]["Hant"],
feature = feature,
encoding = "big5"
)
def GetKoreanFont(weight, region, feature):
return Namespace(
weight = weight,
width = 5,
family = "UI",
region = regionalVariant[region]["ko"],
feature = feature,
encoding = "korean"
)
def GetKoreanCombatFont(weight, region, feature):
return Namespace(
weight = weight,
width = 7,
family = "UI",
region = regionalVariant[region]["ko"],
feature = feature,
encoding = "korean"
)
def GetKoreanDisplayFont(weight, region, feature):
return Namespace(
weight = weight,
width = 3,
family = "UI",
region = regionalVariant[region]["ko"],
feature = feature,
encoding = "korean"
)
def ParamToArgument(conf):
js = json.dumps(conf.__dict__, separators=(',',':'))
return "'{}'".format(js)
if __name__ == "__main__":
makefile = {
"variable": {
"VERSION": config.version,
"IDH_JOBS?": 8,
},
"rule": {
".PHONY": {
"depend": [
"all",
"hint2",
] + [
"hint2-{}".format(w) for w in config.fontPackWeight
],
},
"all": {
"depend": [],
},
"clean": {
"command": [
"-rm -rf build/",
"-rm -rf out/??*-???/",
],
},
},
}
hintInstance = []
unique = lambda l: reduce(lambda l, x: l + [ x ] if x not in l else l, l, [])
powerset = lambda lst: reduce(lambda result, x: result + [subset + [x] for subset in result], lst, [[]])
# font pack for each regional variant and weight
for v, w in product(config.fontPackVariant, config.fontPackWeight):
r = v[0] if type(v) == tuple else v
fea = v[1] if type(v) == tuple else []
target = "{}-{}".format(r, w)
tagList = [ r ] + fea
target = "{}-{}".format(TagListToStr(tagList), w)
pack = "out/NowarCnC-{}-${{VERSION}}.7z".format(target)
makefile["rule"]["all"]["depend"].append(pack)
fontlist = {
"ARIALN": GetLatinChatFont(w, r, fea),
"FRIZQT__": GetLatinFont(w, r, fea),
"MORPHEUS": GetMorpheus(w, fea),
"skurri": GetSkurri(w, fea),
"FRIZQT___CYR": GetLatinFont(w, r, fea),
"MORPHEUS_CYR": GetMorpheus(w, fea),
"SKURRI_CYR": GetSkurri(w, fea),
}
if regionalVariant[r]["Hans"]:
fontlist.update({
"ARKai_C": GetHansCombatFont(w, r, fea),
"ARKai_T": GetHansFont(w, r, fea),
"ARHei": GetHansChatFont(w, r, fea),
})
if regionalVariant[r]["Hant"]:
fontlist.update({
"arheiuhk_bd": GetHantChatFont(w, r, fea),
"bHEI00M": GetHantNoteFont(w, r, fea),
"bHEI01B": GetHantChatFont(w, r, fea),
"bKAI00M": GetHantCombatFont(w, r, fea),
"blei00d": GetHantFont(w, r, fea),
})
if regionalVariant[r]["ko"]:
fontlist.update({
"2002": GetKoreanFont(w, r, fea),
"2002B": GetKoreanFont(w, r, fea),
"K_Damage": GetKoreanCombatFont(w, r, fea),
"K_Pagetext": GetKoreanDisplayFont(w, r, fea),
})
hintInstance += list(fontlist.values())
makefile["rule"][pack] = {
"depend": [ "out/{}/Fonts/{}.ttf".format(target, f) for f in fontlist ],
"command": [
"cd out/{};".format(target) +
"cp ../../LICENSE.txt Fonts/LICENSE.txt;" +
"7z a -t7z -m0=LZMA:d=512m:fb=273 -ms ../../$@ Fonts/"
]
}
for f, p in fontlist.items():
makefile["rule"]["out/{}/Fonts/{}.ttf".format(target, f)] = {
"depend": [ "build/nowar/{}.ttf".format(GenerateFilename(p)) ],
"command": [
"mkdir -p out/{}/Fonts".format(target),
"cp $^ $@",
]
}
hintGroup = {
"Latin": []
}
hintGroup.update({
w: [] for w in config.fontPackWeight
})
for f in hintInstance:
if f.family == "Latin":
hintGroup["Latin"].append(f)
else:
f.encoding = "unspec"
hintGroup[f.weight].append(f)
for k, v in hintGroup.items():
hintGroup[k] = unique(v)
# IDH
makefile["rule"]["hint2"] = {
"depend": [ "hint2-{}".format(w) for w in config.fontPackWeight ],
}
for w in config.fontPackWeight:
for f in hintGroup[w]:
makefile["rule"]["hint2-{}".format(w)] = {
"depend": [ "build/hint2/{}.otd".format(GenerateFilename(f)) for f in hintGroup[w] ],
"command": [
"node node_modules/@chlorophytum/cli/bin/_startup hint -c source/idh/{0}.json -h cache/idh-{0}.gz -j ${{IDH_JOBS}} ".format(w) +
" ".join([ "build/hint2/{0}.otd build/hint2/{0}.hint.gz".format(GenerateFilename(f)) for f in hintGroup[w] ])
],
}
makefile["rule"]["build/nowar/{}.ttf".format(GenerateFilename(f))] = {
"depend": [ "build/nowar/{}.otd".format(GenerateFilename(f)) ],
"command": [ "otfccbuild -q -O3 --keep-average-char-width $< -o $@" ],
}
makefile["rule"]["build/nowar/{}.otd".format(GenerateFilename(f))] = {
"depend": [ "build/hint2/{}.instr.gz".format(GenerateFilename(f)) ],
"command": [
"mkdir -p build/nowar/",
"node node_modules/@chlorophytum/cli/bin/_startup integrate -c source/idh/{0}.json build/hint2/{1}.instr.gz build/hint2/{1}.otd build/nowar/{1}.otd".format(w, GenerateFilename(f)),
],
}
makefile["rule"]["build/hint2/{}.instr.gz".format(GenerateFilename(f))] = {
"depend": [ "build/hint2/{}.hint.gz".format(GenerateFilename(f)) ],
"command": [
"node node_modules/@chlorophytum/cli/bin/_startup instruct -c source/idh/{0}.json build/hint2/{1}.otd build/hint2/{1}.hint.gz build/hint2/{1}.instr.gz".format(w, GenerateFilename(f)),
],
}
makefile["rule"]["build/hint2/{}.hint.gz".format(GenerateFilename(f))] = {
"depend": [ "hint2" ],
}
makefile["rule"]["build/hint2/{}.otd".format(GenerateFilename(f))] = {
"depend": [ "build/hint1/{}.ttf".format(GenerateFilename(f)) ],
"command": [
"mkdir -p build/hint2/",
"otfccdump $< -o $@",
],
}
# TTFautohint
for f in hintGroup["Latin"]:
makefile["rule"]["build/nowar/{}.ttf".format(GenerateFilename(f))] = {
"depend": [ "build/unhinted/{}.ttf".format(GenerateFilename(f)) ],
"command": [
"mkdir -p build/nowar/",
"ttfautohint -a qqq -c -D latn -f latn -G 0 -l 7 -r 48 -n -x 0 -v $< $@",
],
}
for w in config.fontPackWeight:
for f in hintGroup[w]:
makefile["rule"]["build/hint1/{}.ttf".format(GenerateFilename(f))] = {
"depend": [ "build/unhinted/{}.ttf".format(GenerateFilename(f)) ],
"command": [
"mkdir -p build/hint1/",
"ttfautohint -a qqq -c -D latn -f latn -G 0 -l 7 -r 48 -n -x 0 -v $< $@",
],
}
# Sans, UI
for f, w, wd, r, fea in product([ "Sans", "UI" ], config.fontPackWeight, [3, 5, 7], regionNameMap.keys(), powerset(config.fontPackFeature)):
param = Namespace(
family = f,
weight = w,
width = wd,
region = r,
feature = fea,
encoding = "unspec",
)
makefile["rule"]["build/unhinted/{}.ttf".format(GenerateFilename(param))] = {
"depend": ["build/unhinted/{}.otd".format(GenerateFilename(param))],
"command": [ "otfccbuild -q -O3 --keep-average-char-width $< -o $@" ]
}
dep = ResolveDependency(param)
makefile["rule"]["build/unhinted/{}.otd".format(GenerateFilename(param))] = {
"depend": [
"build/noto/{}.otd".format(GenerateFilename(dep["Latin"])),
"build/shs/{}.otd".format(GenerateFilename(dep["CJK"])),
],
"command": [
"mkdir -p build/unhinted/",
"python merge.py {}".format(ParamToArgument(param)),
]
}
makefile["rule"]["build/noto/{}.otd".format(GenerateFilename(dep["Latin"]))] = {
"depend": [ "source/noto/{}.ttf".format(GenerateFilename(dep["Latin"])) ],
"command": [
"mkdir -p build/noto/",
"otfccdump --glyph-name-prefix latn --ignore-hints $< -o $@",
]
}
makefile["rule"]["build/shs/{}.otd".format(GenerateFilename(dep["CJK"]))] = {
"depend": [ "build/shs/{}.ttf".format(GenerateFilename(dep["CJK"])) ],
"command": [ "otfccdump --glyph-name-prefix hani --ignore-hints $< -o $@" ]
}
makefile["rule"]["build/shs/{}.ttf".format(GenerateFilename(dep["CJK"]))] = {
"depend": [ "source/shs/{}.otf".format(GenerateFilename(dep["CJK"])) ],
"command": [
"mkdir -p build/shs/",
"otfccdump --ignore-hints $< | node node_modules/otfcc-c2q/_c2q_startup.js | otfccbuild -q -O3 -o $@",
],
}
# set encoding
for e in [ "gbk", "big5", "jis", "korean" ]:
enc = Namespace(
family = f,
weight = w,
width = wd,
region = r,
feature = fea,
encoding = e,
)
makefile["rule"]["build/nowar/{}.ttf".format(GenerateFilename(enc))] = {
"depend": ["build/nowar/{}.otd".format(GenerateFilename(enc))],
"command": [ "otfccbuild -q -O3 --keep-average-char-width $< -o $@" ]
}
makefile["rule"]["build/nowar/{}.otd".format(GenerateFilename(enc))] = {
"depend": ["build/nowar/{}.otd".format(GenerateFilename(param))],
"command": [ "python set-encoding.py {}".format(ParamToArgument(enc)) ]
}
# WarcraftSans
for w, r, fea in product(config.fontPackWeight, regionNameMap.keys(), powerset(config.fontPackFeature)):
param = Namespace(
family = "WarcraftSans",
weight = w,
width = 5,
region = r,
feature = fea,
encoding = "unspec",
)
makefile["rule"]["build/unhinted/{}.ttf".format(GenerateFilename(param))] = {
"depend": ["build/unhinted/{}.otd".format(GenerateFilename(param))],
"command": [ "otfccbuild -q -O3 --keep-average-char-width $< -o $@" ]
}
dep = ResolveDependency(param)
makefile["rule"]["build/unhinted/{}.otd".format(GenerateFilename(param))] = {
"depend": [
"build/noto/{}.otd".format(GenerateFilename(dep["Latin"])),
"build/noto/{}.otd".format(GenerateFilename(dep["Numeral"])),
"build/shs/{}.otd".format(GenerateFilename(dep["CJK"])),
],
"command": [
"mkdir -p build/unhinted/",
"python merge.py {}".format(ParamToArgument(param))
]
}
makefile["rule"]["build/noto/{}.otd".format(GenerateFilename(dep["Latin"]))] = {
"depend": [ "source/noto/{}.ttf".format(GenerateFilename(dep["Latin"])) ],
"command": [
"mkdir -p build/noto/",
"otfccdump --glyph-name-prefix latn --ignore-hints $< -o $@",
]
}
makefile["rule"]["build/noto/{}.otd".format(GenerateFilename(dep["Numeral"]))] = {
"depend": [ "source/noto/{}.ttf".format(GenerateFilename(dep["Numeral"])) ],
"command": [
"mkdir -p build/noto/",
"otfccdump --glyph-name-prefix latn --ignore-hints $< -o $@",
]
}
makefile["rule"]["build/shs/{}.otd".format(GenerateFilename(dep["CJK"]))] = {
"depend": [ "build/shs/{}.ttf".format(GenerateFilename(dep["CJK"])) ],
"command": [ "otfccdump --glyph-name-prefix hani --ignore-hints $< -o $@" ]
}
makefile["rule"]["build/shs/{}.ttf".format(GenerateFilename(dep["CJK"]))] = {
"depend": [ "source/shs/{}.otf".format(GenerateFilename(dep["CJK"])) ],
"command": [
"mkdir -p build/shs/",
"otfccdump --ignore-hints $< | node node_modules/otfcc-c2q/_c2q_startup.js | otfccbuild -q -O3 -o $@",
],
}
for e in [ "gbk", "big5", "jis", "korean" ]:
enc = Namespace(
family = "WarcraftSans",
weight = w,
width = 5,
region = r,
feature = fea,
encoding = e,
)
makefile["rule"]["build/nowar/{}.ttf".format(GenerateFilename(enc))] = {
"depend": ["build/nowar/{}.otd".format(GenerateFilename(enc))],
"command": [ "otfccbuild -q -O3 --keep-average-char-width $< -o $@" ]
}
makefile["rule"]["build/nowar/{}.otd".format(GenerateFilename(enc))] = {
"depend": ["build/nowar/{}.otd".format(GenerateFilename(param))],
"command": [ "python set-encoding.py {}".format(ParamToArgument(enc)) ]
}
# Latin
for w, wd, fea in product(config.fontPackWeight + [ morpheusWeightMap[w] for w in config.fontPackWeight ], [3, 5, 7], powerset(config.fontPackFeature)):
param = Namespace(
family = "Latin",
weight = w,
width = wd,
feature = fea,
)
makefile["rule"]["build/unhinted/{}.ttf".format(GenerateFilename(param))] = {
"depend": ["build/unhinted/{}.otd".format(GenerateFilename(param))],
"command": [ "otfccbuild -q -O3 --keep-average-char-width $< -o $@" ]
}
dep = ResolveDependency(param)
makefile["rule"]["build/unhinted/{}.otd".format(GenerateFilename(param))] = {
"depend": [
"build/noto/{}.otd".format(GenerateFilename(dep["Latin"])),
],
"command": [
"mkdir -p build/unhinted/",
"python merge.py {}".format(ParamToArgument(param))
]
}
makefile["rule"]["build/noto/{}.otd".format(GenerateFilename(dep["Latin"]))] = {
"depend": [ "source/noto/{}.ttf".format(GenerateFilename(dep["Latin"])) ],
"command": [
"mkdir -p build/noto/",
"otfccdump --glyph-name-prefix latn --ignore-hints $< -o $@",
]
}
# dump `makefile` dict to actual “GNU Makefile”
makedump = ""
for var, val in makefile["variable"].items():
makedump += "{}={}\n".format(var, val)
for tar, recipe in makefile["rule"].items():
dep = recipe["depend"] if "depend" in recipe else []
makedump += "{}: {}\n".format(tar, " ".join(dep))
com = recipe["command"] if "command" in recipe else []
for c in com:
makedump += "\t{}\n".format(c)
with codecs.open("Makefile", 'w', 'UTF-8') as mf:
mf.write(makedump)