forked from K0lb3/UnityPy
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenvironment.py
More file actions
496 lines (436 loc) · 17.5 KB
/
Copy pathenvironment.py
File metadata and controls
496 lines (436 loc) · 17.5 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
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
import io
import os
import re
import weakref
#import ntpath
from typing import List, Callable, Dict, Union
from collections import Counter
from collections.abc import Callable
from zipfile import ZipFile
from . import files
from zipfile import ZipFile
#from fsspec import AbstractFileSystem
#from fsspec.implementations.local import LocalFileSystem
from .files import File, ObjectReader, SerializedFile
from .enums import FileType
from .helpers import ImportHelper
from .helpers.ResourceReader import search_resource_file
from .streams import EndianBinaryReader, EndianBinaryWriter
from . import config
RE_SPLIT = re.compile(r"(.*?([^\/\\]+?))\.split\d+")
RE_ARCHIVE = re.compile(r"archive:\/([^\/]+)\/.+")
IGNORE_DIR_COUNT = 0
DEFAULT_TYPES = ['MonoBehaviour', 'Texture2D', 'TextAsset', 'PlayerSettings']
def default_progress(skip_progress):
return skip_progress
class Environment:
files: dict
cabs: dict
path: str
local_files: List[str]
local_files_simple: List[str]
GLOBAL_FILE_MAP = {}
def print_env_map(self):
import json
print(json.dumps(self.GLOBAL_FILE_MAP, ensure_ascii=True, indent=2))
def __init__(self, *args, **kwargs):
self.files = {}
self.cabs = {}
self.path = None
self._cwd = os.getcwd()
self.out_path = os.path.join(self._cwd, "output")
self.ignore_dir_lvls = IGNORE_DIR_COUNT
self.progress_function = default_progress
#self.fs = kwargs.get("fs", None) or LocalFileSystem()
self.local_files = []
self.local_files_simple = []
self.ignore_dependencies = kwargs.get("ignore_dependencies", False)
self.extended_search = kwargs.get("extended_search", False)
globalmap = kwargs.get("globalmap", None)
if globalmap:
self.GLOBAL_FILE_MAP.update(globalmap)
if args:
for arg in args:
if isinstance(arg, str):
if os.path.isfile(arg):
if os.path.splitext(arg)[-1] in [".apk", ".zip"]:
self.load_zip_file(arg)
else:
self.path = os.path.dirname(arg)
if RE_SPLIT.match(arg):
self.load_files([arg])
else:
self.load_file(arg)
elif os.path.isdir(arg):
self.path = arg
self.load_folder(arg)
else:
self.path = None
self.load_file(file=arg)
if len(self.files) == 1:
self.file = list(self.files.values())[0]
if not self.path:
self.path = os.getcwd()
@staticmethod
def prepare_global_map(assets, progress_fn=lambda r: r, map_name="globalmap.json", encoding="utf-8-sig"):
import json
print_info("Preparing file map...")
GLOBAL_MAP = {}
if not os.path.isfile("globalmap.json"):
for file_name in progress_fn(assets):
am = Environment(globalmap=GLOBAL_MAP)
asset = am.load_file(file_name, name=file_name, dry_run=True)
GLOBAL_MAP.update(am.GLOBAL_FILE_MAP)
asset.close()
am.close()
with open(map_name, "w", encoding=encoding) as p:
json.dump(GLOBAL_MAP, p)
else:
with open(map_name, "r", encoding=encoding) as p:
GLOBAL_MAP = json.load(p)
return GLOBAL_MAP
def load_files(self, files: List[str]):
"""Loads all files (list) into the Environment and merges .split files for common usage."""
self.load_assets(files, lambda x: open(x, "rb"))
def load_folder(self, path: str):
"""Loads all files in the given path and its subdirs into the Environment."""
self.load_files(
[
os.path.join(root, f)
for root, _, files in os.walk(path)
for f in files
]
)
def load(self, files: list):
"""Loads all files into the Environment."""
self.files.update(
{
os.path.basename(f): self.load_file(open(f, "rb"), self, f)
for f in files
if os.path.exists(f)
}
)
def load_file(
self,
file: Union[io.IOBase, str, EndianBinaryReader],
parent: Union["Environment", File] = None,
name: str = None,
is_dependency: bool = False,
**kwargs
):
if not file:
return None
if not parent:
parent = self
if isinstance(file, str):
split_match = RE_SPLIT.match(file)
archive_match = RE_ARCHIVE.match(file)
if split_match:
basepath, _ = split_match.groups()
file = []
for i in range(0, 999):
item = f"{basepath}.split{i}"
if item in files and os.path.exists(item):
with open(item, "rb") as f:
file.append(f.read())
elif i:
break
name = basepath
file = b"".join(file)
elif archive_match or file.startswith('CAB-'):
if archive_match:
file = archive_match.group(1)
result = self.get_cab(file)
if result:
return result
efile = self.GLOBAL_FILE_MAP.get(simplify_name(file), None)
if not efile or not os.path.isfile(efile):
return None
else:
if self.ignore_dependencies:
return None
typ, reader = ImportHelper.check_file_type(efile)
if typ == FileType.BundleFile:
f = ImportHelper.parse_file(
reader, self, name=file, typ=typ,
is_dependency=True,
**kwargs
)
if f and f.files and isinstance(f.files[file], (SerializedFile, EndianBinaryReader)):
self.register_cab(file, f.files[file])
return self.get_cab(file)
else:
name = file
if file and not os.path.isfile(file):
# should have fallback, because why do it manually...
if config.EXTENDED_SEARCH or self.extended_search:
file = search_resource_file(self._cwd, file)
else:
return None
if file and os.path.isfile(file):
file = open(file, "rb")
else:
#print_debug(name, "not found anywhere")
return None
typ, reader = ImportHelper.check_file_type(file)
if name:
stream_name = name
else:
stream_name = getattr(file, "name", None)
if not stream_name:
stream_name = str(abs(file.__hash__())) if hasattr(file, "__hash__") else ""
f = None
if typ == FileType.ZIP:
f = self.load_zip_file(file)
else:
if self.ignore_dependencies and is_dependency:
return None
f = ImportHelper.parse_file(
reader, self, name=stream_name, typ=typ,
is_dependency=is_dependency, **kwargs
)
if f:
if isinstance(f, (SerializedFile, EndianBinaryReader)):
self.register_cab(stream_name, f)
self.files[stream_name] = f
if hasattr(f, "blocks") and hasattr(f.blocks, "m_DirectoryInfo"):
for fmap in f.blocks.m_DirectoryInfo:
fmap = simplify_name(fmap.path)
if not fmap in self.GLOBAL_FILE_MAP:
self.GLOBAL_FILE_MAP[fmap] = stream_name
return f
def load_zip_file(self, value):
buffer = None
if isinstance(value, str) and os.path.exists(value):
buffer = open(value, "rb")
elif isinstance(value, (bytes, bytearray)):
buffer = io.BytesIO(value)
elif isinstance(value, (io.BufferedReader, io.BufferedIOBase)):
buffer = value
z = ZipFile(buffer)
self.load_assets(z.namelist(), lambda x: z.open(x, "r"))
z.close()
def close(self):
self.unregister_all_cabs()
for f in list(self.files):
self.files[f].close()
self.files = {}
def save(self, pack: str = "none", writer_generator: Callable = None, out_path=None):
"""Saves all changed assets.
Mark assets as changed using `.mark_changed()` if they aren't auto-marked.
pack = "none" (default), "lz4" or "original"
"""
for f in self.files:
opath = self.out_path
if out_path:
opath = out_path
if getattr(self.files[f], "is_changed", False):# and not getattr(self.files[f], "is_dependency", False):
fn = os.path.join(opath, os.path.basename(f))
if writer_generator:
self.files[f].save(packer=pack, writer=writer_generator(fn))
else:
os.makedirs(os.path.dirname(fn), exist_ok=True)
with open(fn, 'w+b') as wf:
self.files[f].save(packer=pack, writer=EndianBinaryWriter(wf))
self.files[f].is_changed = False
def process(self, obj_modify: Callable, types: list=DEFAULT_TYPES, **kwargs):
"""Accept modification function `obj_modify => obj_modify(obj, asset, local_path) to modify `types` """
is_bundle = len(self.assets) > 1
for f in list(self.files):
for asset in list(self.assets):
# filter objects and put Texture2Ds at the end of the list
objs = sorted((obj for obj in asset.get_objects(
) if obj.type.name in types), key=lambda x: 1 if x.type == "Texture2D" else 0)
cobjs = sorted(((key, obj) for key, obj in asset.container.items(
) if obj.type.name in types), key=lambda x: 1 if x[1].type == "Texture2D" else 0)
# check which mode we will have to use
num_cont = len(cobjs)
num_objs = len(objs)
if is_bundle:
asset_name = os.path.basename(asset.name)
else:
asset_name = os.path.basename(f)
# check if container contains all important assets, if yes, just ignore the container
if num_cont > 1:
all_cobjs = self.progress_function(cobjs)
if is_bundle:
postfix = asset_name
else:
all_cobjs = cobjs
for asset_path, obj in all_cobjs:
local_path = os.path.join(self.out_path, *asset_path.split('/')
[self.ignore_dir_lvls:])
if obj.type in types:
obj_modify(obj, asset_name, local_path=local_path, **kwargs)
# otherwise use the container to generate a path for the normal objects
extracted = []
if num_objs > 1:
all_objs = self.progress_function(objs)
if is_bundle:
postfix = asset_name
else:
all_objs = objs
# find the most common path
occurence_count = Counter(os.path.splitext(asset_path)[
0] for asset_path in asset.container.keys())
if len(occurence_count) > 0:
local_path = os.path.join(
self.out_path, *occurence_count.most_common(1)[0][0].split('/')[self.ignore_dir_lvls:])
else:
local_path = ''
for obj in all_objs:
if obj.path_id not in extracted and obj:
extracted.extend(obj_modify(obj, asset_name, local_path=local_path, **kwargs))
@property
def objects(self) -> List[ObjectReader]:
"""Returns a list of all objects in the Environment."""
def search(item):
ret = []
if not isinstance(item, Environment) and getattr(item, "objects", None):
# serialized file
if getattr(item, "is_dependency", False):
return []
return [val for val in item.objects.values()]
elif getattr(item, "files", None): # WebBundle and BundleFile
# bundle
for item in item.files.values():
ret.extend(search(item))
return ret
return ret
return search(self)
@property
def container(self) -> Dict[str, ObjectReader]:
"""Returns a dictionary of all objects in the Environment."""
return {
path: obj
for f in self.files.values()
if isinstance(f, File) and not f.is_dependency
for path, obj in f.container.items()
}
@property
def assets(self) -> list:
"""
Lists all assets / SerializedFiles within this environment.
"""
def gen_all_asset_files(file, ret=[]):
for f in getattr(file, "files", {}).values():
if getattr(f, "is_dependency", False):
continue
if isinstance(f, SerializedFile):
ret.append(f)
else:
gen_all_asset_files(f, ret)
return ret
return gen_all_asset_files(self)
def get(self, key: str, default=None):
return getattr(self, key, default)
def register_cab(self, name: str, item: File) -> None:
"""
Registers a cab file.
Parameters
----------
name : str
The name of the cab file.
item : File
The file to register.
"""
self.cabs[simplify_name(name)] = item
def unregister_all_cabs(self):
for cab in list(self.cabs.keys()):
self.unregister_cab(cab)
self.cabs = {}
def unregister_cab(self, name: str):
"""
Removes a cab from internal listing.
Parameters
----------
name : str
The name of the cab file to unregister.
"""
cab = self.cabs.get(simplify_name(name), None)
if cab:
cab.close()
del self.cabs[simplify_name(name)]
def get_cab(self, name: str) -> File:
"""
Returns the cab file with the given name.
Parameters
----------
name : str
The name of the cab file.
Returns
-------
File
The parsed cab file.
"""
return self.cabs.get(simplify_name(name), None)
def load_assets(self, assets: List[str], open_f: Callable[[str], io.IOBase]):
"""
Load all assets from a list of files via the given open_f function.
Parameters
----------
assets : List[str]
List of files to load.
open_f : Callable[[str], io.IOBase]
Function to open the files.
The function takes a file path and returns an io.IOBase object.
"""
split_files = []
for path in assets:
splitMatch = RE_SPLIT.match(path)
if splitMatch:
basepath, _ = splitMatch.groups()
if basepath in split_files:
continue
split_files.append(basepath)
data = []
for i in range(0, 999):
item = f"{basepath}.split{i}"
if item in assets:
with open_f(item) as f:
data.append(f.read())
elif i:
break
data = b"".join(data)
path = basepath
else:
data = open_f(path)
self.load_file(data, name=path)
def find_file(self, name: str, is_dependency: bool = True) -> Union[File, None]:
"""
Finds a file in the environment.
Parameters
----------
name : str
The name of the file.
is_dependency : bool
Whether the file is a dependency.
Returns
-------
File | None
The file if it was found, otherwise None.
"""
simple_name = simplify_name(name)
cab = self.get_cab(simple_name)
if cab:
return cab
if len(self.local_files) == 0 and self.path:
for root, _, files in self.fs.walk(self.path):
for name in files:
self.local_files.append(self.fs.sep.join([root, name]))
if name in self.local_files:
fp = name
elif simple_name in self.local_files_simple:
fp = self.local_files[self.local_files_simple.index(simple_name)]
else:
raise FileNotFoundError(f"File {name} not found in {self.path}")
if self.ignore_dependencies and is_dependency:
return None
return self.load_file(fp, name=name, is_dependency=is_dependency)
def simplify_name(name: str) -> str:
"""Simplifies a name by:
- removing the extension
- removing the path
- converting to lowercase
"""
return os.path.basename(name).lower()