This repository was archived by the owner on May 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathxtract.py
72 lines (62 loc) · 1.98 KB
/
xtract.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
#!/usr/bin/python3
import os
import sys
import shutil
import requests_cache
from getopt import getopt, GetoptError
from datatractor.main.extractors import PacketsExtractor, BlocksExtractor
# Main program
usage = "xtract.py -v <game_version> [-o <output_dir>] [--nocache | --cachetime <cache_timeout>]"
try:
opts, args = getopt(sys.argv[1:], "v:o:pb", ["packets, blocks, help, nocache, cachetime="])
except GetoptError:
print("Usage:", usage)
exit(2)
else:
# Extractors
extractors = []
# Misc params
game_version = None
output_dir = None
use_cache = True
cache_timeout = 300
for opt, arg in opts:
if opt == "--help":
print("xtract.py - Data extractor for Tuubes (http://tuubes.org)")
print("Usage:", usage)
exit(0)
elif opt == "-v":
game_version = arg
elif opt == "-o":
output_dir = arg
elif opt == "--nocache":
use_cache = False
elif opt == "--cachetime":
cache_timeout = int(arg)
if not game_version:
print("Missing parameter: -v <game_version>")
game_version = input("Please enter a version: ")
if not output_dir:
output_dir = "%s/out/generated_%s" % (os.getcwd(), game_version)
if output_dir.endswith("/"):
output_dir = output_dir[:-1]
print("Using output dir %s" % output_dir)
if os.path.isdir(output_dir):
shutil.rmtree(output_dir, ignore_errors=True)
print("Output dir cleaned")
if use_cache:
print("Using requests_cache with a timeout of %s seconds" % cache_timeout)
requests_cache.install_cache("out/http_cache", "sqlite", cache_timeout)
for opt, arg in opts:
if opt == "-p" or opt == "--packets":
extractors.append(PacketsExtractor(game_version))
elif opt == "-b" or opt == "--blocks":
extractors.append(BlocksExtractor(game_version))
if len(extractors) == 0:
print("No extractors specified => running the packet extractor.")
extractors = [PacketsExtractor(game_version)]
for extractor in extractors:
print("====", extractor.name, "====")
extractor.extract(output_dir)
print("============================\n")
print("Done!")