PrusaSlicer-NonPlainar/lib/Slic3r/GUI/SkeinPanel.pm

227 lines
8.9 KiB
Perl
Raw Normal View History

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);
use Slic3r::Geometry qw(X Y);
use Wx qw(:sizer :progressdialog wxOK wxICON_INFORMATION wxICON_WARNING wxICON_ERROR wxICON_QUESTION
wxOK wxCANCEL wxID_OK wxFD_OPEN wxFD_SAVE wxDEFAULT wxNORMAL);
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_skein_dir;
our $last_config_dir;
our $last_input_file;
our $last_output_file;
our $last_config;
2011-12-09 13:07:50 +00:00
2011-10-03 09:55:32 +00:00
sub new {
my $class = shift;
my ($parent) = @_;
my $self = $class->SUPER::new($parent, -1);
2011-11-13 21:22:34 +00:00
my $tabpanel = Wx::Notebook->new($self, -1, Wx::wxDefaultPosition, Wx::wxDefaultSize, &Wx::wxNB_TOP);
2012-06-19 15:23:10 +00:00
$tabpanel->AddPage($self->{plater} = Slic3r::GUI::Plater->new($tabpanel), "Plater");
$self->{options_tabs} = {
print => Slic3r::GUI::Tab::Print->new ($tabpanel, sync_presets_with => $self->{plater}{preset_choosers}{print}),
filament => Slic3r::GUI::Tab::Filament->new ($tabpanel, sync_presets_with => $self->{plater}{preset_choosers}{filament}),
printer => Slic3r::GUI::Tab::Printer->new ($tabpanel, sync_presets_with => $self->{plater}{preset_choosers}{printer}),
};
$tabpanel->AddPage($self->{options_tabs}{print}, "Print settings");
$tabpanel->AddPage($self->{options_tabs}{filament}, "Filament settings");
$tabpanel->AddPage($self->{options_tabs}{printer}, "Printer settings");
2011-11-13 21:22:34 +00:00
my $buttons_sizer;
2011-10-05 16:13:47 +00:00
{
2011-11-13 21:22:34 +00:00
$buttons_sizer = Wx::BoxSizer->new(wxHORIZONTAL);
2012-04-30 12:56:01 +00:00
my $slice_button = Wx::Button->new($self, -1, "Quick slice…");
$slice_button->SetDefault();
2012-03-03 21:53:12 +00:00
$buttons_sizer->Add($slice_button, 0, wxRIGHT, 20);
EVT_BUTTON($self, $slice_button, sub { $self->do_slice });
2011-10-05 16:13:47 +00:00
my $save_button = Wx::Button->new($self, -1, "Export config...");
2012-05-01 11:27:57 +00:00
$buttons_sizer->Add($save_button, 0, wxRIGHT, 5);
EVT_BUTTON($self, $save_button, sub { $self->save_config });
2011-10-05 16:13:47 +00:00
2012-03-03 21:53:12 +00:00
my $load_button = Wx::Button->new($self, -1, "Load config...");
2012-05-01 11:27:57 +00:00
$buttons_sizer->Add($load_button, 0, wxRIGHT, 5);
EVT_BUTTON($self, $load_button, sub { $self->load_config });
2011-10-05 16:13:47 +00:00
my $text = Wx::StaticText->new($self, -1, "Remember to check for updates at http://slic3r.org/\nVersion: $Slic3r::VERSION", Wx::wxDefaultPosition, Wx::wxDefaultSize, wxALIGN_RIGHT);
2011-10-05 16:13:47 +00:00
my $font = Wx::Font->new(10, wxDEFAULT, wxNORMAL, wxNORMAL);
$text->SetFont($font);
$buttons_sizer->Add($text, 1, wxEXPAND | wxALIGN_RIGHT);
2011-10-03 09:55:32 +00:00
}
2011-10-05 16:13:47 +00:00
my $sizer = Wx::BoxSizer->new(wxVERTICAL);
$sizer->Add($buttons_sizer, 0, wxEXPAND | wxALL, 10);
2012-06-18 09:26:21 +00:00
$sizer->Add($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;
}
2012-05-20 09:40:37 +00:00
our $model_wildcard = "STL files (*.stl)|*.stl;*.STL|OBJ files (*.obj)|*.obj;*.OBJ|AMF files (*.amf)|*.amf;*.AMF;*.xml;*.XML";
2012-04-30 12:56:01 +00:00
our $ini_wildcard = "INI files *.ini|*.ini;*.INI";
our $gcode_wildcard = "G-code files *.gcode|*.gcode;*.GCODE";
our $svg_wildcard = "SVG files *.svg|*.svg;*.SVG";
2011-10-03 09:55:32 +00:00
sub do_slice {
my $self = shift;
my %params = @_;
2011-10-03 09:55:32 +00:00
my $process_dialog;
2011-10-03 09:55:32 +00:00
eval {
# validate configuration
Slic3r::Config->validate;
# confirm slicing of more than one copies
my $copies = $Slic3r::duplicate_grid->[X] * $Slic3r::duplicate_grid->[Y];
$copies = $Slic3r::duplicate if $Slic3r::duplicate > 1;
if ($copies > 1) {
my $confirmation = Wx::MessageDialog->new($self, "Are you sure you want to slice $copies copies?",
'Confirm', wxICON_QUESTION | wxOK | wxCANCEL);
return unless $confirmation->ShowModal == wxID_OK;
}
2011-10-03 09:55:32 +00:00
# select input file
my $dir = $last_skein_dir || $last_config_dir || "";
my $input_file;
if (!$params{reslice}) {
my $dialog = Wx::FileDialog->new($self, 'Choose a file to slice (STL/OBJ/AMF):', $dir, "", $model_wildcard, wxFD_OPEN | &Wx::wxFD_FILE_MUST_EXIST);
if ($dialog->ShowModal != wxID_OK) {
$dialog->Destroy;
return;
}
$input_file = $dialog->GetPaths;
$dialog->Destroy;
$last_input_file = $input_file;
} else {
if (!defined $last_input_file) {
Wx::MessageDialog->new($self, "No previously sliced file",
'Confirm', wxICON_ERROR | wxOK)->ShowModal();
return;
}
if (! -e $last_input_file) {
Wx::MessageDialog->new($self, "Cannot find previously sliced file!",
'Confirm', wxICON_ERROR | wxOK)->ShowModal();
return;
}
$input_file = $last_input_file;
}
2011-10-03 09:55:32 +00:00
my $input_file_basename = basename($input_file);
$last_skein_dir = dirname($input_file);
2011-10-03 09:55:32 +00:00
2012-04-30 12:56:01 +00:00
my $print = Slic3r::Print->new;
$print->add_object_from_file($input_file);
$print->validate;
# select output file
2012-04-30 12:56:01 +00:00
my $output_file = $main::opt{output};
if ($params{reslice}) {
2012-04-30 12:56:01 +00:00
$output_file = $last_output_file if defined $last_output_file;
} elsif ($params{save_as}) {
2012-04-30 12:56:01 +00:00
$output_file = $print->expanded_output_filepath($output_file);
2012-03-26 15:57:54 +00:00
$output_file =~ s/\.gcode$/.svg/i if $params{export_svg};
my $dlg = Wx::FileDialog->new($self, 'Save ' . ($params{export_svg} ? 'SVG' : 'G-code') . ' file as:', dirname($output_file),
basename($output_file), $params{export_svg} ? $svg_wildcard : $gcode_wildcard, wxFD_SAVE);
if ($dlg->ShowModal != wxID_OK) {
$dlg->Destroy;
return;
}
2012-04-30 12:56:01 +00:00
$output_file = $last_output_file = $dlg->GetPath;
$dlg->Destroy;
}
2011-10-03 09:55:32 +00:00
# show processbar dialog
$process_dialog = Wx::ProgressDialog->new('Slicing...', "Processing $input_file_basename...",
100, $self, 0);
2011-10-03 09:55:32 +00:00
$process_dialog->Pulse;
{
my @warnings = ();
local $SIG{__WARN__} = sub { push @warnings, $_[0] };
my %export_params = (
2012-04-30 12:56:01 +00:00
output_file => $output_file,
status_cb => sub {
my ($percent, $message) = @_;
if (&Wx::wxVERSION_STRING =~ / 2\.(8\.|9\.[2-9])/) {
$process_dialog->Update($percent, "$message...");
}
},
);
2012-03-26 15:57:54 +00:00
if ($params{export_svg}) {
$print->export_svg(%export_params);
2012-03-26 15:57:54 +00:00
} else {
$print->export_gcode(%export_params);
2012-03-26 15:57:54 +00:00
}
2012-04-30 12:56:01 +00:00
Slic3r::GUI::warning_catcher($self)->($_) for @warnings;
}
2011-10-03 09:55:32 +00:00
$process_dialog->Destroy;
undef $process_dialog;
2011-10-03 09:55:32 +00:00
2012-03-26 15:57:54 +00:00
my $message = "$input_file_basename was successfully sliced";
$message .= sprintf " in %d minutes and %.3f seconds",
2012-04-30 12:56:01 +00:00
int($print->processing_time/60),
$print->processing_time - int($print->processing_time/60)*60
if $print->processing_time;
2012-03-26 15:57:54 +00:00
$message .= ".";
Slic3r::GUI::notify($message);
Wx::MessageDialog->new($self, $message, 'Done!',
wxOK | wxICON_INFORMATION)->ShowModal;
2011-10-03 09:55:32 +00:00
};
2012-04-30 12:56:01 +00:00
Slic3r::GUI::catch_error($self, sub { $process_dialog->Destroy if $process_dialog });
2011-10-05 16:13:47 +00:00
}
sub save_config {
my $self = shift;
my $process_dialog;
eval {
# validate configuration
Slic3r::Config->validate;
};
2012-04-30 12:56:01 +00:00
Slic3r::GUI::catch_error($self, sub { $process_dialog->Destroy if $process_dialog }) and return;
my $dir = $last_config ? dirname($last_config) : $last_config_dir || $last_skein_dir || "";
my $filename = $last_config ? basename($last_config) : "config.ini";
my $dlg = Wx::FileDialog->new($self, 'Save configuration as:', $dir, $filename,
$ini_wildcard, wxFD_SAVE | &Wx::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;
$last_config_dir = dirname($file);
$last_config = $file;
2011-12-09 13:07:50 +00:00
Slic3r::Config->save($file);
2011-10-05 16:13:47 +00:00
}
$dlg->Destroy;
2011-10-05 16:13:47 +00:00
}
sub load_config {
my $self = shift;
2011-10-03 09:55:32 +00:00
my $dir = $last_config ? dirname($last_config) : $last_config_dir || $last_skein_dir || "";
my $dlg = Wx::FileDialog->new($self, 'Select configuration to load:', $dir, "config.ini",
$ini_wildcard, wxFD_OPEN | &Wx::wxFD_FILE_MUST_EXIST);
2011-10-05 16:13:47 +00:00
if ($dlg->ShowModal == wxID_OK) {
my ($file) = $dlg->GetPaths;
$last_config_dir = dirname($file);
$last_config = $file;
2011-10-05 16:13:47 +00:00
eval {
2012-04-30 12:56:01 +00:00
local $SIG{__WARN__} = Slic3r::GUI::warning_catcher($self);
2011-10-05 16:13:47 +00:00
Slic3r::Config->load($file);
};
Slic3r::GUI::catch_error($self);
2012-06-18 20:27:57 +00:00
$_->() for values %Slic3r::GUI::OptionsGroup::reload_callbacks;
$_->external_config_loaded($file) for values %{$self->{options_tabs}};
2011-10-05 16:13:47 +00:00
}
$dlg->Destroy;
2011-10-05 16:13:47 +00:00
}
2011-10-03 09:55:32 +00:00
1;