mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-10-31 20:51:12 -06:00
second draft implementation of output_filename_format
This commit is contained in:
parent
342823fdf3
commit
1071b556cb
6 changed files with 72 additions and 31 deletions
|
|
@ -7,6 +7,13 @@ use constant PI => 4 * atan2(1, 1);
|
|||
|
||||
our $Options = {
|
||||
|
||||
# output options
|
||||
'output_filename_format' => {
|
||||
label => 'Output filename format',
|
||||
cli => 'output=s',
|
||||
type => 's',
|
||||
},
|
||||
|
||||
# printer options
|
||||
'nozzle_diameter' => {
|
||||
label => 'Nozzle diameter',
|
||||
|
|
|
|||
|
|
@ -61,6 +61,10 @@ sub new {
|
|||
title => 'Extrusion',
|
||||
options => [qw(extrusion_width_ratio bridge_flow_ratio)],
|
||||
},
|
||||
output => {
|
||||
title => 'Output',
|
||||
options => [qw(output_filename_format)],
|
||||
},
|
||||
);
|
||||
$self->{panels} = \%panels;
|
||||
|
||||
|
|
@ -87,7 +91,7 @@ sub new {
|
|||
$make_tab->([qw(transform accuracy skirt)], [qw(print retract)]),
|
||||
$make_tab->([qw(printer filament)], [qw(print_speed speed)]),
|
||||
$make_tab->([qw(gcode)]),
|
||||
$make_tab->([qw(extrusion)]),
|
||||
$make_tab->([qw(extrusion)], [qw(output)]),
|
||||
);
|
||||
|
||||
$tabpanel->AddPage($tabs[0], "Print Settings");
|
||||
|
|
@ -148,27 +152,8 @@ sub do_slice {
|
|||
my $input_file_basename = basename($input_file);
|
||||
$last_dir = dirname($input_file);
|
||||
|
||||
# select output file
|
||||
my $output_file = $main::opt{output};
|
||||
if ($params{save_as}) {
|
||||
if (!$output_file) {
|
||||
$output_file = $input_file_basename;
|
||||
$output_file =~ s/\.stl$/.gcode/i;
|
||||
}
|
||||
my $dlg = Wx::FileDialog->new($self, 'Save gcode file as:', dirname($output_file),
|
||||
basename($output_file), $gcode_wildcard, wxFD_SAVE);
|
||||
return if $dlg->ShowModal != wxID_OK;
|
||||
$output_file = $dlg->GetPath;
|
||||
}
|
||||
|
||||
# show processbar dialog
|
||||
$process_dialog = Wx::ProgressDialog->new('Slicing...', "Processing $input_file_basename...",
|
||||
100, $self, wxPD_APP_MODAL);
|
||||
$process_dialog->Pulse;
|
||||
|
||||
my $skein = Slic3r::Skein->new(
|
||||
input_file => $input_file,
|
||||
output_file => $output_file,
|
||||
status_cb => sub {
|
||||
my ($percent, $message) = @_;
|
||||
if (&Wx::wxVERSION_STRING =~ / 2\.(8\.|9\.[2-9])/) {
|
||||
|
|
@ -176,6 +161,24 @@ sub do_slice {
|
|||
}
|
||||
},
|
||||
);
|
||||
|
||||
# select output file
|
||||
my $output_file = $main::opt{output_filename};
|
||||
if ($params{save_as}) {
|
||||
if (!$output_file) {
|
||||
$output_file = $skein->get_output_filename($input_file);
|
||||
}
|
||||
my $dlg = Wx::FileDialog->new($self, 'Save gcode file as:', dirname($output_file),
|
||||
basename($output_file), $gcode_wildcard, wxFD_SAVE);
|
||||
return if $dlg->ShowModal != wxID_OK;
|
||||
$skein->output_file($dlg->GetPath);
|
||||
}
|
||||
|
||||
# show processbar dialog
|
||||
$process_dialog = Wx::ProgressDialog->new('Slicing...', "Processing $input_file_basename...",
|
||||
100, $self, wxPD_APP_MODAL);
|
||||
$process_dialog->Pulse;
|
||||
|
||||
{
|
||||
my @warnings = ();
|
||||
local $SIG{__WARN__} = sub { push @warnings, $_[0] };
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ use Time::HiRes qw(gettimeofday tv_interval);
|
|||
use XXX;
|
||||
|
||||
has 'input_file' => (is => 'ro', required => 1);
|
||||
has 'output_file' => (is => 'rw', required => 0);
|
||||
has 'output_file' => (is => 'rw', required => 0);
|
||||
has 'status_cb' => (is => 'rw', required => 0, default => sub { sub {} });
|
||||
has 'processing_time' => (is => 'rw', required => 0);
|
||||
|
||||
|
|
@ -83,12 +83,11 @@ sub go {
|
|||
|
||||
# output everything to a GCODE file
|
||||
$self->status_cb->(90, "Exporting GCODE...");
|
||||
if (!$self->output_file) {
|
||||
my $output_file = $self->input_file;
|
||||
$output_file =~ s/\.stl$/.gcode/i;
|
||||
$self->output_file($output_file);
|
||||
if ($self->output_file) {
|
||||
$print->export_gcode($self->output_file);
|
||||
} else {
|
||||
$print->export_gcode($self->get_output_filename);
|
||||
}
|
||||
$print->export_gcode($self->output_file);
|
||||
|
||||
# output some statistics
|
||||
$self->processing_time(tv_interval($t0));
|
||||
|
|
@ -101,4 +100,20 @@ sub go {
|
|||
$print->total_extrusion_length, $print->total_extrusion_volume;
|
||||
}
|
||||
|
||||
sub get_output_filename {
|
||||
my $self = shift;
|
||||
my $filename = Slic3r::Config->get('output_filename_format');
|
||||
my %opts = %$Slic3r::Config::Options;
|
||||
my $input = $self->input_file;
|
||||
# these pseudo-options are the path and filename, without and with extension, of the input file
|
||||
$filename =~ s/\[input_filename\]/$input/g;
|
||||
$input =~ s/\.stl$//i;
|
||||
$filename =~ s/\[input_filename_base\]/$input/g;
|
||||
# make a list of options
|
||||
my $options = join '|', keys %$Slic3r::Config::Options;
|
||||
# use that list to search and replace option names with option values
|
||||
$filename =~ s/\[($options)\]/Slic3r::Config->get($1)/eg;
|
||||
return $filename;
|
||||
}
|
||||
|
||||
1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue