-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextract_scene.py
219 lines (192 loc) · 6.11 KB
/
extract_scene.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
#!/usr/bin/env python
import sys
import getopt
import imp
import itertools as it
import inspect
import traceback
import imp
from helpers import *
from scene import Scene
from camera import Camera
#sys.stderr = open('errors', 'w')
HELP_MESSAGE = """
Usage:
python extract_scene.py <module> [<scene name>] [<arg_string>]
-p preview in low quality
-s show and save picture of last frame
-w write result to file [this is default if nothing else is stated]
-l use low quality
-m use medium quality
-a run and save every scene in the script, or all args for the given scene
-q don't pring progress
"""
SCENE_NOT_FOUND_MESSAGE = """
That scene is not in the script
"""
CHOOSE_NUMBER_MESSAGE = """
Choose number corresponding to desired scene/arguments.
(Use comma separated list for multiple entries)
Choice(s): """
INVALID_NUMBER_MESSAGE = "Fine then, if you don't want to give a valid number I'll just quit"
NO_SCENE_MESSAGE = """
There are no scenes inside that module
"""
def get_configuration(sys_argv):
try:
opts, args = getopt.getopt(sys_argv[1:], 'hlmpwsqa')
except getopt.GetoptError as err:
print str(err)
sys.exit(2)
config = {
"file" : None,
"scene_name" : "",
"args_extension" : "",
"camera_config" : PRODUCTION_QUALITY_CAMERA_CONFIG,
"preview" : False,
"write" : False,
"save_image" : False,
"quiet" : False,
"write_all" : False,
}
for opt, arg in opts:
if opt == '-h':
print HELP_MESSAGE
return
elif opt == '-l':
config["camera_config"] = LOW_QUALITY_CAMERA_CONFIG
elif opt == '-m':
config["camera_config"] = MEDIUM_QUALITY_CAMERA_CONFIG
elif opt == '-p':
config["camera_config"] = LOW_QUALITY_CAMERA_CONFIG
config["preview"] = True
elif opt == '-w':
config["write"] = True
elif opt == '-s':
config["save_image"] = True
elif opt == '-q':
config["quiet"] = True
elif opt == '-a':
config["write_all"] = True
config["quiet"] = True
#By default, write to file
actions = ["write", "preview", "save_image"]
if not any([config[key] for key in actions]):
config["write"] = True
if len(args) == 0:
print HELP_MESSAGE
sys.exit()
config["file"] = args[0]
if len(args) > 1:
config["scene_name"] = args[1]
if len(args) > 2:
config["args_extension"] = " ".join(args[2:])
return config
def handle_scene(scene, **config):
name = str(scene)
if config["quiet"]:
curr_stdout = sys.stdout
sys.stdout = open(os.devnull, "w")
if config["preview"]:
scene.preview()
if config["save_image"]:
if not config["write_all"]:
scene.show_frame()
path = os.path.join(MOVIE_DIR, config["movie_prefix"])
scene.save_image(path, name)
if config["write"]:
scene.write_to_movie(os.path.join(config["movie_prefix"], name))
if config["quiet"]:
sys.stdout.close()
sys.stdout = curr_stdout
def is_scene(obj):
if not inspect.isclass(obj):
return False
if not issubclass(obj, Scene):
return False
if obj == Scene:
return False
return True
def prompt_user_for_choice(name_to_obj):
num_to_name = {}
for count, name in zip(it.count(1), name_to_obj):
print "%d: %s"%(count, name)
num_to_name[count] = name
try:
user_input = raw_input(CHOOSE_NUMBER_MESSAGE)
return [
name_to_obj[num_to_name[int(num_str)]]
for num_str in user_input.split(",")
]
except:
print INVALID_NUMBER_MESSAGE
sys.exit()
def get_scene_args(SceneClass, config):
"""
Return arguments as a sequence
"""
tuplify = lambda x : x if type(x) == tuple else (x,)
args_list = map(tuplify, SceneClass.args_list)
preset_extensions = [
SceneClass.args_to_string(*args)
for args in args_list
]
if len(args_list) > 0:
num_args = len(args_list[0])
else:
num_args = len(inspect.getargspec(SceneClass.construct).args) - 1
if num_args == 0:
return [()]
if config["write_all"]:
return args_list
if config["args_extension"] in preset_extensions:
index = preset_extensions.index(config["args_extension"])
return [args_list[index]]
if config["args_extension"] == "" :
if len(args_list) == 1:
return args_list
name_to_args = dict(zip(preset_extensions, args_list))
return prompt_user_for_choice(name_to_args)
return [SceneClass.string_to_args(config["args_extension"])]
def get_scene_classes(scene_names_to_classes, config):
if len(scene_names_to_classes) == 0:
print NO_SCENE_MESSAGE
return []
if len(scene_names_to_classes) == 1:
return scene_names_to_classes.values()
if config["scene_name"] in scene_names_to_classes:
return [scene_names_to_classes[config["scene_name"]] ]
if config["scene_name"] != "":
print SCENE_NOT_FOUND_MESSAGE
return []
if config["write_all"]:
return scene_names_to_classes.values()
return prompt_user_for_choice(scene_names_to_classes)
def get_module(file_name):
module_name = file_name.replace(".py", "")
last_module = imp.load_module(".", *imp.find_module("."))
for part in module_name.split(os.sep):
load_args = imp.find_module(part, last_module.__path__)
last_module = imp.load_module(part, *load_args)
return last_module
def main():
config = get_configuration(sys.argv)
module = get_module(config["file"])
scene_names_to_classes = dict(
inspect.getmembers(module, is_scene)
)
config["movie_prefix"] = config["file"].replace(".py", "")
scene_kwargs = {
"camera_config" : config["camera_config"]
}
for SceneClass in get_scene_classes(scene_names_to_classes, config):
for args in get_scene_args(SceneClass, config):
scene_kwargs["construct_args"] = tuplify(args)
try:
handle_scene(SceneClass(**scene_kwargs), **config)
except:
print "\n\n"
traceback.print_exc()
print "\n\n"
if __name__ == "__main__":
main()