2013-12-21 15:15:41 +00:00
|
|
|
#ifndef slic3r_PrintConfig_hpp_
|
|
|
|
#define slic3r_PrintConfig_hpp_
|
|
|
|
|
|
|
|
#include "Config.hpp"
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
|
|
|
enum GCodeFlavor {
|
2015-01-07 20:20:58 +00:00
|
|
|
gcfRepRap, gcfTeacup, gcfMakerWare, gcfSailfish, gcfMach3, gcfMachinekit, gcfNoExtrusion,
|
2013-12-21 15:15:41 +00:00
|
|
|
};
|
|
|
|
|
2013-12-21 23:39:03 +00:00
|
|
|
enum InfillPattern {
|
2014-07-26 15:07:43 +00:00
|
|
|
ipRectilinear, ipLine, ipConcentric, ipHoneycomb, ip3DHoneycomb,
|
2013-12-21 23:39:03 +00:00
|
|
|
ipHilbertCurve, ipArchimedeanChords, ipOctagramSpiral,
|
|
|
|
};
|
|
|
|
|
2014-01-05 15:51:16 +00:00
|
|
|
enum SupportMaterialPattern {
|
|
|
|
smpRectilinear, smpRectilinearGrid, smpHoneycomb, smpPillars,
|
|
|
|
};
|
|
|
|
|
2014-05-24 20:10:28 +00:00
|
|
|
enum SeamPosition {
|
2014-05-22 17:34:49 +00:00
|
|
|
spRandom, spNearest, spAligned
|
|
|
|
};
|
|
|
|
|
2013-12-21 15:15:41 +00:00
|
|
|
template<> inline t_config_enum_values ConfigOptionEnum<GCodeFlavor>::get_enum_values() {
|
|
|
|
t_config_enum_values keys_map;
|
|
|
|
keys_map["reprap"] = gcfRepRap;
|
|
|
|
keys_map["teacup"] = gcfTeacup;
|
|
|
|
keys_map["makerware"] = gcfMakerWare;
|
|
|
|
keys_map["sailfish"] = gcfSailfish;
|
|
|
|
keys_map["mach3"] = gcfMach3;
|
2015-01-07 20:20:58 +00:00
|
|
|
keys_map["machinekit"] = gcfMachinekit;
|
2013-12-21 15:15:41 +00:00
|
|
|
keys_map["no-extrusion"] = gcfNoExtrusion;
|
|
|
|
return keys_map;
|
|
|
|
}
|
|
|
|
|
2013-12-21 23:39:03 +00:00
|
|
|
template<> inline t_config_enum_values ConfigOptionEnum<InfillPattern>::get_enum_values() {
|
|
|
|
t_config_enum_values keys_map;
|
|
|
|
keys_map["rectilinear"] = ipRectilinear;
|
|
|
|
keys_map["line"] = ipLine;
|
|
|
|
keys_map["concentric"] = ipConcentric;
|
|
|
|
keys_map["honeycomb"] = ipHoneycomb;
|
2014-07-26 15:07:43 +00:00
|
|
|
keys_map["3dhoneycomb"] = ip3DHoneycomb;
|
2013-12-21 23:39:03 +00:00
|
|
|
keys_map["hilbertcurve"] = ipHilbertCurve;
|
|
|
|
keys_map["archimedeanchords"] = ipArchimedeanChords;
|
|
|
|
keys_map["octagramspiral"] = ipOctagramSpiral;
|
|
|
|
return keys_map;
|
|
|
|
}
|
|
|
|
|
2014-01-05 15:51:16 +00:00
|
|
|
template<> inline t_config_enum_values ConfigOptionEnum<SupportMaterialPattern>::get_enum_values() {
|
|
|
|
t_config_enum_values keys_map;
|
|
|
|
keys_map["rectilinear"] = smpRectilinear;
|
|
|
|
keys_map["rectilinear-grid"] = smpRectilinearGrid;
|
|
|
|
keys_map["honeycomb"] = smpHoneycomb;
|
|
|
|
keys_map["pillars"] = smpPillars;
|
|
|
|
return keys_map;
|
|
|
|
}
|
|
|
|
|
2014-05-24 20:10:28 +00:00
|
|
|
template<> inline t_config_enum_values ConfigOptionEnum<SeamPosition>::get_enum_values() {
|
2014-05-22 17:34:49 +00:00
|
|
|
t_config_enum_values keys_map;
|
|
|
|
keys_map["random"] = spRandom;
|
|
|
|
keys_map["nearest"] = spNearest;
|
|
|
|
keys_map["aligned"] = spAligned;
|
|
|
|
return keys_map;
|
|
|
|
}
|
|
|
|
|
2013-12-31 14:52:37 +00:00
|
|
|
class PrintConfigDef
|
2013-12-21 15:15:41 +00:00
|
|
|
{
|
|
|
|
public:
|
2013-12-31 14:52:37 +00:00
|
|
|
static t_optiondef_map def;
|
2013-12-21 15:15:41 +00:00
|
|
|
|
2014-06-11 20:04:19 +00:00
|
|
|
static t_optiondef_map build_def();
|
2013-12-31 14:52:37 +00:00
|
|
|
};
|
|
|
|
|
2014-03-25 23:08:15 +00:00
|
|
|
class DynamicPrintConfig : public DynamicConfig
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DynamicPrintConfig() {
|
|
|
|
this->def = &PrintConfigDef::def;
|
|
|
|
};
|
2014-03-26 23:01:33 +00:00
|
|
|
|
2015-03-06 08:56:58 +00:00
|
|
|
void normalize();
|
2014-03-25 23:08:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class StaticPrintConfig : public virtual StaticConfig
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
StaticPrintConfig() {
|
|
|
|
this->def = &PrintConfigDef::def;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
class PrintObjectConfig : public virtual StaticPrintConfig
|
2013-12-31 14:52:37 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-04-26 15:19:50 +00:00
|
|
|
ConfigOptionBool dont_support_bridges;
|
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;
|
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;
|
2013-12-31 14:52:37 +00:00
|
|
|
ConfigOptionBool support_material;
|
|
|
|
ConfigOptionInt support_material_angle;
|
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;
|
|
|
|
ConfigOptionInt support_material_interface_extruder;
|
|
|
|
ConfigOptionInt support_material_interface_layers;
|
|
|
|
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;
|
2013-12-31 14:52:37 +00:00
|
|
|
ConfigOptionFloat support_material_spacing;
|
|
|
|
ConfigOptionFloat support_material_speed;
|
|
|
|
ConfigOptionInt support_material_threshold;
|
2014-06-10 11:28:57 +00:00
|
|
|
ConfigOptionFloat xy_size_compensation;
|
2013-12-31 14:52:37 +00:00
|
|
|
|
2014-03-25 23:08:15 +00:00
|
|
|
PrintObjectConfig() : StaticPrintConfig() {
|
2014-04-26 15:19:50 +00:00
|
|
|
this->dont_support_bridges.value = true;
|
2013-12-31 14:52:37 +00:00
|
|
|
this->extrusion_width.value = 0;
|
|
|
|
this->extrusion_width.percent = false;
|
|
|
|
this->first_layer_height.value = 0.35;
|
|
|
|
this->first_layer_height.percent = false;
|
2014-01-02 16:24:23 +00:00
|
|
|
this->infill_only_where_needed.value = false;
|
2014-03-25 00:11:28 +00:00
|
|
|
this->interface_shells.value = false;
|
2014-07-23 12:15:14 +00:00
|
|
|
this->layer_height.value = 0.3;
|
2013-12-31 14:52:37 +00:00
|
|
|
this->raft_layers.value = 0;
|
2014-05-24 20:10:28 +00:00
|
|
|
this->seam_position.value = spAligned;
|
2013-12-31 14:52:37 +00:00
|
|
|
this->support_material.value = false;
|
|
|
|
this->support_material_angle.value = 0;
|
2015-01-19 08:52:24 +00:00
|
|
|
this->support_material_contact_distance.value = 0.2;
|
2013-12-31 14:52:37 +00:00
|
|
|
this->support_material_enforce_layers.value = 0;
|
2014-03-26 23:01:33 +00:00
|
|
|
this->support_material_extruder.value = 1;
|
2013-12-31 14:52:37 +00:00
|
|
|
this->support_material_extrusion_width.value = 0;
|
|
|
|
this->support_material_extrusion_width.percent = false;
|
2014-03-26 23:01:33 +00:00
|
|
|
this->support_material_interface_extruder.value = 1;
|
2013-12-31 14:52:37 +00:00
|
|
|
this->support_material_interface_layers.value = 3;
|
|
|
|
this->support_material_interface_spacing.value = 0;
|
2014-05-21 13:21:20 +00:00
|
|
|
this->support_material_interface_speed.value = 100;
|
|
|
|
this->support_material_interface_speed.percent = true;
|
2014-03-26 23:05:22 +00:00
|
|
|
this->support_material_pattern.value = smpPillars;
|
2013-12-31 14:52:37 +00:00
|
|
|
this->support_material_spacing.value = 2.5;
|
|
|
|
this->support_material_speed.value = 60;
|
|
|
|
this->support_material_threshold.value = 0;
|
2014-06-10 11:28:57 +00:00
|
|
|
this->xy_size_compensation.value = 0;
|
2013-12-31 14:52:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ConfigOption* option(const t_config_option_key opt_key, bool create = false) {
|
2014-04-26 15:19:50 +00:00
|
|
|
if (opt_key == "dont_support_bridges") return &this->dont_support_bridges;
|
2013-12-31 14:52:37 +00:00
|
|
|
if (opt_key == "extrusion_width") return &this->extrusion_width;
|
|
|
|
if (opt_key == "first_layer_height") return &this->first_layer_height;
|
2014-01-02 16:24:23 +00:00
|
|
|
if (opt_key == "infill_only_where_needed") return &this->infill_only_where_needed;
|
2014-03-25 00:11:28 +00:00
|
|
|
if (opt_key == "interface_shells") return &this->interface_shells;
|
2013-12-31 14:52:37 +00:00
|
|
|
if (opt_key == "layer_height") return &this->layer_height;
|
|
|
|
if (opt_key == "raft_layers") return &this->raft_layers;
|
2014-05-24 20:10:28 +00:00
|
|
|
if (opt_key == "seam_position") return &this->seam_position;
|
2013-12-31 14:52:37 +00:00
|
|
|
if (opt_key == "support_material") return &this->support_material;
|
|
|
|
if (opt_key == "support_material_angle") return &this->support_material_angle;
|
2015-01-19 08:52:24 +00:00
|
|
|
if (opt_key == "support_material_contact_distance") return &this->support_material_contact_distance;
|
2013-12-31 14:52:37 +00:00
|
|
|
if (opt_key == "support_material_enforce_layers") return &this->support_material_enforce_layers;
|
|
|
|
if (opt_key == "support_material_extruder") return &this->support_material_extruder;
|
|
|
|
if (opt_key == "support_material_extrusion_width") return &this->support_material_extrusion_width;
|
|
|
|
if (opt_key == "support_material_interface_extruder") return &this->support_material_interface_extruder;
|
|
|
|
if (opt_key == "support_material_interface_layers") return &this->support_material_interface_layers;
|
|
|
|
if (opt_key == "support_material_interface_spacing") return &this->support_material_interface_spacing;
|
2014-05-21 13:21:20 +00:00
|
|
|
if (opt_key == "support_material_interface_speed") return &this->support_material_interface_speed;
|
2013-12-31 14:52:37 +00:00
|
|
|
if (opt_key == "support_material_pattern") return &this->support_material_pattern;
|
|
|
|
if (opt_key == "support_material_spacing") return &this->support_material_spacing;
|
|
|
|
if (opt_key == "support_material_speed") return &this->support_material_speed;
|
|
|
|
if (opt_key == "support_material_threshold") return &this->support_material_threshold;
|
2014-06-10 11:28:57 +00:00
|
|
|
if (opt_key == "xy_size_compensation") return &this->xy_size_compensation;
|
2013-12-31 14:52:37 +00:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-03-25 23:08:15 +00:00
|
|
|
class PrintRegionConfig : public virtual StaticPrintConfig
|
2013-12-31 14:52:37 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ConfigOptionInt bottom_solid_layers;
|
2014-06-11 20:10:33 +00:00
|
|
|
ConfigOptionFloat bridge_flow_ratio;
|
2014-05-15 16:49:11 +00:00
|
|
|
ConfigOptionFloat bridge_speed;
|
2014-11-26 23:38:05 +00:00
|
|
|
ConfigOptionEnum<InfillPattern> external_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;
|
|
|
|
ConfigOptionInt 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;
|
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;
|
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;
|
2013-12-31 14:52:37 +00:00
|
|
|
ConfigOptionBool thin_walls;
|
|
|
|
ConfigOptionFloatOrPercent top_infill_extrusion_width;
|
|
|
|
ConfigOptionInt top_solid_layers;
|
2014-05-15 16:49:11 +00:00
|
|
|
ConfigOptionFloatOrPercent top_solid_infill_speed;
|
2013-12-31 14:52:37 +00:00
|
|
|
|
2014-03-25 23:08:15 +00:00
|
|
|
PrintRegionConfig() : StaticPrintConfig() {
|
2013-12-31 14:52:37 +00:00
|
|
|
this->bottom_solid_layers.value = 3;
|
2014-06-11 20:10:33 +00:00
|
|
|
this->bridge_flow_ratio.value = 1;
|
2014-05-15 16:49:11 +00:00
|
|
|
this->bridge_speed.value = 60;
|
2014-11-26 23:38:05 +00:00
|
|
|
this->external_fill_pattern.value = ipRectilinear;
|
2014-06-09 19:14:48 +00:00
|
|
|
this->external_perimeter_extrusion_width.value = 0;
|
|
|
|
this->external_perimeter_extrusion_width.percent = false;
|
2015-01-31 10:38:17 +00:00
|
|
|
this->external_perimeter_speed.value = 50;
|
2014-05-15 16:49:11 +00:00
|
|
|
this->external_perimeter_speed.percent = true;
|
2014-06-11 20:15:28 +00:00
|
|
|
this->external_perimeters_first.value = false;
|
2013-12-31 14:52:37 +00:00
|
|
|
this->extra_perimeters.value = true;
|
|
|
|
this->fill_angle.value = 45;
|
2015-01-31 10:38:17 +00:00
|
|
|
this->fill_density.value = 20;
|
2013-12-31 14:52:37 +00:00
|
|
|
this->fill_pattern.value = ipHoneycomb;
|
2014-05-15 16:49:11 +00:00
|
|
|
this->gap_fill_speed.value = 20;
|
2014-03-26 23:01:33 +00:00
|
|
|
this->infill_extruder.value = 1;
|
2013-12-31 14:52:37 +00:00
|
|
|
this->infill_extrusion_width.value = 0;
|
|
|
|
this->infill_extrusion_width.percent = false;
|
|
|
|
this->infill_every_layers.value = 1;
|
2015-02-01 11:08:25 +00:00
|
|
|
this->infill_overlap.value = 15;
|
|
|
|
this->infill_overlap.percent = true;
|
2015-01-31 10:38:17 +00:00
|
|
|
this->infill_speed.value = 80;
|
2014-05-12 21:02:33 +00:00
|
|
|
this->overhangs.value = true;
|
2014-03-26 23:01:33 +00:00
|
|
|
this->perimeter_extruder.value = 1;
|
2013-12-31 14:52:37 +00:00
|
|
|
this->perimeter_extrusion_width.value = 0;
|
|
|
|
this->perimeter_extrusion_width.percent = false;
|
2015-01-31 10:38:17 +00:00
|
|
|
this->perimeter_speed.value = 60;
|
2013-12-31 14:52:37 +00:00
|
|
|
this->perimeters.value = 3;
|
2014-12-16 23:34:00 +00:00
|
|
|
this->solid_infill_extruder.value = 1;
|
2015-01-31 10:38:17 +00:00
|
|
|
this->small_perimeter_speed.value = 15;
|
2014-05-15 16:49:11 +00:00
|
|
|
this->small_perimeter_speed.percent = false;
|
2013-12-31 14:52:37 +00:00
|
|
|
this->solid_infill_below_area.value = 70;
|
|
|
|
this->solid_infill_extrusion_width.value = 0;
|
|
|
|
this->solid_infill_extrusion_width.percent = false;
|
|
|
|
this->solid_infill_every_layers.value = 0;
|
2015-01-31 10:57:18 +00:00
|
|
|
this->solid_infill_speed.value = 20;
|
2014-05-15 16:49:11 +00:00
|
|
|
this->solid_infill_speed.percent = false;
|
2013-12-31 14:52:37 +00:00
|
|
|
this->thin_walls.value = true;
|
|
|
|
this->top_infill_extrusion_width.value = 0;
|
|
|
|
this->top_infill_extrusion_width.percent = false;
|
2015-01-31 10:38:17 +00:00
|
|
|
this->top_solid_infill_speed.value = 15;
|
2014-05-15 16:49:11 +00:00
|
|
|
this->top_solid_infill_speed.percent = false;
|
2013-12-31 14:52:37 +00:00
|
|
|
this->top_solid_layers.value = 3;
|
|
|
|
};
|
|
|
|
|
|
|
|
ConfigOption* option(const t_config_option_key opt_key, bool create = false) {
|
|
|
|
if (opt_key == "bottom_solid_layers") return &this->bottom_solid_layers;
|
2014-06-11 20:10:33 +00:00
|
|
|
if (opt_key == "bridge_flow_ratio") return &this->bridge_flow_ratio;
|
2014-05-15 16:49:11 +00:00
|
|
|
if (opt_key == "bridge_speed") return &this->bridge_speed;
|
2014-11-26 23:38:05 +00:00
|
|
|
if (opt_key == "external_fill_pattern") return &this->external_fill_pattern;
|
2014-06-09 19:14:48 +00:00
|
|
|
if (opt_key == "external_perimeter_extrusion_width") return &this->external_perimeter_extrusion_width;
|
2014-05-15 16:49:11 +00:00
|
|
|
if (opt_key == "external_perimeter_speed") return &this->external_perimeter_speed;
|
2014-06-11 20:15:28 +00:00
|
|
|
if (opt_key == "external_perimeters_first") return &this->external_perimeters_first;
|
2013-12-31 14:52:37 +00:00
|
|
|
if (opt_key == "extra_perimeters") return &this->extra_perimeters;
|
|
|
|
if (opt_key == "fill_angle") return &this->fill_angle;
|
|
|
|
if (opt_key == "fill_density") return &this->fill_density;
|
|
|
|
if (opt_key == "fill_pattern") return &this->fill_pattern;
|
2014-05-15 16:49:11 +00:00
|
|
|
if (opt_key == "gap_fill_speed") return &this->gap_fill_speed;
|
2013-12-31 14:52:37 +00:00
|
|
|
if (opt_key == "infill_extruder") return &this->infill_extruder;
|
|
|
|
if (opt_key == "infill_extrusion_width") return &this->infill_extrusion_width;
|
|
|
|
if (opt_key == "infill_every_layers") return &this->infill_every_layers;
|
2015-02-01 11:08:25 +00:00
|
|
|
if (opt_key == "infill_overlap") return &this->infill_overlap;
|
2014-05-15 16:49:11 +00:00
|
|
|
if (opt_key == "infill_speed") return &this->infill_speed;
|
2014-05-12 21:02:33 +00:00
|
|
|
if (opt_key == "overhangs") return &this->overhangs;
|
2013-12-31 14:52:37 +00:00
|
|
|
if (opt_key == "perimeter_extruder") return &this->perimeter_extruder;
|
|
|
|
if (opt_key == "perimeter_extrusion_width") return &this->perimeter_extrusion_width;
|
2014-05-15 16:49:11 +00:00
|
|
|
if (opt_key == "perimeter_speed") return &this->perimeter_speed;
|
2013-12-31 14:52:37 +00:00
|
|
|
if (opt_key == "perimeters") return &this->perimeters;
|
2014-05-15 16:49:11 +00:00
|
|
|
if (opt_key == "small_perimeter_speed") return &this->small_perimeter_speed;
|
2013-12-31 14:52:37 +00:00
|
|
|
if (opt_key == "solid_infill_below_area") return &this->solid_infill_below_area;
|
2014-12-16 23:34:00 +00:00
|
|
|
if (opt_key == "solid_infill_extruder") return &this->solid_infill_extruder;
|
2013-12-31 14:52:37 +00:00
|
|
|
if (opt_key == "solid_infill_extrusion_width") return &this->solid_infill_extrusion_width;
|
|
|
|
if (opt_key == "solid_infill_every_layers") return &this->solid_infill_every_layers;
|
2014-05-15 16:49:11 +00:00
|
|
|
if (opt_key == "solid_infill_speed") return &this->solid_infill_speed;
|
2013-12-31 14:52:37 +00:00
|
|
|
if (opt_key == "thin_walls") return &this->thin_walls;
|
|
|
|
if (opt_key == "top_infill_extrusion_width") return &this->top_infill_extrusion_width;
|
2014-05-15 16:49:11 +00:00
|
|
|
if (opt_key == "top_solid_infill_speed") return &this->top_solid_infill_speed;
|
2013-12-31 14:52:37 +00:00
|
|
|
if (opt_key == "top_solid_layers") return &this->top_solid_layers;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-10-18 15:41:21 +00:00
|
|
|
class GCodeConfig : public virtual StaticPrintConfig
|
|
|
|
{
|
|
|
|
public:
|
2015-01-30 19:08:00 +00:00
|
|
|
ConfigOptionString before_layer_gcode;
|
2015-01-05 18:39:10 +00:00
|
|
|
ConfigOptionString end_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;
|
2014-10-18 15:41:21 +00:00
|
|
|
ConfigOptionBool gcode_comments;
|
|
|
|
ConfigOptionEnum<GCodeFlavor> gcode_flavor;
|
2015-01-05 18:39:10 +00:00
|
|
|
ConfigOptionString layer_gcode;
|
2014-11-24 17:22:39 +00:00
|
|
|
ConfigOptionFloat pressure_advance;
|
2014-10-21 18:16:45 +00:00
|
|
|
ConfigOptionFloats retract_length;
|
|
|
|
ConfigOptionFloats retract_length_toolchange;
|
|
|
|
ConfigOptionFloats retract_lift;
|
|
|
|
ConfigOptionFloats retract_restart_extra;
|
|
|
|
ConfigOptionFloats retract_restart_extra_toolchange;
|
|
|
|
ConfigOptionInts retract_speed;
|
2015-01-05 18:39:10 +00:00
|
|
|
ConfigOptionString start_gcode;
|
|
|
|
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;
|
2014-10-18 15:41:21 +00:00
|
|
|
|
|
|
|
GCodeConfig() : StaticPrintConfig() {
|
2015-01-30 19:08:00 +00:00
|
|
|
this->before_layer_gcode.value = "";
|
2015-01-05 18:39:10 +00:00
|
|
|
this->end_gcode.value = "M104 S0 ; turn off temperature\nG28 X0 ; home X axis\nM84 ; disable motors\n";
|
2014-10-18 15:41:21 +00:00
|
|
|
this->extrusion_axis.value = "E";
|
2014-10-25 08:42:07 +00:00
|
|
|
this->extrusion_multiplier.values.resize(1);
|
|
|
|
this->extrusion_multiplier.values[0] = 1;
|
|
|
|
this->filament_diameter.values.resize(1);
|
|
|
|
this->filament_diameter.values[0] = 3;
|
2014-10-18 15:41:21 +00:00
|
|
|
this->gcode_comments.value = false;
|
|
|
|
this->gcode_flavor.value = gcfRepRap;
|
2015-01-05 18:39:10 +00:00
|
|
|
this->layer_gcode.value = "";
|
2014-11-24 17:22:39 +00:00
|
|
|
this->pressure_advance.value = 0;
|
2014-10-21 18:16:45 +00:00
|
|
|
this->retract_length.values.resize(1);
|
2015-01-31 10:38:17 +00:00
|
|
|
this->retract_length.values[0] = 2;
|
2014-10-21 18:16:45 +00:00
|
|
|
this->retract_length_toolchange.values.resize(1);
|
|
|
|
this->retract_length_toolchange.values[0] = 10;
|
|
|
|
this->retract_lift.values.resize(1);
|
|
|
|
this->retract_lift.values[0] = 0;
|
|
|
|
this->retract_restart_extra.values.resize(1);
|
|
|
|
this->retract_restart_extra.values[0] = 0;
|
|
|
|
this->retract_restart_extra_toolchange.values.resize(1);
|
|
|
|
this->retract_restart_extra_toolchange.values[0] = 0;
|
|
|
|
this->retract_speed.values.resize(1);
|
2015-01-31 10:38:17 +00:00
|
|
|
this->retract_speed.values[0] = 40;
|
2015-01-05 18:39:10 +00:00
|
|
|
this->start_gcode.value = "G28 ; home all axes\nG1 Z5 F5000 ; lift nozzle\n";
|
|
|
|
this->toolchange_gcode.value = "";
|
2014-10-21 18:16:45 +00:00
|
|
|
this->travel_speed.value = 130;
|
2014-10-18 15:41:21 +00:00
|
|
|
this->use_firmware_retraction.value = false;
|
|
|
|
this->use_relative_e_distances.value = false;
|
2015-01-05 18:39:10 +00:00
|
|
|
this->use_volumetric_e.value = false;
|
2014-10-18 15:41:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ConfigOption* option(const t_config_option_key opt_key, bool create = false) {
|
2015-01-30 19:08:00 +00:00
|
|
|
if (opt_key == "before_layer_gcode") return &this->before_layer_gcode;
|
2015-01-05 18:39:10 +00:00
|
|
|
if (opt_key == "end_gcode") return &this->end_gcode;
|
2014-10-18 15:41:21 +00:00
|
|
|
if (opt_key == "extrusion_axis") return &this->extrusion_axis;
|
2014-10-25 08:42:07 +00:00
|
|
|
if (opt_key == "extrusion_multiplier") return &this->extrusion_multiplier;
|
|
|
|
if (opt_key == "filament_diameter") return &this->filament_diameter;
|
2014-10-18 15:41:21 +00:00
|
|
|
if (opt_key == "gcode_comments") return &this->gcode_comments;
|
|
|
|
if (opt_key == "gcode_flavor") return &this->gcode_flavor;
|
2015-01-05 18:39:10 +00:00
|
|
|
if (opt_key == "layer_gcode") return &this->layer_gcode;
|
2014-11-24 17:22:39 +00:00
|
|
|
if (opt_key == "pressure_advance") return &this->pressure_advance;
|
2014-10-21 18:16:45 +00:00
|
|
|
if (opt_key == "retract_length") return &this->retract_length;
|
|
|
|
if (opt_key == "retract_length_toolchange") return &this->retract_length_toolchange;
|
|
|
|
if (opt_key == "retract_lift") return &this->retract_lift;
|
|
|
|
if (opt_key == "retract_restart_extra") return &this->retract_restart_extra;
|
|
|
|
if (opt_key == "retract_restart_extra_toolchange") return &this->retract_restart_extra_toolchange;
|
|
|
|
if (opt_key == "retract_speed") return &this->retract_speed;
|
2015-01-05 18:39:10 +00:00
|
|
|
if (opt_key == "start_gcode") return &this->start_gcode;
|
|
|
|
if (opt_key == "toolchange_gcode") return &this->toolchange_gcode;
|
2014-10-21 18:16:45 +00:00
|
|
|
if (opt_key == "travel_speed") return &this->travel_speed;
|
2014-10-18 15:41:21 +00:00
|
|
|
if (opt_key == "use_firmware_retraction") return &this->use_firmware_retraction;
|
|
|
|
if (opt_key == "use_relative_e_distances") return &this->use_relative_e_distances;
|
2015-01-05 18:39:10 +00:00
|
|
|
if (opt_key == "use_volumetric_e") return &this->use_volumetric_e;
|
2014-10-18 15:41:21 +00:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
};
|
2014-11-23 17:59:18 +00:00
|
|
|
|
|
|
|
std::string get_extrusion_axis() const
|
|
|
|
{
|
2015-01-07 20:20:58 +00:00
|
|
|
if ((this->gcode_flavor.value == gcfMach3) || (this->gcode_flavor.value == gcfMachinekit)) {
|
2014-11-23 17:59:18 +00:00
|
|
|
return "A";
|
|
|
|
} else if (this->gcode_flavor.value == gcfNoExtrusion) {
|
|
|
|
return "";
|
|
|
|
} else {
|
|
|
|
return this->extrusion_axis.value;
|
|
|
|
}
|
|
|
|
};
|
2014-10-18 15:41:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class PrintConfig : public GCodeConfig
|
2013-12-31 14:52:37 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ConfigOptionBool avoid_crossing_perimeters;
|
2014-06-15 23:49:49 +00:00
|
|
|
ConfigOptionPoints bed_shape;
|
2013-12-31 14:52:37 +00:00
|
|
|
ConfigOptionInt bed_temperature;
|
|
|
|
ConfigOptionFloat bridge_acceleration;
|
|
|
|
ConfigOptionInt bridge_fan_speed;
|
|
|
|
ConfigOptionFloat brim_width;
|
|
|
|
ConfigOptionBool complete_objects;
|
|
|
|
ConfigOptionBool cooling;
|
|
|
|
ConfigOptionFloat default_acceleration;
|
|
|
|
ConfigOptionInt disable_fan_first_layers;
|
|
|
|
ConfigOptionFloat duplicate_distance;
|
|
|
|
ConfigOptionFloat extruder_clearance_height;
|
|
|
|
ConfigOptionFloat extruder_clearance_radius;
|
|
|
|
ConfigOptionPoints extruder_offset;
|
|
|
|
ConfigOptionBool fan_always_on;
|
|
|
|
ConfigOptionInt fan_below_layer_time;
|
|
|
|
ConfigOptionFloat first_layer_acceleration;
|
|
|
|
ConfigOptionInt 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;
|
|
|
|
ConfigOptionBool gcode_arcs;
|
|
|
|
ConfigOptionFloat infill_acceleration;
|
|
|
|
ConfigOptionBool infill_first;
|
|
|
|
ConfigOptionInt max_fan_speed;
|
|
|
|
ConfigOptionInt min_fan_speed;
|
|
|
|
ConfigOptionInt min_print_speed;
|
|
|
|
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;
|
|
|
|
ConfigOptionFloat resolution;
|
|
|
|
ConfigOptionFloats retract_before_travel;
|
|
|
|
ConfigOptionBools retract_layer_change;
|
|
|
|
ConfigOptionFloat skirt_distance;
|
|
|
|
ConfigOptionInt skirt_height;
|
|
|
|
ConfigOptionInt skirts;
|
|
|
|
ConfigOptionInt slowdown_below_layer_time;
|
|
|
|
ConfigOptionBool spiral_vase;
|
|
|
|
ConfigOptionInt standby_temperature_delta;
|
|
|
|
ConfigOptionInts temperature;
|
|
|
|
ConfigOptionInt threads;
|
|
|
|
ConfigOptionFloat vibration_limit;
|
|
|
|
ConfigOptionBools wipe;
|
|
|
|
ConfigOptionFloat z_offset;
|
|
|
|
|
2014-10-18 15:41:21 +00:00
|
|
|
PrintConfig() : GCodeConfig() {
|
2013-12-31 14:52:37 +00:00
|
|
|
this->avoid_crossing_perimeters.value = false;
|
2014-06-15 23:49:49 +00:00
|
|
|
this->bed_shape.values.push_back(Pointf(0,0));
|
|
|
|
this->bed_shape.values.push_back(Pointf(200,0));
|
|
|
|
this->bed_shape.values.push_back(Pointf(200,200));
|
|
|
|
this->bed_shape.values.push_back(Pointf(0,200));
|
2013-12-31 14:52:37 +00:00
|
|
|
this->bed_temperature.value = 0;
|
|
|
|
this->bridge_acceleration.value = 0;
|
|
|
|
this->bridge_fan_speed.value = 100;
|
|
|
|
this->brim_width.value = 0;
|
|
|
|
this->complete_objects.value = false;
|
|
|
|
this->cooling.value = true;
|
|
|
|
this->default_acceleration.value = 0;
|
2015-01-31 10:38:17 +00:00
|
|
|
this->disable_fan_first_layers.value = 3;
|
2013-12-31 14:52:37 +00:00
|
|
|
this->duplicate_distance.value = 6;
|
|
|
|
this->extruder_clearance_height.value = 20;
|
|
|
|
this->extruder_clearance_radius.value = 20;
|
2014-01-04 23:36:33 +00:00
|
|
|
this->extruder_offset.values.resize(1);
|
|
|
|
this->extruder_offset.values[0] = Pointf(0,0);
|
2013-12-31 14:52:37 +00:00
|
|
|
this->fan_always_on.value = false;
|
|
|
|
this->fan_below_layer_time.value = 60;
|
|
|
|
this->first_layer_acceleration.value = 0;
|
|
|
|
this->first_layer_bed_temperature.value = 0;
|
2014-01-02 23:34:30 +00:00
|
|
|
this->first_layer_extrusion_width.value = 200;
|
|
|
|
this->first_layer_extrusion_width.percent = true;
|
2013-12-31 14:52:37 +00:00
|
|
|
this->first_layer_speed.value = 30;
|
2015-01-31 10:38:17 +00:00
|
|
|
this->first_layer_speed.percent = false;
|
2013-12-31 14:52:37 +00:00
|
|
|
this->first_layer_temperature.values.resize(1);
|
|
|
|
this->first_layer_temperature.values[0] = 200;
|
|
|
|
this->gcode_arcs.value = false;
|
|
|
|
this->infill_acceleration.value = 0;
|
|
|
|
this->infill_first.value = false;
|
|
|
|
this->max_fan_speed.value = 100;
|
|
|
|
this->min_fan_speed.value = 35;
|
|
|
|
this->min_print_speed.value = 10;
|
|
|
|
this->min_skirt_length.value = 0;
|
|
|
|
this->notes.value = "";
|
|
|
|
this->nozzle_diameter.values.resize(1);
|
|
|
|
this->nozzle_diameter.values[0] = 0.5;
|
|
|
|
this->only_retract_when_crossing_perimeters.value = true;
|
|
|
|
this->ooze_prevention.value = false;
|
|
|
|
this->output_filename_format.value = "[input_filename_base].gcode";
|
|
|
|
this->perimeter_acceleration.value = 0;
|
|
|
|
this->resolution.value = 0;
|
|
|
|
this->retract_before_travel.values.resize(1);
|
|
|
|
this->retract_before_travel.values[0] = 2;
|
|
|
|
this->retract_layer_change.values.resize(1);
|
2015-01-31 10:38:17 +00:00
|
|
|
this->retract_layer_change.values[0] = false;
|
2013-12-31 14:52:37 +00:00
|
|
|
this->skirt_distance.value = 6;
|
|
|
|
this->skirt_height.value = 1;
|
|
|
|
this->skirts.value = 1;
|
2015-01-31 10:38:17 +00:00
|
|
|
this->slowdown_below_layer_time.value = 5;
|
2013-12-31 14:52:37 +00:00
|
|
|
this->spiral_vase.value = false;
|
|
|
|
this->standby_temperature_delta.value = -5;
|
|
|
|
this->temperature.values.resize(1);
|
|
|
|
this->temperature.values[0] = 200;
|
|
|
|
this->threads.value = 2;
|
|
|
|
this->vibration_limit.value = 0;
|
|
|
|
this->wipe.values.resize(1);
|
|
|
|
this->wipe.values[0] = false;
|
|
|
|
this->z_offset.value = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
ConfigOption* option(const t_config_option_key opt_key, bool create = false) {
|
|
|
|
if (opt_key == "avoid_crossing_perimeters") return &this->avoid_crossing_perimeters;
|
2014-06-15 23:49:49 +00:00
|
|
|
if (opt_key == "bed_shape") return &this->bed_shape;
|
2013-12-31 14:52:37 +00:00
|
|
|
if (opt_key == "bed_temperature") return &this->bed_temperature;
|
|
|
|
if (opt_key == "bridge_acceleration") return &this->bridge_acceleration;
|
|
|
|
if (opt_key == "bridge_fan_speed") return &this->bridge_fan_speed;
|
|
|
|
if (opt_key == "brim_width") return &this->brim_width;
|
|
|
|
if (opt_key == "complete_objects") return &this->complete_objects;
|
|
|
|
if (opt_key == "cooling") return &this->cooling;
|
|
|
|
if (opt_key == "default_acceleration") return &this->default_acceleration;
|
|
|
|
if (opt_key == "disable_fan_first_layers") return &this->disable_fan_first_layers;
|
|
|
|
if (opt_key == "duplicate_distance") return &this->duplicate_distance;
|
|
|
|
if (opt_key == "extruder_clearance_height") return &this->extruder_clearance_height;
|
|
|
|
if (opt_key == "extruder_clearance_radius") return &this->extruder_clearance_radius;
|
|
|
|
if (opt_key == "extruder_offset") return &this->extruder_offset;
|
|
|
|
if (opt_key == "fan_always_on") return &this->fan_always_on;
|
|
|
|
if (opt_key == "fan_below_layer_time") return &this->fan_below_layer_time;
|
|
|
|
if (opt_key == "first_layer_acceleration") return &this->first_layer_acceleration;
|
|
|
|
if (opt_key == "first_layer_bed_temperature") return &this->first_layer_bed_temperature;
|
2014-01-02 23:34:30 +00:00
|
|
|
if (opt_key == "first_layer_extrusion_width") return &this->first_layer_extrusion_width;
|
2013-12-31 14:52:37 +00:00
|
|
|
if (opt_key == "first_layer_speed") return &this->first_layer_speed;
|
|
|
|
if (opt_key == "first_layer_temperature") return &this->first_layer_temperature;
|
|
|
|
if (opt_key == "gcode_arcs") return &this->gcode_arcs;
|
|
|
|
if (opt_key == "infill_acceleration") return &this->infill_acceleration;
|
|
|
|
if (opt_key == "infill_first") return &this->infill_first;
|
|
|
|
if (opt_key == "max_fan_speed") return &this->max_fan_speed;
|
|
|
|
if (opt_key == "min_fan_speed") return &this->min_fan_speed;
|
|
|
|
if (opt_key == "min_print_speed") return &this->min_print_speed;
|
|
|
|
if (opt_key == "min_skirt_length") return &this->min_skirt_length;
|
|
|
|
if (opt_key == "notes") return &this->notes;
|
|
|
|
if (opt_key == "nozzle_diameter") return &this->nozzle_diameter;
|
|
|
|
if (opt_key == "only_retract_when_crossing_perimeters") return &this->only_retract_when_crossing_perimeters;
|
|
|
|
if (opt_key == "ooze_prevention") return &this->ooze_prevention;
|
|
|
|
if (opt_key == "output_filename_format") return &this->output_filename_format;
|
|
|
|
if (opt_key == "perimeter_acceleration") return &this->perimeter_acceleration;
|
|
|
|
if (opt_key == "post_process") return &this->post_process;
|
|
|
|
if (opt_key == "resolution") return &this->resolution;
|
|
|
|
if (opt_key == "retract_before_travel") return &this->retract_before_travel;
|
|
|
|
if (opt_key == "retract_layer_change") return &this->retract_layer_change;
|
|
|
|
if (opt_key == "skirt_distance") return &this->skirt_distance;
|
|
|
|
if (opt_key == "skirt_height") return &this->skirt_height;
|
|
|
|
if (opt_key == "skirts") return &this->skirts;
|
|
|
|
if (opt_key == "slowdown_below_layer_time") return &this->slowdown_below_layer_time;
|
|
|
|
if (opt_key == "spiral_vase") return &this->spiral_vase;
|
|
|
|
if (opt_key == "standby_temperature_delta") return &this->standby_temperature_delta;
|
|
|
|
if (opt_key == "temperature") return &this->temperature;
|
|
|
|
if (opt_key == "threads") return &this->threads;
|
|
|
|
if (opt_key == "vibration_limit") return &this->vibration_limit;
|
|
|
|
if (opt_key == "wipe") return &this->wipe;
|
|
|
|
if (opt_key == "z_offset") return &this->z_offset;
|
|
|
|
|
2014-10-18 15:41:21 +00:00
|
|
|
// look in parent class
|
|
|
|
ConfigOption* opt;
|
|
|
|
if ((opt = GCodeConfig::option(opt_key, create)) != NULL) return opt;
|
|
|
|
|
2013-12-31 14:52:37 +00:00
|
|
|
return NULL;
|
2013-12-21 15:15:41 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-12-28 00:30:05 +00:00
|
|
|
class HostConfig : public virtual StaticPrintConfig
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ConfigOptionString octoprint_host;
|
|
|
|
ConfigOptionString octoprint_apikey;
|
|
|
|
|
|
|
|
HostConfig() : StaticPrintConfig() {
|
|
|
|
this->octoprint_host.value = "";
|
|
|
|
this->octoprint_apikey.value = "";
|
|
|
|
};
|
|
|
|
|
|
|
|
ConfigOption* option(const t_config_option_key opt_key, bool create = false) {
|
|
|
|
if (opt_key == "octoprint_host") return &this->octoprint_host;
|
|
|
|
if (opt_key == "octoprint_apikey") return &this->octoprint_apikey;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
class FullPrintConfig
|
|
|
|
: public PrintObjectConfig, public PrintRegionConfig, public PrintConfig, public HostConfig
|
2014-10-18 15:41:21 +00:00
|
|
|
{
|
2014-03-25 23:08:15 +00:00
|
|
|
public:
|
2014-01-02 09:44:54 +00:00
|
|
|
ConfigOption* option(const t_config_option_key opt_key, bool create = false) {
|
|
|
|
ConfigOption* opt;
|
|
|
|
if ((opt = PrintObjectConfig::option(opt_key, create)) != NULL) return opt;
|
|
|
|
if ((opt = PrintRegionConfig::option(opt_key, create)) != NULL) return opt;
|
|
|
|
if ((opt = PrintConfig::option(opt_key, create)) != NULL) return opt;
|
2014-12-28 00:30:05 +00:00
|
|
|
if ((opt = HostConfig::option(opt_key, create)) != NULL) return opt;
|
2014-01-02 09:44:54 +00:00
|
|
|
return NULL;
|
|
|
|
};
|
|
|
|
};
|
2013-12-31 14:52:37 +00:00
|
|
|
|
2013-12-21 15:15:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|