-
Notifications
You must be signed in to change notification settings - Fork 2
/
d2p_pack.py
81 lines (62 loc) · 2.38 KB
/
d2p_pack.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
import io, sys, os, tempfile, fnmatch, json
from collections import OrderedDict
from pydofus.d2p import D2PReader, D2PBuilder, InvalidD2PFile
from pydofus.swl import SWLReader, SWLBuilder, InvalidSWLFile
from pydofus._binarystream import _BinaryStream
# python d2p_pack.py file.d2p (require original file in input folder and unpacked file in output folder)
# file output: ./output/~generated/file.d2p
path_input = "./input/"
path_output = "./output/"
try:
file = sys.argv[1]
except:
file = None
try:
swl_mode = sys.argv[2]
except:
swl_mode = None
if file is None or swl_mode is None:
print("usage: python d2p_pack.py {file.d2p} {swl ture|false}")
else:
print("D2P Packer for " + file)
try:
os.stat(path_output + "~generated")
except:
os.mkdir(path_output + "~generated")
d2p_input = open(path_input + file, "rb")
d2p_template = D2PReader(d2p_input)
d2p_ouput = open(path_output + "~generated/" + file, "wb")
d2p_builder = D2PBuilder(d2p_template, d2p_ouput)
list_files = OrderedDict()
rootPath = path_output + file
for root, dirs, files in os.walk(rootPath):
for filename in fnmatch.filter(files, "*.*"):
path = os.path.join(root, filename).replace("\\", "/")
file = path.replace(rootPath + "/", "")
object_ = {}
if "swf" in file and swl_mode == "true":
json_input = open(path.replace("swf", "json"), "r")
swf_input = open(path, "rb")
swl_output = tempfile.TemporaryFile()
swl_data = json.load(json_input)
swl_data["SWF"] = swf_input.read()
swl_builder = SWLBuilder(swl_data, swl_output)
swl_builder.build()
swl_output.seek(0)
object_["binary"] = swl_output.read()
list_files[file.replace("swf", "swl")] = object_
json_input.close()
swf_input.close()
swl_output.close()
elif "json" in file and swl_mode == "true":
continue
else:
new_file = open(path, "rb")
object_["binary"] = new_file.read()
new_file.close()
list_files[file] = object_
print("pack file " + file)
d2p_builder.files = list_files
d2p_builder.build()
d2p_input.close()
d2p_ouput.close()