Files
OrcaSlicer-bambulab/lib/Slic3r/Config.pm
T

132 lines
4.1 KiB
Perl
Raw Normal View History

2016-09-13 11:24:55 +02:00
# Extends C++ class Slic3r::DynamicPrintConfig
# This perl class does not keep any perl class variables,
# all the storage is handled by the underlying C++ code.
2011-10-03 11:55:32 +02:00
package Slic3r::Config;
use strict;
use warnings;
2011-10-09 22:29:13 +02:00
use utf8;
2011-10-03 11:55:32 +02:00
use List::Util qw(first max);
2016-09-13 11:24:55 +02:00
# C++ Slic3r::PrintConfigDef exported as a Perl hash of hashes.
# The C++ counterpart is a constant singleton.
our $Options = print_config_def();
2014-04-05 10:58:03 +02:00
# overwrite the hard-coded readonly value (this information is not available in XS)
$Options->{threads}{readonly} = !$Slic3r::have_threads;
2012-07-27 21:13:03 +02:00
# generate accessors
{
2011-10-05 18:13:47 +02:00
no strict 'refs';
2012-07-27 21:13:03 +02:00
for my $opt_key (keys %$Options) {
2014-01-02 17:24:23 +01:00
*{$opt_key} = sub { $_[0]->get($opt_key) };
2012-07-27 21:13:03 +02:00
}
}
2017-10-17 16:01:18 +02:00
# From command line parameters, used by slic3r.pl
2012-07-27 21:13:03 +02:00
sub new_from_cli {
my $class = shift;
my %args = @_;
2016-09-13 11:24:55 +02:00
# Delete hash keys with undefined value.
2012-07-27 21:13:03 +02:00
delete $args{$_} for grep !defined $args{$_}, keys %args;
2016-09-13 11:24:55 +02:00
# Replace the start_gcode, end_gcode ... hash values
# with the content of the files they reference.
2012-12-23 16:29:08 +01:00
for (qw(start end layer toolchange)) {
2012-07-27 21:13:03 +02:00
my $opt_key = "${_}_gcode";
if ($args{$opt_key}) {
if (-e $args{$opt_key}) {
Slic3r::open(\my $fh, "<", $args{$opt_key})
or die "Failed to open $args{$opt_key}\n";
binmode $fh, ':utf8';
$args{$opt_key} = do { local $/; <$fh> };
close $fh;
}
2012-07-27 21:13:03 +02:00
}
}
2016-09-13 11:24:55 +02:00
my $self = $class->new;
foreach my $opt_key (keys %args) {
my $opt_def = $Options->{$opt_key};
# we use set_deserialize() for bool options since GetOpt::Long doesn't handle
# arrays of boolean values
if ($opt_key =~ /^(?:bed_shape|duplicate_grid|extruder_offset)$/ || $opt_def->{type} eq 'bool') {
$self->set_deserialize($opt_key, $args{$opt_key});
} elsif (my $shortcut = $opt_def->{shortcut}) {
$self->set($_, $args{$opt_key}) for @$shortcut;
} else {
$self->set($opt_key, $args{$opt_key});
}
}
return $self;
2012-07-27 21:13:03 +02:00
}
# CLASS METHODS:
2016-09-13 11:24:55 +02:00
# Write a "Windows" style ini file with categories enclosed in squre brackets.
2017-10-17 16:01:18 +02:00
# Used by config-bundle-to-config.pl and to save slic3r.ini.
2012-06-19 18:11:51 +02:00
sub write_ini {
2011-10-05 18:13:47 +02:00
my $class = shift;
2012-06-19 18:11:51 +02:00
my ($file, $ini) = @_;
2011-10-05 18:13:47 +02:00
Slic3r::open(\my $fh, '>', $file);
binmode $fh, ':utf8';
2012-07-27 14:33:14 +02:00
my $localtime = localtime;
2012-07-27 21:13:03 +02:00
printf $fh "# generated by Slic3r $Slic3r::VERSION on %s\n", "$localtime";
# make sure the _ category is the first one written
foreach my $category (sort { ($a eq '_') ? -1 : ($a cmp $b) } keys %$ini) {
2012-06-19 18:11:51 +02:00
printf $fh "\n[%s]\n", $category if $category ne '_';
foreach my $key (sort keys %{$ini->{$category}}) {
printf $fh "%s = %s\n", $key, $ini->{$category}{$key};
}
}
close $fh;
}
2016-09-13 11:24:55 +02:00
# Parse a "Windows" style ini file with categories enclosed in squre brackets.
# Returns a hash of hashes over strings.
# {category}{name}=value
# Non-categorized entries are stored under a category '_'.
2017-10-17 16:01:18 +02:00
# Used by config-bundle-to-config.pl and to read slic3r.ini.
2012-06-18 22:27:57 +02:00
sub read_ini {
2011-10-05 18:13:47 +02:00
my $class = shift;
my ($file) = @_;
local $/ = "\n";
2014-11-22 21:55:45 +01:00
Slic3r::open(\my $fh, '<', $file)
or die "Unable to open $file: $!\n";
binmode $fh, ':utf8';
2012-06-18 22:27:57 +02:00
my $ini = { _ => {} };
my $category = '_';
while (<$fh>) {
s/\R+$//;
2011-12-04 20:41:17 +01:00
next if /^\s+/;
next if /^$/;
2011-10-05 18:13:47 +02:00
next if /^\s*#/;
if (/^\[(.+?)\]$/) {
2012-06-19 18:11:51 +02:00
$category = $1;
next;
}
/^(\w+) *= *(.*)/ or die "Unreadable configuration file (invalid data at line $.)\n";
2012-06-18 22:27:57 +02:00
$ini->{$category}{$1} = $2;
}
close $fh;
return $ini;
}
2015-12-16 12:33:19 +01:00
package Slic3r::Config::Static;
use parent 'Slic3r::Config';
2015-12-16 12:33:19 +01:00
sub Slic3r::Config::GCode::new { Slic3r::Config::Static::new_GCodeConfig }
sub Slic3r::Config::Print::new { Slic3r::Config::Static::new_PrintConfig }
sub Slic3r::Config::PrintObject::new { Slic3r::Config::Static::new_PrintObjectConfig }
sub Slic3r::Config::PrintRegion::new { Slic3r::Config::Static::new_PrintRegionConfig }
sub Slic3r::Config::Full::new { Slic3r::Config::Static::new_FullPrintConfig }
2014-01-02 10:44:54 +01:00
2011-10-03 11:55:32 +02:00
1;