2016-09-13 11:30:00 +00:00
// Configuration store of Slic3r.
//
// The configuration store is either static or dynamic.
// DynamicPrintConfig is used mainly at the user interface. while the StaticPrintConfig is used
// during the slicing and the g-code generation.
//
// The classes derived from StaticPrintConfig form a following hierarchy.
//
// FullPrintConfig
// PrintObjectConfig
// PrintRegionConfig
// PrintConfig
// GCodeConfig
// HostConfig
//
2013-12-21 15:15:41 +00:00
# ifndef slic3r_PrintConfig_hpp_
# define slic3r_PrintConfig_hpp_
2015-12-07 23:39:54 +00:00
# include "libslic3r.h"
2013-12-21 15:15:41 +00:00
# include "Config.hpp"
2019-01-29 17:07:45 +00:00
// #define HAS_PRESSURE_EQUALIZER
2013-12-21 15:15:41 +00:00
namespace Slic3r {
2019-08-29 11:17:10 +00:00
enum GCodeFlavor : unsigned char {
2018-11-19 12:13:05 +00:00
gcfRepRap , gcfRepetier , gcfTeacup , gcfMakerWare , gcfMarlin , gcfSailfish , gcfMach3 , gcfMachinekit ,
2018-01-06 17:49:28 +00:00
gcfSmoothie , gcfNoExtrusion ,
2013-12-21 15:15:41 +00:00
} ;
2018-07-08 12:32:48 +00:00
enum PrintHostType {
2019-12-28 17:41:48 +00:00
htOctoPrint , htDuet , htFlashAir , htAstroBox
2018-07-08 12:32:48 +00:00
} ;
2013-12-21 23:39:03 +00:00
enum InfillPattern {
2016-11-09 14:39:12 +00:00
ipRectilinear , ipGrid , ipTriangles , ipStars , ipCubic , ipLine , ipConcentric , ipHoneycomb , ip3DHoneycomb ,
2019-09-04 14:11:16 +00:00
ipGyroid , ipHilbertCurve , ipArchimedeanChords , ipOctagramSpiral , ipCount ,
2013-12-21 23:39:03 +00:00
} ;
2014-01-05 15:51:16 +00:00
enum SupportMaterialPattern {
2018-03-14 19:08:34 +00:00
smpRectilinear , smpRectilinearGrid , smpHoneycomb ,
2014-01-05 15:51:16 +00:00
} ;
2014-05-24 20:10:28 +00:00
enum SeamPosition {
2017-02-07 17:46:02 +00:00
spRandom , spNearest , spAligned , spRear
2014-05-22 17:34:49 +00:00
} ;
2019-08-02 14:15:27 +00:00
enum SLAMaterial {
slamTough ,
slamFlex ,
slamCasting ,
slamDental ,
slamHeatResistant ,
} ;
2018-12-13 11:42:45 +00:00
enum SLADisplayOrientation {
sladoLandscape ,
sladoPortrait
} ;
2019-01-09 11:21:43 +00:00
enum SLAPillarConnectionMode {
slapcmZigZag ,
slapcmCross ,
slapcmDynamic
} ;
2018-07-31 13:09:57 +00:00
template < > inline const t_config_enum_values & ConfigOptionEnum < PrinterTechnology > : : get_enum_values ( ) {
static t_config_enum_values keys_map ;
if ( keys_map . empty ( ) ) {
keys_map [ " FFF " ] = ptFFF ;
keys_map [ " SLA " ] = ptSLA ;
}
return keys_map ;
}
template < > inline const t_config_enum_values & ConfigOptionEnum < GCodeFlavor > : : get_enum_values ( ) {
2017-10-17 14:01:18 +00:00
static t_config_enum_values keys_map ;
if ( keys_map . empty ( ) ) {
keys_map [ " reprap " ] = gcfRepRap ;
keys_map [ " repetier " ] = gcfRepetier ;
keys_map [ " teacup " ] = gcfTeacup ;
keys_map [ " makerware " ] = gcfMakerWare ;
2018-01-06 17:49:28 +00:00
keys_map [ " marlin " ] = gcfMarlin ;
2017-10-17 14:01:18 +00:00
keys_map [ " sailfish " ] = gcfSailfish ;
keys_map [ " smoothie " ] = gcfSmoothie ;
keys_map [ " mach3 " ] = gcfMach3 ;
keys_map [ " machinekit " ] = gcfMachinekit ;
keys_map [ " no-extrusion " ] = gcfNoExtrusion ;
}
2013-12-21 15:15:41 +00:00
return keys_map ;
}
2018-08-24 10:54:21 +00:00
template < > inline const t_config_enum_values & ConfigOptionEnum < PrintHostType > : : get_enum_values ( ) {
2018-07-08 12:32:48 +00:00
static t_config_enum_values keys_map ;
if ( keys_map . empty ( ) ) {
keys_map [ " octoprint " ] = htOctoPrint ;
keys_map [ " duet " ] = htDuet ;
2019-05-07 17:51:14 +00:00
keys_map [ " flashair " ] = htFlashAir ;
2019-12-28 17:41:48 +00:00
keys_map [ " astrobox " ] = htAstroBox ;
2018-07-08 12:32:48 +00:00
}
return keys_map ;
}
2018-08-24 10:54:21 +00:00
template < > inline const t_config_enum_values & ConfigOptionEnum < InfillPattern > : : get_enum_values ( ) {
2017-10-17 14:01:18 +00:00
static t_config_enum_values keys_map ;
if ( keys_map . empty ( ) ) {
keys_map [ " rectilinear " ] = ipRectilinear ;
keys_map [ " grid " ] = ipGrid ;
keys_map [ " triangles " ] = ipTriangles ;
keys_map [ " stars " ] = ipStars ;
keys_map [ " cubic " ] = ipCubic ;
keys_map [ " line " ] = ipLine ;
keys_map [ " concentric " ] = ipConcentric ;
keys_map [ " honeycomb " ] = ipHoneycomb ;
keys_map [ " 3dhoneycomb " ] = ip3DHoneycomb ;
2018-02-22 08:56:05 +00:00
keys_map [ " gyroid " ] = ipGyroid ;
2017-10-17 14:01:18 +00:00
keys_map [ " hilbertcurve " ] = ipHilbertCurve ;
keys_map [ " archimedeanchords " ] = ipArchimedeanChords ;
keys_map [ " octagramspiral " ] = ipOctagramSpiral ;
}
2013-12-21 23:39:03 +00:00
return keys_map ;
}
2018-07-31 13:09:57 +00:00
template < > inline const t_config_enum_values & ConfigOptionEnum < SupportMaterialPattern > : : get_enum_values ( ) {
2017-10-17 14:01:18 +00:00
static t_config_enum_values keys_map ;
if ( keys_map . empty ( ) ) {
keys_map [ " rectilinear " ] = smpRectilinear ;
keys_map [ " rectilinear-grid " ] = smpRectilinearGrid ;
keys_map [ " honeycomb " ] = smpHoneycomb ;
}
2014-01-05 15:51:16 +00:00
return keys_map ;
}
2018-07-31 13:09:57 +00:00
template < > inline const t_config_enum_values & ConfigOptionEnum < SeamPosition > : : get_enum_values ( ) {
2017-10-17 14:01:18 +00:00
static t_config_enum_values keys_map ;
if ( keys_map . empty ( ) ) {
keys_map [ " random " ] = spRandom ;
keys_map [ " nearest " ] = spNearest ;
keys_map [ " aligned " ] = spAligned ;
keys_map [ " rear " ] = spRear ;
}
2014-05-22 17:34:49 +00:00
return keys_map ;
}
2018-12-13 11:42:45 +00:00
template < > inline const t_config_enum_values & ConfigOptionEnum < SLADisplayOrientation > : : get_enum_values ( ) {
static const t_config_enum_values keys_map = {
2018-12-14 16:19:17 +00:00
{ " landscape " , sladoLandscape } ,
{ " portrait " , sladoPortrait }
2018-12-13 11:42:45 +00:00
} ;
return keys_map ;
}
2019-01-09 11:21:43 +00:00
template < > inline const t_config_enum_values & ConfigOptionEnum < SLAPillarConnectionMode > : : get_enum_values ( ) {
static const t_config_enum_values keys_map = {
{ " zigzag " , slapcmZigZag } ,
{ " cross " , slapcmCross } ,
{ " dynamic " , slapcmDynamic }
} ;
return keys_map ;
}
2016-09-13 11:30:00 +00:00
// Defines each and every confiuration option of Slic3r, including the properties of the GUI dialogs.
// Does not store the actual values, but defines default values.
2015-12-07 18:39:49 +00:00
class PrintConfigDef : public ConfigDef
2013-12-21 15:15:41 +00:00
{
2017-10-17 14:01:18 +00:00
public :
2015-12-07 18:39:49 +00:00
PrintConfigDef ( ) ;
2017-10-17 14:01:18 +00:00
static void handle_legacy ( t_config_option_key & opt_key , std : : string & value ) ;
2018-07-31 13:09:57 +00:00
2019-10-15 14:31:20 +00:00
// Array options growing with the number of extruders
const std : : vector < std : : string > & extruder_option_keys ( ) const { return m_extruder_option_keys ; }
2019-07-25 12:39:19 +00:00
// Options defining the extruder retract properties. These keys are sorted lexicographically.
// The extruder retract keys could be overidden by the same values defined at the Filament level
// (then the key is further prefixed with the "filament_" prefix).
const std : : vector < std : : string > & extruder_retract_keys ( ) const { return m_extruder_retract_keys ; }
2018-07-31 13:09:57 +00:00
private :
void init_common_params ( ) ;
void init_fff_params ( ) ;
2019-10-15 14:31:20 +00:00
void init_extruder_option_keys ( ) ;
2018-07-31 13:09:57 +00:00
void init_sla_params ( ) ;
2019-07-25 12:39:19 +00:00
2019-10-15 14:31:20 +00:00
std : : vector < std : : string > m_extruder_option_keys ;
2019-07-25 12:39:19 +00:00
std : : vector < std : : string > m_extruder_retract_keys ;
2013-12-31 14:52:37 +00:00
} ;
2016-09-13 11:30:00 +00:00
// The one and only global definition of SLic3r configuration options.
// This definition is constant.
2018-09-20 14:48:13 +00:00
extern const PrintConfigDef print_config_def ;
2015-12-07 18:39:49 +00:00
2019-10-16 09:16:50 +00:00
class StaticPrintConfig ;
2018-11-19 12:13:05 +00:00
// Slic3r dynamic configuration, used to override the configuration
2016-09-13 11:30:00 +00:00
// per object, per modification volume or per printing material.
// The dynamic configuration is also used to store user modifications of the print global parameters,
// so the modified configuration values may be diffed against the active configuration
// to invalidate the proper slicing resp. g-code generation processing steps.
// This object is mapped to Perl as Slic3r::Config.
2017-10-17 14:01:18 +00:00
class DynamicPrintConfig : public DynamicConfig
2015-12-07 18:39:49 +00:00
{
2017-10-17 14:01:18 +00:00
public :
DynamicPrintConfig ( ) { }
2019-10-16 09:16:50 +00:00
DynamicPrintConfig ( const DynamicPrintConfig & rhs ) : DynamicConfig ( rhs ) { }
explicit DynamicPrintConfig ( const StaticPrintConfig & rhs ) ;
explicit DynamicPrintConfig ( const ConfigBase & rhs ) : DynamicConfig ( rhs ) { }
2017-10-17 14:01:18 +00:00
2019-10-16 09:16:50 +00:00
static DynamicPrintConfig full_print_config ( ) ;
2017-10-27 16:52:35 +00:00
static DynamicPrintConfig * new_from_defaults_keys ( const std : : vector < std : : string > & keys ) ;
2017-10-17 14:01:18 +00:00
// Overrides ConfigBase::def(). Static configuration definition. Any value stored into this ConfigBase shall have its definition here.
const ConfigDef * def ( ) const override { return & print_config_def ; }
void normalize ( ) ;
2019-10-15 14:31:20 +00:00
void set_num_extruders ( unsigned int num_extruders ) ;
2017-10-17 14:01:18 +00:00
// Validate the PrintConfig. Returns an empty string on success, otherwise an error message is returned.
std : : string validate ( ) ;
2018-04-13 11:43:53 +00:00
// Verify whether the opt_key has not been obsoleted or renamed.
// Both opt_key and value may be modified by handle_legacy().
// If the opt_key is no more valid in this version of Slic3r, opt_key is cleared by handle_legacy().
// handle_legacy() is called internally by set_deserialize().
void handle_legacy ( t_config_option_key & opt_key , std : : string & value ) const override
{ PrintConfigDef : : handle_legacy ( opt_key , value ) ; }
2014-03-25 23:08:15 +00:00
} ;
2017-05-31 10:55:59 +00:00
template < typename CONFIG >
void normalize_and_apply_config ( CONFIG & dst , const DynamicPrintConfig & src )
{
2017-10-17 14:01:18 +00:00
DynamicPrintConfig src_normalized ( src ) ;
2017-05-31 10:55:59 +00:00
src_normalized . normalize ( ) ;
dst . apply ( src_normalized , true ) ;
}
2016-09-13 11:30:00 +00:00
2017-10-17 14:01:18 +00:00
class StaticPrintConfig : public StaticConfig
2014-03-25 23:08:15 +00:00
{
2017-10-17 14:01:18 +00:00
public :
StaticPrintConfig ( ) { }
// Overrides ConfigBase::def(). Static configuration definition. Any value stored into this ConfigBase shall have its definition here.
const ConfigDef * def ( ) const override { return & print_config_def ; }
2019-10-16 09:16:50 +00:00
// Reference to the cached list of keys.
virtual const t_config_option_keys & keys_ref ( ) const = 0 ;
2017-10-17 14:01:18 +00:00
protected :
// Verify whether the opt_key has not been obsoleted or renamed.
// Both opt_key and value may be modified by handle_legacy().
// If the opt_key is no more valid in this version of Slic3r, opt_key is cleared by handle_legacy().
// handle_legacy() is called internally by set_deserialize().
void handle_legacy ( t_config_option_key & opt_key , std : : string & value ) const override
{ PrintConfigDef : : handle_legacy ( opt_key , value ) ; }
// Internal class for keeping a dynamic map to static options.
class StaticCacheBase
{
public :
// To be called during the StaticCache setup.
// Add one ConfigOption into m_map_name_to_offset.
template < typename T >
void opt_add ( const std : : string & name , const char * base_ptr , const T & opt )
{
assert ( m_map_name_to_offset . find ( name ) = = m_map_name_to_offset . end ( ) ) ;
m_map_name_to_offset [ name ] = ( const char * ) & opt - base_ptr ;
}
protected :
std : : map < std : : string , ptrdiff_t > m_map_name_to_offset ;
} ;
// Parametrized by the type of the topmost class owning the options.
template < typename T >
class StaticCache : public StaticCacheBase
{
2014-03-25 23:08:15 +00:00
public :
2017-10-17 14:01:18 +00:00
// Calling the constructor of m_defaults with 0 forces m_defaults to not run the initialization.
StaticCache ( ) : m_defaults ( nullptr ) { }
~ StaticCache ( ) { delete m_defaults ; m_defaults = nullptr ; }
bool initialized ( ) const { return ! m_keys . empty ( ) ; }
ConfigOption * optptr ( const std : : string & name , T * owner ) const
{
const auto it = m_map_name_to_offset . find ( name ) ;
return ( it = = m_map_name_to_offset . end ( ) ) ? nullptr : reinterpret_cast < ConfigOption * > ( ( char * ) owner + it - > second ) ;
}
const ConfigOption * optptr ( const std : : string & name , const T * owner ) const
{
const auto it = m_map_name_to_offset . find ( name ) ;
return ( it = = m_map_name_to_offset . end ( ) ) ? nullptr : reinterpret_cast < const ConfigOption * > ( ( const char * ) owner + it - > second ) ;
}
const std : : vector < std : : string > & keys ( ) const { return m_keys ; }
const T & defaults ( ) const { return * m_defaults ; }
// To be called during the StaticCache setup.
// Collect option keys from m_map_name_to_offset,
// assign default values to m_defaults.
void finalize ( T * defaults , const ConfigDef * defs )
{
assert ( defs ! = nullptr ) ;
m_defaults = defaults ;
m_keys . clear ( ) ;
m_keys . reserve ( m_map_name_to_offset . size ( ) ) ;
2018-11-19 12:13:05 +00:00
for ( const auto & kvp : defs - > options ) {
// Find the option given the option name kvp.first by an offset from (char*)m_defaults.
ConfigOption * opt = this - > optptr ( kvp . first , m_defaults ) ;
if ( opt = = nullptr )
// This option is not defined by the ConfigBase of type T.
continue ;
2017-10-17 14:01:18 +00:00
m_keys . emplace_back ( kvp . first ) ;
const ConfigOptionDef * def = defs - > get ( kvp . first ) ;
assert ( def ! = nullptr ) ;
2019-05-03 16:01:39 +00:00
if ( def - > default_value )
opt - > set ( def - > default_value . get ( ) ) ;
2017-10-17 14:01:18 +00:00
}
}
private :
T * m_defaults ;
std : : vector < std : : string > m_keys ;
} ;
2014-03-25 23:08:15 +00:00
} ;
2017-10-17 14:01:18 +00:00
# define STATIC_PRINT_CONFIG_CACHE_BASE(CLASS_NAME) \
public : \
/* Overrides ConfigBase::optptr(). Find ando/or create a ConfigOption instance for a given name. */ \
2020-02-04 13:43:58 +00:00
const ConfigOption * optptr ( const t_config_option_key & opt_key ) const override \
{ return s_cache_ # # CLASS_NAME . optptr ( opt_key , this ) ; } \
/* Overrides ConfigBase::optptr(). Find ando/or create a ConfigOption instance for a given name. */ \
2017-10-17 14:01:18 +00:00
ConfigOption * optptr ( const t_config_option_key & opt_key , bool create = false ) override \
2017-10-17 15:37:03 +00:00
{ return s_cache_ # # CLASS_NAME . optptr ( opt_key , this ) ; } \
2017-10-17 14:01:18 +00:00
/* Overrides ConfigBase::keys(). Collect names of all configuration values maintained by this configuration store. */ \
2017-10-17 15:37:03 +00:00
t_config_option_keys keys ( ) const override { return s_cache_ # # CLASS_NAME . keys ( ) ; } \
2019-10-16 09:16:50 +00:00
const t_config_option_keys & keys_ref ( ) const override { return s_cache_ # # CLASS_NAME . keys ( ) ; } \
2017-10-17 15:37:03 +00:00
static const CLASS_NAME & defaults ( ) { initialize_cache ( ) ; return s_cache_ # # CLASS_NAME . defaults ( ) ; } \
private : \
2017-10-17 14:01:18 +00:00
static void initialize_cache ( ) \
{ \
2017-10-17 15:37:03 +00:00
if ( ! s_cache_ # # CLASS_NAME . initialized ( ) ) { \
2017-10-17 14:01:18 +00:00
CLASS_NAME * inst = new CLASS_NAME ( 1 ) ; \
2017-10-17 15:37:03 +00:00
inst - > initialize ( s_cache_ # # CLASS_NAME , ( const char * ) inst ) ; \
s_cache_ # # CLASS_NAME . finalize ( inst , inst - > def ( ) ) ; \
2017-10-17 14:01:18 +00:00
} \
} \
/* Cache object holding a key/option map, a list of option keys and a copy of this static config initialized with the defaults. */ \
2017-10-17 15:48:04 +00:00
static StaticPrintConfig : : StaticCache < CLASS_NAME > s_cache_ # # CLASS_NAME ;
2017-10-17 14:01:18 +00:00
# define STATIC_PRINT_CONFIG_CACHE(CLASS_NAME) \
STATIC_PRINT_CONFIG_CACHE_BASE ( CLASS_NAME ) \
public : \
/* Public default constructor will initialize the key/option cache and the default object copy if needed. */ \
2017-10-17 15:37:03 +00:00
CLASS_NAME ( ) { initialize_cache ( ) ; * this = s_cache_ # # CLASS_NAME . defaults ( ) ; } \
2017-10-17 14:01:18 +00:00
protected : \
/* Protected constructor to be called when compounded. */ \
CLASS_NAME ( int ) { }
# define STATIC_PRINT_CONFIG_CACHE_DERIVED(CLASS_NAME) \
STATIC_PRINT_CONFIG_CACHE_BASE ( CLASS_NAME ) \
public : \
/* Overrides ConfigBase::def(). Static configuration definition. Any value stored into this ConfigBase shall have its definition here. */ \
const ConfigDef * def ( ) const override { return & print_config_def ; } \
/* Handle legacy and obsoleted config keys */ \
void handle_legacy ( t_config_option_key & opt_key , std : : string & value ) const override \
{ PrintConfigDef : : handle_legacy ( opt_key , value ) ; }
# define OPT_PTR(KEY) cache.opt_add(#KEY, base_ptr, this->KEY)
2016-09-13 11:30:00 +00:00
// This object is mapped to Perl as Slic3r::Config::PrintObject.
2017-10-17 14:01:18 +00:00
class PrintObjectConfig : public StaticPrintConfig
2013-12-31 14:52:37 +00:00
{
2017-10-17 14:01:18 +00:00
STATIC_PRINT_CONFIG_CACHE ( PrintObjectConfig )
2017-05-31 15:02:23 +00:00
public :
2017-02-14 11:36:04 +00:00
ConfigOptionBool clip_multipart_objects ;
2014-04-26 15:19:50 +00:00
ConfigOptionBool dont_support_bridges ;
2017-06-26 14:28:10 +00:00
ConfigOptionFloat elefant_foot_compensation ;
2013-12-31 14:52:37 +00:00
ConfigOptionFloatOrPercent extrusion_width ;
ConfigOptionFloatOrPercent first_layer_height ;
2014-01-02 16:24:23 +00:00
ConfigOptionBool infill_only_where_needed ;
2018-09-17 13:12:13 +00:00
// Force the generation of solid shells between adjacent materials/volumes.
2014-03-25 00:11:28 +00:00
ConfigOptionBool interface_shells ;
2013-12-31 14:52:37 +00:00
ConfigOptionFloat layer_height ;
ConfigOptionInt raft_layers ;
2014-05-24 20:10:28 +00:00
ConfigOptionEnum < SeamPosition > seam_position ;
2016-09-13 11:30:00 +00:00
// ConfigOptionFloat seam_preferred_direction;
// ConfigOptionFloat seam_preferred_direction_jitter;
2019-03-01 16:53:02 +00:00
ConfigOptionFloat slice_closing_radius ;
2013-12-31 14:52:37 +00:00
ConfigOptionBool support_material ;
2018-09-17 13:12:13 +00:00
// Automatic supports (generated based on support_material_threshold).
ConfigOptionBool support_material_auto ;
// Direction of the support pattern (in XY plane).
2017-07-20 11:38:10 +00:00
ConfigOptionFloat support_material_angle ;
2016-10-04 11:54:10 +00:00
ConfigOptionBool support_material_buildplate_only ;
2015-01-19 08:52:24 +00:00
ConfigOptionFloat support_material_contact_distance ;
2013-12-31 14:52:37 +00:00
ConfigOptionInt support_material_enforce_layers ;
ConfigOptionInt support_material_extruder ;
ConfigOptionFloatOrPercent support_material_extrusion_width ;
2016-11-30 16:33:55 +00:00
ConfigOptionBool support_material_interface_contact_loops ;
2013-12-31 14:52:37 +00:00
ConfigOptionInt support_material_interface_extruder ;
ConfigOptionInt support_material_interface_layers ;
2018-09-17 13:12:13 +00:00
// Spacing between interface lines (the hatching distance). Set zero to get a solid interface.
2013-12-31 14:52:37 +00:00
ConfigOptionFloat support_material_interface_spacing ;
2014-05-21 13:21:20 +00:00
ConfigOptionFloatOrPercent support_material_interface_speed ;
2014-01-05 15:51:16 +00:00
ConfigOptionEnum < SupportMaterialPattern > support_material_pattern ;
2018-09-17 13:12:13 +00:00
// Spacing between support material lines (the hatching distance).
2013-12-31 14:52:37 +00:00
ConfigOptionFloat support_material_spacing ;
ConfigOptionFloat support_material_speed ;
2016-11-30 15:04:15 +00:00
ConfigOptionBool support_material_synchronize_layers ;
2018-09-17 13:12:13 +00:00
// Overhang angle threshold.
2013-12-31 14:52:37 +00:00
ConfigOptionInt support_material_threshold ;
2016-10-04 12:38:13 +00:00
ConfigOptionBool support_material_with_sheath ;
2017-01-05 08:12:24 +00:00
ConfigOptionFloatOrPercent support_material_xy_spacing ;
2014-06-10 11:28:57 +00:00
ConfigOptionFloat xy_size_compensation ;
2018-06-06 16:24:42 +00:00
ConfigOptionBool wipe_into_objects ;
2017-10-17 14:01:18 +00:00
protected :
void initialize ( StaticCacheBase & cache , const char * base_ptr )
{
2017-02-14 11:36:04 +00:00
OPT_PTR ( clip_multipart_objects ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( dont_support_bridges ) ;
2017-06-26 14:28:10 +00:00
OPT_PTR ( elefant_foot_compensation ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( extrusion_width ) ;
OPT_PTR ( first_layer_height ) ;
OPT_PTR ( infill_only_where_needed ) ;
OPT_PTR ( interface_shells ) ;
OPT_PTR ( layer_height ) ;
OPT_PTR ( raft_layers ) ;
OPT_PTR ( seam_position ) ;
2019-03-01 16:53:02 +00:00
OPT_PTR ( slice_closing_radius ) ;
2016-09-13 11:30:00 +00:00
// OPT_PTR(seam_preferred_direction);
// OPT_PTR(seam_preferred_direction_jitter);
2015-07-02 12:35:21 +00:00
OPT_PTR ( support_material ) ;
2018-09-17 13:12:13 +00:00
OPT_PTR ( support_material_auto ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( support_material_angle ) ;
2016-10-04 11:54:10 +00:00
OPT_PTR ( support_material_buildplate_only ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( support_material_contact_distance ) ;
OPT_PTR ( support_material_enforce_layers ) ;
2016-11-30 16:33:55 +00:00
OPT_PTR ( support_material_interface_contact_loops ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( support_material_extruder ) ;
OPT_PTR ( support_material_extrusion_width ) ;
OPT_PTR ( support_material_interface_extruder ) ;
OPT_PTR ( support_material_interface_layers ) ;
OPT_PTR ( support_material_interface_spacing ) ;
OPT_PTR ( support_material_interface_speed ) ;
OPT_PTR ( support_material_pattern ) ;
OPT_PTR ( support_material_spacing ) ;
OPT_PTR ( support_material_speed ) ;
2016-11-30 15:04:15 +00:00
OPT_PTR ( support_material_synchronize_layers ) ;
2016-03-20 03:30:02 +00:00
OPT_PTR ( support_material_xy_spacing ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( support_material_threshold ) ;
2016-10-04 12:38:13 +00:00
OPT_PTR ( support_material_with_sheath ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( xy_size_compensation ) ;
2018-06-06 16:24:42 +00:00
OPT_PTR ( wipe_into_objects ) ;
2017-10-17 14:01:18 +00:00
}
2013-12-31 14:52:37 +00:00
} ;
2016-09-13 11:30:00 +00:00
// This object is mapped to Perl as Slic3r::Config::PrintRegion.
2017-10-17 14:01:18 +00:00
class PrintRegionConfig : public StaticPrintConfig
2013-12-31 14:52:37 +00:00
{
2017-10-17 14:01:18 +00:00
STATIC_PRINT_CONFIG_CACHE ( PrintRegionConfig )
2017-07-31 14:23:52 +00:00
public :
ConfigOptionFloat bridge_angle ;
2013-12-31 14:52:37 +00:00
ConfigOptionInt bottom_solid_layers ;
2020-02-05 15:53:26 +00:00
ConfigOptionFloat bottom_solid_min_thickness ;
2014-06-11 20:10:33 +00:00
ConfigOptionFloat bridge_flow_ratio ;
2014-05-15 16:49:11 +00:00
ConfigOptionFloat bridge_speed ;
2016-10-16 20:11:19 +00:00
ConfigOptionBool ensure_vertical_shell_thickness ;
2019-02-22 14:25:35 +00:00
ConfigOptionEnum < InfillPattern > top_fill_pattern ;
ConfigOptionEnum < InfillPattern > bottom_fill_pattern ;
2014-06-09 19:14:48 +00:00
ConfigOptionFloatOrPercent external_perimeter_extrusion_width ;
2014-05-15 16:49:11 +00:00
ConfigOptionFloatOrPercent external_perimeter_speed ;
2014-06-11 20:15:28 +00:00
ConfigOptionBool external_perimeters_first ;
2013-12-31 14:52:37 +00:00
ConfigOptionBool extra_perimeters ;
2015-12-16 11:58:06 +00:00
ConfigOptionFloat fill_angle ;
2014-03-22 15:23:33 +00:00
ConfigOptionPercent fill_density ;
2013-12-31 14:52:37 +00:00
ConfigOptionEnum < InfillPattern > fill_pattern ;
2014-05-15 16:49:11 +00:00
ConfigOptionFloat gap_fill_speed ;
2013-12-31 14:52:37 +00:00
ConfigOptionInt infill_extruder ;
ConfigOptionFloatOrPercent infill_extrusion_width ;
ConfigOptionInt infill_every_layers ;
2015-02-01 11:08:25 +00:00
ConfigOptionFloatOrPercent infill_overlap ;
2014-05-15 16:49:11 +00:00
ConfigOptionFloat infill_speed ;
2018-09-17 13:12:13 +00:00
// Detect bridging perimeters
2014-05-12 21:02:33 +00:00
ConfigOptionBool overhangs ;
2013-12-31 14:52:37 +00:00
ConfigOptionInt perimeter_extruder ;
ConfigOptionFloatOrPercent perimeter_extrusion_width ;
2014-05-15 16:49:11 +00:00
ConfigOptionFloat perimeter_speed ;
2018-09-17 13:12:13 +00:00
// Total number of perimeters.
2013-12-31 14:52:37 +00:00
ConfigOptionInt perimeters ;
2014-05-15 16:49:11 +00:00
ConfigOptionFloatOrPercent small_perimeter_speed ;
2013-12-31 14:52:37 +00:00
ConfigOptionFloat solid_infill_below_area ;
2014-12-16 23:34:00 +00:00
ConfigOptionInt solid_infill_extruder ;
2013-12-31 14:52:37 +00:00
ConfigOptionFloatOrPercent solid_infill_extrusion_width ;
ConfigOptionInt solid_infill_every_layers ;
2014-05-15 16:49:11 +00:00
ConfigOptionFloatOrPercent solid_infill_speed ;
2018-09-17 13:12:13 +00:00
// Detect thin walls.
2013-12-31 14:52:37 +00:00
ConfigOptionBool thin_walls ;
ConfigOptionFloatOrPercent top_infill_extrusion_width ;
ConfigOptionInt top_solid_layers ;
2020-02-05 15:53:26 +00:00
ConfigOptionFloat top_solid_min_thickness ;
2014-05-15 16:49:11 +00:00
ConfigOptionFloatOrPercent top_solid_infill_speed ;
2018-06-21 08:16:52 +00:00
ConfigOptionBool wipe_into_infill ;
2018-11-19 12:13:05 +00:00
2017-10-17 14:01:18 +00:00
protected :
void initialize ( StaticCacheBase & cache , const char * base_ptr )
{
2017-07-31 14:23:52 +00:00
OPT_PTR ( bridge_angle ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( bottom_solid_layers ) ;
2020-02-05 15:53:26 +00:00
OPT_PTR ( bottom_solid_min_thickness ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( bridge_flow_ratio ) ;
OPT_PTR ( bridge_speed ) ;
2016-10-16 20:11:19 +00:00
OPT_PTR ( ensure_vertical_shell_thickness ) ;
2019-02-22 14:25:35 +00:00
OPT_PTR ( top_fill_pattern ) ;
OPT_PTR ( bottom_fill_pattern ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( external_perimeter_extrusion_width ) ;
OPT_PTR ( external_perimeter_speed ) ;
OPT_PTR ( external_perimeters_first ) ;
OPT_PTR ( extra_perimeters ) ;
OPT_PTR ( fill_angle ) ;
OPT_PTR ( fill_density ) ;
OPT_PTR ( fill_pattern ) ;
OPT_PTR ( gap_fill_speed ) ;
OPT_PTR ( infill_extruder ) ;
OPT_PTR ( infill_extrusion_width ) ;
OPT_PTR ( infill_every_layers ) ;
OPT_PTR ( infill_overlap ) ;
OPT_PTR ( infill_speed ) ;
OPT_PTR ( overhangs ) ;
OPT_PTR ( perimeter_extruder ) ;
OPT_PTR ( perimeter_extrusion_width ) ;
OPT_PTR ( perimeter_speed ) ;
OPT_PTR ( perimeters ) ;
OPT_PTR ( small_perimeter_speed ) ;
OPT_PTR ( solid_infill_below_area ) ;
OPT_PTR ( solid_infill_extruder ) ;
OPT_PTR ( solid_infill_extrusion_width ) ;
OPT_PTR ( solid_infill_every_layers ) ;
OPT_PTR ( solid_infill_speed ) ;
OPT_PTR ( thin_walls ) ;
OPT_PTR ( top_infill_extrusion_width ) ;
OPT_PTR ( top_solid_infill_speed ) ;
OPT_PTR ( top_solid_layers ) ;
2020-02-05 15:53:26 +00:00
OPT_PTR ( top_solid_min_thickness ) ;
2018-06-21 08:16:52 +00:00
OPT_PTR ( wipe_into_infill ) ;
2017-10-17 14:01:18 +00:00
}
2013-12-31 14:52:37 +00:00
} ;
2018-06-20 11:57:37 +00:00
class MachineEnvelopeConfig : public StaticPrintConfig
{
STATIC_PRINT_CONFIG_CACHE ( MachineEnvelopeConfig )
public :
// M201 X... Y... Z... E... [mm/sec^2]
ConfigOptionFloats machine_max_acceleration_x ;
ConfigOptionFloats machine_max_acceleration_y ;
ConfigOptionFloats machine_max_acceleration_z ;
ConfigOptionFloats machine_max_acceleration_e ;
// M203 X... Y... Z... E... [mm/sec]
ConfigOptionFloats machine_max_feedrate_x ;
ConfigOptionFloats machine_max_feedrate_y ;
ConfigOptionFloats machine_max_feedrate_z ;
ConfigOptionFloats machine_max_feedrate_e ;
// M204 S... [mm/sec^2]
ConfigOptionFloats machine_max_acceleration_extruding ;
// M204 T... [mm/sec^2]
ConfigOptionFloats machine_max_acceleration_retracting ;
// M205 X... Y... Z... E... [mm/sec]
ConfigOptionFloats machine_max_jerk_x ;
ConfigOptionFloats machine_max_jerk_y ;
ConfigOptionFloats machine_max_jerk_z ;
ConfigOptionFloats machine_max_jerk_e ;
// M205 T... [mm/sec]
ConfigOptionFloats machine_min_travel_rate ;
// M205 S... [mm/sec]
ConfigOptionFloats machine_min_extruding_rate ;
protected :
void initialize ( StaticCacheBase & cache , const char * base_ptr )
{
OPT_PTR ( machine_max_acceleration_x ) ;
OPT_PTR ( machine_max_acceleration_y ) ;
OPT_PTR ( machine_max_acceleration_z ) ;
OPT_PTR ( machine_max_acceleration_e ) ;
OPT_PTR ( machine_max_feedrate_x ) ;
OPT_PTR ( machine_max_feedrate_y ) ;
OPT_PTR ( machine_max_feedrate_z ) ;
OPT_PTR ( machine_max_feedrate_e ) ;
OPT_PTR ( machine_max_acceleration_extruding ) ;
OPT_PTR ( machine_max_acceleration_retracting ) ;
OPT_PTR ( machine_max_jerk_x ) ;
OPT_PTR ( machine_max_jerk_y ) ;
OPT_PTR ( machine_max_jerk_z ) ;
OPT_PTR ( machine_max_jerk_e ) ;
OPT_PTR ( machine_min_travel_rate ) ;
OPT_PTR ( machine_min_extruding_rate ) ;
2017-10-17 14:01:18 +00:00
}
2013-12-31 14:52:37 +00:00
} ;
2016-09-13 11:30:00 +00:00
// This object is mapped to Perl as Slic3r::Config::GCode.
2017-10-17 14:01:18 +00:00
class GCodeConfig : public StaticPrintConfig
2014-10-18 15:41:21 +00:00
{
2017-10-17 14:01:18 +00:00
STATIC_PRINT_CONFIG_CACHE ( GCodeConfig )
2017-05-16 11:45:28 +00:00
public :
2015-01-30 19:08:00 +00:00
ConfigOptionString before_layer_gcode ;
2017-11-28 14:19:57 +00:00
ConfigOptionString between_objects_gcode ;
2017-05-19 17:24:21 +00:00
ConfigOptionFloats deretract_speed ;
2015-01-05 18:39:10 +00:00
ConfigOptionString end_gcode ;
2017-06-05 09:30:57 +00:00
ConfigOptionStrings end_filament_gcode ;
2014-10-18 15:41:21 +00:00
ConfigOptionString extrusion_axis ;
2014-10-25 08:42:07 +00:00
ConfigOptionFloats extrusion_multiplier ;
ConfigOptionFloats filament_diameter ;
2017-01-16 05:56:01 +00:00
ConfigOptionFloats filament_density ;
2017-05-16 11:45:28 +00:00
ConfigOptionStrings filament_type ;
ConfigOptionBools filament_soluble ;
2017-01-16 05:56:01 +00:00
ConfigOptionFloats filament_cost ;
2016-11-01 12:41:24 +00:00
ConfigOptionFloats filament_max_volumetric_speed ;
2018-03-02 14:52:16 +00:00
ConfigOptionFloats filament_loading_speed ;
2018-08-21 12:36:24 +00:00
ConfigOptionFloats filament_loading_speed_start ;
2018-07-31 07:44:29 +00:00
ConfigOptionFloats filament_load_time ;
2018-03-02 14:52:16 +00:00
ConfigOptionFloats filament_unloading_speed ;
2018-08-14 14:23:23 +00:00
ConfigOptionFloats filament_unloading_speed_start ;
2018-03-02 14:52:16 +00:00
ConfigOptionFloats filament_toolchange_delay ;
2018-07-31 07:44:29 +00:00
ConfigOptionFloats filament_unload_time ;
2018-04-24 11:02:08 +00:00
ConfigOptionInts filament_cooling_moves ;
ConfigOptionFloats filament_cooling_initial_speed ;
2018-08-02 13:14:12 +00:00
ConfigOptionFloats filament_minimal_purge_on_wipe_tower ;
2018-04-24 11:02:08 +00:00
ConfigOptionFloats filament_cooling_final_speed ;
2018-03-14 14:48:37 +00:00
ConfigOptionStrings filament_ramming_parameters ;
2014-10-18 15:41:21 +00:00
ConfigOptionBool gcode_comments ;
ConfigOptionEnum < GCodeFlavor > gcode_flavor ;
2019-01-31 14:09:16 +00:00
ConfigOptionBool gcode_label_objects ;
2015-01-05 18:39:10 +00:00
ConfigOptionString layer_gcode ;
2015-05-31 20:04:32 +00:00
ConfigOptionFloat max_print_speed ;
ConfigOptionFloat max_volumetric_speed ;
2019-01-29 17:07:45 +00:00
# ifdef HAS_PRESSURE_EQUALIZER
2016-09-13 13:02:28 +00:00
ConfigOptionFloat max_volumetric_extrusion_rate_slope_positive ;
ConfigOptionFloat max_volumetric_extrusion_rate_slope_negative ;
2019-01-29 17:07:45 +00:00
# endif
2017-05-19 17:24:21 +00:00
ConfigOptionPercents retract_before_wipe ;
2014-10-21 18:16:45 +00:00
ConfigOptionFloats retract_length ;
ConfigOptionFloats retract_length_toolchange ;
ConfigOptionFloats retract_lift ;
2015-12-18 17:36:39 +00:00
ConfigOptionFloats retract_lift_above ;
ConfigOptionFloats retract_lift_below ;
2014-10-21 18:16:45 +00:00
ConfigOptionFloats retract_restart_extra ;
ConfigOptionFloats retract_restart_extra_toolchange ;
2015-12-07 18:39:49 +00:00
ConfigOptionFloats retract_speed ;
2015-01-05 18:39:10 +00:00
ConfigOptionString start_gcode ;
2017-06-05 09:30:57 +00:00
ConfigOptionStrings start_filament_gcode ;
2017-05-16 11:45:28 +00:00
ConfigOptionBool single_extruder_multi_material ;
2018-07-27 20:19:46 +00:00
ConfigOptionBool single_extruder_multi_material_priming ;
2019-09-19 14:30:01 +00:00
ConfigOptionBool wipe_tower_no_sparse_layers ;
2015-01-05 18:39:10 +00:00
ConfigOptionString toolchange_gcode ;
2014-10-21 18:16:45 +00:00
ConfigOptionFloat travel_speed ;
2014-10-18 15:41:21 +00:00
ConfigOptionBool use_firmware_retraction ;
ConfigOptionBool use_relative_e_distances ;
2015-01-05 18:39:10 +00:00
ConfigOptionBool use_volumetric_e ;
2016-07-16 14:52:11 +00:00
ConfigOptionBool variable_layer_height ;
2018-03-01 15:15:00 +00:00
ConfigOptionFloat cooling_tube_retraction ;
ConfigOptionFloat cooling_tube_length ;
2018-12-14 19:09:10 +00:00
ConfigOptionBool high_current_on_filament_swap ;
2018-03-01 15:15:00 +00:00
ConfigOptionFloat parking_pos_retraction ;
2018-08-04 15:38:25 +00:00
ConfigOptionBool remaining_times ;
2018-06-22 12:01:27 +00:00
ConfigOptionBool silent_mode ;
2018-04-16 12:26:57 +00:00
ConfigOptionFloat extra_loading_move ;
2018-03-16 12:58:58 +00:00
2017-10-17 14:01:18 +00:00
std : : string get_extrusion_axis ( ) const
{
return
( ( this - > gcode_flavor . value = = gcfMach3 ) | | ( this - > gcode_flavor . value = = gcfMachinekit ) ) ? " A " :
( this - > gcode_flavor . value = = gcfNoExtrusion ) ? " " : this - > extrusion_axis . value ;
Fixed a crash in a constructor of FullPrintConfig due to an incorrect use
of virtual inheritance. Note that an invocation of ConfigBase::optptr()
is routed to FullPrintConfig::optptr() for all classes of the FullPrintConfig
hierarchy. FullPrintConfig::optptr() in turn invokes optptr()
of PrintObjectConfig, PrintRegionConfig, PrintConfig and HostConfig.
Due to the use of virtual inheritance, this all happens, when
PrintObjectConfig gets constructed as part of FullPrintConfig, but
at that time PrintRegionConfig, PrintConfig and HostConfig are not
constructed yet. Accessing them at that time leads to crashes,
when compiled with Visual Studio 2013 compiler. For some reason
the code generated by gcc does not crash, but I believe the behavior
is undefined and it is better to be fixed anyway.
The patch solves the problem by calling set_defaults() by the topmost
object, which not only fixes the crashes, but also avoids repeated
initialization.
2016-08-21 17:09:31 +00:00
}
2017-10-17 14:01:18 +00:00
protected :
void initialize ( StaticCacheBase & cache , const char * base_ptr )
{
2015-07-02 12:35:21 +00:00
OPT_PTR ( before_layer_gcode ) ;
2017-11-28 14:19:57 +00:00
OPT_PTR ( between_objects_gcode ) ;
2017-05-19 17:24:21 +00:00
OPT_PTR ( deretract_speed ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( end_gcode ) ;
2017-06-05 09:30:57 +00:00
OPT_PTR ( end_filament_gcode ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( extrusion_axis ) ;
OPT_PTR ( extrusion_multiplier ) ;
OPT_PTR ( filament_diameter ) ;
2017-01-16 05:56:01 +00:00
OPT_PTR ( filament_density ) ;
2017-05-16 11:45:28 +00:00
OPT_PTR ( filament_type ) ;
OPT_PTR ( filament_soluble ) ;
2017-01-16 05:56:01 +00:00
OPT_PTR ( filament_cost ) ;
2016-11-01 12:41:24 +00:00
OPT_PTR ( filament_max_volumetric_speed ) ;
2018-03-02 14:52:16 +00:00
OPT_PTR ( filament_loading_speed ) ;
2018-08-21 12:36:24 +00:00
OPT_PTR ( filament_loading_speed_start ) ;
2018-07-31 07:44:29 +00:00
OPT_PTR ( filament_load_time ) ;
2018-03-02 14:52:16 +00:00
OPT_PTR ( filament_unloading_speed ) ;
2018-08-14 14:23:23 +00:00
OPT_PTR ( filament_unloading_speed_start ) ;
2018-07-31 07:44:29 +00:00
OPT_PTR ( filament_unload_time ) ;
2018-03-02 14:52:16 +00:00
OPT_PTR ( filament_toolchange_delay ) ;
2018-04-24 11:02:08 +00:00
OPT_PTR ( filament_cooling_moves ) ;
OPT_PTR ( filament_cooling_initial_speed ) ;
2018-08-02 13:14:12 +00:00
OPT_PTR ( filament_minimal_purge_on_wipe_tower ) ;
2018-04-24 11:02:08 +00:00
OPT_PTR ( filament_cooling_final_speed ) ;
2018-03-14 14:48:37 +00:00
OPT_PTR ( filament_ramming_parameters ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( gcode_comments ) ;
OPT_PTR ( gcode_flavor ) ;
2019-01-31 14:09:16 +00:00
OPT_PTR ( gcode_label_objects ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( layer_gcode ) ;
OPT_PTR ( max_print_speed ) ;
OPT_PTR ( max_volumetric_speed ) ;
2019-01-29 17:07:45 +00:00
# ifdef HAS_PRESSURE_EQUALIZER
2016-09-13 13:02:28 +00:00
OPT_PTR ( max_volumetric_extrusion_rate_slope_positive ) ;
OPT_PTR ( max_volumetric_extrusion_rate_slope_negative ) ;
2019-01-29 17:07:45 +00:00
# endif /* HAS_PRESSURE_EQUALIZER */
2017-05-19 17:24:21 +00:00
OPT_PTR ( retract_before_wipe ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( retract_length ) ;
OPT_PTR ( retract_length_toolchange ) ;
OPT_PTR ( retract_lift ) ;
2015-12-18 17:36:39 +00:00
OPT_PTR ( retract_lift_above ) ;
OPT_PTR ( retract_lift_below ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( retract_restart_extra ) ;
OPT_PTR ( retract_restart_extra_toolchange ) ;
OPT_PTR ( retract_speed ) ;
2017-05-16 11:45:28 +00:00
OPT_PTR ( single_extruder_multi_material ) ;
2018-07-27 20:19:46 +00:00
OPT_PTR ( single_extruder_multi_material_priming ) ;
2019-09-19 14:30:01 +00:00
OPT_PTR ( wipe_tower_no_sparse_layers ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( start_gcode ) ;
2017-06-05 09:30:57 +00:00
OPT_PTR ( start_filament_gcode ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( toolchange_gcode ) ;
OPT_PTR ( travel_speed ) ;
OPT_PTR ( use_firmware_retraction ) ;
OPT_PTR ( use_relative_e_distances ) ;
OPT_PTR ( use_volumetric_e ) ;
2016-07-16 14:52:11 +00:00
OPT_PTR ( variable_layer_height ) ;
2018-03-01 15:15:00 +00:00
OPT_PTR ( cooling_tube_retraction ) ;
OPT_PTR ( cooling_tube_length ) ;
2018-12-14 19:09:10 +00:00
OPT_PTR ( high_current_on_filament_swap ) ;
2018-03-01 15:15:00 +00:00
OPT_PTR ( parking_pos_retraction ) ;
2018-08-04 15:38:25 +00:00
OPT_PTR ( remaining_times ) ;
2018-06-22 12:01:27 +00:00
OPT_PTR ( silent_mode ) ;
2018-04-16 12:26:57 +00:00
OPT_PTR ( extra_loading_move ) ;
2017-10-17 14:01:18 +00:00
}
2014-10-18 15:41:21 +00:00
} ;
2016-09-13 11:30:00 +00:00
// This object is mapped to Perl as Slic3r::Config::Print.
2018-06-20 11:57:37 +00:00
class PrintConfig : public MachineEnvelopeConfig , public GCodeConfig
2013-12-31 14:52:37 +00:00
{
2017-10-17 14:01:18 +00:00
STATIC_PRINT_CONFIG_CACHE_DERIVED ( PrintConfig )
2019-08-06 14:51:32 +00:00
PrintConfig ( ) : MachineEnvelopeConfig ( 0 ) , GCodeConfig ( 0 ) { initialize_cache ( ) ; * this = s_cache_PrintConfig . defaults ( ) ; }
2017-05-24 13:20:20 +00:00
public :
2017-10-17 14:01:18 +00:00
double min_object_distance ( ) const ;
static double min_object_distance ( const ConfigBase * config ) ;
2013-12-31 14:52:37 +00:00
ConfigOptionBool avoid_crossing_perimeters ;
2014-06-15 23:49:49 +00:00
ConfigOptionPoints bed_shape ;
2017-06-21 14:15:39 +00:00
ConfigOptionInts bed_temperature ;
2013-12-31 14:52:37 +00:00
ConfigOptionFloat bridge_acceleration ;
2017-06-21 14:15:39 +00:00
ConfigOptionInts bridge_fan_speed ;
2013-12-31 14:52:37 +00:00
ConfigOptionFloat brim_width ;
ConfigOptionBool complete_objects ;
2018-11-07 13:44:47 +00:00
ConfigOptionFloats colorprint_heights ;
2017-06-21 14:15:39 +00:00
ConfigOptionBools cooling ;
2013-12-31 14:52:37 +00:00
ConfigOptionFloat default_acceleration ;
2017-06-21 14:15:39 +00:00
ConfigOptionInts disable_fan_first_layers ;
2013-12-31 14:52:37 +00:00
ConfigOptionFloat duplicate_distance ;
ConfigOptionFloat extruder_clearance_height ;
ConfigOptionFloat extruder_clearance_radius ;
2017-05-24 13:20:20 +00:00
ConfigOptionStrings extruder_colour ;
2013-12-31 14:52:37 +00:00
ConfigOptionPoints extruder_offset ;
2017-06-21 14:15:39 +00:00
ConfigOptionBools fan_always_on ;
ConfigOptionInts fan_below_layer_time ;
2015-05-26 00:01:43 +00:00
ConfigOptionStrings filament_colour ;
2016-11-01 12:41:24 +00:00
ConfigOptionStrings filament_notes ;
2013-12-31 14:52:37 +00:00
ConfigOptionFloat first_layer_acceleration ;
2017-06-21 14:15:39 +00:00
ConfigOptionInts first_layer_bed_temperature ;
2014-01-02 23:34:30 +00:00
ConfigOptionFloatOrPercent first_layer_extrusion_width ;
2013-12-31 14:52:37 +00:00
ConfigOptionFloatOrPercent first_layer_speed ;
ConfigOptionInts first_layer_temperature ;
ConfigOptionFloat infill_acceleration ;
ConfigOptionBool infill_first ;
2017-06-21 14:15:39 +00:00
ConfigOptionInts max_fan_speed ;
2017-02-07 17:46:02 +00:00
ConfigOptionFloats max_layer_height ;
2017-06-21 14:15:39 +00:00
ConfigOptionInts min_fan_speed ;
2017-02-07 17:46:02 +00:00
ConfigOptionFloats min_layer_height ;
2018-03-09 09:40:42 +00:00
ConfigOptionFloat max_print_height ;
2017-06-21 14:15:39 +00:00
ConfigOptionFloats min_print_speed ;
2013-12-31 14:52:37 +00:00
ConfigOptionFloat min_skirt_length ;
ConfigOptionString notes ;
ConfigOptionFloats nozzle_diameter ;
ConfigOptionBool only_retract_when_crossing_perimeters ;
ConfigOptionBool ooze_prevention ;
ConfigOptionString output_filename_format ;
ConfigOptionFloat perimeter_acceleration ;
ConfigOptionStrings post_process ;
2018-07-13 09:32:50 +00:00
ConfigOptionString printer_model ;
2017-05-05 09:59:51 +00:00
ConfigOptionString printer_notes ;
2013-12-31 14:52:37 +00:00
ConfigOptionFloat resolution ;
ConfigOptionFloats retract_before_travel ;
ConfigOptionBools retract_layer_change ;
ConfigOptionFloat skirt_distance ;
ConfigOptionInt skirt_height ;
ConfigOptionInt skirts ;
2017-06-21 14:15:39 +00:00
ConfigOptionInts slowdown_below_layer_time ;
2013-12-31 14:52:37 +00:00
ConfigOptionBool spiral_vase ;
ConfigOptionInt standby_temperature_delta ;
ConfigOptionInts temperature ;
ConfigOptionInt threads ;
ConfigOptionBools wipe ;
2017-05-16 11:45:28 +00:00
ConfigOptionBool wipe_tower ;
ConfigOptionFloat wipe_tower_x ;
ConfigOptionFloat wipe_tower_y ;
ConfigOptionFloat wipe_tower_width ;
ConfigOptionFloat wipe_tower_per_color_wipe ;
2017-11-30 11:08:22 +00:00
ConfigOptionFloat wipe_tower_rotation_angle ;
2018-03-12 14:41:25 +00:00
ConfigOptionFloat wipe_tower_bridging ;
2018-03-19 14:30:54 +00:00
ConfigOptionFloats wiping_volumes_matrix ;
ConfigOptionFloats wiping_volumes_extruders ;
2013-12-31 14:52:37 +00:00
ConfigOptionFloat z_offset ;
2018-11-19 12:13:05 +00:00
2017-10-17 14:01:18 +00:00
protected :
2019-08-06 14:51:32 +00:00
PrintConfig ( int ) : MachineEnvelopeConfig ( 1 ) , GCodeConfig ( 1 ) { }
2017-10-17 14:01:18 +00:00
void initialize ( StaticCacheBase & cache , const char * base_ptr )
{
2018-06-20 11:57:37 +00:00
this - > MachineEnvelopeConfig : : initialize ( cache , base_ptr ) ;
2017-10-17 14:01:18 +00:00
this - > GCodeConfig : : initialize ( cache , base_ptr ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( avoid_crossing_perimeters ) ;
OPT_PTR ( bed_shape ) ;
OPT_PTR ( bed_temperature ) ;
OPT_PTR ( bridge_acceleration ) ;
OPT_PTR ( bridge_fan_speed ) ;
OPT_PTR ( brim_width ) ;
OPT_PTR ( complete_objects ) ;
2018-11-07 13:44:47 +00:00
OPT_PTR ( colorprint_heights ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( cooling ) ;
OPT_PTR ( default_acceleration ) ;
OPT_PTR ( disable_fan_first_layers ) ;
OPT_PTR ( duplicate_distance ) ;
OPT_PTR ( extruder_clearance_height ) ;
OPT_PTR ( extruder_clearance_radius ) ;
2017-05-24 13:20:20 +00:00
OPT_PTR ( extruder_colour ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( extruder_offset ) ;
OPT_PTR ( fan_always_on ) ;
OPT_PTR ( fan_below_layer_time ) ;
OPT_PTR ( filament_colour ) ;
2016-11-01 12:41:24 +00:00
OPT_PTR ( filament_notes ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( first_layer_acceleration ) ;
OPT_PTR ( first_layer_bed_temperature ) ;
OPT_PTR ( first_layer_extrusion_width ) ;
OPT_PTR ( first_layer_speed ) ;
OPT_PTR ( first_layer_temperature ) ;
OPT_PTR ( infill_acceleration ) ;
OPT_PTR ( infill_first ) ;
OPT_PTR ( max_fan_speed ) ;
2017-02-07 17:46:02 +00:00
OPT_PTR ( max_layer_height ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( min_fan_speed ) ;
2017-02-07 17:46:02 +00:00
OPT_PTR ( min_layer_height ) ;
2018-03-09 09:40:42 +00:00
OPT_PTR ( max_print_height ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( min_print_speed ) ;
OPT_PTR ( min_skirt_length ) ;
OPT_PTR ( notes ) ;
OPT_PTR ( nozzle_diameter ) ;
OPT_PTR ( only_retract_when_crossing_perimeters ) ;
OPT_PTR ( ooze_prevention ) ;
OPT_PTR ( output_filename_format ) ;
OPT_PTR ( perimeter_acceleration ) ;
OPT_PTR ( post_process ) ;
2018-07-13 09:32:50 +00:00
OPT_PTR ( printer_model ) ;
2017-05-05 09:59:51 +00:00
OPT_PTR ( printer_notes ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( resolution ) ;
OPT_PTR ( retract_before_travel ) ;
OPT_PTR ( retract_layer_change ) ;
OPT_PTR ( skirt_distance ) ;
OPT_PTR ( skirt_height ) ;
OPT_PTR ( skirts ) ;
OPT_PTR ( slowdown_below_layer_time ) ;
OPT_PTR ( spiral_vase ) ;
OPT_PTR ( standby_temperature_delta ) ;
OPT_PTR ( temperature ) ;
OPT_PTR ( threads ) ;
OPT_PTR ( wipe ) ;
2017-05-16 11:45:28 +00:00
OPT_PTR ( wipe_tower ) ;
OPT_PTR ( wipe_tower_x ) ;
OPT_PTR ( wipe_tower_y ) ;
OPT_PTR ( wipe_tower_width ) ;
OPT_PTR ( wipe_tower_per_color_wipe ) ;
2017-11-30 11:08:22 +00:00
OPT_PTR ( wipe_tower_rotation_angle ) ;
2018-03-12 14:41:25 +00:00
OPT_PTR ( wipe_tower_bridging ) ;
2018-03-19 14:30:54 +00:00
OPT_PTR ( wiping_volumes_matrix ) ;
OPT_PTR ( wiping_volumes_extruders ) ;
2015-07-02 12:35:21 +00:00
OPT_PTR ( z_offset ) ;
2017-10-17 14:01:18 +00:00
}
2013-12-21 15:15:41 +00:00
} ;
2017-10-17 14:01:18 +00:00
class HostConfig : public StaticPrintConfig
2014-12-28 00:30:05 +00:00
{
2017-10-17 14:01:18 +00:00
STATIC_PRINT_CONFIG_CACHE ( HostConfig )
2017-05-31 15:02:23 +00:00
public :
2018-07-08 12:32:48 +00:00
ConfigOptionEnum < PrintHostType > host_type ;
ConfigOptionString print_host ;
ConfigOptionString printhost_apikey ;
ConfigOptionString printhost_cafile ;
2015-01-03 22:25:55 +00:00
ConfigOptionString serial_port ;
ConfigOptionInt serial_speed ;
2018-11-19 12:13:05 +00:00
2017-10-17 14:01:18 +00:00
protected :
void initialize ( StaticCacheBase & cache , const char * base_ptr )
{
2018-07-08 12:32:48 +00:00
OPT_PTR ( host_type ) ;
OPT_PTR ( print_host ) ;
OPT_PTR ( printhost_apikey ) ;
OPT_PTR ( printhost_cafile ) ;
2015-11-01 18:12:13 +00:00
OPT_PTR ( serial_port ) ;
OPT_PTR ( serial_speed ) ;
2017-10-17 14:01:18 +00:00
}
2014-12-28 00:30:05 +00:00
} ;
2016-09-13 11:30:00 +00:00
// This object is mapped to Perl as Slic3r::Config::Full.
2018-11-19 12:13:05 +00:00
class FullPrintConfig :
public PrintObjectConfig ,
2017-10-17 14:01:18 +00:00
public PrintRegionConfig ,
public PrintConfig ,
public HostConfig
2014-10-18 15:41:21 +00:00
{
2017-10-17 14:01:18 +00:00
STATIC_PRINT_CONFIG_CACHE_DERIVED ( FullPrintConfig )
2018-11-19 12:13:05 +00:00
FullPrintConfig ( ) : PrintObjectConfig ( 0 ) , PrintRegionConfig ( 0 ) , PrintConfig ( 0 ) , HostConfig ( 0 ) { initialize_cache ( ) ; * this = s_cache_FullPrintConfig . defaults ( ) ; }
2017-10-17 14:01:18 +00:00
public :
// Validate the FullPrintConfig. Returns an empty string on success, otherwise an error message is returned.
std : : string validate ( ) ;
2018-03-16 12:58:58 +00:00
2017-10-17 14:01:18 +00:00
protected :
// Protected constructor to be called to initialize ConfigCache::m_default.
FullPrintConfig ( int ) : PrintObjectConfig ( 0 ) , PrintRegionConfig ( 0 ) , PrintConfig ( 0 ) , HostConfig ( 0 ) { }
void initialize ( StaticCacheBase & cache , const char * base_ptr )
Fixed a crash in a constructor of FullPrintConfig due to an incorrect use
of virtual inheritance. Note that an invocation of ConfigBase::optptr()
is routed to FullPrintConfig::optptr() for all classes of the FullPrintConfig
hierarchy. FullPrintConfig::optptr() in turn invokes optptr()
of PrintObjectConfig, PrintRegionConfig, PrintConfig and HostConfig.
Due to the use of virtual inheritance, this all happens, when
PrintObjectConfig gets constructed as part of FullPrintConfig, but
at that time PrintRegionConfig, PrintConfig and HostConfig are not
constructed yet. Accessing them at that time leads to crashes,
when compiled with Visual Studio 2013 compiler. For some reason
the code generated by gcc does not crash, but I believe the behavior
is undefined and it is better to be fixed anyway.
The patch solves the problem by calling set_defaults() by the topmost
object, which not only fixes the crashes, but also avoids repeated
initialization.
2016-08-21 17:09:31 +00:00
{
2017-10-17 14:01:18 +00:00
this - > PrintObjectConfig : : initialize ( cache , base_ptr ) ;
this - > PrintRegionConfig : : initialize ( cache , base_ptr ) ;
this - > PrintConfig : : initialize ( cache , base_ptr ) ;
this - > HostConfig : : initialize ( cache , base_ptr ) ;
Fixed a crash in a constructor of FullPrintConfig due to an incorrect use
of virtual inheritance. Note that an invocation of ConfigBase::optptr()
is routed to FullPrintConfig::optptr() for all classes of the FullPrintConfig
hierarchy. FullPrintConfig::optptr() in turn invokes optptr()
of PrintObjectConfig, PrintRegionConfig, PrintConfig and HostConfig.
Due to the use of virtual inheritance, this all happens, when
PrintObjectConfig gets constructed as part of FullPrintConfig, but
at that time PrintRegionConfig, PrintConfig and HostConfig are not
constructed yet. Accessing them at that time leads to crashes,
when compiled with Visual Studio 2013 compiler. For some reason
the code generated by gcc does not crash, but I believe the behavior
is undefined and it is better to be fixed anyway.
The patch solves the problem by calling set_defaults() by the topmost
object, which not only fixes the crashes, but also avoids repeated
initialization.
2016-08-21 17:09:31 +00:00
}
2014-01-02 09:44:54 +00:00
} ;
2013-12-31 14:52:37 +00:00
2018-12-03 12:14:28 +00:00
// This object is mapped to Perl as Slic3r::Config::PrintRegion.
class SLAPrintConfig : public StaticPrintConfig
{
STATIC_PRINT_CONFIG_CACHE ( SLAPrintConfig )
public :
ConfigOptionString output_filename_format ;
protected :
void initialize ( StaticCacheBase & cache , const char * base_ptr )
{
OPT_PTR ( output_filename_format ) ;
}
} ;
2018-11-09 11:02:42 +00:00
class SLAPrintObjectConfig : public StaticPrintConfig
{
STATIC_PRINT_CONFIG_CACHE ( SLAPrintObjectConfig )
public :
2018-11-21 16:35:35 +00:00
ConfigOptionFloat layer_height ;
2018-11-09 12:45:55 +00:00
2019-02-18 15:04:55 +00:00
//Number of the layers needed for the exposure time fade [3;20]
ConfigOptionInt faded_layers /*= 10*/ ;
2019-03-01 16:53:02 +00:00
ConfigOptionFloat slice_closing_radius ;
2018-11-22 17:02:05 +00:00
// Enabling or disabling support creation
ConfigOptionBool supports_enable ;
2018-11-23 12:03:07 +00:00
// Diameter in mm of the pointing side of the head.
ConfigOptionFloat support_head_front_diameter /*= 0.2*/ ;
2018-11-09 12:45:55 +00:00
// How much the pinhead has to penetrate the model surface
2018-11-16 16:36:23 +00:00
ConfigOptionFloat support_head_penetration /*= 0.2*/ ;
2018-11-09 12:45:55 +00:00
// Width in mm from the back sphere center to the front sphere center.
2018-11-19 12:13:05 +00:00
ConfigOptionFloat support_head_width /*= 1.0*/ ;
2018-11-09 12:45:55 +00:00
// Radius in mm of the support pillars.
2018-11-23 12:03:07 +00:00
ConfigOptionFloat support_pillar_diameter /*= 0.8*/ ;
2018-11-09 12:45:55 +00:00
2019-01-09 11:21:43 +00:00
// How the pillars are bridged together
ConfigOptionEnum < SLAPillarConnectionMode > support_pillar_connection_mode ;
2019-02-05 10:16:03 +00:00
// Generate only ground facing supports
ConfigOptionBool support_buildplate_only ;
2018-11-23 10:51:45 +00:00
// TODO: unimplemented at the moment. This coefficient will have an impact
// when bridges and pillars are merged. The resulting pillar should be a bit
// thicker than the ones merging into it. How much thicker? I don't know
// but it will be derived from this value.
ConfigOptionFloat support_pillar_widening_factor ;
2018-11-09 12:45:55 +00:00
// Radius in mm of the pillar base.
2018-11-23 12:03:07 +00:00
ConfigOptionFloat support_base_diameter /*= 2.0*/ ;
2018-11-09 12:45:55 +00:00
// The height of the pillar base cone in mm.
2018-11-19 12:13:05 +00:00
ConfigOptionFloat support_base_height /*= 1.0*/ ;
2019-08-06 14:51:32 +00:00
2019-06-11 15:57:39 +00:00
// The minimum distance of the pillar base from the model in mm.
2019-11-06 12:38:43 +00:00
ConfigOptionFloat support_base_safety_distance ; /*= 1.0*/
2018-11-09 12:45:55 +00:00
// The default angle for connecting support sticks and junctions.
2018-11-19 12:13:05 +00:00
ConfigOptionFloat support_critical_angle /*= 45*/ ;
2018-11-09 12:45:55 +00:00
// The max length of a bridge in mm
2018-11-19 12:13:05 +00:00
ConfigOptionFloat support_max_bridge_length /*= 15.0*/ ;
2018-11-09 12:45:55 +00:00
2019-03-08 10:39:34 +00:00
// The max distance of two pillars to get cross linked.
ConfigOptionFloat support_max_pillar_link_distance ;
2018-11-16 14:01:31 +00:00
// The elevation in Z direction upwards. This is the space between the pad
2018-11-19 10:17:51 +00:00
// and the model object's bounding box bottom. Units in mm.
2018-11-19 12:13:05 +00:00
ConfigOptionFloat support_object_elevation /*= 5.0*/ ;
2019-08-06 14:51:32 +00:00
2018-12-07 13:10:16 +00:00
/////// Following options influence automatic support points placement:
2019-02-19 15:34:52 +00:00
ConfigOptionInt support_points_density_relative ;
ConfigOptionFloat support_points_minimal_distance ;
2018-12-07 13:10:16 +00:00
2018-11-19 10:17:51 +00:00
// Now for the base pool (pad) /////////////////////////////////////////////
2018-11-09 12:45:55 +00:00
2018-11-22 17:02:05 +00:00
// Enabling or disabling support creation
2018-11-20 15:12:04 +00:00
ConfigOptionBool pad_enable ;
2018-11-22 17:02:05 +00:00
// The thickness of the pad walls
2018-11-19 12:13:05 +00:00
ConfigOptionFloat pad_wall_thickness /*= 2*/ ;
2018-11-22 17:02:05 +00:00
// The height of the pad from the bottom to the top not considering the pit
2018-11-19 12:13:05 +00:00
ConfigOptionFloat pad_wall_height /*= 5*/ ;
2019-09-24 13:15:49 +00:00
// How far should the pad extend around the contained geometry
ConfigOptionFloat pad_brim_size ;
2018-11-22 17:02:05 +00:00
// The greatest distance where two individual pads are merged into one. The
// distance is measured roughly from the centroids of the pads.
2018-11-19 12:13:05 +00:00
ConfigOptionFloat pad_max_merge_distance /*= 50*/ ;
2018-11-22 17:02:05 +00:00
// The smoothing radius of the pad edges
2019-08-06 14:51:32 +00:00
// ConfigOptionFloat pad_edge_radius /*= 1*/;
2018-11-09 17:31:36 +00:00
2019-02-25 15:04:46 +00:00
// The slope of the pad wall...
ConfigOptionFloat pad_wall_slope ;
2019-08-06 14:51:32 +00:00
2019-06-11 15:57:39 +00:00
// /////////////////////////////////////////////////////////////////////////
// Zero elevation mode parameters:
2019-11-06 12:38:43 +00:00
// - The object pad will be derived from the model geometry.
2019-06-11 15:57:39 +00:00
// - There will be a gap between the object pad and the generated pad
// according to the support_base_safety_distance parameter.
// - The two pads will be connected with tiny connector sticks
// /////////////////////////////////////////////////////////////////////////
2019-08-06 14:51:32 +00:00
// Disable the elevation (ignore its value) and use the zero elevation mode
2019-09-24 13:15:49 +00:00
ConfigOptionBool pad_around_object ;
ConfigOptionBool pad_around_object_everywhere ;
2019-08-06 14:51:32 +00:00
2019-06-12 11:15:42 +00:00
// This is the gap between the object bottom and the generated pad
ConfigOptionFloat pad_object_gap ;
2019-08-06 14:51:32 +00:00
2019-06-11 15:57:39 +00:00
// How far to place the connector sticks on the object pad perimeter
ConfigOptionFloat pad_object_connector_stride ;
2019-08-06 14:51:32 +00:00
2019-06-11 15:57:39 +00:00
// The width of the connectors sticks
ConfigOptionFloat pad_object_connector_width ;
2019-08-06 14:51:32 +00:00
2019-06-11 15:57:39 +00:00
// How much should the tiny connectors penetrate into the model body
ConfigOptionFloat pad_object_connector_penetration ;
2019-11-06 12:38:43 +00:00
// /////////////////////////////////////////////////////////////////////////
// Model hollowing parameters:
// - Models can be hollowed out as part of the SLA print process
// - Thickness of the hollowed model walls can be adjusted
// -
// - Additional holes will be drilled into the hollow model to allow for
// - resin removal.
// /////////////////////////////////////////////////////////////////////////
ConfigOptionBool hollowing_enable ;
// The minimum thickness of the model walls to maintain. Note that the
// resulting walls may be thicker due to smoothing out fine cavities where
// resin could stuck.
ConfigOptionFloat hollowing_min_thickness ;
2019-11-07 08:34:34 +00:00
// Indirectly controls the voxel size (resolution) used by openvdb
2019-11-08 08:21:30 +00:00
ConfigOptionFloat hollowing_quality ;
2019-11-08 15:51:43 +00:00
// Indirectly controls the minimum size of created cavities.
ConfigOptionFloat hollowing_closing_distance ;
2019-02-25 11:06:38 +00:00
2018-11-09 11:02:42 +00:00
protected :
void initialize ( StaticCacheBase & cache , const char * base_ptr )
{
OPT_PTR ( layer_height ) ;
2019-02-18 15:04:55 +00:00
OPT_PTR ( faded_layers ) ;
2019-03-01 16:53:02 +00:00
OPT_PTR ( slice_closing_radius ) ;
2018-11-22 17:02:05 +00:00
OPT_PTR ( supports_enable ) ;
2018-11-23 12:03:07 +00:00
OPT_PTR ( support_head_front_diameter ) ;
2018-11-16 16:36:23 +00:00
OPT_PTR ( support_head_penetration ) ;
2018-11-09 17:31:36 +00:00
OPT_PTR ( support_head_width ) ;
2018-11-23 12:03:07 +00:00
OPT_PTR ( support_pillar_diameter ) ;
2019-01-09 11:21:43 +00:00
OPT_PTR ( support_pillar_connection_mode ) ;
2019-02-05 10:16:03 +00:00
OPT_PTR ( support_buildplate_only ) ;
2018-11-23 10:51:45 +00:00
OPT_PTR ( support_pillar_widening_factor ) ;
2018-11-23 12:03:07 +00:00
OPT_PTR ( support_base_diameter ) ;
2018-11-09 17:31:36 +00:00
OPT_PTR ( support_base_height ) ;
2019-06-11 15:57:39 +00:00
OPT_PTR ( support_base_safety_distance ) ;
2018-11-09 17:31:36 +00:00
OPT_PTR ( support_critical_angle ) ;
OPT_PTR ( support_max_bridge_length ) ;
2019-03-08 10:39:34 +00:00
OPT_PTR ( support_max_pillar_link_distance ) ;
2019-02-19 15:34:52 +00:00
OPT_PTR ( support_points_density_relative ) ;
OPT_PTR ( support_points_minimal_distance ) ;
2018-11-19 16:58:08 +00:00
OPT_PTR ( support_object_elevation ) ;
2018-11-20 15:12:04 +00:00
OPT_PTR ( pad_enable ) ;
2018-11-09 17:31:36 +00:00
OPT_PTR ( pad_wall_thickness ) ;
OPT_PTR ( pad_wall_height ) ;
2019-09-24 13:15:49 +00:00
OPT_PTR ( pad_brim_size ) ;
2018-11-09 17:31:36 +00:00
OPT_PTR ( pad_max_merge_distance ) ;
2019-08-06 14:51:32 +00:00
// OPT_PTR(pad_edge_radius);
2019-02-25 15:04:46 +00:00
OPT_PTR ( pad_wall_slope ) ;
2019-08-28 09:32:49 +00:00
OPT_PTR ( pad_around_object ) ;
2019-09-24 13:15:49 +00:00
OPT_PTR ( pad_around_object_everywhere ) ;
2019-06-12 11:15:42 +00:00
OPT_PTR ( pad_object_gap ) ;
2019-06-11 15:57:39 +00:00
OPT_PTR ( pad_object_connector_stride ) ;
OPT_PTR ( pad_object_connector_width ) ;
OPT_PTR ( pad_object_connector_penetration ) ;
2019-11-06 12:38:43 +00:00
OPT_PTR ( hollowing_enable ) ;
OPT_PTR ( hollowing_min_thickness ) ;
2019-11-08 08:21:30 +00:00
OPT_PTR ( hollowing_quality ) ;
2019-11-08 15:51:43 +00:00
OPT_PTR ( hollowing_closing_distance ) ;
2018-11-09 11:02:42 +00:00
}
} ;
2018-07-31 13:09:57 +00:00
class SLAMaterialConfig : public StaticPrintConfig
{
STATIC_PRINT_CONFIG_CACHE ( SLAMaterialConfig )
public :
ConfigOptionFloat initial_layer_height ;
2019-09-26 14:33:55 +00:00
ConfigOptionFloat bottle_cost ;
ConfigOptionFloat bottle_volume ;
ConfigOptionFloat bottle_weight ;
ConfigOptionFloat material_density ;
2018-07-31 13:09:57 +00:00
ConfigOptionFloat exposure_time ;
ConfigOptionFloat initial_exposure_time ;
2019-04-03 15:34:46 +00:00
ConfigOptionFloats material_correction ;
2018-07-31 13:09:57 +00:00
protected :
void initialize ( StaticCacheBase & cache , const char * base_ptr )
{
OPT_PTR ( initial_layer_height ) ;
2019-09-26 14:33:55 +00:00
OPT_PTR ( bottle_cost ) ;
OPT_PTR ( bottle_volume ) ;
OPT_PTR ( bottle_weight ) ;
OPT_PTR ( material_density ) ;
2018-07-31 13:09:57 +00:00
OPT_PTR ( exposure_time ) ;
OPT_PTR ( initial_exposure_time ) ;
2019-04-03 15:34:46 +00:00
OPT_PTR ( material_correction ) ;
2018-07-31 13:09:57 +00:00
}
} ;
class SLAPrinterConfig : public StaticPrintConfig
{
STATIC_PRINT_CONFIG_CACHE ( SLAPrinterConfig )
public :
ConfigOptionEnum < PrinterTechnology > printer_technology ;
ConfigOptionPoints bed_shape ;
ConfigOptionFloat max_print_height ;
ConfigOptionFloat display_width ;
ConfigOptionFloat display_height ;
ConfigOptionInt display_pixels_x ;
ConfigOptionInt display_pixels_y ;
2018-12-13 11:42:45 +00:00
ConfigOptionEnum < SLADisplayOrientation > display_orientation ;
2019-05-18 14:56:46 +00:00
ConfigOptionBool display_mirror_x ;
ConfigOptionBool display_mirror_y ;
2019-04-09 11:42:32 +00:00
ConfigOptionFloats relative_correction ;
ConfigOptionFloat absolute_correction ;
2020-02-06 13:09:48 +00:00
ConfigOptionFloat elefant_foot_compensation ;
2019-04-09 11:42:32 +00:00
ConfigOptionFloat gamma_correction ;
2019-02-18 15:04:55 +00:00
ConfigOptionFloat fast_tilt_time ;
ConfigOptionFloat slow_tilt_time ;
ConfigOptionFloat area_fill ;
2019-08-20 15:24:48 +00:00
ConfigOptionFloat min_exposure_time ;
ConfigOptionFloat max_exposure_time ;
ConfigOptionFloat min_initial_exposure_time ;
ConfigOptionFloat max_initial_exposure_time ;
2018-07-31 13:09:57 +00:00
protected :
void initialize ( StaticCacheBase & cache , const char * base_ptr )
{
OPT_PTR ( printer_technology ) ;
OPT_PTR ( bed_shape ) ;
OPT_PTR ( max_print_height ) ;
OPT_PTR ( display_width ) ;
OPT_PTR ( display_height ) ;
OPT_PTR ( display_pixels_x ) ;
OPT_PTR ( display_pixels_y ) ;
2019-05-18 14:56:46 +00:00
OPT_PTR ( display_mirror_x ) ;
OPT_PTR ( display_mirror_y ) ;
2018-12-13 11:42:45 +00:00
OPT_PTR ( display_orientation ) ;
2019-04-09 11:42:32 +00:00
OPT_PTR ( relative_correction ) ;
OPT_PTR ( absolute_correction ) ;
2020-02-06 13:09:48 +00:00
OPT_PTR ( elefant_foot_compensation ) ;
2019-04-09 11:42:32 +00:00
OPT_PTR ( gamma_correction ) ;
2019-02-18 15:04:55 +00:00
OPT_PTR ( fast_tilt_time ) ;
OPT_PTR ( slow_tilt_time ) ;
OPT_PTR ( area_fill ) ;
2019-08-20 15:24:48 +00:00
OPT_PTR ( min_exposure_time ) ;
OPT_PTR ( max_exposure_time ) ;
OPT_PTR ( min_initial_exposure_time ) ;
OPT_PTR ( max_initial_exposure_time ) ;
2018-07-31 13:09:57 +00:00
}
} ;
2018-12-03 12:14:28 +00:00
class SLAFullPrintConfig : public SLAPrinterConfig , public SLAPrintConfig , public SLAPrintObjectConfig , public SLAMaterialConfig
2018-07-31 13:09:57 +00:00
{
STATIC_PRINT_CONFIG_CACHE_DERIVED ( SLAFullPrintConfig )
2018-12-03 12:14:28 +00:00
SLAFullPrintConfig ( ) : SLAPrinterConfig ( 0 ) , SLAPrintConfig ( 0 ) , SLAPrintObjectConfig ( 0 ) , SLAMaterialConfig ( 0 ) { initialize_cache ( ) ; * this = s_cache_SLAFullPrintConfig . defaults ( ) ; }
2018-07-31 13:09:57 +00:00
public :
// Validate the SLAFullPrintConfig. Returns an empty string on success, otherwise an error message is returned.
// std::string validate();
protected :
// Protected constructor to be called to initialize ConfigCache::m_default.
2018-12-03 12:14:28 +00:00
SLAFullPrintConfig ( int ) : SLAPrinterConfig ( 0 ) , SLAPrintConfig ( 0 ) , SLAPrintObjectConfig ( 0 ) , SLAMaterialConfig ( 0 ) { }
2018-07-31 13:09:57 +00:00
void initialize ( StaticCacheBase & cache , const char * base_ptr )
{
2018-11-09 11:02:42 +00:00
this - > SLAPrinterConfig : : initialize ( cache , base_ptr ) ;
2018-12-03 12:14:28 +00:00
this - > SLAPrintConfig : : initialize ( cache , base_ptr ) ;
2018-11-09 11:02:42 +00:00
this - > SLAPrintObjectConfig : : initialize ( cache , base_ptr ) ;
this - > SLAMaterialConfig : : initialize ( cache , base_ptr ) ;
2018-07-31 13:09:57 +00:00
}
} ;
2017-10-17 14:01:18 +00:00
# undef STATIC_PRINT_CONFIG_CACHE
# undef STATIC_PRINT_CONFIG_CACHE_BASE
# undef STATIC_PRINT_CONFIG_CACHE_DERIVED
# undef OPT_PTR
2019-03-13 14:44:50 +00:00
class CLIActionsConfigDef : public ConfigDef
2018-09-20 14:48:13 +00:00
{
public :
2019-03-13 14:44:50 +00:00
CLIActionsConfigDef ( ) ;
2018-09-20 14:48:13 +00:00
} ;
2019-03-13 14:44:50 +00:00
class CLITransformConfigDef : public ConfigDef
{
public :
CLITransformConfigDef ( ) ;
} ;
2018-09-20 14:48:13 +00:00
2019-03-13 14:44:50 +00:00
class CLIMiscConfigDef : public ConfigDef
2018-09-20 14:48:13 +00:00
{
public :
2019-03-13 14:44:50 +00:00
CLIMiscConfigDef ( ) ;
} ;
2018-09-20 14:48:13 +00:00
2019-03-13 14:44:50 +00:00
// This class defines the command line options representing actions.
extern const CLIActionsConfigDef cli_actions_config_def ;
2018-09-20 14:48:13 +00:00
2019-03-13 14:44:50 +00:00
// This class defines the command line options representing transforms.
extern const CLITransformConfigDef cli_transform_config_def ;
2018-09-20 14:48:13 +00:00
2019-03-13 14:44:50 +00:00
// This class defines all command line options that are not actions or transforms.
extern const CLIMiscConfigDef cli_misc_config_def ;
2018-09-20 14:48:13 +00:00
class DynamicPrintAndCLIConfig : public DynamicPrintConfig
{
public :
2019-08-06 14:51:32 +00:00
DynamicPrintAndCLIConfig ( ) { }
DynamicPrintAndCLIConfig ( const DynamicPrintAndCLIConfig & other ) : DynamicPrintConfig ( other ) { }
2018-09-20 14:48:13 +00:00
// Overrides ConfigBase::def(). Static configuration definition. Any value stored into this ConfigBase shall have its definition here.
2018-11-09 13:25:18 +00:00
const ConfigDef * def ( ) const override { return & s_def ; }
2018-09-20 14:48:13 +00:00
2019-01-03 12:25:56 +00:00
// Verify whether the opt_key has not been obsoleted or renamed.
// Both opt_key and value may be modified by handle_legacy().
// If the opt_key is no more valid in this version of Slic3r, opt_key is cleared by handle_legacy().
// handle_legacy() is called internally by set_deserialize().
void handle_legacy ( t_config_option_key & opt_key , std : : string & value ) const override ;
2018-09-20 14:48:13 +00:00
private :
2018-10-30 14:24:36 +00:00
class PrintAndCLIConfigDef : public ConfigDef
2018-09-20 14:48:13 +00:00
{
public :
2018-11-19 12:13:05 +00:00
PrintAndCLIConfigDef ( ) {
2018-10-30 14:24:36 +00:00
this - > options . insert ( print_config_def . options . begin ( ) , print_config_def . options . end ( ) ) ;
2019-03-13 14:44:50 +00:00
this - > options . insert ( cli_actions_config_def . options . begin ( ) , cli_actions_config_def . options . end ( ) ) ;
this - > options . insert ( cli_transform_config_def . options . begin ( ) , cli_transform_config_def . options . end ( ) ) ;
this - > options . insert ( cli_misc_config_def . options . begin ( ) , cli_misc_config_def . options . end ( ) ) ;
2019-06-26 11:26:49 +00:00
for ( const auto & kvp : this - > options )
2019-08-06 14:51:32 +00:00
this - > by_serialization_key_ordinal [ kvp . second . serialization_key_ordinal ] = & kvp . second ;
2018-10-30 14:24:36 +00:00
}
2019-03-13 14:44:50 +00:00
// Do not release the default values, they are handled by print_config_def & cli_actions_config_def / cli_transform_config_def / cli_misc_config_def.
2018-10-30 14:24:36 +00:00
~ PrintAndCLIConfigDef ( ) { this - > options . clear ( ) ; }
2018-09-20 14:48:13 +00:00
} ;
static PrintAndCLIConfigDef s_def ;
} ;
} // namespace Slic3r
2013-12-21 15:15:41 +00:00
2019-06-26 11:26:49 +00:00
// Serialization through the Cereal library
namespace cereal {
2019-08-06 14:51:32 +00:00
// Let cereal know that there are load / save non-member functions declared for DynamicPrintConfig, ignore serialize / load / save from parent class DynamicConfig.
template < class Archive > struct specialize < Archive , Slic3r : : DynamicPrintConfig , cereal : : specialization : : non_member_load_save > { } ;
template < class Archive > void load ( Archive & archive , Slic3r : : DynamicPrintConfig & config )
{
size_t cnt ;
archive ( cnt ) ;
config . clear ( ) ;
for ( size_t i = 0 ; i < cnt ; + + i ) {
size_t serialization_key_ordinal ;
archive ( serialization_key_ordinal ) ;
assert ( serialization_key_ordinal > 0 ) ;
auto it = Slic3r : : print_config_def . by_serialization_key_ordinal . find ( serialization_key_ordinal ) ;
assert ( it ! = Slic3r : : print_config_def . by_serialization_key_ordinal . end ( ) ) ;
config . set_key_value ( it - > second - > opt_key , it - > second - > load_option_from_archive ( archive ) ) ;
}
}
template < class Archive > void save ( Archive & archive , const Slic3r : : DynamicPrintConfig & config )
{
size_t cnt = config . size ( ) ;
archive ( cnt ) ;
for ( auto it = config . cbegin ( ) ; it ! = config . cend ( ) ; + + it ) {
const Slic3r : : ConfigOptionDef * optdef = Slic3r : : print_config_def . get ( it - > first ) ;
assert ( optdef ! = nullptr ) ;
assert ( optdef - > serialization_key_ordinal > 0 ) ;
archive ( optdef - > serialization_key_ordinal ) ;
optdef - > save_option_to_archive ( archive , it - > second . get ( ) ) ;
}
}
2019-06-26 11:26:49 +00:00
}
2013-12-21 15:15:41 +00:00
# endif