-
Notifications
You must be signed in to change notification settings - Fork 370
/
Copy pathbuild_base_nf.py
157 lines (124 loc) · 4.17 KB
/
build_base_nf.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
#!/usr/bin/env python3
import json
from os import path, remove
from urllib.request import urlopen
from fontTools.varLib import TTFont
from fontTools.subset import Subsetter
from source.py.utils import (
check_font_patcher,
del_font_name,
get_font_forge_bin,
set_font_name,
run,
)
base_font_path = "fonts/TTF/MapleMono-Regular.ttf"
family_name = "Maple Mono"
font_forge_bin = get_font_forge_bin()
if not path.exists(base_font_path):
print("font not exist, please run `python build.py` first")
exit(1)
def parse_codes_from_json(data) -> list[int]:
"""
Load unicodes from `glyphnames.json`
"""
try:
codes = [
int(f"0x{value['code']}", 16)
for key, value in data.items()
if isinstance(value, dict) and "code" in value
]
return codes
except json.JSONDecodeError:
print("Invalide JSON")
exit(1)
def update_config_json(config_path: str, version: str):
with open(config_path, "r+", encoding="utf-8") as file:
data = json.load(file)
if "nerd_font" in data:
data["nerd_font"]["version"] = version
file.seek(0)
json.dump(data, file, ensure_ascii=False, indent=2)
file.truncate()
def check_update():
current_version = None
with open("./config.json", "r", encoding="utf-8") as f:
data = json.load(f)
current_version = data["nerd_font"]["version"]
latest_version = current_version
print("Getting latest version from remote...")
with urlopen(
"https://api.github.com/repos/ryanoasis/nerd-fonts/releases/latest"
) as response:
data = json.loads(response.read().decode("utf-8").split("\n")[0])
for key in data:
if key == "tag_name":
latest_version = str(data[key])[1:]
break
if latest_version == current_version:
print("✨ Current version match latest version")
if not check_font_patcher(latest_version):
print("Font-Patcher not exist and fail to download, exit")
exit(1)
return
print(
f"Current version {current_version} not match latest version {latest_version}, update"
)
if not check_font_patcher(latest_version):
print("Fail to update Font-Patcher, exit")
exit(1)
update_config_json("./config.json", latest_version)
update_config_json("./source/preset-normal.json", latest_version)
def get_nerd_font_patcher_args(mono: bool):
# full args: https://github.com/ryanoasis/nerd-fonts?tab=readme-ov-file#font-patcher
_nf_args = [
font_forge_bin,
"FontPatcher/font-patcher",
"-l",
"-c",
"--careful",
]
if mono:
_nf_args += ["--mono"]
return _nf_args
def build_nf(mono: bool):
nf_args = get_nerd_font_patcher_args(mono)
nf_file_name = "NerdFont"
if mono:
nf_file_name += "Mono"
style_name = "Regular"
run(nf_args + [base_font_path])
_path = f"{family_name.replace(' ', '')}{nf_file_name}-{style_name}.ttf"
nf_font = TTFont(_path)
remove(_path)
set_font_name(nf_font, f"{family_name} NF Base{' Mono' if mono else ''}", 1)
set_font_name(nf_font, style_name, 2)
set_font_name(
nf_font, f"{family_name} NF Base{' Mono' if mono else ''} {style_name}", 4
)
set_font_name(
nf_font,
f"{family_name.replace(' ', '-')}-NF-Base{'-Mono' if mono else ''}-{style_name}",
6,
)
del_font_name(nf_font, 16)
del_font_name(nf_font, 17)
return nf_font
def subset(mono: bool, unicodes: list[int]):
font = build_nf(mono)
subsetter = Subsetter()
subsetter.populate(
unicodes=unicodes,
)
subsetter.subset(font)
_path = f"source/MapleMono-NF-Base{'-Mono' if mono else ''}.ttf"
font.save(_path)
run(f"ftcli fix monospace {_path}")
font.close()
def main():
check_update()
with open("./FontPatcher/glyphnames.json", "r", encoding="utf-8") as f:
unicodes = parse_codes_from_json(json.load(f))
subset(True, unicodes=unicodes)
subset(False, unicodes=unicodes)
if __name__ == "__main__":
main()