2011-10-03 09:55:32 +00:00
|
|
|
package Slic3r::GUI::SkeinPanel;
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
2011-10-03 11:08:43 +00:00
|
|
|
use utf8;
|
2011-10-03 09:55:32 +00:00
|
|
|
|
2011-12-09 13:07:50 +00:00
|
|
|
use File::Basename qw(basename dirname);
|
2013-07-31 18:42:24 +00:00
|
|
|
use List::Util qw(min);
|
2012-04-11 13:58:09 +00:00
|
|
|
use Slic3r::Geometry qw(X Y);
|
2012-07-24 12:28:21 +00:00
|
|
|
use Wx qw(:dialog :filedialog :font :icon :id :misc :notebook :panel :sizer);
|
2011-10-03 09:55:32 +00:00
|
|
|
use Wx::Event qw(EVT_BUTTON);
|
|
|
|
use base 'Wx::Panel';
|
|
|
|
|
2012-04-30 12:56:01 +00:00
|
|
|
our $last_input_file;
|
|
|
|
our $last_output_file;
|
2011-12-26 18:45:01 +00:00
|
|
|
our $last_config;
|
2011-12-09 13:07:50 +00:00
|
|
|
|
2012-09-23 12:48:58 +00:00
|
|
|
use constant FILE_WILDCARDS => {
|
2013-03-19 03:51:30 +00:00
|
|
|
known => 'Known files (*.stl, *.obj, *.amf, *.xml)|*.stl;*.STL;*.obj;*.OBJ;*.amf;*.AMF;*.xml;*.XML',
|
2012-09-23 12:48:58 +00:00
|
|
|
stl => 'STL files (*.stl)|*.stl;*.STL',
|
|
|
|
obj => 'OBJ files (*.obj)|*.obj;*.OBJ',
|
|
|
|
amf => 'AMF files (*.amf)|*.amf;*.AMF;*.xml;*.XML',
|
|
|
|
ini => 'INI files *.ini|*.ini;*.INI',
|
2013-11-10 22:37:59 +00:00
|
|
|
gcode => 'G-code files (*.gcode, *.gco, *.g, *.ngc)|*.gcode;*.GCODE;*.gco;*.GCO;*.g;*.G;*.ngc;*.NGC',
|
2012-09-23 12:48:58 +00:00
|
|
|
svg => 'SVG files *.svg|*.svg;*.SVG',
|
|
|
|
};
|
2013-03-19 03:51:30 +00:00
|
|
|
use constant MODEL_WILDCARD => join '|', @{&FILE_WILDCARDS}{qw(known stl obj amf)};
|
2012-09-23 12:48:58 +00:00
|
|
|
|
2011-10-03 09:55:32 +00:00
|
|
|
sub new {
|
|
|
|
my $class = shift;
|
2013-01-03 14:49:20 +00:00
|
|
|
my ($parent, %params) = @_;
|
2012-07-24 12:28:21 +00:00
|
|
|
my $self = $class->SUPER::new($parent, -1, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL);
|
2013-01-03 14:49:20 +00:00
|
|
|
$self->{mode} = $params{mode};
|
2013-03-09 15:43:09 +00:00
|
|
|
$self->{mode} = 'expert' if $self->{mode} !~ /^(?:simple|expert)$/;
|
2011-10-03 09:55:32 +00:00
|
|
|
|
2012-07-24 12:28:21 +00:00
|
|
|
$self->{tabpanel} = Wx::Notebook->new($self, -1, wxDefaultPosition, wxDefaultSize, wxNB_TOP | wxTAB_TRAVERSAL);
|
2013-03-09 15:43:09 +00:00
|
|
|
$self->{tabpanel}->AddPage($self->{plater} = Slic3r::GUI::Plater->new($self->{tabpanel}), "Plater")
|
|
|
|
unless $params{no_plater};
|
2012-08-06 17:18:31 +00:00
|
|
|
$self->{options_tabs} = {};
|
2012-07-27 19:13:03 +00:00
|
|
|
|
2013-03-09 15:27:18 +00:00
|
|
|
my $simple_config;
|
|
|
|
if ($self->{mode} eq 'simple') {
|
|
|
|
$simple_config = Slic3r::Config->load("$Slic3r::GUI::datadir/simple.ini")
|
|
|
|
if -e "$Slic3r::GUI::datadir/simple.ini";
|
|
|
|
}
|
2013-01-03 14:49:20 +00:00
|
|
|
|
2013-03-09 15:27:18 +00:00
|
|
|
my $class_prefix = $self->{mode} eq 'simple' ? "Slic3r::GUI::SimpleTab::" : "Slic3r::GUI::Tab::";
|
|
|
|
my $init = 0;
|
2012-08-06 17:18:31 +00:00
|
|
|
for my $tab_name (qw(print filament printer)) {
|
2013-11-11 21:02:12 +00:00
|
|
|
my $tab;
|
|
|
|
$tab = $self->{options_tabs}{$tab_name} = ($class_prefix . ucfirst $tab_name)->new(
|
2012-08-06 17:18:31 +00:00
|
|
|
$self->{tabpanel},
|
2013-01-03 14:49:20 +00:00
|
|
|
on_value_change => sub {
|
2013-03-09 15:43:09 +00:00
|
|
|
$self->{plater}->on_config_change(@_) if $self->{plater}; # propagate config change events to the plater
|
2013-06-02 18:03:22 +00:00
|
|
|
if ($init) { # don't save while loading for the first time
|
|
|
|
if ($self->{mode} eq 'simple') {
|
|
|
|
# save config
|
|
|
|
$self->config->save("$Slic3r::GUI::datadir/simple.ini");
|
2013-11-11 21:02:12 +00:00
|
|
|
|
|
|
|
# save a copy into each preset section
|
|
|
|
# so that user gets the config when switching to expert mode
|
|
|
|
$tab->config->save(sprintf "$Slic3r::GUI::datadir/%s/%s.ini", $tab->name, 'Simple Mode');
|
|
|
|
$Slic3r::GUI::Settings->{presets}{$tab->name} = 'Simple Mode.ini';
|
|
|
|
Slic3r::GUI->save_settings;
|
2013-06-02 18:03:22 +00:00
|
|
|
}
|
|
|
|
$self->config->save($Slic3r::GUI::autosave) if $Slic3r::GUI::autosave;
|
2013-01-03 14:49:20 +00:00
|
|
|
}
|
|
|
|
},
|
2013-03-09 15:43:09 +00:00
|
|
|
on_presets_changed => sub {
|
|
|
|
$self->{plater}->update_presets($tab_name, @_) if $self->{plater};
|
|
|
|
},
|
2012-08-06 17:18:31 +00:00
|
|
|
);
|
2013-03-09 15:27:18 +00:00
|
|
|
$self->{tabpanel}->AddPage($tab, $tab->title);
|
2013-03-09 15:43:09 +00:00
|
|
|
$tab->load_config($simple_config) if $simple_config;
|
2012-08-06 17:18:31 +00:00
|
|
|
}
|
2013-03-09 15:27:18 +00:00
|
|
|
$init = 1;
|
2012-06-19 15:23:10 +00:00
|
|
|
|
2011-10-05 16:13:47 +00:00
|
|
|
my $sizer = Wx::BoxSizer->new(wxVERTICAL);
|
2012-07-24 10:59:02 +00:00
|
|
|
$sizer->Add($self->{tabpanel}, 1, wxEXPAND);
|
2011-10-05 16:13:47 +00:00
|
|
|
|
2011-10-03 09:55:32 +00:00
|
|
|
$sizer->SetSizeHints($self);
|
|
|
|
$self->SetSizer($sizer);
|
2011-10-03 11:08:43 +00:00
|
|
|
$self->Layout;
|
2011-10-03 09:55:32 +00:00
|
|
|
|
|
|
|
return $self;
|
|
|
|
}
|
|
|
|
|
2013-05-20 09:02:12 +00:00
|
|
|
sub quick_slice {
|
2011-10-03 09:55:32 +00:00
|
|
|
my $self = shift;
|
2011-12-22 16:38:37 +00:00
|
|
|
my %params = @_;
|
2011-10-03 09:55:32 +00:00
|
|
|
|
2014-01-02 16:54:18 +00:00
|
|
|
my $progress_dialog;
|
2011-10-03 09:55:32 +00:00
|
|
|
eval {
|
|
|
|
# validate configuration
|
2012-07-27 19:13:03 +00:00
|
|
|
my $config = $self->config;
|
|
|
|
$config->validate;
|
2011-10-03 09:55:32 +00:00
|
|
|
|
|
|
|
# select input file
|
2012-03-12 17:52:23 +00:00
|
|
|
my $input_file;
|
2014-01-02 16:54:18 +00:00
|
|
|
my $dir = $Slic3r::GUI::Settings->{recent}{skein_directory} || $Slic3r::GUI::Settings->{recent}{config_directory} || '';
|
2012-03-12 17:52:23 +00:00
|
|
|
if (!$params{reslice}) {
|
2012-09-23 12:48:58 +00:00
|
|
|
my $dialog = Wx::FileDialog->new($self, 'Choose a file to slice (STL/OBJ/AMF):', $dir, "", MODEL_WILDCARD, wxFD_OPEN | wxFD_FILE_MUST_EXIST);
|
2012-04-18 14:16:01 +00:00
|
|
|
if ($dialog->ShowModal != wxID_OK) {
|
|
|
|
$dialog->Destroy;
|
|
|
|
return;
|
|
|
|
}
|
2012-03-12 17:52:23 +00:00
|
|
|
$input_file = $dialog->GetPaths;
|
2012-04-18 14:16:01 +00:00
|
|
|
$dialog->Destroy;
|
2012-07-17 21:51:57 +00:00
|
|
|
$last_input_file = $input_file unless $params{export_svg};
|
2012-03-12 17:52:23 +00:00
|
|
|
} else {
|
|
|
|
if (!defined $last_input_file) {
|
2012-07-15 20:25:04 +00:00
|
|
|
Wx::MessageDialog->new($self, "No previously sliced file.",
|
|
|
|
'Error', wxICON_ERROR | wxOK)->ShowModal();
|
2012-03-12 17:52:23 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (! -e $last_input_file) {
|
2012-07-15 20:25:04 +00:00
|
|
|
Wx::MessageDialog->new($self, "Previously sliced file ($last_input_file) not found.",
|
|
|
|
'File Not Found', wxICON_ERROR | wxOK)->ShowModal();
|
2012-03-12 17:52:23 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
$input_file = $last_input_file;
|
|
|
|
}
|
2011-10-03 09:55:32 +00:00
|
|
|
my $input_file_basename = basename($input_file);
|
2012-07-30 10:08:28 +00:00
|
|
|
$Slic3r::GUI::Settings->{recent}{skein_directory} = dirname($input_file);
|
|
|
|
Slic3r::GUI->save_settings;
|
2011-10-03 09:55:32 +00:00
|
|
|
|
2014-01-02 16:54:18 +00:00
|
|
|
my $sprint = Slic3r::Print::Simple->new(
|
|
|
|
status_cb => sub {
|
|
|
|
my ($percent, $message) = @_;
|
|
|
|
return if &Wx::wxVERSION_STRING !~ / 2\.(8\.|9\.[2-9])/;
|
|
|
|
$progress_dialog->Update($percent, "$message…");
|
|
|
|
},
|
|
|
|
);
|
2013-12-13 11:18:30 +00:00
|
|
|
|
2014-01-02 16:54:18 +00:00
|
|
|
$sprint->apply_config($config);
|
|
|
|
$sprint->set_model(Slic3r::Model->read_from_file($input_file));
|
2013-12-13 11:18:30 +00:00
|
|
|
|
2014-04-19 10:10:15 +00:00
|
|
|
{
|
|
|
|
my $extra = $self->extra_variables;
|
|
|
|
$sprint->placeholder_parser->set($_, $extra->{$_}) for keys %$extra;
|
|
|
|
}
|
|
|
|
|
2011-12-22 16:38:37 +00:00
|
|
|
# select output file
|
2014-01-02 16:54:18 +00:00
|
|
|
my $output_file;
|
2012-03-12 17:52:23 +00:00
|
|
|
if ($params{reslice}) {
|
2012-04-30 12:56:01 +00:00
|
|
|
$output_file = $last_output_file if defined $last_output_file;
|
2012-03-12 17:52:23 +00:00
|
|
|
} elsif ($params{save_as}) {
|
2014-01-02 16:54:18 +00:00
|
|
|
$output_file = $sprint->expanded_output_filepath;
|
2012-03-26 15:57:54 +00:00
|
|
|
$output_file =~ s/\.gcode$/.svg/i if $params{export_svg};
|
2013-04-27 19:07:30 +00:00
|
|
|
my $dlg = Wx::FileDialog->new($self, 'Save ' . ($params{export_svg} ? 'SVG' : 'G-code') . ' file as:',
|
|
|
|
Slic3r::GUI->output_path(dirname($output_file)),
|
2012-09-23 12:48:58 +00:00
|
|
|
basename($output_file), $params{export_svg} ? FILE_WILDCARDS->{svg} : FILE_WILDCARDS->{gcode}, wxFD_SAVE);
|
2012-04-18 14:16:01 +00:00
|
|
|
if ($dlg->ShowModal != wxID_OK) {
|
|
|
|
$dlg->Destroy;
|
|
|
|
return;
|
|
|
|
}
|
2012-07-17 21:51:57 +00:00
|
|
|
$output_file = $dlg->GetPath;
|
|
|
|
$last_output_file = $output_file unless $params{export_svg};
|
2013-04-27 19:07:30 +00:00
|
|
|
$Slic3r::GUI::Settings->{_}{last_output_path} = dirname($output_file);
|
|
|
|
Slic3r::GUI->save_settings;
|
2012-04-18 14:16:01 +00:00
|
|
|
$dlg->Destroy;
|
2011-12-22 16:38:37 +00:00
|
|
|
}
|
|
|
|
|
2011-10-03 09:55:32 +00:00
|
|
|
# show processbar dialog
|
2014-01-02 16:54:18 +00:00
|
|
|
$progress_dialog = Wx::ProgressDialog->new('Slicing…', "Processing $input_file_basename…",
|
2012-02-05 13:23:15 +00:00
|
|
|
100, $self, 0);
|
2014-01-02 16:54:18 +00:00
|
|
|
$progress_dialog->Pulse;
|
2011-11-26 15:52:10 +00:00
|
|
|
|
2011-11-27 10:40:03 +00:00
|
|
|
{
|
2011-12-18 12:43:31 +00:00
|
|
|
my @warnings = ();
|
|
|
|
local $SIG{__WARN__} = sub { push @warnings, $_[0] };
|
2014-01-02 16:54:18 +00:00
|
|
|
|
|
|
|
$sprint->output_file($output_file);
|
2012-03-26 15:57:54 +00:00
|
|
|
if ($params{export_svg}) {
|
2014-01-02 16:54:18 +00:00
|
|
|
$sprint->export_svg;
|
2012-03-26 15:57:54 +00:00
|
|
|
} else {
|
2014-01-02 16:54:18 +00:00
|
|
|
$sprint->export_gcode;
|
2012-03-26 15:57:54 +00:00
|
|
|
}
|
2014-01-02 16:54:18 +00:00
|
|
|
$sprint->status_cb(undef);
|
2012-04-30 12:56:01 +00:00
|
|
|
Slic3r::GUI::warning_catcher($self)->($_) for @warnings;
|
2011-11-27 10:40:03 +00:00
|
|
|
}
|
2014-01-02 16:54:18 +00:00
|
|
|
$progress_dialog->Destroy;
|
|
|
|
undef $progress_dialog;
|
2011-10-03 09:55:32 +00:00
|
|
|
|
2013-12-15 23:54:59 +00:00
|
|
|
my $message = "$input_file_basename was successfully sliced.";
|
2012-07-15 21:36:18 +00:00
|
|
|
&Wx::wxTheApp->notify($message);
|
2012-07-15 20:25:04 +00:00
|
|
|
Wx::MessageDialog->new($self, $message, 'Slicing Done!',
|
2012-02-16 21:52:57 +00:00
|
|
|
wxOK | wxICON_INFORMATION)->ShowModal;
|
2011-10-03 09:55:32 +00:00
|
|
|
};
|
2014-01-02 16:54:18 +00:00
|
|
|
Slic3r::GUI::catch_error($self, sub { $progress_dialog->Destroy if $progress_dialog });
|
2011-10-05 16:13:47 +00:00
|
|
|
}
|
|
|
|
|
2013-06-23 19:11:46 +00:00
|
|
|
sub repair_stl {
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
my $input_file;
|
|
|
|
{
|
|
|
|
my $dir = $Slic3r::GUI::Settings->{recent}{skein_directory} || $Slic3r::GUI::Settings->{recent}{config_directory} || '';
|
|
|
|
my $dialog = Wx::FileDialog->new($self, 'Select the STL file to repair:', $dir, "", FILE_WILDCARDS->{stl}, wxFD_OPEN | wxFD_FILE_MUST_EXIST);
|
|
|
|
if ($dialog->ShowModal != wxID_OK) {
|
|
|
|
$dialog->Destroy;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$input_file = $dialog->GetPaths;
|
|
|
|
$dialog->Destroy;
|
|
|
|
}
|
|
|
|
|
|
|
|
my $output_file = $input_file;
|
|
|
|
{
|
|
|
|
$output_file =~ s/\.stl$/_fixed.obj/i;
|
|
|
|
my $dlg = Wx::FileDialog->new($self, "Save OBJ file (less prone to coordinate errors than STL) as:", dirname($output_file),
|
|
|
|
basename($output_file), &Slic3r::GUI::SkeinPanel::FILE_WILDCARDS->{obj}, wxFD_SAVE | wxFD_OVERWRITE_PROMPT);
|
|
|
|
if ($dlg->ShowModal != wxID_OK) {
|
|
|
|
$dlg->Destroy;
|
|
|
|
return undef;
|
|
|
|
}
|
|
|
|
$output_file = $dlg->GetPath;
|
|
|
|
$dlg->Destroy;
|
|
|
|
}
|
|
|
|
|
2013-09-09 22:40:46 +00:00
|
|
|
my $tmesh = Slic3r::TriangleMesh->new;
|
2013-11-13 10:12:06 +00:00
|
|
|
$tmesh->ReadSTLFile(Slic3r::encode_path($input_file));
|
2013-09-09 21:18:33 +00:00
|
|
|
$tmesh->repair;
|
2013-11-13 10:12:06 +00:00
|
|
|
$tmesh->WriteOBJFile(Slic3r::encode_path($output_file));
|
2013-06-23 19:11:46 +00:00
|
|
|
Slic3r::GUI::show_info($self, "Your file was repaired.", "Repair");
|
|
|
|
}
|
|
|
|
|
2013-09-19 14:00:47 +00:00
|
|
|
sub extra_variables {
|
2013-04-28 21:26:50 +00:00
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
my %extra_variables = ();
|
|
|
|
if ($self->{mode} eq 'expert') {
|
|
|
|
$extra_variables{"${_}_preset"} = $self->{options_tabs}{$_}->current_preset->{name}
|
|
|
|
for qw(print filament printer);
|
|
|
|
}
|
2013-09-19 14:00:47 +00:00
|
|
|
return { %extra_variables };
|
|
|
|
}
|
|
|
|
|
|
|
|
sub init_print {
|
|
|
|
my $self = shift;
|
2013-04-28 21:26:50 +00:00
|
|
|
|
|
|
|
return Slic3r::Print->new(
|
|
|
|
config => $self->config,
|
2013-09-19 14:00:47 +00:00
|
|
|
extra_variables => $self->extra_variables,
|
2013-04-28 21:26:50 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2012-08-07 18:14:28 +00:00
|
|
|
sub export_config {
|
2011-10-05 16:13:47 +00:00
|
|
|
my $self = shift;
|
|
|
|
|
2012-07-27 19:13:03 +00:00
|
|
|
my $config = $self->config;
|
2012-02-06 15:52:11 +00:00
|
|
|
eval {
|
|
|
|
# validate configuration
|
2012-07-27 19:13:03 +00:00
|
|
|
$config->validate;
|
2012-02-06 15:52:11 +00:00
|
|
|
};
|
2012-07-27 19:13:03 +00:00
|
|
|
Slic3r::GUI::catch_error($self) and return;
|
2012-02-06 15:52:11 +00:00
|
|
|
|
2012-07-30 10:08:28 +00:00
|
|
|
my $dir = $last_config ? dirname($last_config) : $Slic3r::GUI::Settings->{recent}{config_directory} || $Slic3r::GUI::Settings->{recent}{skein_directory} || '';
|
2011-12-26 18:06:57 +00:00
|
|
|
my $filename = $last_config ? basename($last_config) : "config.ini";
|
|
|
|
my $dlg = Wx::FileDialog->new($self, 'Save configuration as:', $dir, $filename,
|
2012-09-23 12:48:58 +00:00
|
|
|
FILE_WILDCARDS->{ini}, wxFD_SAVE | wxFD_OVERWRITE_PROMPT);
|
2011-10-05 16:13:47 +00:00
|
|
|
if ($dlg->ShowModal == wxID_OK) {
|
2011-12-09 13:07:50 +00:00
|
|
|
my $file = $dlg->GetPath;
|
2012-07-30 10:08:28 +00:00
|
|
|
$Slic3r::GUI::Settings->{recent}{config_directory} = dirname($file);
|
|
|
|
Slic3r::GUI->save_settings;
|
2011-12-26 18:06:57 +00:00
|
|
|
$last_config = $file;
|
2012-07-27 19:13:03 +00:00
|
|
|
$config->save($file);
|
2011-10-05 16:13:47 +00:00
|
|
|
}
|
2012-04-18 14:16:01 +00:00
|
|
|
$dlg->Destroy;
|
2011-10-05 16:13:47 +00:00
|
|
|
}
|
|
|
|
|
2012-07-27 19:13:03 +00:00
|
|
|
sub load_config_file {
|
2011-10-05 16:13:47 +00:00
|
|
|
my $self = shift;
|
2012-07-15 15:54:57 +00:00
|
|
|
my ($file) = @_;
|
2011-10-03 09:55:32 +00:00
|
|
|
|
2012-07-15 15:54:57 +00:00
|
|
|
if (!$file) {
|
2012-07-17 21:16:58 +00:00
|
|
|
return unless $self->check_unsaved_changes;
|
2012-07-30 10:08:28 +00:00
|
|
|
my $dir = $last_config ? dirname($last_config) : $Slic3r::GUI::Settings->{recent}{config_directory} || $Slic3r::GUI::Settings->{recent}{skein_directory} || '';
|
2012-07-15 15:54:57 +00:00
|
|
|
my $dlg = Wx::FileDialog->new($self, 'Select configuration to load:', $dir, "config.ini",
|
2012-09-23 12:48:58 +00:00
|
|
|
FILE_WILDCARDS->{ini}, wxFD_OPEN | wxFD_FILE_MUST_EXIST);
|
2012-07-15 15:54:57 +00:00
|
|
|
return unless $dlg->ShowModal == wxID_OK;
|
|
|
|
($file) = $dlg->GetPaths;
|
|
|
|
$dlg->Destroy;
|
2011-10-05 16:13:47 +00:00
|
|
|
}
|
2012-07-30 10:08:28 +00:00
|
|
|
$Slic3r::GUI::Settings->{recent}{config_directory} = dirname($file);
|
|
|
|
Slic3r::GUI->save_settings;
|
2012-07-15 15:54:57 +00:00
|
|
|
$last_config = $file;
|
2013-06-17 17:27:08 +00:00
|
|
|
for my $tab (values %{$self->{options_tabs}}) {
|
|
|
|
$tab->load_config_file($file);
|
|
|
|
}
|
2011-10-05 16:13:47 +00:00
|
|
|
}
|
|
|
|
|
2014-03-25 13:04:01 +00:00
|
|
|
sub export_configbundle {
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
eval {
|
|
|
|
# validate current configuration in case it's dirty
|
|
|
|
$self->config->validate;
|
|
|
|
};
|
|
|
|
Slic3r::GUI::catch_error($self) and return;
|
|
|
|
|
|
|
|
my $dir = $last_config ? dirname($last_config) : $Slic3r::GUI::Settings->{recent}{config_directory} || $Slic3r::GUI::Settings->{recent}{skein_directory} || '';
|
|
|
|
my $filename = "Slic3r_config_bundle.ini";
|
|
|
|
my $dlg = Wx::FileDialog->new($self, 'Save presets bundle as:', $dir, $filename,
|
|
|
|
FILE_WILDCARDS->{ini}, wxFD_SAVE | wxFD_OVERWRITE_PROMPT);
|
|
|
|
if ($dlg->ShowModal == wxID_OK) {
|
|
|
|
my $file = $dlg->GetPath;
|
|
|
|
$Slic3r::GUI::Settings->{recent}{config_directory} = dirname($file);
|
|
|
|
Slic3r::GUI->save_settings;
|
|
|
|
|
|
|
|
# leave default category empty to prevent the bundle from being parsed as a normal config file
|
|
|
|
my $ini = { _ => {} };
|
|
|
|
$ini->{settings}{$_} = $Slic3r::GUI::Settings->{_}{$_} for qw(autocenter mode);
|
|
|
|
$ini->{presets} = $Slic3r::GUI::Settings->{presets};
|
|
|
|
if (-e "$Slic3r::GUI::datadir/simple.ini") {
|
|
|
|
my $config = Slic3r::Config->load("$Slic3r::GUI::datadir/simple.ini");
|
|
|
|
$ini->{simple} = $config->as_ini->{_};
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach my $section (qw(print filament printer)) {
|
|
|
|
my %presets = Slic3r::GUI->presets($section);
|
|
|
|
foreach my $preset_name (keys %presets) {
|
|
|
|
my $config = Slic3r::Config->load($presets{$preset_name});
|
|
|
|
$ini->{"$section:$preset_name"} = $config->as_ini->{_};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Slic3r::Config->write_ini($file, $ini);
|
|
|
|
}
|
|
|
|
$dlg->Destroy;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub load_configbundle {
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
my $dir = $last_config ? dirname($last_config) : $Slic3r::GUI::Settings->{recent}{config_directory} || $Slic3r::GUI::Settings->{recent}{skein_directory} || '';
|
|
|
|
my $dlg = Wx::FileDialog->new($self, 'Select configuration to load:', $dir, "config.ini",
|
|
|
|
FILE_WILDCARDS->{ini}, wxFD_OPEN | wxFD_FILE_MUST_EXIST);
|
|
|
|
return unless $dlg->ShowModal == wxID_OK;
|
|
|
|
my ($file) = $dlg->GetPaths;
|
|
|
|
$dlg->Destroy;
|
|
|
|
|
|
|
|
$Slic3r::GUI::Settings->{recent}{config_directory} = dirname($file);
|
|
|
|
Slic3r::GUI->save_settings;
|
|
|
|
|
|
|
|
# load .ini file
|
|
|
|
my $ini = Slic3r::Config->read_ini($file);
|
|
|
|
|
|
|
|
if ($ini->{settings}) {
|
|
|
|
$Slic3r::GUI::Settings->{_}{$_} = $ini->{settings}{$_} for keys %{$ini->{settings}};
|
|
|
|
Slic3r::GUI->save_settings;
|
|
|
|
}
|
|
|
|
if ($ini->{presets}) {
|
|
|
|
$Slic3r::GUI::Settings->{presets} = $ini->{presets};
|
|
|
|
Slic3r::GUI->save_settings;
|
|
|
|
}
|
|
|
|
if ($ini->{simple}) {
|
|
|
|
my $config = Slic3r::Config->load_ini_hash($ini->{simple});
|
|
|
|
$config->save("$Slic3r::GUI::datadir/simple.ini");
|
|
|
|
if ($self->{mode} eq 'simple') {
|
|
|
|
foreach my $tab (values %{$self->{options_tabs}}) {
|
|
|
|
$tab->load_config($config) for values %{$self->{options_tabs}};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
my $imported = 0;
|
|
|
|
foreach my $ini_category (sort keys %$ini) {
|
|
|
|
next unless $ini_category =~ /^(print|filament|printer):(.+)$/;
|
|
|
|
my ($section, $preset_name) = ($1, $2);
|
|
|
|
my $config = Slic3r::Config->load_ini_hash($ini->{$ini_category});
|
|
|
|
$config->save(sprintf "$Slic3r::GUI::datadir/%s/%s.ini", $section, $preset_name);
|
|
|
|
$imported++;
|
|
|
|
}
|
|
|
|
if ($self->{mode} eq 'expert') {
|
|
|
|
foreach my $tab (values %{$self->{options_tabs}}) {
|
|
|
|
$tab->load_presets;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
my $message = sprintf "%d presets successfully imported.", $imported;
|
|
|
|
if ($self->{mode} eq 'simple' && $Slic3r::GUI::Settings->{_}{mode} eq 'expert') {
|
|
|
|
Slic3r::GUI::show_info($self, "$message You need to restart Slic3r to make the changes effective.");
|
|
|
|
} else {
|
|
|
|
Slic3r::GUI::show_info($self, $message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-27 19:13:03 +00:00
|
|
|
sub load_config {
|
|
|
|
my $self = shift;
|
|
|
|
my ($config) = @_;
|
|
|
|
|
|
|
|
foreach my $tab (values %{$self->{options_tabs}}) {
|
2013-12-22 00:27:09 +00:00
|
|
|
$tab->set_value($_, $config->$_) for @{$config->get_keys};
|
2012-07-27 19:13:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-26 15:42:29 +00:00
|
|
|
sub config_wizard {
|
|
|
|
my $self = shift;
|
|
|
|
|
2012-06-30 21:00:05 +00:00
|
|
|
return unless $self->check_unsaved_changes;
|
2012-07-27 19:13:03 +00:00
|
|
|
if (my $config = Slic3r::GUI::ConfigWizard->new($self)->run) {
|
2013-04-03 17:26:59 +00:00
|
|
|
if ($self->{mode} eq 'expert') {
|
2013-06-17 17:27:08 +00:00
|
|
|
for my $tab (values %{$self->{options_tabs}}) {
|
|
|
|
$tab->select_default_preset;
|
|
|
|
}
|
2013-04-03 17:26:59 +00:00
|
|
|
}
|
2012-07-27 19:13:03 +00:00
|
|
|
$self->load_config($config);
|
2013-11-11 20:45:58 +00:00
|
|
|
if ($self->{mode} eq 'expert') {
|
|
|
|
for my $tab (values %{$self->{options_tabs}}) {
|
|
|
|
$tab->save_preset('My Settings');
|
|
|
|
}
|
|
|
|
}
|
2012-06-26 15:42:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-23 12:48:58 +00:00
|
|
|
sub combine_stls {
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
# get input files
|
|
|
|
my @input_files = ();
|
|
|
|
my $dir = $Slic3r::GUI::Settings->{recent}{skein_directory} || '';
|
|
|
|
{
|
|
|
|
my $dlg_message = 'Choose one or more files to combine (STL/OBJ)';
|
|
|
|
while (1) {
|
|
|
|
my $dialog = Wx::FileDialog->new($self, "$dlg_message:", $dir, "", MODEL_WILDCARD,
|
|
|
|
wxFD_OPEN | wxFD_MULTIPLE | wxFD_FILE_MUST_EXIST);
|
|
|
|
if ($dialog->ShowModal != wxID_OK) {
|
|
|
|
$dialog->Destroy;
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
push @input_files, $dialog->GetPaths;
|
|
|
|
$dialog->Destroy;
|
|
|
|
$dlg_message .= " or hit Cancel if you have finished";
|
|
|
|
$dir = dirname($input_files[0]);
|
|
|
|
}
|
|
|
|
return if !@input_files;
|
|
|
|
}
|
|
|
|
|
|
|
|
# get output file
|
|
|
|
my $output_file = $input_files[0];
|
|
|
|
{
|
|
|
|
$output_file =~ s/\.(?:stl|obj)$/.amf.xml/i;
|
|
|
|
my $dlg = Wx::FileDialog->new($self, 'Save multi-material AMF file as:', dirname($output_file),
|
|
|
|
basename($output_file), FILE_WILDCARDS->{amf}, wxFD_SAVE);
|
|
|
|
if ($dlg->ShowModal != wxID_OK) {
|
|
|
|
$dlg->Destroy;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$output_file = $dlg->GetPath;
|
|
|
|
}
|
|
|
|
|
2013-12-17 15:12:44 +00:00
|
|
|
my @models = eval { map Slic3r::Model->read_from_file($_), @input_files };
|
|
|
|
Slic3r::GUI::show_error($self, $@) if $@;
|
|
|
|
|
2012-09-23 12:48:58 +00:00
|
|
|
my $new_model = Slic3r::Model->new;
|
|
|
|
my $new_object = $new_model->add_object;
|
|
|
|
for my $m (0 .. $#models) {
|
|
|
|
my $model = $models[$m];
|
2014-01-17 19:16:54 +00:00
|
|
|
|
|
|
|
my $material_name = basename($input_files[$m]);
|
|
|
|
$material_name =~ s/\.(stl|obj)$//i;
|
|
|
|
|
|
|
|
$new_model->set_material($m, { Name => $material_name });
|
2012-09-23 12:48:58 +00:00
|
|
|
$new_object->add_volume(
|
|
|
|
material_id => $m,
|
2013-09-16 07:58:09 +00:00
|
|
|
mesh => $model->objects->[0]->volumes->[0]->mesh,
|
2012-09-23 12:48:58 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Slic3r::Format::AMF->write_file($output_file, $new_model);
|
|
|
|
}
|
|
|
|
|
2012-07-27 19:13:03 +00:00
|
|
|
=head2 config
|
|
|
|
|
|
|
|
This method collects all config values from the tabs and merges them into a single config object.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub config {
|
|
|
|
my $self = shift;
|
|
|
|
|
2012-08-07 16:44:47 +00:00
|
|
|
# retrieve filament presets and build a single config object for them
|
|
|
|
my $filament_config;
|
2013-05-13 16:22:47 +00:00
|
|
|
if (!$self->{plater} || $self->{plater}->filament_presets == 1 || $self->{mode} eq 'simple') {
|
2012-08-08 17:36:34 +00:00
|
|
|
$filament_config = $self->{options_tabs}{filament}->config;
|
|
|
|
} else {
|
|
|
|
# TODO: handle dirty presets.
|
|
|
|
# perhaps plater shouldn't expose dirty presets at all in multi-extruder environments.
|
|
|
|
foreach my $preset_idx ($self->{plater}->filament_presets) {
|
|
|
|
my $preset = $self->{options_tabs}{filament}->get_preset($preset_idx);
|
|
|
|
my $config = $self->{options_tabs}{filament}->get_preset_config($preset);
|
|
|
|
if (!$filament_config) {
|
|
|
|
$filament_config = $config;
|
|
|
|
next;
|
|
|
|
}
|
2014-03-22 19:12:54 +00:00
|
|
|
foreach my $opt_key (@{$config->get_keys}) {
|
2012-08-08 17:36:34 +00:00
|
|
|
next unless ref $filament_config->get($opt_key) eq 'ARRAY';
|
|
|
|
push @{ $filament_config->get($opt_key) }, $config->get($opt_key)->[0];
|
|
|
|
}
|
2012-08-07 16:44:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-03 14:49:20 +00:00
|
|
|
my $config = Slic3r::Config->merge(
|
2012-07-27 19:13:03 +00:00
|
|
|
Slic3r::Config->new_from_defaults,
|
2012-08-07 16:44:47 +00:00
|
|
|
$self->{options_tabs}{print}->config,
|
|
|
|
$self->{options_tabs}{printer}->config,
|
|
|
|
$filament_config,
|
2012-07-27 19:13:03 +00:00
|
|
|
);
|
2013-01-03 14:49:20 +00:00
|
|
|
|
|
|
|
if ($self->{mode} eq 'simple') {
|
|
|
|
# set some sensible defaults
|
|
|
|
$config->set('first_layer_height', $config->nozzle_diameter->[0]);
|
2013-03-08 22:07:14 +00:00
|
|
|
$config->set('avoid_crossing_perimeters', 1);
|
2013-03-08 22:34:57 +00:00
|
|
|
$config->set('infill_every_layers', 10);
|
2013-07-31 18:42:24 +00:00
|
|
|
} else {
|
|
|
|
my $extruders_count = $self->{options_tabs}{printer}{extruders_count};
|
|
|
|
$config->set("${_}_extruder", min($config->get("${_}_extruder"), $extruders_count))
|
|
|
|
for qw(perimeter infill support_material support_material_interface);
|
2013-01-03 14:49:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $config;
|
2012-07-27 19:13:03 +00:00
|
|
|
}
|
|
|
|
|
2012-07-24 13:30:50 +00:00
|
|
|
sub set_value {
|
|
|
|
my $self = shift;
|
|
|
|
my ($opt_key, $value) = @_;
|
|
|
|
|
|
|
|
my $changed = 0;
|
|
|
|
foreach my $tab (values %{$self->{options_tabs}}) {
|
|
|
|
$changed = 1 if $tab->set_value($opt_key, $value);
|
|
|
|
}
|
|
|
|
return $changed;
|
|
|
|
}
|
|
|
|
|
2012-06-30 20:57:30 +00:00
|
|
|
sub check_unsaved_changes {
|
2012-06-23 15:39:20 +00:00
|
|
|
my $self = shift;
|
2012-07-15 15:54:57 +00:00
|
|
|
|
|
|
|
my @dirty = map $_->title, grep $_->is_dirty, values %{$self->{options_tabs}};
|
2012-06-23 15:39:20 +00:00
|
|
|
if (@dirty) {
|
|
|
|
my $titles = join ', ', @dirty;
|
2012-06-30 20:57:30 +00:00
|
|
|
my $confirm = Wx::MessageDialog->new($self, "You have unsaved changes ($titles). Discard changes and continue anyway?",
|
2012-07-17 21:24:21 +00:00
|
|
|
'Unsaved Presets', wxICON_QUESTION | wxYES_NO | wxNO_DEFAULT);
|
|
|
|
return ($confirm->ShowModal == wxID_YES);
|
2012-06-23 15:39:20 +00:00
|
|
|
}
|
2012-07-15 15:54:57 +00:00
|
|
|
|
2012-06-23 15:39:20 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-07-24 10:59:02 +00:00
|
|
|
sub select_tab {
|
|
|
|
my ($self, $tab) = @_;
|
|
|
|
$self->{tabpanel}->ChangeSelection($tab);
|
|
|
|
}
|
|
|
|
|
2011-10-03 09:55:32 +00:00
|
|
|
1;
|