-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtext_assembler.py
236 lines (200 loc) · 10.3 KB
/
text_assembler.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
import json
import glob
import os
import numpy
def GenerateData(entry):
new_entry = []
new_entry.append(entry["TYPE"].encode("UTF-8") + b"\x00")
temp = []
match(entry["TYPE"]):
case "TextTableData":
temp.append(numpy.uint16(entry["ID"]))
temp.append(entry["STRING"].encode("UTF-8") + b"\x00")
case "ActiveVoiceTableData":
temp.append(numpy.uint16(entry["ID"]))
temp.append(entry["ASSET_SYMBOL"].encode("UTF-8") + b"\x00")
temp.append(numpy.uint32(entry["UNK0"]))
temp.append(entry["STRING"].encode("UTF-8") + b"\x00")
temp.append(numpy.float32(entry["UNK1"][0]))
temp.append(numpy.float32(entry["UNK1"][1]))
for i in range(0, 6):
temp.append(numpy.uint16(entry["UNK2"][i]))
case "QSChapter":
temp.append(numpy.uint16(entry["ID"]))
temp.append(entry["STRING"].encode("UTF-8") + b"\x00")
case "QSBook":
temp.append(numpy.uint16(entry["UNK0"]))
temp.append(numpy.uint16(entry["ID"]))
temp.append(entry["STRING"].encode("UTF-8") + b"\x00")
temp.append(entry["BOOK"].encode("UTF-8") + b"\x00")
temp.append(entry["BOOKDATA"].encode("UTF-8") + b"\x00")
temp.append(numpy.uint16(entry["ID2"]))
case "TacticalBonus":
temp.append(numpy.uint16(entry["ID"]))
temp.append(entry["STRING"].encode("UTF-8") + b"\x00")
temp.append(numpy.float32(entry["UNK0"]))
temp.append(numpy.uint16(entry["UNK1"]))
case "CardTableData":
temp.append(numpy.uint16(entry["ID"]))
temp.append(entry["STRING"].encode("UTF-8") + b"\x00")
temp.append(bytes.fromhex(entry["UNK0"]))
case "dlc":
temp.append(numpy.uint16(entry["ID"]))
temp.append(entry["CONTENTID"].encode("UTF-8") + b"\x00")
temp.append(entry["GROUPID"].encode("UTF-8") + b"\x00")
temp.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00")
temp.append(entry["STRINGS"][1].encode("UTF-8") + b"\x00")
case "text_lst":
temp.append(numpy.uint16(entry["ID"]))
temp.append(entry["STRING"].encode("UTF-8") + b"\x00")
case "hkitugi_lst":
temp.append(numpy.uint16(entry["ID"]))
temp.append(numpy.uint16(entry["UNK0"]))
temp.append(numpy.uint16(entry["UNK1"]))
temp.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00")
temp.append(entry["STRINGS"][1].encode("UTF-8") + b"\x00")
case "item":
temp.append(numpy.uint16(entry["ID"]))
temp.append(numpy.int16(entry["UNK0"]))
temp.append(entry["STRING"].encode("UTF-8") + b"\x00")
temp.append(bytes.fromhex(entry["UNK1"]))
temp.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00")
temp.append(entry["STRINGS"][1].encode("UTF-8") + b"\x00")
case "MapJumpData":
temp.append(numpy.uint16(entry["ID"]))
temp.append(numpy.uint16(entry["UNK0"]))
temp.append(entry["STRING1"].encode("UTF-8") + b"\x00")
temp.append(bytes.fromhex(entry["UNK1"]))
temp.append(entry["STRING2"].encode("UTF-8") + b"\x00")
temp.append(entry["STRING3"].encode("UTF-8") + b"\x00")
temp.append(bytes.fromhex(entry["UNK2"]))
case "LinkAbList":
temp.append(numpy.uint16(entry["UNK0"]))
temp.append(numpy.uint16(entry["ID"]))
temp.append(numpy.uint8(entry["UNK1"]))
temp.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00")
temp.append(entry["STRINGS"][1].encode("UTF-8") + b"\x00")
case "magic":
temp.append(numpy.uint16(entry["ID"]))
temp.append(numpy.uint16(entry["UNK0"]))
temp.append(entry["GROUP"].encode("UTF-8") + b"\x00")
temp.append(bytes.fromhex(entry["UNK1"]))
temp.append(entry["NAMEID"].encode("UTF-8") + b"\x00")
temp.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00")
temp.append(entry["STRINGS"][1].encode("UTF-8") + b"\x00")
case "MG02Text":
temp.append(numpy.uint16(entry["UNK0"]))
temp.append(numpy.uint16(entry["ID"]))
temp.append(numpy.uint16(entry["UNK1"]))
temp.append(entry["STRING"].encode("UTF-8") + b"\x00")
temp.append(numpy.uint16(entry["UNK2"]))
temp.append(numpy.int32(entry["UNK3"]))
case "status":
temp.append(entry["STRING1"].encode("UTF-8") + b"\x00")
temp.append(entry["STRING2"].encode("UTF-8") + b"\x00")
temp.append(entry["STRING3"].encode("UTF-8") + b"\x00")
for i in range(0, 3):
temp.append(numpy.float32(entry["UNK0"][i]))
temp.append(bytes.fromhex(entry["UNK1"]))
temp.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00")
temp.append(entry["STRINGS"][1].encode("UTF-8") + b"\x00")
case "MasterQuartzMemo":
temp.append(numpy.uint16(entry["UNK0"]))
temp.append(numpy.uint16(entry["ID"]))
temp.append(entry["STRING"].encode("UTF-8") + b"\x00")
case "NameTableData":
temp.append(numpy.uint16(entry["ID"]))
temp.append(entry["STRING1"].encode("UTF-8") + b"\x00")
for i in range(0, 5):
temp.append(entry["STRING2"][i].encode("UTF-8") + b"\x00")
case "NaviTextData":
temp.append(numpy.uint16(entry["ID"]))
temp.append(entry["STRING"].encode("UTF-8") + b"\x00")
temp.append(bytes.fromhex(entry["UNK0"]))
case "QSCook":
temp.append(entry["STRING1"].encode("UTF-8") + b"\x00")
temp.append(bytes.fromhex(entry["UNK0"]))
temp.append(entry["STRINGS1"][0].encode("UTF-8") + b"\x00")
temp.append(entry["STRINGS1"][1].encode("UTF-8") + b"\x00")
temp.append(numpy.uint16(entry["UNK1"]))
temp.append(entry["STRINGS2"][0].encode("UTF-8") + b"\x00")
temp.append(entry["STRINGS2"][1].encode("UTF-8") + b"\x00")
temp.append(numpy.uint16(entry["UNK2"]))
temp.append(entry["STRINGS3"][0].encode("UTF-8") + b"\x00")
temp.append(entry["STRINGS3"][1].encode("UTF-8") + b"\x00")
temp.append(numpy.uint16(entry["UNK3"]))
temp.append(entry["STRINGS4"][0].encode("UTF-8") + b"\x00")
temp.append(entry["STRINGS4"][1].encode("UTF-8") + b"\x00")
temp.append(bytes.fromhex(entry["UNK4"]))
case "QSChar":
temp.append(numpy.uint16(entry["ID"]))
temp.append(bytes.fromhex(entry["UNK0"]))
for i in range(0, 10):
temp.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00")
case "QSFish":
temp.append(numpy.uint16(entry["ID"]))
temp.append(entry["STRING1"].encode("UTF-8") + b"\x00")
temp.append(numpy.uint16(entry["UNK0"]))
for i in range(0, 3):
temp.append(numpy.float32(entry["UNK1"][i]))
temp.append(bytes.fromhex(entry["UNK2"]))
temp.append(entry["STRING2"].encode("UTF-8") + b"\x00")
temp.append(bytes.fromhex(entry["UNK3"]))
case "QSHelp":
temp.append(numpy.uint16(entry["UNK0"]))
temp.append(numpy.uint16(entry["ID"]))
temp.append(entry["STRING"].encode("UTF-8") + b"\x00")
case "PlaceTableData":
temp.append(numpy.uint16(entry["ID"]))
temp.append(numpy.uint16(entry["UNK0"]))
temp.append(entry["NAMEID"].encode("UTF-8") + b"\x00")
temp.append(entry["STRING1"].encode("UTF-8") + b"\x00")
temp.append(entry["STRING2"].encode("UTF-8") + b"\x00")
case "QSRank":
temp.append(numpy.uint16(entry["ID"]))
temp.append(entry["STRING"].encode("UTF-8") + b"\x00")
temp.append(bytes.fromhex(entry["UNK0"]))
case "ShopTitle":
temp.append(numpy.uint16(entry["ID"]))
temp.append(numpy.uint8(entry["UNK0"]))
temp.append(entry["STRING"].encode("UTF-8") + b"\x00")
temp.append(bytes.fromhex(entry["UNK1"]))
case "QSTitle":
temp.append(numpy.uint16(entry["ID"]))
temp.append(numpy.uint8(entry["UNK0"]))
temp.append(entry["STRING"].encode("UTF-8") + b"\x00")
temp.append(entry["CATEGORY"].encode("UTF-8") + b"\x00")
temp.append(bytes.fromhex(entry["UNK1"]))
case "QSText":
temp.append(numpy.uint16(entry["ID"]))
temp.append(numpy.uint8(entry["UNK0"]))
temp.append(entry["STRING"].encode("UTF-8") + b"\x00")
temp.append(numpy.uint8(entry["UNK1"]))
case "voice":
temp.append(numpy.uint16(entry["ID"]))
temp.append(entry["NAME"].encode("UTF-8") + b"\x00")
temp.append(bytes.fromhex(entry["UNK"]))
case "VoiceTimingInfo":
temp.append(numpy.uint32(entry["LENGTH_FACTOR"]))
case "VoiceTiming":
temp.append(numpy.uint16(entry["ID"]))
temp.append(bytes.fromhex(entry["UNK"]))
case _:
temp.append(bytes.fromhex(entry["UNK"]))
new_entry.append(numpy.uint16(len(b"".join(temp))))
new_entry.append(b"".join(temp))
return b"".join(new_entry)
files = glob.glob("text/jsons/*.json")
os.makedirs("text/nx", exist_ok=True)
for i in range(0, len(files)):
print(files[i])
file = open(files[i], "r", encoding="UTF-8")
dump = json.load(file)
file.close()
OUTPUT = []
for x in range(0, len(dump)):
OUTPUT.append(GenerateData(dump[x]))
file_new = open("text/nx/%s.tbl" % files[i][11:-5], "wb")
file_new.write(numpy.uint16(len(dump)))
file_new.write(b"".join(OUTPUT))
file_new.close()