#!/usr/bin/env python # # NopSCADlib Copyright Chris Palmer 2018 # nop.head@gmail.com # hydraraptor.blogspot.com # # This file is part of NopSCADlib. # # NopSCADlib is free software: you can redistribute it and/or modify it under the terms of the # GNU General Public License as published by the Free Software Foundation, either version 3 of # the License, or (at your option) any later version. # # NopSCADlib is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; # without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along with NopSCADlib. # If not, see . # #! Renders STL and DXF files to PNG for inclusion in the build instructions. from __future__ import print_function from set_config import * from exports import bom_to_parts import os import openscad from tests import do_cmd, update_image, colour_scheme, background from deps import mtime from colorama import init def render(target, type): # # Make the target directory # target_dir = set_config(target) + type + 's' if not os.path.isdir(target_dir): os.makedirs(target_dir) # # Find all the parts # parts = bom_to_parts(target_dir, type) # # Remove unused png files # for file in os.listdir(target_dir): if file.endswith('.png'): if not file[:-4] + '.' + type in parts: print("Removing %s" % file) os.remove(target_dir + '/' + file) for part in parts: part_file = target_dir + '/' + part png_name = target_dir + '/' + part[:-4] + '.png' # # make a file to import the stl # if mtime(part_file) > mtime(png_name): png_maker_name = "png.scad" with open(png_maker_name, "w") as f: f.write('color("lime") import("%s");\n' % part_file) cam = "--camera=0,0,0,70,0,315,500" if type == 'stl' else "--camera=0,0,0,0,0,0,500" render = "--preview" if type == 'stl' else "--render" tmp_name = 'tmp.png' openscad.run(colour_scheme, "--projection=p", "--imgsize=4096,4096", cam, render, "--autocenter", "--viewall", "-o", tmp_name, png_maker_name); do_cmd(("magick "+ tmp_name + " -trim -resize 280x280 -background %s -gravity Center -extent 280x280 -bordercolor %s -border 10 %s" % (background, background, tmp_name)).split()) update_image(tmp_name, png_name) os.remove(png_maker_name) if __name__ == '__main__': init() target = sys.argv[1] if len(sys.argv) > 1 else None render(target, 'stl') render(target, 'dxf')