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
|
|
|
|
2014-01-11 14:30:34 +01:00
|
|
|
use List::Util qw(first max);
|
2012-09-28 14:13:06 +02:00
|
|
|
|
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.
|
2013-12-22 00:39:03 +01:00
|
|
|
our $Options = print_config_def();
|
2013-12-21 21:06:45 +01:00
|
|
|
|
2017-11-02 16:21:34 +01:00
|
|
|
# Generate accessors.
|
2013-12-21 21:06:45 +01:00
|
|
|
{
|
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) {
|
2017-11-02 16:21:34 +01:00
|
|
|
*{$opt_key} = sub {
|
|
|
|
#print "Slic3r::Config::accessor $opt_key\n";
|
|
|
|
$_[0]->get($opt_key)
|
|
|
|
};
|
2012-07-27 21:13:03 +02:00
|
|
|
}
|
2011-10-05 18:13:47 +02:00
|
|
|
}
|
2014-06-16 15:18:39 +02:00
|
|
|
|
2015-12-16 12:33:19 +01:00
|
|
|
package Slic3r::Config::Static;
|
2014-10-18 17:41:21 +02:00
|
|
|
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 }
|
2014-01-02 10:44:54 +01:00
|
|
|
|
2011-10-03 11:55:32 +02:00
|
|
|
1;
|