2018-09-21 17:37:35 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
// Why?
|
|
|
|
#define _WIN32_WINNT 0x0502
|
|
|
|
// The standard Windows includes.
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#define NOMINMAX
|
|
|
|
#include <Windows.h>
|
|
|
|
#include <wchar.h>
|
|
|
|
// Let the NVIDIA and AMD know we want to use their graphics card
|
|
|
|
// on a dual graphics card system.
|
|
|
|
__declspec(dllexport) DWORD NvOptimusEnablement = 0x00000001;
|
|
|
|
__declspec(dllexport) int AmdPowerXpressRequestHighPerformance = 1;
|
|
|
|
#endif /* WIN32 */
|
|
|
|
|
2017-08-18 11:32:35 +00:00
|
|
|
#include <cstdio>
|
|
|
|
#include <string>
|
|
|
|
#include <cstring>
|
|
|
|
#include <iostream>
|
|
|
|
#include <math.h>
|
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
#include <boost/nowide/args.hpp>
|
2018-09-24 09:53:05 +00:00
|
|
|
#include <boost/nowide/cenv.hpp>
|
2017-08-18 11:32:35 +00:00
|
|
|
#include <boost/nowide/iostream.hpp>
|
|
|
|
|
2019-01-04 11:06:25 +00:00
|
|
|
#include "unix/fhs.hpp" // Generated by CMake from ../platform/unix/fhs.hpp.in
|
|
|
|
|
2018-11-26 13:41:58 +00:00
|
|
|
#include "libslic3r/libslic3r.h"
|
|
|
|
#include "libslic3r/Config.hpp"
|
|
|
|
#include "libslic3r/Geometry.hpp"
|
|
|
|
#include "libslic3r/Model.hpp"
|
|
|
|
#include "libslic3r/Print.hpp"
|
2018-12-11 12:16:09 +00:00
|
|
|
#include "libslic3r/SLAPrint.hpp"
|
2018-11-26 13:41:58 +00:00
|
|
|
#include "libslic3r/TriangleMesh.hpp"
|
|
|
|
#include "libslic3r/Format/3mf.hpp"
|
|
|
|
#include "libslic3r/Utils.hpp"
|
|
|
|
|
2018-09-19 09:02:24 +00:00
|
|
|
#include "slic3r/GUI/GUI.hpp"
|
2018-09-20 06:40:22 +00:00
|
|
|
#include "slic3r/GUI/GUI_App.hpp"
|
2018-09-19 09:02:24 +00:00
|
|
|
|
2017-08-18 11:32:35 +00:00
|
|
|
using namespace Slic3r;
|
|
|
|
|
2018-09-20 14:48:13 +00:00
|
|
|
/// utility function for displaying CLI usage
|
|
|
|
void printUsage();
|
2018-09-19 09:02:24 +00:00
|
|
|
|
2018-10-26 09:57:52 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
int slic3r_main_(int argc, char **argv)
|
|
|
|
#else
|
2018-09-20 14:48:13 +00:00
|
|
|
int main(int argc, char **argv)
|
2018-10-26 09:57:52 +00:00
|
|
|
#endif
|
2017-08-18 11:32:35 +00:00
|
|
|
{
|
2018-09-24 09:53:05 +00:00
|
|
|
{
|
|
|
|
const char *loglevel = boost::nowide::getenv("SLIC3R_LOGLEVEL");
|
|
|
|
if (loglevel != nullptr) {
|
|
|
|
if (loglevel[0] >= '0' && loglevel[0] <= '9' && loglevel[1] == 0)
|
|
|
|
set_logging_level(loglevel[0] - '0');
|
|
|
|
else
|
|
|
|
boost::nowide::cerr << "Invalid SLIC3R_LOGLEVEL environment variable: " << loglevel << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-18 11:32:35 +00:00
|
|
|
// parse all command line options into a DynamicConfig
|
2018-09-20 14:48:13 +00:00
|
|
|
DynamicPrintAndCLIConfig config;
|
2017-08-18 11:32:35 +00:00
|
|
|
t_config_option_keys input_files;
|
2018-09-20 14:48:13 +00:00
|
|
|
// if any option is unsupported, print usage and abort immediately
|
|
|
|
if (! config.read_cli(argc, argv, &input_files)) {
|
|
|
|
printUsage();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-09-21 09:40:32 +00:00
|
|
|
boost::filesystem::path path_to_binary = boost::filesystem::system_complete(argv[0]);
|
2018-10-11 13:19:53 +00:00
|
|
|
|
2018-09-21 14:38:42 +00:00
|
|
|
// Path from the Slic3r binary to its resources.
|
2018-09-21 15:16:44 +00:00
|
|
|
#ifdef __APPLE__
|
2018-10-11 13:19:53 +00:00
|
|
|
// The application is packed in the .dmg archive as 'Slic3r.app/Contents/MacOS/Slic3r'
|
|
|
|
// The resources are packed to 'Slic3r.app/Contents/Resources'
|
|
|
|
boost::filesystem::path path_resources = path_to_binary.parent_path() / "../Resources";
|
|
|
|
#elif defined _WIN32
|
|
|
|
// The application is packed in the .zip archive in the root,
|
|
|
|
// The resources are packed to 'resources'
|
|
|
|
// Path from Slic3r binary to resources:
|
|
|
|
boost::filesystem::path path_resources = path_to_binary.parent_path() / "resources";
|
2019-01-04 11:06:25 +00:00
|
|
|
#elif defined SLIC3R_FHS
|
|
|
|
// The application is packaged according to the Linux Filesystem Hierarchy Standard
|
|
|
|
// Resources are set to the 'Architecture-independent (shared) data', typically /usr/share or /usr/local/share
|
|
|
|
boost::filesystem::path path_resources = SLIC3R_FHS_RESOURCES;
|
2018-09-21 09:40:32 +00:00
|
|
|
#else
|
2018-10-11 13:19:53 +00:00
|
|
|
// The application is packed in the .tar.bz archive (or in AppImage) as 'bin/slic3r',
|
|
|
|
// The resources are packed to 'resources'
|
|
|
|
// Path from Slic3r binary to resources:
|
|
|
|
boost::filesystem::path path_resources = path_to_binary.parent_path() / "../resources";
|
2018-09-21 09:40:32 +00:00
|
|
|
#endif
|
2018-10-11 13:19:53 +00:00
|
|
|
|
2018-09-21 09:40:32 +00:00
|
|
|
set_resources_dir(path_resources.string());
|
|
|
|
set_var_dir((path_resources / "icons").string());
|
|
|
|
set_local_dir((path_resources / "localization").string());
|
|
|
|
|
2017-08-18 11:32:35 +00:00
|
|
|
// apply command line options to a more handy CLIConfig
|
|
|
|
CLIConfig cli_config;
|
|
|
|
cli_config.apply(config, true);
|
2018-09-24 09:53:05 +00:00
|
|
|
set_data_dir(cli_config.datadir.value);
|
2018-09-21 09:40:32 +00:00
|
|
|
|
2017-08-18 11:32:35 +00:00
|
|
|
DynamicPrintConfig print_config;
|
2018-09-20 14:48:13 +00:00
|
|
|
|
2018-09-21 09:40:32 +00:00
|
|
|
if ((argc == 1 || cli_config.gui.value) && ! cli_config.no_gui.value && ! cli_config.help.value && cli_config.save.value.empty()) {
|
2018-09-20 14:48:13 +00:00
|
|
|
#if 1
|
2018-09-21 09:40:32 +00:00
|
|
|
GUI::GUI_App *gui = new GUI::GUI_App();
|
|
|
|
GUI::GUI_App::SetInstance(gui);
|
2018-09-20 14:48:13 +00:00
|
|
|
wxEntry(argc, argv);
|
|
|
|
#else
|
|
|
|
std::cout << "GUI support has not been built." << "\n";
|
|
|
|
#endif
|
2018-09-21 09:40:32 +00:00
|
|
|
}
|
2017-08-18 11:32:35 +00:00
|
|
|
// load config files supplied via --load
|
|
|
|
for (const std::string &file : cli_config.load.values) {
|
2018-12-11 12:16:09 +00:00
|
|
|
if (! boost::filesystem::exists(file)) {
|
2017-08-18 11:32:35 +00:00
|
|
|
boost::nowide::cout << "No such file: " << file << std::endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
DynamicPrintConfig c;
|
|
|
|
try {
|
|
|
|
c.load(file);
|
|
|
|
} catch (std::exception &e) {
|
|
|
|
boost::nowide::cout << "Error while reading config file: " << e.what() << std::endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
c.normalize();
|
|
|
|
print_config.apply(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
// apply command line options to a more specific DynamicPrintConfig which provides normalize()
|
|
|
|
// (command line options override --load files)
|
|
|
|
print_config.apply(config, true);
|
|
|
|
|
|
|
|
// write config if requested
|
2018-09-25 09:53:05 +00:00
|
|
|
if (! cli_config.save.value.empty()) {
|
|
|
|
print_config.normalize();
|
2018-09-20 14:48:13 +00:00
|
|
|
print_config.save(cli_config.save.value);
|
2018-09-25 09:53:05 +00:00
|
|
|
}
|
2018-09-20 14:48:13 +00:00
|
|
|
|
2018-09-25 07:55:15 +00:00
|
|
|
if (cli_config.help) {
|
|
|
|
printUsage();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-08-18 11:32:35 +00:00
|
|
|
// read input file(s) if any
|
|
|
|
std::vector<Model> models;
|
|
|
|
for (const t_config_option_key &file : input_files) {
|
2018-09-20 14:48:13 +00:00
|
|
|
if (! boost::filesystem::exists(file)) {
|
2017-08-18 11:32:35 +00:00
|
|
|
boost::nowide::cerr << "No such file: " << file << std::endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
Model model;
|
|
|
|
try {
|
2018-09-25 09:53:05 +00:00
|
|
|
model = Model::read_from_file(file, &print_config, true);
|
2017-08-18 11:32:35 +00:00
|
|
|
} catch (std::exception &e) {
|
|
|
|
boost::nowide::cerr << file << ": " << e.what() << std::endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if (model.objects.empty()) {
|
|
|
|
boost::nowide::cerr << "Error: file is empty: " << file << std::endl;
|
|
|
|
continue;
|
|
|
|
}
|
2018-09-25 07:55:15 +00:00
|
|
|
model.add_default_instances();
|
2017-08-18 11:32:35 +00:00
|
|
|
// apply command line transform options
|
|
|
|
for (ModelObject* o : model.objects) {
|
2018-09-20 14:48:13 +00:00
|
|
|
/*
|
2017-08-18 11:32:35 +00:00
|
|
|
if (cli_config.scale_to_fit.is_positive_volume())
|
|
|
|
o->scale_to_fit(cli_config.scale_to_fit.value);
|
2018-09-20 14:48:13 +00:00
|
|
|
*/
|
2017-08-18 11:32:35 +00:00
|
|
|
// TODO: honor option order?
|
|
|
|
o->scale(cli_config.scale.value);
|
|
|
|
o->rotate(Geometry::deg2rad(cli_config.rotate_x.value), X);
|
|
|
|
o->rotate(Geometry::deg2rad(cli_config.rotate_y.value), Y);
|
|
|
|
o->rotate(Geometry::deg2rad(cli_config.rotate.value), Z);
|
|
|
|
}
|
|
|
|
// TODO: handle --merge
|
|
|
|
models.push_back(model);
|
|
|
|
}
|
2018-09-25 07:55:15 +00:00
|
|
|
|
2017-08-18 11:32:35 +00:00
|
|
|
for (Model &model : models) {
|
|
|
|
if (cli_config.info) {
|
|
|
|
// --info works on unrepaired model
|
|
|
|
model.print_info();
|
2018-09-20 14:48:13 +00:00
|
|
|
} else if (cli_config.export_3mf) {
|
2017-08-18 11:32:35 +00:00
|
|
|
std::string outfile = cli_config.output.value;
|
2018-09-20 14:48:13 +00:00
|
|
|
if (outfile.empty()) outfile = model.objects.front()->input_file;
|
|
|
|
// Check if the file is already a 3mf.
|
|
|
|
if(outfile.substr(outfile.find_last_of('.'), outfile.length()) == ".3mf")
|
|
|
|
outfile = outfile.substr(0, outfile.find_last_of('.')) + "_2" + ".3mf";
|
|
|
|
else
|
|
|
|
// Remove the previous extension and add .3mf extention.
|
|
|
|
outfile = outfile.substr(0, outfile.find_last_of('.')) + ".3mf";
|
2018-11-07 13:57:50 +00:00
|
|
|
store_3mf(outfile.c_str(), &model, nullptr);
|
2018-09-20 14:48:13 +00:00
|
|
|
boost::nowide::cout << "File file exported to " << outfile << std::endl;
|
|
|
|
} else if (cli_config.cut > 0) {
|
2017-08-18 11:32:35 +00:00
|
|
|
model.repair();
|
2018-09-20 14:48:13 +00:00
|
|
|
model.translate(0, 0, - model.bounding_box().min(2));
|
|
|
|
if (! model.objects.empty()) {
|
2018-10-18 13:13:38 +00:00
|
|
|
// XXX
|
|
|
|
// Model out;
|
|
|
|
// model.objects.front()->cut(cli_config.cut, &out);
|
|
|
|
// ModelObject &upper = *out.objects[0];
|
|
|
|
// ModelObject &lower = *out.objects[1];
|
|
|
|
// // Use the input name and trim off the extension.
|
|
|
|
// std::string outfile = cli_config.output.value;
|
|
|
|
// if (outfile.empty())
|
|
|
|
// outfile = model.objects.front()->input_file;
|
|
|
|
// outfile = outfile.substr(0, outfile.find_last_of('.'));
|
|
|
|
// std::cerr << outfile << "\n";
|
|
|
|
// if (upper.facets_count() > 0)
|
|
|
|
// upper.mesh().write_binary((outfile + "_upper.stl").c_str());
|
|
|
|
// if (lower.facets_count() > 0)
|
|
|
|
// lower.mesh().write_binary((outfile + "_lower.stl").c_str());
|
2017-08-18 11:32:35 +00:00
|
|
|
}
|
2018-09-20 14:48:13 +00:00
|
|
|
} else if (cli_config.slice) {
|
2018-12-11 12:16:09 +00:00
|
|
|
PrinterTechnology printer_technology = print_config.option<ConfigOptionEnum<PrinterTechnology>>("printer_technology", true)->value;
|
2018-09-20 14:48:13 +00:00
|
|
|
std::string outfile = cli_config.output.value;
|
2018-12-11 12:16:09 +00:00
|
|
|
Print fff_print;
|
|
|
|
SLAPrint sla_print;
|
|
|
|
PrintBase *print = (printer_technology == ptFFF) ? static_cast<PrintBase*>(&fff_print) : static_cast<PrintBase*>(&sla_print);
|
2018-09-25 07:55:15 +00:00
|
|
|
if (! cli_config.dont_arrange) {
|
2018-12-11 12:16:09 +00:00
|
|
|
//FIXME make the min_object_distance configurable.
|
|
|
|
model.arrange_objects(fff_print.config().min_object_distance());
|
2018-09-25 07:55:15 +00:00
|
|
|
model.center_instances_around_point(cli_config.print_center);
|
|
|
|
}
|
2018-12-11 12:16:09 +00:00
|
|
|
if (outfile.empty()) {
|
|
|
|
outfile = model.propose_export_file_name();
|
|
|
|
outfile += (printer_technology == ptFFF) ? ".gcode" : ".zip";
|
|
|
|
}
|
|
|
|
if (printer_technology == ptFFF) {
|
|
|
|
for (auto* mo : model.objects)
|
|
|
|
fff_print.auto_assign_extruders(mo);
|
|
|
|
}
|
2018-09-25 09:53:05 +00:00
|
|
|
print_config.normalize();
|
2018-12-11 12:16:09 +00:00
|
|
|
print->apply(model, print_config);
|
|
|
|
std::string err = print->validate();
|
|
|
|
if (err.empty()) {
|
|
|
|
if (printer_technology == ptFFF) {
|
|
|
|
fff_print.export_gcode(outfile, nullptr);
|
|
|
|
} else {
|
|
|
|
assert(printer_technology == ptSLA);
|
|
|
|
//FIXME add the output here
|
|
|
|
}
|
|
|
|
} else
|
2018-09-25 07:55:15 +00:00
|
|
|
std::cerr << err << "\n";
|
2017-08-18 11:32:35 +00:00
|
|
|
} else {
|
|
|
|
boost::nowide::cerr << "error: command not supported" << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-09-20 14:48:13 +00:00
|
|
|
|
|
|
|
void printUsage()
|
|
|
|
{
|
|
|
|
std::cout << "Slic3r " << SLIC3R_VERSION << " is a STL-to-GCODE translator for RepRap 3D printers" << "\n"
|
|
|
|
<< "written by Alessandro Ranellucci <aar@cpan.org> - http://slic3r.org/ - https://github.com/slic3r/Slic3r" << "\n"
|
|
|
|
// << "Git Version " << BUILD_COMMIT << "\n\n"
|
|
|
|
<< "Usage: ./slic3r [ OPTIONS ] [ file.stl ] [ file2.stl ] ..." << "\n";
|
|
|
|
// CLI Options
|
|
|
|
std::cout << "** CLI OPTIONS **\n";
|
|
|
|
print_cli_options(boost::nowide::cout);
|
|
|
|
std::cout << "****\n";
|
|
|
|
// Print options
|
|
|
|
std::cout << "** PRINT OPTIONS **\n";
|
|
|
|
print_print_options(boost::nowide::cout);
|
|
|
|
std::cout << "****\n";
|
|
|
|
}
|
2018-10-26 09:57:52 +00:00
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
extern "C" {
|
|
|
|
__declspec(dllexport) int __stdcall slic3r_main(int argc, wchar_t **argv)
|
|
|
|
{
|
|
|
|
// Convert wchar_t arguments to UTF8.
|
|
|
|
std::vector<std::string> argv_narrow;
|
|
|
|
std::vector<char*> argv_ptrs(argc + 1, nullptr);
|
|
|
|
for (size_t i = 0; i < argc; ++ i)
|
|
|
|
argv_narrow.emplace_back(boost::nowide::narrow(argv[i]));
|
|
|
|
for (size_t i = 0; i < argc; ++ i)
|
|
|
|
argv_ptrs[i] = const_cast<char*>(argv_narrow[i].data());
|
|
|
|
// Call the UTF8 main.
|
|
|
|
return slic3r_main_(argc, argv_ptrs.data());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* _MSC_VER */
|