-
Notifications
You must be signed in to change notification settings - Fork 6
/
configure.py
1084 lines (954 loc) · 33.5 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
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import json
import codecs
import enum
import hashlib
from functools import reduce
from itertools import product
class Config:
version = "1.0.1"
fontRevision = 1 + 0x0001 / 0x10000
vendor = "Nowar Typeface"
vendorId = "NOWR"
vendorUrl = "https://github.com/nowar-fonts"
copyright = "Copyright © 2018—2021 Cyano Hao and Nowar Typeface, with Reserved Font Name “Nowar”, “Новар”, “Νοωαρ”, “有爱”, and “有愛”. Portions Copyright 2015 Google LLC.. Portions © 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'."
designer = "Cyano Hao (character set definition & 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 = [300, 350, 400, 450, 500, 600, 700]
fontPackRegion = [
"Bliz", "Neut", "CL",
"PSimp", "PSimpChat",
"Pinyin", "Pinyin,Romaja", "Romaja",
]
fontPackFeature = ["CyR", "OSF", "RP", "SC"]
# feature tags must be sorted alphabetically
fontPackExportFeature = [
("Bliz", ["RP"]),
("Neut", ["CyR"]),
("Neut", ["OSF"]),
("Neut", ["SC"]),
("Pinyin", ["CyR"]),
("Pinyin,Romaja", ["CyR"]),
("Romaja", ["CyR"]),
]
globalFontWeight = [300, 400, 500, 600, 700]
globalFontInstance = [
("gbk", "CN", [], 3),
("gbk", "CN", [], 5),
("big5", "TW", [], 3),
("big5", "TW", [], 5),
("unspec", "CL", ["UI"], 3),
("unspec", "CL", ["UI"], 7),
]
config = Config()
# define Chinese characters orthographies, and feature mods:
#
# base - common fonts, `FRIZQT__` and `ARIALN`; must be defined
# enUS - fonts for languages in Latin script, `skurri` and `MORPHEUS`
# if set to something to be true, the orthography is considered to be same as `base`
# if set to something to be false, fonts will be not overwritten
# ruRU - fonts for Русский; like `enUS`
# zhCN - fonts for 简体中文; can be false
# zhTW - fonts for 繁體中文; can be false
# koKR - fonts for 한국어; can be false
#
# xmod - a list of tuples of feature mod and related parameter list
# available mods:
# PSimp - 伪简体, remap traditional Chinese characters to simplified ones in zhTW text, damage, and note font
# base - also do remapping in common fonts (`FRIZQT__` and `ARIALN`)
# chat - also do remapping in zhTW chat fonts (`arheiuhk_bd` for Battle and `bHEI01B` for Classic)
# Pinyin - transcription of Chinese characters in Hànyǔ Pīnyīn (汉语拼音), will not do transform in zhCN/zhTW fonts
# Romaja - transcription of Hanguel in revised romanization of korean (국어의 로마자 표기법), will not do transform in koKR fonts
regionalVariant = {
"Neut": {
"base": "CL",
"enUS": True,
"ruRU": True,
"zhCN": "CN",
"zhTW": "TW",
"koKR": "CL",
},
"Bliz": {
"base": "CN",
"enUS": True,
"ruRU": True,
"zhCN": "CN",
"zhTW": "TW",
"koKR": "CN", # yes, it is
},
"CL": {
"base": "CL",
"enUS": True,
"ruRU": True,
"zhCN": "CL",
"zhTW": "CL",
"koKR": "CL",
},
"PSimp": {
"base": "CN",
"enUS": None,
"ruRU": None,
"zhCN": None,
"zhTW": "CN",
"koKR": None,
"xmod": [("PSimp", ["base"])],
},
"PSimpChat": {
"base": "CN",
"enUS": None,
"ruRU": None,
"zhCN": None,
"zhTW": "CN",
"koKR": None,
"xmod": [("PSimp", ["base", "chat"])],
},
"Pinyin": {
"base": "CL",
"enUS": True,
"ruRU": True,
"zhCN": "CN",
"zhTW": "TW",
"koKR": "CL",
"xmod": [("Pinyin", [])],
},
"Pinyin,Romaja": {
"base": "CL",
"enUS": True,
"ruRU": True,
"zhCN": "CN",
"zhTW": "TW",
"koKR": "CL",
"xmod": [("Pinyin", []), ("Romaja", [])],
},
"Romaja": {
"base": "CL",
"enUS": True,
"ruRU": True,
"zhCN": "CN",
"zhTW": "TW",
"koKR": "CL",
"xmod": [("Romaja", [])],
},
"CN": { # deprecated
"base": "CN",
"enUS": True,
"ruRU": True,
"zhCN": "CN",
"zhTW": "TW",
"koKR": "KR",
},
"TW": { # deprecated
"base": "TW",
"enUS": True,
"ruRU": True,
"zhCN": "CN",
"zhTW": "TW",
"koKR": "KR",
},
"HK": { # deprecated
"base": "HK",
"enUS": True,
"ruRU": True,
"zhCN": "CN",
"zhTW": "HK",
"koKR": "KR",
},
"JP": { # deprecated
"base": "JP",
"enUS": True,
"ruRU": True,
"zhCN": "CN",
"zhTW": "TW",
"koKR": "KR",
},
"KR": { # deprecated
"base": "KR",
"enUS": True,
"ruRU": True,
"zhCN": "CN",
"zhTW": "TW",
"koKR": "KR",
},
}
class LanguageId(enum.IntEnum):
enUS = 0x0409
deAT = 0x0C07
deCH = 0x0807
deDE = 0x0407
deLI = 0x1407
deLU = 0x1007
elGR = 0x0408
enAU = 0x0C09
enBZ = 0x2809
enCA = 0x1009
enCaribbean = 0x2409
enGB = 0x0809
enIE = 0x1809
enIN = 0x4009
enJM = 0x2009
enMY = 0x4409
enNZ = 0x1409
enPH = 0x3409
enSG = 0x4809
enTT = 0x2C09
enZA = 0x1C09
enZW = 0x3009
esAR = 0x2C0A
esBO = 0x400A
esCL = 0x340A
esCO = 0x240A
esCR = 0x140A
esDO = 0x1C0A
esEC = 0x300A
esES = 0x0C0A
esEST = 0x040A
esGT = 0x100A
esHN = 0x480A
esMX = 0x080A
esNI = 0x4C0A
esPA = 0x180A
esPE = 0x280A
esPR = 0x500A
esPY = 0x3C0A
esSV = 0x440A
esUS = 0x540A
esUY = 0x380A
esVE = 0x200A
frBE = 0x080C
frCA = 0x0C0C
frCH = 0x100C
frFR = 0x040C
frLU = 0x140C
frMC = 0x180C
itCH = 0x0810
itIT = 0x0410
jaJP = 0x0411
koKR = 0x0412
ptBR = 0x0416
ptPT = 0x0816
ruRU = 0x0419
zhCN = 0x0804
zhHK = 0x0C04
zhMO = 0x1404
zhSG = 0x1004
zhTW = 0x0404
weightMap = {
100: "Thin",
200: "ExtraLight",
300: "Light",
350: "SemiLight",
372: "Normal",
400: "",
450: "Book",
500: "Medium",
600: "SemiBold",
700: "Bold",
800: "ExtraBold",
900: "Black",
}
weightMapShort = {
100: "Th",
200: "XLt",
300: "Lt",
350: "SmLt",
372: "Nm",
400: "",
450: "Bk",
500: "Md",
600: "SmBd",
700: "Bd",
800: "XBd",
900: "Blk",
}
widthMap = {
3: "Condensed",
4: "SemiCondensed",
5: None,
7: "Extended",
10: "Warcraft", # Warcraft numeral hack
}
widthMapShort = {
3: "Cn",
4: "SmCn",
5: None,
7: "Ex",
10: "Wc",
}
slantMapShort = {
"Italic": "It",
"Oblique": "Obl",
}
notoWidthMap = {
3: 75,
5: 87.5,
7: 100,
}
def AxisMapNotoWgth(wght: float) -> float:
# map user value to normalized design space.
# the original definition for 400 -- 900 is almost linear, simply use linear interpolation.
# 100 .. -1
# 200 .. -0.8
# 300 .. -0.5
# 400 .. 0
# 900 .. 1
if wght < 100:
return -1
if wght <= 200:
return -1 + (wght - 100) / 100 * 0.2
if wght <= 300:
return -0.8 + (wght - 200) / 100 * 0.3
if wght <= 400:
return -0.5 + (wght - 300) / 100 * 0.5
if wght <= 900:
return (wght - 400) / 500
return 1
def AxisMapNotoWdth(wdth: float) -> float:
# map user value to normalized design space.
# the original definition for 75 -- 100 is almost linear, simply use linear interpolation.
# 62.5 .. -1
# 75 .. -0.7
# 100 .. 0
if wdth < 62.5:
return -1
if wdth <= 75:
return -1 + (wdth - 62.5) / 12.5 * 0.3
if wdth <= 100:
return -0.7 + (wdth - 75) / 25 * 0.7
return 0
def AxisMapShsWght(wght: float) -> float:
# map user value to normalized design space.
# adjusted to match our definition for Noto Sans
# 200 .. 0
# 300 .. 0.15
# 400 .. 0.4
# 900 .. 1
if wght < 200:
return 0
if wght <= 300:
return (wght - 200) / 100 * 0.15
if wght <= 400:
return 0.15 + (wght - 300) / 100 * 0.25
if wght <= 900:
return 0.4 + (wght - 400) / 500 * 0.6
return 1
# map orthography to source file
shsRegionMap = {
"CN": "SourceHanSansSC",
"TW": "SourceHanSansTC",
"HK": "SourceHanSansHC",
"MO": "SourceHanSansMC",
"JP": "SourceHanSans",
"KR": "SourceHanSansK",
"CL": "SourceHanSansK",
}
regionNameMap = {
"CN": "CN",
"TW": "TW",
"HK": "HK",
"MO": "MO",
"JP": "JP",
"KR": "KR",
"CL": "Classical",
}
# sorted alphabetically
featureNameMap = {
"CyR": "Cyrillic-Romanisation",
"FuCK": "Fullwidth-Colon-Kerning",
"OSF": "Oldstyle",
"Pinyin": "Pinyin",
"RP": "Roleplaying",
"Romaja": "Romaja",
"SC": "Smallcaps",
"Simp": "Simplified",
"UI": "UI",
}
tagNameMap = {**regionNameMap, **featureNameMap}
def LocalizedFamily(p):
if "nameList" not in LocalizedFamily.__dict__:
LocalizedFamily.nameList = {
LanguageId.enUS: "Nowar Sans",
LanguageId.deAT: "Nowar Grotesk",
LanguageId.deCH: "Nowar Grotesk",
LanguageId.deDE: "Nowar Grotesk",
LanguageId.deLI: "Nowar Grotesk",
LanguageId.deLU: "Nowar Grotesk",
LanguageId.elGR: "Νοωαρ Σανς",
LanguageId.enAU: "Nowar Sans",
LanguageId.enBZ: "Nowar Sans",
LanguageId.enCA: "Nowar Sans",
LanguageId.enCaribbean: "Nowar Sans",
LanguageId.enGB: "Nowar Sans",
LanguageId.enIE: "Nowar Sans",
LanguageId.enIN: "Nowar Sans",
LanguageId.enJM: "Nowar Sans",
LanguageId.enMY: "Nowar Sans",
LanguageId.enNZ: "Nowar Sans",
LanguageId.enPH: "Nowar Sans",
LanguageId.enSG: "Nowar Sans",
LanguageId.enTT: "Nowar Sans",
LanguageId.enZA: "Nowar Sans",
LanguageId.enZW: "Nowar Sans",
LanguageId.esAR: "Nowar Palo",
LanguageId.esBO: "Nowar Palo",
LanguageId.esCL: "Nowar Palo",
LanguageId.esCO: "Nowar Palo",
LanguageId.esCR: "Nowar Palo",
LanguageId.esDO: "Nowar Palo",
LanguageId.esEC: "Nowar Palo",
LanguageId.esES: "Nowar Palo",
LanguageId.esEST: "Nowar Palo",
LanguageId.esGT: "Nowar Palo",
LanguageId.esHN: "Nowar Palo",
LanguageId.esMX: "Nowar Palo",
LanguageId.esNI: "Nowar Palo",
LanguageId.esPA: "Nowar Palo",
LanguageId.esPE: "Nowar Palo",
LanguageId.esPR: "Nowar Palo",
LanguageId.esPY: "Nowar Palo",
LanguageId.esSV: "Nowar Palo",
LanguageId.esUS: "Nowar Palo",
LanguageId.esUY: "Nowar Palo",
LanguageId.esVE: "Nowar Palo",
LanguageId.frBE: "Nowar Linéale",
LanguageId.frCA: "Nowar Linéale",
LanguageId.frCH: "Nowar Linéale",
LanguageId.frFR: "Nowar Linéale",
LanguageId.frLU: "Nowar Linéale",
LanguageId.frMC: "Nowar Linéale",
# senza (without) grazie (serif)
LanguageId.itCH: "Nowar Senza",
LanguageId.itIT: "Nowar Senza",
LanguageId.jaJP: "有愛角ゴシック",
LanguageId.koKR: "有愛 고딕",
# sem (without) serifa (serif)
LanguageId.ptBR: "Nowar Sem",
LanguageId.ptPT: "Nowar Sem",
LanguageId.ruRU: "Новар Гротеск",
LanguageId.zhCN: "有爱黑体",
LanguageId.zhHK: "有愛黑體",
LanguageId.zhMO: "有愛黑體",
LanguageId.zhSG: "有爱黑体",
LanguageId.zhTW: "有愛黑體",
}
return LocalizedFamily.nameList
def TagListToStr(lst):
return ",".join(lst)
def GenerateFontName(p):
localizedFamily = LocalizedFamily(p)
region = p["region"]
feature = [*sorted(p["feature"])]
regionName = regionNameMap[region]
subfamily = [tagNameMap[fea] for fea in feature]
filenameSf = []
wwsF = [region, *feature]
wwsSf = []
legacyF = [region, *feature]
legacySf = []
width = p["width"]
widthName = widthMap[width]
widthShort = widthMapShort[width]
if widthName:
subfamily.append(widthName)
filenameSf.append(widthName)
legacyF.append(widthShort)
# Warcraft numeral hack
if width == 10:
wwsF.append(widthShort)
elif widthName:
wwsSf.append(widthName)
weight = p["weight"]
weightName = weightMap[weight] if weight in weightMap else f"W{weight}"
weightShort = weightMapShort[weight] if weight in weightMapShort else f"W{weight}"
if weightName:
subfamily.append(weightName)
filenameSf.append(weightName)
wwsSf.append(weightName)
if weight == 700:
legacySf.append(weightName)
else:
legacyF.append(weightShort)
if p.get("slant"):
slantName = p["slant"]
slantShort = slantMapShort[slantName]
subfamily.append(slantName)
filenameSf.append(slantName)
wwsSf.append(slantName)
if slantName == "Italic":
legacySf.append(slantName)
else:
legacyF.append(slantShort)
def formatFamily(f):
return " ".join(f)
def formatSubfamily(sf):
return " ".join(sf) or "Regular"
subfamily = formatSubfamily(subfamily)
filenameF = localizedFamily[LanguageId.enUS].replace(" ", "")
filenameTag = TagListToStr([p["region"], *sorted(p["feature"])])
filenameSf = formatSubfamily(filenameSf).replace(" ", "")
wwsF = formatFamily(wwsF)
wwsSf = formatSubfamily(wwsSf)
legacyF = formatSubfamily(legacyF)
legacySf = formatSubfamily(legacySf)
return {
"typographic": ({k: "{} {}".format(v, regionName) for k, v in localizedFamily.items()}, subfamily),
"wws": ({k: "{} {}".format(v, wwsF) for k, v in localizedFamily.items()}, wwsSf),
"legacy": ({k: "{} {}".format(v, legacyF) for k, v in localizedFamily.items()}, legacySf),
"friendly": {k: "{} {} {}".format(v, regionName, subfamily) for k, v in localizedFamily.items()},
"file": "{}-{}-{}".format(filenameF, filenameTag, filenameSf),
# font name can be too long to fit in 63-char PostScript name
# the hashed name makes no sence but is valid
"postscript": filenameF + "-" + hashlib.sha1("{} {}".format(regionName, subfamily).encode()).hexdigest(),
}
def GenerateFilename(p):
if p["family"] == "Nowar":
filename = GenerateFontName(p)["file"]
return p["encoding"] + "-" + filename
elif p["family"] == "Noto":
return f"NotoSans-wght{p['weight']}wdth{p['width']}"
else: # SHS
return f"{p['region']}-wght{p['weight']}"
def ResolveDependency(p):
if p["width"] == 10: # Warcraft numeral hack
result = {
"Latin": {
"family": "Noto",
"width": 87.5,
"weight": p["weight"],
},
"Numeral": {
"family": "Noto",
"width": 75,
"weight": p["weight"],
},
}
else:
result = {
"Latin": {
"family": "Noto",
"width": notoWidthMap[p["width"]],
"weight": p["weight"],
},
}
if "Pinyin" in p["feature"] or "Romaja" in p["feature"]:
result['Roman'] = {
"family": "Noto",
"width": 75,
"weight": p["weight"],
}
result["CJK"] = {
"family": "SHS",
"weight": p["weight"],
"region": shsRegionMap[p["region"]],
}
return result
def AcceptXmod(region, pinyin=False, romaja=False, pSimp=[]):
xfea = []
for mod, params in regionalVariant[region].get("xmod", []):
if pinyin and mod == "Pinyin":
xfea.append("Pinyin")
if romaja and mod == "Romaja":
xfea.append("Romaja")
if (pSimp is True and mod == "PSimp") or (mod == "PSimp" and any(key in params for key in pSimp)):
xfea.append("Simp")
return xfea
def GetCommonFont(weight, region, feature):
xfea = AcceptXmod(region, pinyin=True, romaja=True, pSimp=["base"])
return {
"weight": weight,
"width": 7,
"family": "Nowar",
"region": regionalVariant[region]["base"],
"feature": ["UI"] + feature + xfea,
"encoding": "unspec",
}
def GetCommonChatFont(weight, region, feature):
xfea = AcceptXmod(region, pinyin=True, romaja=True, pSimp=["base"])
return {
"weight": weight,
"width": 3,
"family": "Nowar",
"region": regionalVariant[region]["base"],
"feature": ["UI"] + feature + xfea,
"encoding": "unspec",
}
def GetLatinFont(weight, region, feature):
xfea = AcceptXmod(region, pinyin=True, romaja=True)
return {
"weight": weight,
"width": 7,
"family": "Nowar",
"region": regionalVariant[region]["base"],
"feature": ["UI"] + feature + xfea,
"encoding": "abg",
}
def GetLatinChatFont(weight, region, feature):
xfea = AcceptXmod(region, pinyin=True, romaja=True)
return {
"weight": weight,
"width": 3,
"family": "Nowar",
"region": regionalVariant[region]["base"],
"feature": ["UI"] + feature + xfea,
"encoding": "abg",
}
def GetHansFont(weight, region, feature):
xfea = AcceptXmod(region, romaja=True)
return {
"weight": weight,
"width": 10,
"family": "Nowar",
"region": regionalVariant[region]["zhCN"],
"feature": ["FuCK"] + feature + xfea,
"encoding": "gbk",
}
def GetHansCombatFont(weight, region, feature):
xfea = AcceptXmod(region, romaja=True)
return {
"weight": weight,
"width": 7,
"family": "Nowar",
"region": regionalVariant[region]["zhCN"],
"feature": feature + xfea,
"encoding": "gbk",
}
def GetHansChatFont(weight, region, feature):
xfea = AcceptXmod(region, romaja=True)
return {
"weight": weight,
"width": 3,
"family": "Nowar",
"region": regionalVariant[region]["zhCN"],
"feature": feature + xfea,
"encoding": "gbk",
}
def GetHantFont(weight, region, feature):
xfea = AcceptXmod(region, romaja=True, pSimp=True)
return {
"weight": weight,
"width": 10,
"family": "Nowar",
"region": regionalVariant[region]["zhTW"],
"feature": feature + xfea,
"encoding": "big5",
}
def GetHantCombatFont(weight, region, feature):
xfea = AcceptXmod(region, romaja=True, pSimp=True)
return {
"weight": weight,
"width": 7,
"family": "Nowar",
"region": regionalVariant[region]["zhTW"],
"feature": feature + xfea,
"encoding": "big5",
}
def GetHantNoteFont(weight, region, feature):
xfea = AcceptXmod(region, romaja=True, pSimp=True)
return {
"weight": weight,
"width": 5,
"family": "Nowar",
"region": regionalVariant[region]["zhTW"],
"feature": feature + xfea,
"encoding": "big5",
}
def GetHantChatFont(weight, region, feature):
xfea = AcceptXmod(region, romaja=True, pSimp=["chat"])
return {
"weight": weight,
"width": 3,
"family": "Nowar",
"region": regionalVariant[region]["zhTW"],
"feature": feature + xfea,
"encoding": "big5",
}
def GetKoreanFont(weight, region, feature):
xfea = AcceptXmod(region, pinyin=True)
return {
"weight": weight,
"width": 5,
"family": "Nowar",
"region": regionalVariant[region]["koKR"],
"feature": ["UI"] + feature + xfea,
"encoding": "korean",
}
def GetKoreanCombatFont(weight, region, feature):
xfea = AcceptXmod(region, pinyin=True)
return {
"weight": weight,
"width": 7,
"family": "Nowar",
"region": regionalVariant[region]["koKR"],
"feature": ["UI"] + feature + xfea,
"encoding": "korean",
}
def GetKoreanDisplayFont(weight, region, feature):
xfea = AcceptXmod(region, pinyin=True)
return {
"weight": weight,
"width": 3,
"family": "Nowar",
"region": regionalVariant[region]["koKR"],
"feature": ["UI"] + feature + xfea,
"encoding": "korean",
}
def ParamToArgument(param):
js = json.dumps(param, separators=(',', ':'))
return "'{}'".format(js)
if __name__ == "__main__":
makefile = {
"variable": {
"VERSION": config.version,
},
"rule": {
".PHONY": {
"depend": ["all", "GlobalFont", "NamingTest"],
},
"all": {
"depend": [],
},
"GlobalFont": {
"depend": [],
},
"NamingTest": {
"depend": [],
},
"clean": {
"command": [
"-rm -rf build/",
"-rm -rf out/??*-???/",
]
}
},
}
def powerset(lst): return reduce(lambda result, x: result +
[subset + [x] for subset in result], lst, [[]])
finalOtfDeps = set()
nowarOtdDeps = set()
# font pack for each regional variant and weight
for r, w, fea in product(config.fontPackRegion, config.fontPackWeight, powerset(config.fontPackFeature)):
tagList = [r] + fea
target = "{}-{}".format(TagListToStr(tagList), w)
pack = "out/NowarSans-{}-${{VERSION}}.7z".format(target)
makefile["rule"][".PHONY"]["depend"].append(target)
makefile["rule"][target] = {
"depend": [pack],
}
if fea == [] or (r, fea) in config.fontPackExportFeature:
makefile["rule"]["all"]["depend"].append(pack)
fontlist = {
"ARIALN": GetCommonChatFont(w, r, fea),
"FRIZQT__": GetCommonFont(w, r, fea),
}
if regionalVariant[r]["enUS"]:
fontlist.update({
"skurri": GetLatinFont(w, r, fea),
"MORPHEUS": GetLatinChatFont(w, r, fea),
})
if regionalVariant[r]["ruRU"]:
fontlist.update({
"FRIZQT___CYR": GetLatinFont(w, r, fea),
"SKURRI_CYR": GetLatinFont(w, r, fea),
"MORPHEUS_CYR": GetLatinChatFont(w, r, fea),
})
if regionalVariant[r]["zhCN"]:
fontlist.update({
"ARKai_C": GetHansCombatFont(w, r, fea),
"ARKai_T": GetHansFont(w, r, fea),
"ARHei": GetHansChatFont(w, r, fea),
})
if regionalVariant[r]["zhTW"]:
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]["koKR"]:
fontlist.update({
"2002": GetKoreanFont(w, r, fea),
"2002B": GetKoreanFont(w, r, fea),
"K_Damage": GetKoreanCombatFont(w, r, fea),
"K_Pagetext": GetKoreanDisplayFont(w, r, fea),
})
finalOtfDeps.update(map(json.dumps, 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/final-otf/{}.otf".format(GenerateFilename(p))],
"command": [
"mkdir -p out/{}/Fonts".format(target),
"cp $^ $@",
]
}
# font files for Global Font addon
for w, (e, r, fea, wd) in product(config.globalFontWeight, config.globalFontInstance):
param = {
"family": "Nowar",
"weight": w,
"width": wd,
"region": r,
"feature": fea,
"encoding": e,
}
font = "out/GlobalFont/{}.otf".format(
GenerateFilename(param)[len(e)+1:])
finalOtfDeps.add(json.dumps(param))
makefile["rule"]["GlobalFont"]["depend"].append(font)
makefile["rule"][font] = {
"depend": ["build/final-otf/{}.otf".format(GenerateFilename(param))],
"command": [
"mkdir -p out/GlobalFont/",
"cp $^ $@",
]
}
# naming test
for w, r, wd, fea in product(config.globalFontWeight, ["CN", "CL"], [3, 5, 7], [[], ["UI", "OSF", "SC", "RP", "Simp"]]):
param = {
"family": "Nowar",
"weight": w,
"width": wd,
"region": r,
"feature": fea,
"encoding": "unspec",
}
font = "out/NamingTest/{}.otf".format(
GenerateFilename(param)[len(e)+1:])
finalOtfDeps.add(json.dumps(param))
makefile["rule"]["NamingTest"]["depend"].append(font)
makefile["rule"][font] = {
"depend": ["build/final-otf/{}.otf".format(GenerateFilename(param))],
"command": [
"mkdir -p out/NamingTest/",
"cp $^ $@",
]
}
# resolve deps -- final otf
for param in finalOtfDeps:
param = json.loads(param)
makefile["rule"]["build/final-otf/{}.otf".format(GenerateFilename(param))] = {
"depend": ["build/unkerned-otf/{}.otf".format(GenerateFilename(param))],
"command": [
"mkdir -p build/final-otf/",
"python kern.py {}".format(ParamToArgument(param)),
],
}
makefile["rule"]["build/unkerned-otf/{}.otf".format(GenerateFilename(param))] = {
"depend": ["build/otd/{}.otz".format(GenerateFilename(param))],
"command": [
"mkdir -p build/unkerned-otf/",
"zstd -d $< --stdout | otfccbuild -q -O3 --keep-average-char-width -o $@",
],
}
if param["encoding"] == "unspec":
nowarOtdDeps.add(json.dumps(param))
else:
unspec = {**param, "encoding": "unspec"}
nowarOtdDeps.add(json.dumps(unspec))
makefile["rule"]["build/otd/{}.otz".format(GenerateFilename(param))] = {
"depend": ["build/otd/{}.otz".format(GenerateFilename(unspec))],
"command": ["python set-encoding.py {}".format(ParamToArgument(param))]
}
# resolve deps -- nowar otd
for param in nowarOtdDeps:
param = json.loads(param)
dep = ResolveDependency(param)
makefile["rule"]["build/otd/{}.otz".format(GenerateFilename(param))] = {
"depend": [
"build/noto/{}.otz".format(GenerateFilename(dep["Latin"])),
"build/shs/{}.otz".format(
GenerateFilename(dep["CJK"])),
] + ([
"build/noto/{}.otz".format(
GenerateFilename(dep["Numeral"]))
] if "Numeral" in dep else []) + ([
"build/roman/{}.otz".format(
GenerateFilename(dep['Roman']))
] if "Roman" in dep else []),
"command": [
"mkdir -p build/otd/",
"python merge.py {}".format(ParamToArgument(param))