2012-03-12 01:13:07 +00:00
|
|
|
import os
|
2012-03-12 22:55:27 +02:00
|
|
|
import openscad
|
2012-03-12 01:13:07 +00:00
|
|
|
import shutil
|
|
|
|
import sys
|
|
|
|
|
|
|
|
source_dir = "scad"
|
|
|
|
|
2012-03-14 00:01:25 +08:00
|
|
|
def stls(machine, parts = None):
|
2012-03-12 01:13:07 +00:00
|
|
|
#
|
|
|
|
# Make the target directory
|
|
|
|
#
|
|
|
|
target_dir = machine + "/stls"
|
|
|
|
if os.path.isdir(target_dir):
|
2012-03-14 23:15:12 +00:00
|
|
|
if not parts:
|
2012-03-14 23:21:37 +00:00
|
|
|
shutil.rmtree(target_dir) #if making the BOM clear the directory first
|
|
|
|
os.makedirs(target_dir)
|
2012-03-14 23:15:12 +00:00
|
|
|
else:
|
|
|
|
os.makedirs(target_dir)
|
2012-03-12 01:13:07 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Set the target machine
|
|
|
|
#
|
|
|
|
f = open("scad/conf/machine.scad","wt")
|
|
|
|
f. write("include <%s_config.scad>\n" % machine);
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
#
|
|
|
|
# Make a list of all the stls in the BOM
|
|
|
|
#
|
2012-03-14 23:15:12 +00:00
|
|
|
if parts:
|
|
|
|
targets = parts
|
|
|
|
else:
|
|
|
|
targets = []
|
|
|
|
for line in open(machine + "/bom/bom.txt", "rt").readlines():
|
|
|
|
words = line.split()
|
|
|
|
if words:
|
|
|
|
last_word = words[-1]
|
|
|
|
if len(last_word) > 4 and last_word[-4:] == ".stl":
|
|
|
|
targets.append(last_word)
|
2012-03-12 01:13:07 +00:00
|
|
|
#
|
|
|
|
# Find all the scad files
|
|
|
|
#
|
|
|
|
for filename in os.listdir(source_dir):
|
|
|
|
if filename[-5:] == ".scad":
|
|
|
|
#
|
|
|
|
# find any modules ending in _stl
|
|
|
|
#
|
|
|
|
for line in open(source_dir + "/" + filename, "r").readlines():
|
|
|
|
words = line.split()
|
|
|
|
if(len(words) and words[0] == "module"):
|
|
|
|
module = words[1].split('(')[0]
|
2012-03-14 23:15:12 +00:00
|
|
|
stl = module.replace("_stl", ".stl")
|
|
|
|
if stl in targets:
|
2012-03-12 01:13:07 +00:00
|
|
|
#
|
|
|
|
# make a file to use the module
|
|
|
|
#
|
|
|
|
stl_maker_name = source_dir + "/stl.scad"
|
|
|
|
f = open(stl_maker_name, "w")
|
|
|
|
f.write("use <%s/%s>\n" % (source_dir, filename))
|
|
|
|
f.write("%s();\n" % module);
|
|
|
|
f.close()
|
|
|
|
#
|
|
|
|
# Run openscad on the created file
|
|
|
|
#
|
|
|
|
stl_name = target_dir + "/" + module[:-4] + ".stl"
|
2012-03-12 22:55:27 +02:00
|
|
|
openscad.run("-o", stl_name, stl_maker_name)
|
2012-03-14 23:15:12 +00:00
|
|
|
targets.remove(stl)
|
2012-03-12 01:13:07 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# List the ones we didn't find
|
|
|
|
#
|
|
|
|
for module in targets:
|
|
|
|
print "Could not find", module
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
if len(sys.argv) > 1:
|
2012-03-14 00:01:25 +08:00
|
|
|
stls(sys.argv[1], sys.argv[2:])
|
2012-03-12 01:13:07 +00:00
|
|
|
else:
|
2012-03-14 00:01:25 +08:00
|
|
|
print "usage: stls [mendel|sturdy|your_machine] [part.stl ...]"
|
2012-03-12 01:13:07 +00:00
|
|
|
sys.exit(1)
|