本文整理汇总了C++中Model::ConvertToGCode方法的典型用法代码示例。如果您正苦于以下问题:C++ Model::ConvertToGCode方法的具体用法?C++ Model::ConvertToGCode怎么用?C++ Model::ConvertToGCode使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Model
的用法示例。
在下文中一共展示了Model::ConvertToGCode方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main(int argc, char **argv)
{
Glib::thread_init();
Gtk::Main tk(argc, argv);
if (!gtk_gl_init_check (&argc, &argv) ||
!gdk_gl_init_check (&argc, &argv) ) {
std::cerr << "Failed to initialize GL\n";
return 1;
}
CommandLineOptions opts (argc, argv);
Platform::setBinaryPath (argv[0]);
Model *model = new Model();
try {
Gio::File::create_for_path(Glib::get_user_config_dir() + "/repsnapper")->make_directory_with_parents();
} catch(Gio::Error e) {
switch(e.code()) {
case Gio::Error::EXISTS:
// Directory has already been created. Normal.
break;
default:
Gtk::MessageDialog dialog("Couldn't create user config directory!", false,
Gtk::MESSAGE_ERROR, Gtk::BUTTONS_CLOSE);
dialog.set_secondary_text(e.what());
dialog.run();
return 1;
}
}
Glib::RefPtr<Gio::File> conf = Gio::File::create_for_path(Glib::get_user_config_dir() + "/repsnapper/repsnapper.conf");
try {
Glib::RefPtr<Gio::File> global = find_global_config();
if(!global) {
// Don't leave an empty config file behind
conf->remove();
Gtk::MessageDialog dialog("Couldn't find global configuration!", false,
Gtk::MESSAGE_ERROR, Gtk::BUTTONS_CLOSE);
dialog.set_secondary_text("It is likely that repsnapper is not correctly installed.");
dialog.run();
return 1;
}
global->copy(conf);
} catch(Gio::Error e) {
switch(e.code()) {
case Gio::Error::EXISTS:
// The user already has a config. This is the normal case.
break;
case Gio::Error::PERMISSION_DENIED:
{
// Fall back to global config
Gtk::MessageDialog dialog("Unable to create user config", false,
Gtk::MESSAGE_WARNING, Gtk::BUTTONS_CLOSE);
dialog.set_secondary_text(e.what() + "\nFalling back to global config. Settings will not be saved.");
dialog.run();
conf = find_global_config();
if(!conf) {
Gtk::MessageDialog dialog("Couldn't find global configuration!", false,
Gtk::MESSAGE_ERROR, Gtk::BUTTONS_CLOSE);
dialog.set_secondary_text("It is likely that repsnapper is not correctly installed.");
dialog.run();
return 1;
}
break;
}
default:
{
Gtk::MessageDialog dialog("Failed to locate config", false,
Gtk::MESSAGE_ERROR, Gtk::BUTTONS_CLOSE);
dialog.set_secondary_text(e.what());
dialog.run();
return 1;
}
}
}
// TODO: Error detection
model->LoadConfig(conf);
if (!opts.use_gui) {
if (opts.stl_input_path.size() > 0) {
model->ReadStl(Gio::File::create_for_path(opts.stl_input_path));
if (opts.settings_path.size() > 0)
model->LoadConfig(Gio::File::create_for_path(opts.settings_path));
model->ConvertToGCode();
if (opts.gcode_output_path.size() > 0)
model->WriteGCode(Gio::File::create_for_path(opts.gcode_output_path));
}
return 0;
}
//.........这里部分代码省略.........
示例2: main
//.........这里部分代码省略.........
conf->remove();
Gtk::MessageDialog dialog (_("Couldn't find global configuration!"),
false, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_CLOSE);
dialog.set_secondary_text (_("It is likely that repsnapper is not correctly installed."));
dialog.run();
return 1;
}
global->copy(conf);
} catch(Gio::Error e) {
switch(e.code()) {
case Gio::Error::EXISTS:
// The user already has a config. This is the normal case.
break;
case Gio::Error::PERMISSION_DENIED:
{
// Fall back to global config
Gtk::MessageDialog dialog (_("Unable to create user config"), false,
Gtk::MESSAGE_WARNING, Gtk::BUTTONS_CLOSE);
dialog.set_secondary_text(e.what() + _("\nFalling back to global config. Settings will not be saved."));
dialog.run();
conf = find_global_config();
if(!conf) {
Gtk::MessageDialog dialog (_("Couldn't find global configuration!"), false,
Gtk::MESSAGE_ERROR, Gtk::BUTTONS_CLOSE);
dialog.set_secondary_text (_("It is likely that repsnapper is not correctly installed."));
dialog.run();
return 1;
}
break;
}
default:
{
Gtk::MessageDialog dialog (_("Failed to locate config"), false,
Gtk::MESSAGE_ERROR, Gtk::BUTTONS_CLOSE);
dialog.set_secondary_text(e.what());
dialog.run();
return 1;
}
}
}
if (opts.settings_path.size() > 0)
model->LoadConfig(Gio::File::create_for_path(opts.settings_path));
else {
// TODO: Error detection
model->LoadConfig(conf);
}
bool nonprintingmode = false;
if (opts.stl_input_path.size() > 0) {
model->Read(Gio::File::create_for_path(opts.stl_input_path));
}
if (opts.gcode_output_path.size() > 0) {
nonprintingmode = true;
}
if (!opts.use_gui) {
if (opts.settings_path.size() > 0)
model->LoadConfig(Gio::File::create_for_path(opts.settings_path));
ViewProgress vprog(new Gtk::HBox(),new Gtk::ProgressBar(),new Gtk::Label());
vprog.set_terminal_output(true);
model->SetViewProgress(&vprog);
model->statusbar=NULL;
if (opts.gcode_output_path.size() > 0) {
model->ConvertToGCode();
model->WriteGCode(Gio::File::create_for_path(opts.gcode_output_path));
}
else if (opts.svg_output_path.size() > 0) {
model->SliceToSVG(Gio::File::create_for_path(opts.svg_output_path),
opts.svg_single_output);
}
else if (opts.binary_output_path.size() > 0) {
model->SaveStl(Gio::File::create_for_path(opts.binary_output_path));
}
else cerr << _("No output file given") << endl;
return 0;
}
View* mainwin = View::create(model);
mainwin->setNonPrintingMode(nonprintingmode, opts.gcode_output_path);
mainwin->set_icon_name("gtk-convert");
mainwin->set_title("Repsnapper");
for (uint i = 0; i < opts.files.size(); i++)
model->Read(Gio::File::create_for_path(opts.files[i]));
tk.run();
delete mainwin;
delete model;
return 0;
}