-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodegen.py
More file actions
209 lines (174 loc) · 6.01 KB
/
codegen.py
File metadata and controls
209 lines (174 loc) · 6.01 KB
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
import os, yaml, json, struct, requests
from io import BytesIO
from zipfile import ZipFile
SRCDIR = "locale"
DESTDIR = "codegen"
basepath = os.path.dirname(os.path.realpath(__file__))
SRCDIR = basepath + "/" + SRCDIR
DESTDIR = basepath + "/" + DESTDIR
NINTENDO_LANGUAGES = ("JP", "EN", "FR", "DE", "IT", "ES", "ZH", "KO", "NL", "PT", "RU", "TW");
NOSPACE_LANGUAGES = ("ja", "zh_Hant", "zh_Hans")
language_map = {
"ja": "jp",
"zh_Hant": "tw",
"zh_Hans": "zh",
}
replace_map = {
"a_button": "\ue000",
"b_button": "\ue001",
"x_button": "\ue002",
"y_button": "\ue003",
"l_button": "\ue004",
"r_button": "\ue005",
"d_pad": "\ue006",
"start_button": "【start】",
"select_button": "【select】",
"playcoin": "\ue075",
"analog_stick": "\ue077",
"power_button": "\ue078",
}
def l(s):
return (language_map[s] if s in language_map else s).upper()
def _s(s):
for r, p in replace_map.items():
s = s.replace(f"{{{r}}}", p)
return s
print("Fetching locales...")
resp = requests.get("https://github.com/unicode-org/cldr-json/releases/download/47.0.0/cldr-47.0.0-json-full.zip").content
localezip = ZipFile(BytesIO(resp))
print("Done")
translations = {}
# we need en first so that we know how many total strings there are to be able
# to create the threshold of when languages get included
total_lang_strings = 0
with open(SRCDIR + "/en.yaml", "r", encoding="utf-8") as f:
total_lang_strings = len(yaml.safe_load(f))
for file in os.listdir(SRCDIR):
if file.endswith(".yaml"):
language = file[:-5]
with open(SRCDIR + "/" + file, "r", encoding="utf-8") as f:
strs = yaml.safe_load(f)
this_lang_strings = len(dict(filter(lambda s: s[1] is not None and s[1] != "", strs.items())))
print(f"{language} {total_lang_strings} {this_lang_strings}")
if this_lang_strings > total_lang_strings*0.5 or l(language) in NINTENDO_LANGUAGES:
translations[language] = strs
for key in translations[language].keys():
translations[language][key] = _s(translations[language][key])
headerfile = "#pragma once\n\n#include <3ds.h>\n"
headerfile += f"#define NUM_NINTENDO_LANGUAGES {len(NINTENDO_LANGUAGES)}\n"
outfile = "#include <3ds.h>\n#include \"lang_strings.h\"\n";
lang_keys = list(translations.keys())
lang_keys.sort(key=lambda x: 0 if x == "en" else struct.unpack(">H", x.encode("utf-8")[:2])[0])
lang_i = 0
for lang in lang_keys:
if l(lang) not in NINTENDO_LANGUAGES:
lang_i += 1
headerfile += f"#define CFG_LANGUAGE_{l(lang)} {20+lang_i}\n"
headerfile += f"#define NUM_LANGUAGES {len(lang_keys)}\n"
headerfile += """
typedef const struct {
const CFG_Language language;
const char* text;
} LanguageString[NUM_LANGUAGES];
typedef const struct {
const char* months_abbr[NUM_LANGUAGES][12];
const char* months[NUM_LANGUAGES][12];
const char* weekdays_abbr[NUM_LANGUAGES][7];
const char* weekdays[NUM_LANGUAGES][7];
const char* ampm[NUM_LANGUAGES][2];
} LCTime;
extern const LCTime lc_time_all;
extern const int all_languages[];
extern const char* all_languages_str[];
"""
lc_time = {}
outfile += "LCTime lc_time_all = {\n"
for lang in lang_keys:
lc_time[lang] = {
"months_abbr": None,
"months": None,
"weekdays_abbr": None,
"weekdays": None,
"ampm": None,
}
formatstr = ""
for key in ("str_date", "str_date_time"):
if key in translations[lang]:
formatstr += translations[lang][key]
langfile = lang
if lang == "nb_NO":
langfile = "nb"
if lang == "tl":
langfile = "fil"
if lang == "pt_BR":
langfile = "pt"
langfile = langfile.replace("_", "-")
with localezip.open(f"cldr-dates-full/main/{langfile}/ca-generic.json") as file:
d = json.loads(file.read())
d = d["main"][langfile]["dates"]["calendars"]["iso8601"]
# month abbr
if "%b" in formatstr:
lc_time[lang]["months_abbr"] = []
for i in range(12):
lc_time[lang]["months_abbr"].append(d["months"]["format"]["abbreviated"][str(i + 1)])
# month
if "%B" in formatstr:
lc_time[lang]["months"] = []
for i in range(12):
lc_time[lang]["months"].append(d["months"]["format"]["wide"][str(i + 1)])
# weekday abbr
if "%a" in formatstr:
lc_time[lang]["weekdays_abbr"] = []
for i in ("sun", "mon", "tue", "wed", "thu", "fri", "sat"):
lc_time[lang]["weekdays_abbr"].append(d["days"]["format"]["abbreviated"][i])
# weekday abbr
if "%A" in formatstr:
lc_time[lang]["weekdays"] = []
for i in ("sun", "mon", "tue", "wed", "thu", "fri", "sat"):
lc_time[lang]["weekdays"].append(d["days"]["format"]["wide"][i])
# am/pm
if "%p" in formatstr:
lc_time[lang]["ampm"] = []
for i in ("am", "pm"):
lc_time[lang]["ampm"].append(d["dayPeriods"]["format"]["wide"][i])
for type in ("months_abbr", "months", "weekdays_abbr", "weekdays", "ampm"):
outfile += "\t{\n";
for lang in lang_keys:
if lc_time[lang][type] is not None:
outfile += "\t\t{"
for item in lc_time[lang][type]:
outfile += json.dumps(item, ensure_ascii=False) + ", "
outfile += "},\n"
else:
outfile += "\t\t{0},\n"
outfile += "\t},\n";
outfile += "};\n\n"
outfile += f"const int all_languages[{len(lang_keys)}] = {{"
for lang in lang_keys:
outfile += f"CFG_LANGUAGE_{l(lang)}, "
outfile += "};\n"
outfile += f"const char* all_languages_str[{len(lang_keys)}] = {{"
for lang in lang_keys:
outfile += f"\"{l(lang)}\", "
outfile += "};\n"
for key in translations["en"].keys():
outfile += f"LanguageString {key} = {{\n"
headerfile += f"extern LanguageString {key};\n"
max_len = 0
total_len = 0
for lang in lang_keys:
string = "0"
if key in translations[lang] and translations[lang][key] != "":
string = json.dumps(translations[lang][key], ensure_ascii=False)
outfile += f"\t{{CFG_LANGUAGE_{l(lang)}, {string}}},\n"
strlen = len(string)
max_len = strlen if strlen > max_len else max_len
total_len += strlen
outfile += "};\n";
headerfile += f"#define {key.upper()}_LEN {max_len}\n"
headerfile += f"#define {key.upper()}_TOTAL_LEN {total_len}\n"
os.makedirs(DESTDIR, exist_ok=True)
with open(DESTDIR + "/lang_strings.h", "w", encoding="utf-8") as f:
f.write(headerfile)
with open(DESTDIR + "/lang_strings.c", "w", encoding="utf-8") as f:
f.write(outfile)