/* * OpenSCAD (www.openscad.org) * Copyright (C) 2009-2011 Clifford Wolf and * Marius Kintel * * This program 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 2 of the License, or * (at your option) any later version. * * As a special exception, you have permission to link this program * with the CGAL library and distribute executables, as long as you * follow the requirements of the GNU GPL in regard to all of the * software in the executable aside from CGAL. * * This program 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 this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ #include "openscad.h" #include "node.h" #include "module.h" #include "modcontext.h" #include "value.h" #include "export.h" #include "builtin.h" #include "printutils.h" #include "handle_dep.h" #include "feature.h" #include "parsersettings.h" #include "rendersettings.h" #include "PlatformUtils.h" #include "LibraryInfo.h" #include "nodedumper.h" #include "stackcheck.h" #include "CocoaUtils.h" #include "FontCache.h" #include #include #include #ifdef ENABLE_CGAL #include "CGAL_Nef_polyhedron.h" #include "cgalutils.h" #endif #include "csgterm.h" #include "CSGTermEvaluator.h" #include "CsgInfo.h" #include #include "Camera.h" #include #include #include #include #include "boosty.h" #ifdef __APPLE__ #include "AppleEvents.h" #ifdef OPENSCAD_UPDATER #include "SparkleAutoUpdater.h" #endif #endif #ifdef _MSC_VER #define snprintf _snprintf #endif namespace po = boost::program_options; namespace fs = boost::filesystem; namespace Render { enum type { GEOMETRY, CGAL, OPENCSG, THROWNTOGETHER }; }; using std::string; using std::vector; using boost::lexical_cast; using boost::bad_lexical_cast; using boost::is_any_of; std::string commandline_commands; std::string currentdir; static bool arg_info = false; static std::string arg_colorscheme; #define QUOTE(x__) # x__ #define QUOTED(x__) QUOTE(x__) std::string openscad_shortversionnumber = QUOTED(OPENSCAD_SHORTVERSION); std::string openscad_versionnumber = QUOTED(OPENSCAD_VERSION); std::string openscad_displayversionnumber = #ifdef OPENSCAD_COMMIT QUOTED(OPENSCAD_VERSION) " (git " QUOTED(OPENSCAD_COMMIT) ")"; #else QUOTED(OPENSCAD_SHORTVERSION); #endif std::string openscad_detailedversionnumber = #ifdef OPENSCAD_COMMIT openscad_displayversionnumber; #else openscad_versionnumber; #endif class Echostream : public std::ofstream { public: Echostream( const char * filename ) : std::ofstream( filename ) { set_output_handler( &Echostream::output, this ); } static void output( const std::string &msg, void *userdata ) { Echostream *thisp = static_cast(userdata); *thisp << msg << "\n"; } ~Echostream() { this->close(); } }; static void help(const char *progname, bool failure = false) { int tablen = strlen(progname)+8; char tabstr[tablen+1]; for (int i=0;i ]" #endif "\\\n" #ifdef DEBUG "%2%[ --debug=module ] \\\n" #endif "%2%filename\n", progname % (const char *)tabstr); exit(failure ? 1 : 0); } #define STRINGIFY(x) #x #define TOSTRING(x) STRINGIFY(x) static void version() { PRINTB("OpenSCAD version %s", TOSTRING(OPENSCAD_VERSION)); exit(0); } static void info() { std::cout << LibraryInfo::info() << "\n\n"; CsgInfo csgInfo = CsgInfo(); try { csgInfo.glview = new OffscreenView(512,512); } catch (int error) { PRINTB("Can't create OpenGL OffscreenView. Code: %i. Exiting.\n", error); exit(1); } std::cout << csgInfo.glview->getRendererInfo() << "\n"; exit(0); } /** * Initialize gettext. This must be called after the appliation path was * determined so we can lookup the resource path for the language translation * files. */ void localization_init() { fs::path po_dir(PlatformUtils::resourcePath("locale")); std::string locale_path(po_dir.string()); if (fs::is_directory(locale_path)) { setlocale(LC_ALL, ""); bindtextdomain("openscad", locale_path.c_str()); bind_textdomain_codeset("openscad", "UTF-8"); textdomain("openscad"); } else { PRINT("Could not initialize localization."); } } Camera get_camera(po::variables_map vm) { Camera camera; if (vm.count("camera")) { vector strs; vector cam_parameters; split(strs, vm["camera"].as(), is_any_of(",")); if ( strs.size()==6 || strs.size()==7 ) { try { BOOST_FOREACH(string &s, strs) cam_parameters.push_back(lexical_cast(s)); camera.setup(cam_parameters); } catch (bad_lexical_cast &) { PRINT("Camera setup requires numbers as parameters"); } } else { PRINT("Camera setup requires either 7 numbers for Gimbal Camera"); PRINT("or 6 numbers for Vector Camera"); exit(1); } } if (camera.type == Camera::GIMBAL) { camera.gimbalDefaultTranslate(); } if (vm.count("viewall")) { camera.viewall = true; } if (vm.count("autocenter")) { camera.autocenter = true; } if (vm.count("projection")) { string proj = vm["projection"].as(); if (proj=="o" || proj=="ortho" || proj=="orthogonal") camera.projection = Camera::ORTHOGONAL; else if (proj=="p" || proj=="perspective") camera.projection = Camera::PERSPECTIVE; else { PRINT("projection needs to be 'o' or 'p' for ortho or perspective\n"); exit(1); } } int w = RenderSettings::inst()->img_width; int h = RenderSettings::inst()->img_height; if (vm.count("imgsize")) { vector strs; split(strs, vm["imgsize"].as(), is_any_of(",")); if ( strs.size() != 2 ) { PRINT("Need 2 numbers for imgsize"); exit(1); } else { try { w = lexical_cast(strs[0]); h = lexical_cast(strs[1]); } catch (bad_lexical_cast &) { PRINT("Need 2 numbers for imgsize"); } } } camera.pixel_width = w; camera.pixel_height = h; return camera; } #ifdef OPENSCAD_TESTING #undef OPENSCAD_QTGUI #else #define OPENSCAD_QTGUI 1 #include #include #endif static bool checkAndExport(shared_ptr root_geom, unsigned nd, enum FileFormat format, const char *filename) { if (root_geom->getDimension() != nd) { PRINTB("Current top level object is not a %dD object.", nd); return false; } if (root_geom->isEmpty()) { PRINT("Current top level object is empty."); return false; } exportFileByName(root_geom.get(), format, filename, filename); return true; } void set_render_color_scheme(const std::string color_scheme, const bool exit_if_not_found) { if (color_scheme.empty()) { return; } if (ColorMap::inst()->findColorScheme(color_scheme)) { RenderSettings::inst()->colorscheme = color_scheme; return; } if (exit_if_not_found) { PRINTB("Unknown color scheme '%s'. Valid schemes:", color_scheme); BOOST_FOREACH (const std::string &name, ColorMap::inst()->colorSchemeNames()) { PRINT(name); } exit(1); } else { PRINTB("Unknown color scheme '%s', using default '%s'.", arg_colorscheme % ColorMap::inst()->defaultColorSchemeName()); } } int cmdline(const char *deps_output_file, const std::string &filename, Camera &camera, const char *output_file, const fs::path &original_path, Render::type renderer, int argc, char ** argv ) { #ifdef OPENSCAD_QTGUI QCoreApplication app(argc, argv); const std::string application_path = QApplication::instance()->applicationDirPath().toLocal8Bit().constData(); #else const std::string application_path = boosty::stringy(boosty::absolute(boost::filesystem::path(argv[0]).parent_path())); #endif PlatformUtils::registerApplicationPath(application_path); parser_init(); localization_init(); Tree tree; #ifdef ENABLE_CGAL GeometryEvaluator geomevaluator(tree); #endif if (arg_info) { info(); } const char *stl_output_file = NULL; const char *off_output_file = NULL; const char *amf_output_file = NULL; const char *dxf_output_file = NULL; const char *svg_output_file = NULL; const char *csg_output_file = NULL; const char *png_output_file = NULL; const char *ast_output_file = NULL; const char *term_output_file = NULL; const char *echo_output_file = NULL; std::string suffix = boosty::extension_str( output_file ); boost::algorithm::to_lower( suffix ); if (suffix == ".stl") stl_output_file = output_file; else if (suffix == ".off") off_output_file = output_file; else if (suffix == ".amf") amf_output_file = output_file; else if (suffix == ".dxf") dxf_output_file = output_file; else if (suffix == ".svg") svg_output_file = output_file; else if (suffix == ".csg") csg_output_file = output_file; else if (suffix == ".png") png_output_file = output_file; else if (suffix == ".ast") ast_output_file = output_file; else if (suffix == ".term") term_output_file = output_file; else if (suffix == ".echo") echo_output_file = output_file; else { PRINTB("Unknown suffix for output file %s\n", output_file); return 1; } set_render_color_scheme(arg_colorscheme, true); // Top context - this context only holds builtins ModuleContext top_ctx; top_ctx.registerBuiltin(); #ifdef DEBUG PRINTDB("Top ModuleContext:\n%s",top_ctx.dump(NULL, NULL)); #endif shared_ptr echostream; if (echo_output_file) echostream.reset( new Echostream( echo_output_file ) ); FileModule *root_module; ModuleInstantiation root_inst("group"); AbstractNode *root_node; AbstractNode *absolute_root_node; shared_ptr root_geom; handle_dep(filename.c_str()); std::ifstream ifs(filename.c_str()); if (!ifs.is_open()) { PRINTB("Can't open input file '%s'!\n", filename.c_str()); return 1; } std::string text((std::istreambuf_iterator(ifs)), std::istreambuf_iterator()); text += "\n" + commandline_commands; fs::path abspath = boosty::absolute(filename); std::string parentpath = boosty::stringy(abspath.parent_path()); root_module = parse(text.c_str(), parentpath.c_str(), false); if (!root_module) { PRINTB("Can't parse file '%s'!\n", filename.c_str()); return 1; } root_module->handleDependencies(); fs::path fpath = boosty::absolute(fs::path(filename)); fs::path fparent = fpath.parent_path(); fs::current_path(fparent); top_ctx.setDocumentPath(fparent.string()); AbstractNode::resetIndexCounter(); absolute_root_node = root_module->instantiate(&top_ctx, &root_inst, NULL); // Do we have an explicit root node (! modifier)? if (!(root_node = find_root_tag(absolute_root_node))) root_node = absolute_root_node; tree.setRoot(root_node); if (csg_output_file) { fs::current_path(original_path); std::ofstream fstream(csg_output_file); if (!fstream.is_open()) { PRINTB("Can't open file \"%s\" for export", csg_output_file); } else { fs::current_path(fparent); // Force exported filenames to be relative to document path fstream << tree.getString(*root_node) << "\n"; fstream.close(); } } else if (ast_output_file) { fs::current_path(original_path); std::ofstream fstream(ast_output_file); if (!fstream.is_open()) { PRINTB("Can't open file \"%s\" for export", ast_output_file); } else { fs::current_path(fparent); // Force exported filenames to be relative to document path fstream << root_module->dump("", "") << "\n"; fstream.close(); } } else if (term_output_file) { std::vector > highlight_terms; std::vector > background_terms; CSGTermEvaluator csgRenderer(tree); shared_ptr root_raw_term = csgRenderer.evaluateCSGTerm(*root_node, highlight_terms, background_terms); fs::current_path(original_path); std::ofstream fstream(term_output_file); if (!fstream.is_open()) { PRINTB("Can't open file \"%s\" for export", term_output_file); } else { if (!root_raw_term) fstream << "No top-level CSG object\n"; else { fstream << root_raw_term->dump() << "\n"; } fstream.close(); } } else { #ifdef ENABLE_CGAL if ((echo_output_file || png_output_file) && (renderer==Render::OPENCSG || renderer==Render::THROWNTOGETHER)) { // echo or OpenCSG png -> don't necessarily need geometry evaluation } else { root_geom = geomevaluator.evaluateGeometry(*tree.root(), true); if (!root_geom) root_geom.reset(new CGAL_Nef_polyhedron()); if (renderer == Render::CGAL && root_geom->getDimension() == 3) { const CGAL_Nef_polyhedron *N = dynamic_cast(root_geom.get()); if (!N) { N = CGALUtils::createNefPolyhedronFromGeometry(*root_geom); root_geom.reset(N); PRINT("Converted to Nef polyhedron"); } } } fs::current_path(original_path); if (deps_output_file) { std::string deps_out( deps_output_file ); std::string geom_out; if ( stl_output_file ) geom_out = std::string(stl_output_file); else if ( off_output_file ) geom_out = std::string(off_output_file); else if ( amf_output_file ) geom_out = std::string(amf_output_file); else if ( dxf_output_file ) geom_out = std::string(dxf_output_file); else if ( svg_output_file ) geom_out = std::string(svg_output_file); else if ( png_output_file ) geom_out = std::string(png_output_file); else { PRINTB("Output file:%s\n",output_file); PRINT("Sorry, don't know how to write deps for that file type. Exiting\n"); return 1; } int result = write_deps( deps_out, geom_out ); if ( !result ) { PRINT("error writing deps"); return 1; } } if (stl_output_file) { if (!checkAndExport(root_geom, 3, OPENSCAD_STL, stl_output_file)) return 1; } if (off_output_file) { if (!checkAndExport(root_geom, 3, OPENSCAD_OFF, off_output_file)) return 1; } if (amf_output_file) { if (!checkAndExport(root_geom, 3, OPENSCAD_AMF, amf_output_file)) return 1; } if (dxf_output_file) { if (!checkAndExport(root_geom, 2, OPENSCAD_DXF, dxf_output_file)) return 1; } if (svg_output_file) { if (!checkAndExport(root_geom, 2, OPENSCAD_SVG, svg_output_file)) return 1; } if (png_output_file) { std::ofstream fstream(png_output_file,std::ios::out|std::ios::binary); if (!fstream.is_open()) { PRINTB("Can't open file \"%s\" for export", png_output_file); } else { if (renderer==Render::CGAL || renderer==Render::GEOMETRY) { export_png(root_geom, camera, fstream); } else if (renderer==Render::THROWNTOGETHER) { export_png_with_throwntogether(tree, camera, fstream); } else { export_png_with_opencsg(tree, camera, fstream); } fstream.close(); } } #else PRINT("OpenSCAD has been compiled without CGAL support!\n"); return 1; #endif } delete root_node; return 0; } #ifdef OPENSCAD_QTGUI #include #if defined(__MINGW64__) || defined(__MINGW32__) || defined(_MSCVER) #if QT_VERSION < 0x050000 Q_IMPORT_PLUGIN(qtaccessiblewidgets) #endif // QT_VERSION #endif // MINGW64/MINGW32/MSCVER #include "MainWindow.h" #include "launchingscreen.h" #include "qsettings.h" #ifdef __APPLE__ #include "EventFilter.h" #endif #include #include #include #include #include #include #include #include Q_DECLARE_METATYPE(shared_ptr); // Only if "fileName" is not absolute, prepend the "absoluteBase". static QString assemblePath(const fs::path& absoluteBaseDir, const string& fileName) { if (fileName.empty()) return ""; QString qsDir = QString::fromLocal8Bit( boosty::stringy( absoluteBaseDir ).c_str() ); QString qsFile = QString::fromLocal8Bit( fileName.c_str() ); // if qsfile is absolute, dir is ignored. (see documentation of QFileInfo) QFileInfo info( qsDir, qsFile ); return info.absoluteFilePath(); } bool QtUseGUI() { #ifdef Q_OS_X11 // see : // On X11, the window system is initialized if GUIenabled is true. If GUIenabled // is false, the application does not connect to the X server. On Windows and // Macintosh, currently the window system is always initialized, regardless of the // value of GUIenabled. This may change in future versions of Qt. bool useGUI = getenv("DISPLAY") != 0; #else bool useGUI = true; #endif return useGUI; } void dialogThreadFunc(FontCacheInitializer *initializer) { initializer->run(); } void dialogInitHandler(FontCacheInitializer *initializer, void *) { MainWindow *mainw = *MainWindow::getWindows()->begin(); QFutureWatcher futureWatcher; QObject::connect(&futureWatcher, SIGNAL(finished()), mainw, SLOT(hideFontCacheDialog())); QFuture future = QtConcurrent::run(boost::bind(dialogThreadFunc, initializer)); futureWatcher.setFuture(future); // We don't always get the started() signal, so we start manually QMetaObject::invokeMethod(mainw, "showFontCacheDialog"); // Block, in case we're in a separate thread, or the dialog was closed by the user futureWatcher.waitForFinished(); // We don't always receive the finished signal. We still need the signal to break // out of the exec() though. QMetaObject::invokeMethod(mainw, "hideFontCacheDialog"); } int gui(vector &inputFiles, const fs::path &original_path, int argc, char ** argv) { #ifdef Q_OS_MACX if (QSysInfo::MacintoshVersion > QSysInfo::MV_10_8) { // fix Mac OS X 10.9 (mavericks) font issue // https://bugreports.qt-project.org/browse/QTBUG-32789 QFont::insertSubstitution(".Lucida Grande UI", "Lucida Grande"); } #endif QApplication app(argc, argv, true); //useGUI); // remove ugly frames in the QStatusBar when using additional widgets app.setStyleSheet("QStatusBar::item { border: 0px solid black; }"); #ifdef Q_OS_MAC app.installEventFilter(new EventFilter(&app)); #endif // set up groups for QSettings QCoreApplication::setOrganizationName("OpenSCAD"); QCoreApplication::setOrganizationDomain("openscad.org"); QCoreApplication::setApplicationName("OpenSCAD"); QCoreApplication::setApplicationVersion(TOSTRING(OPENSCAD_VERSION)); #if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0) QGuiApplication::setApplicationDisplayName("OpenSCAD"); QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); #else QTextCodec::setCodecForCStrings(QTextCodec::codecForName("UTF-8")); #endif #ifdef OPENSCAD_SNAPSHOT app.setWindowIcon(QIcon(":/icons/openscad-nightly.png")); #else app.setWindowIcon(QIcon(":/icons/openscad.png")); #endif // Other global settings qRegisterMetaType >(); const QString &app_path = app.applicationDirPath(); PlatformUtils::registerApplicationPath(app_path.toLocal8Bit().constData()); FontCache::registerProgressHandler(dialogInitHandler); parser_init(); QSettings settings; if (settings.value("advanced/localization", true).toBool()) { localization_init(); } #ifdef Q_OS_MAC installAppleEventHandlers(); #endif #ifdef Q_OS_WIN QSettings reg_setting(QLatin1String("HKEY_CURRENT_USER"), QSettings::NativeFormat); QString appPath = QDir::toNativeSeparators(app.applicationFilePath() + QLatin1String(",1")); reg_setting.setValue(QLatin1String("Software/Classes/OpenSCAD_File/DefaultIcon/Default"),QVariant(appPath)); #endif #ifdef OPENSCAD_UPDATER AutoUpdater *updater = new SparkleAutoUpdater; AutoUpdater::setUpdater(updater); if (updater->automaticallyChecksForUpdates()) updater->checkForUpdates(); updater->init(); #endif QGLFormat fmt; #if 0 /*** disabled by clifford wolf: adds rendering artefacts with OpenCSG ***/ // turn on anti-aliasing fmt.setSampleBuffers(true); fmt.setSamples(4); #endif // The default SwapInterval causes very bad interactive behavior as // waiting for the buffer swap seems to block mouse events. So the // effect is that we can process mouse events at the frequency of // the screen retrace interval causing them to queue up. // (see https://bugreports.qt-project.org/browse/QTBUG-39370 fmt.setSwapInterval(0); QGLFormat::setDefaultFormat(fmt); set_render_color_scheme(arg_colorscheme, false); bool noInputFiles = false; if (!inputFiles.size()) { noInputFiles = true; inputFiles.push_back(""); } QVariant showOnStartup = settings.value("launcher/showOnStartup"); if (noInputFiles && (showOnStartup.isNull() || showOnStartup.toBool())) { LaunchingScreen *launcher = new LaunchingScreen(); int dialogResult = launcher->exec(); if (dialogResult == QDialog::Accepted) { QStringList files = launcher->selectedFiles(); // If nothing is selected in the launching screen, leave // the "" dummy in inputFiles to open an empty MainWindow. if (!files.empty()) { inputFiles.clear(); BOOST_FOREACH(const QString &f, files) { inputFiles.push_back(f.toStdString()); } } delete launcher; } else { return 0; } } MainWindow *mainwin; bool isMdi = settings.value("advanced/mdi", true).toBool(); if (isMdi) { BOOST_FOREACH(const string &infile, inputFiles) { mainwin = new MainWindow(assemblePath(original_path, infile)); } } else { mainwin = new MainWindow(assemblePath(original_path, inputFiles[0])); } app.connect(&app, SIGNAL(lastWindowClosed()), &app, SLOT(quit())); int rc = app.exec(); QSet *windows = MainWindow::getWindows(); foreach (MainWindow *mainw, *windows) { delete mainw; } return rc; } #else // OPENSCAD_QTGUI bool QtUseGUI() { return false; } int gui(const vector &inputFiles, const fs::path &original_path, int argc, char ** argv) { PRINT("Error: compiled without QT, but trying to run GUI\n"); return 1; } #endif // OPENSCAD_QTGUI int main(int argc, char **argv) { int rc = 0; bool isGuiLaunched = getenv("GUI_LAUNCHED") != 0; StackCheck::inst()->init(); #ifdef Q_OS_MAC if (isGuiLaunched) set_output_handler(CocoaUtils::nslog, NULL); #else PlatformUtils::ensureStdIO(); #endif #ifdef ENABLE_CGAL // Causes CGAL errors to abort directly instead of throwing exceptions // (which we don't catch). This gives us stack traces without rerunning in gdb. CGAL::set_error_behaviour(CGAL::ABORT); #endif Builtins::instance()->initialize(); fs::path original_path = fs::current_path(); const char *output_file = NULL; const char *deps_output_file = NULL; po::options_description desc("Allowed options"); desc.add_options() ("help,h", "help message") ("version,v", "print the version") ("info", "print information about the building process") ("render", po::value()->implicit_value(""), "if exporting a png image, do a full geometry evaluation") ("preview", po::value()->implicit_value(""), "if exporting a png image, do an OpenCSG(default) or ThrownTogether preview") ("csglimit", po::value(), "if exporting a png image, stop rendering at the given number of CSG elements") ("camera", po::value(), "parameters for camera when exporting png") ("autocenter", "adjust camera to look at object center") ("viewall", "adjust camera to fit object") ("imgsize", po::value(), "=width,height for exporting png") ("projection", po::value(), "(o)rtho or (p)erspective when exporting png") ("colorscheme", po::value(), "colorscheme") ("debug", po::value(), "special debug info") ("quiet,q", "quiet mode (don't print anything *except* errors)") ("o,o", po::value(), "out-file") ("s,s", po::value(), "stl-file") ("x,x", po::value(), "dxf-file") ("d,d", po::value(), "deps-file") ("m,m", po::value(), "makefile") ("D,D", po::value >(), "var=val") #ifdef ENABLE_EXPERIMENTAL ("enable", po::value >(), "enable experimental features") #endif ; po::options_description hidden("Hidden options"); hidden.add_options() ("input-file", po::value< vector >(), "input file"); po::positional_options_description p; p.add("input-file", -1); po::options_description all_options; all_options.add(desc).add(hidden); po::variables_map vm; try { po::store(po::command_line_parser(argc, argv).options(all_options).allow_unregistered().positional(p).run(), vm); } catch(const std::exception &e) { // Catches e.g. unknown options PRINTB("%s\n", e.what()); help(argv[0], true); } OpenSCAD::debug = ""; if (vm.count("debug")) { OpenSCAD::debug = vm["debug"].as(); PRINTB("Debug on. --debug=%s",OpenSCAD::debug); } if (vm.count("quiet")) { OpenSCAD::quiet = true; } if (vm.count("help")) help(argv[0]); if (vm.count("version")) version(); if (vm.count("info")) arg_info = true; Render::type renderer = Render::OPENCSG; if (vm.count("preview")) { if (vm["preview"].as() == "throwntogether") renderer = Render::THROWNTOGETHER; } else if (vm.count("render")) { if (vm["render"].as() == "cgal") renderer = Render::CGAL; else renderer = Render::GEOMETRY; } if (vm.count("csglimit")) { RenderSettings::inst()->openCSGTermLimit = vm["csglimit"].as(); } if (vm.count("o")) { // FIXME: Allow for multiple output files? if (output_file) help(argv[0], true); output_file = vm["o"].as().c_str(); } if (vm.count("s")) { printDeprecation("The -s option is deprecated. Use -o instead.\n"); if (output_file) help(argv[0], true); output_file = vm["s"].as().c_str(); } if (vm.count("x")) { printDeprecation("The -x option is deprecated. Use -o instead.\n"); if (output_file) help(argv[0], true); output_file = vm["x"].as().c_str(); } if (vm.count("d")) { if (deps_output_file) help(argv[0], true); deps_output_file = vm["d"].as().c_str(); } if (vm.count("m")) { if (make_command) help(argv[0], true); make_command = vm["m"].as().c_str(); } if (vm.count("D")) { BOOST_FOREACH(const string &cmd, vm["D"].as >()) { commandline_commands += cmd; commandline_commands += ";\n"; } } #ifdef ENABLE_EXPERIMENTAL if (vm.count("enable")) { BOOST_FOREACH(const string &feature, vm["enable"].as >()) { Feature::enable_feature(feature); } } #endif vector inputFiles; if (vm.count("input-file")) { inputFiles = vm["input-file"].as >(); } if (vm.count("colorscheme")) { arg_colorscheme = vm["colorscheme"].as(); } currentdir = boosty::stringy(fs::current_path()); Camera camera = get_camera(vm); // Initialize global visitors NodeCache nodecache; NodeDumper dumper(nodecache); bool cmdlinemode = false; if (output_file) { // cmd-line mode cmdlinemode = true; if (!inputFiles.size()) help(argv[0], true); } if (arg_info || cmdlinemode) { if (inputFiles.size() > 1) help(argv[0], true); rc = cmdline(deps_output_file, inputFiles[0], camera, output_file, original_path, renderer, argc, argv); } else if (QtUseGUI()) { rc = gui(inputFiles, original_path, argc, argv); } else { PRINT("Requested GUI mode but can't open display!\n"); help(argv[0], true); } Builtins::instance(true); return rc; }