forked from overviewer/Minecraft-Overviewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contribManager.py
executable file
·78 lines (61 loc) · 2.21 KB
/
contribManager.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
#!/usr/bin/env python3
"""The contrib manager is used to help control the contrib scripts
that are shipped with overviewer in Windows packages."""
import ast
import os.path
import sys
scripts = { # keys are names, values are scripts
"convertCyrillic": "cyrillic_convert.py",
"playerInspect": "playerInspect.py",
"testRender": "testRender.py",
"pngit": "png-it.py",
"gallery": "gallery.py",
"regionTrimmer": "regionTrimmer.py",
"contributors": "contributors.py"
}
# you can symlink or hardlink contribManager.py to another name to have it
# automatically find the right script to run. For example:
# > ln -s contribManager.py pngit.exe
# > chmod +x pngit.exe
# > ./pngit.exe -h
# figure out what script to execute
argv = os.path.basename(sys.argv[0])
if argv[-4:] == ".exe":
argv = argv[0:-4]
if argv[-3:] == ".py":
argv = argv[0:-3]
usage = """Usage:
%s --list-contribs | <script name> <arguments>
Executes a contrib script.
Options:
--list-contribs Lists the supported contrib scripts
""" % os.path.basename(sys.argv[0])
if argv in scripts.keys():
script = scripts[argv]
sys.argv[0] = script
else:
if "--list-contribs" in sys.argv:
for contrib in scripts.keys():
# use an AST to extract the docstring for this module
script = scripts[contrib]
with open(os.path.join("contrib", script)) as f:
d = f.read()
node = ast.parse(d, script)
docstring = ast.get_docstring(node)
if docstring:
docstring = docstring.strip().splitlines()[0]
else:
docstring = "(No description found. Add one by adding a docstring to %s.)" % script
print("%s : %s" % (contrib, docstring))
sys.exit(0)
if len(sys.argv) > 1 and sys.argv[1] in scripts.keys():
script = scripts[sys.argv[1]]
sys.argv = [script] + sys.argv[2:]
else:
print(usage, file=sys.stderr)
sys.exit(1)
torun = os.path.join("contrib", script)
if not os.path.exists(torun):
print("Script '%s' is missing!" % script, file=sys.stderr)
sys.exit(1)
exec(compile(open(torun, "rb").read(), torun, 'exec'))