123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598 |
- // #include "libslic3r/GCodeSender.hpp"
- #include "ConfigManipulation.hpp"
- #include "I18N.hpp"
- #include "GUI_App.hpp"
- #include "format.hpp"
- #include "libslic3r/Model.hpp"
- #include "libslic3r/PresetBundle.hpp"
- #include <wx/msgdlg.h>
- namespace Slic3r {
- namespace GUI {
- void ConfigManipulation::apply(DynamicPrintConfig* config, DynamicPrintConfig* new_config)
- {
- bool modified = false;
- for (auto opt_key : config->diff(*new_config)) {
- config->set_key_value(opt_key, new_config->option(opt_key)->clone());
- modified = true;
- }
- if (modified && load_config != nullptr)
- load_config();
- }
- void ConfigManipulation::toggle_field(const std::string& opt_key, const bool toggle, int opt_index/* = -1*/)
- {
- if (local_config) {
- if (local_config->option(opt_key) == nullptr)
- return;
- }
- cb_toggle_field(opt_key, toggle, opt_index);
- }
- void ConfigManipulation::update_print_fff_config(DynamicPrintConfig* config, const bool is_global_config)
- {
- // #ys_FIXME_to_delete
- //! Temporary workaround for the correct updates of the TextCtrl (like "layer_height"):
- // KillFocus() for the wxSpinCtrl use CallAfter function. So,
- // to except the duplicate call of the update() after dialog->ShowModal(),
- // let check if this process is already started.
- if (is_msg_dlg_already_exist)
- return;
- // layer_height shouldn't be equal to zero
- if (config->opt_float("layer_height") < EPSILON)
- {
- const wxString msg_text = _(L("Zero layer height is not valid.\n\nThe layer height will be reset to 0.01."));
- wxMessageDialog dialog(nullptr, msg_text, _(L("Layer height")), wxICON_WARNING | wxOK);
- DynamicPrintConfig new_conf = *config;
- is_msg_dlg_already_exist = true;
- dialog.ShowModal();
- new_conf.set_key_value("layer_height", new ConfigOptionFloat(0.01));
- apply(config, &new_conf);
- is_msg_dlg_already_exist = false;
- }
- if (fabs(config->option<ConfigOptionFloatOrPercent>("first_layer_height")->value - 0) < EPSILON)
- {
- const wxString msg_text = _(L("Zero first layer height is not valid.\n\nThe first layer height will be reset to 0.01."));
- wxMessageDialog dialog(nullptr, msg_text, _(L("First layer height")), wxICON_WARNING | wxOK);
- DynamicPrintConfig new_conf = *config;
- is_msg_dlg_already_exist = true;
- dialog.ShowModal();
- new_conf.set_key_value("first_layer_height", new ConfigOptionFloatOrPercent(0.01, false));
- apply(config, &new_conf);
- is_msg_dlg_already_exist = false;
- }
- double fill_density = config->option<ConfigOptionPercent>("fill_density")->value;
- if (config->opt_bool("spiral_vase") && !(
- config->opt_int("perimeters") == 1
- && config->opt_int("top_solid_layers") == 0
- && fill_density == 0
- && config->opt_bool("support_material") == false
- && config->opt_int("support_material_enforce_layers") == 0
- && config->opt_bool("exact_last_layer_height") == false
- && config->opt_bool("ensure_vertical_shell_thickness") == true
- && config->opt_bool("infill_dense") == false
- && config->opt_bool("extra_perimeters") == false
- && config->opt_bool("extra_perimeters_overhangs") == false
- && config->opt_bool("extra_perimeters_odd_layers") == false
- && config->opt_bool("overhangs_reverse") == false
- )) {
- wxString msg_text = _(L("The Spiral Vase mode requires:\n"
- "- one perimeter\n"
- "- no top solid layers\n"
- "- 0% fill density\n"
- "- no support material\n"
- "- Ensure vertical shell thickness enabled\n"
- "- unchecked 'exact last layer height'\n"
- "- unchecked 'dense infill'\n"
- "- unchecked 'extra perimeters'"));
- if (is_global_config)
- msg_text += "\n\n" + _(L("Shall I adjust those settings in order to enable Spiral Vase?"));
- wxMessageDialog dialog(nullptr, msg_text, _(L("Spiral Vase")),
- wxICON_WARNING | (is_global_config ? wxYES | wxNO : wxOK));
- DynamicPrintConfig new_conf = *config;
- auto answer = dialog.ShowModal();
- if (!is_global_config) {
- if (this->local_config->get().optptr("spiral_vase"))
- new_conf.set_key_value("spiral_vase", new ConfigOptionBool(false));
- else if (this->local_config->get().optptr("perimeters"))
- new_conf.set_key_value("perimeters", new ConfigOptionInt(1));
- else if (this->local_config->get().optptr("top_solid_layers"))
- new_conf.set_key_value("top_solid_layers", new ConfigOptionInt(0));
- else if (this->local_config->get().optptr("fill_density"))
- new_conf.set_key_value("fill_density", new ConfigOptionPercent(0));
- else if (this->local_config->get().optptr("support_material"))
- new_conf.set_key_value("support_material", new ConfigOptionBool(false));
- else if (this->local_config->get().optptr("support_material_enforce_layers"))
- new_conf.set_key_value("support_material_enforce_layers", new ConfigOptionInt(0));
- else if (this->local_config->get().optptr("exact_last_layer_height"))
- new_conf.set_key_value("exact_last_layer_height", new ConfigOptionBool(false));
- else if (this->local_config->get().optptr("ensure_vertical_shell_thickness"))
- new_conf.set_key_value("ensure_vertical_shell_thickness", new ConfigOptionBool(true));
- else if (this->local_config->get().optptr("infill_dense"))
- new_conf.set_key_value("infill_dense", new ConfigOptionBool(false));
- else if (this->local_config->get().optptr("extra_perimeters"))
- new_conf.set_key_value("extra_perimeters", new ConfigOptionBool(false));
- else if (this->local_config->get().optptr("extra_perimeters_overhangs"))
- new_conf.set_key_value("extra_perimeters_overhangs", new ConfigOptionBool(false));
- else if (this->local_config->get().optptr("extra_perimeters_odd_layers"))
- new_conf.set_key_value("extra_perimeters_odd_layers", new ConfigOptionBool(false));
- else if (this->local_config->get().optptr("overhangs_reverse"))
- new_conf.set_key_value("overhangs_reverse", new ConfigOptionBool(false));
- this->local_config->apply_only(new_conf, this->local_config->keys(), true);
- } else if (answer == wxID_YES) {
- new_conf.set_key_value("perimeters", new ConfigOptionInt(1));
- new_conf.set_key_value("top_solid_layers", new ConfigOptionInt(0));
- new_conf.set_key_value("fill_density", new ConfigOptionPercent(0));
- new_conf.set_key_value("support_material", new ConfigOptionBool(false));
- new_conf.set_key_value("support_material_enforce_layers", new ConfigOptionInt(0));
- new_conf.set_key_value("exact_last_layer_height", new ConfigOptionBool(false));
- new_conf.set_key_value("ensure_vertical_shell_thickness", new ConfigOptionBool(true));
- new_conf.set_key_value("infill_dense", new ConfigOptionBool(false));
- new_conf.set_key_value("extra_perimeters", new ConfigOptionBool(false));
- new_conf.set_key_value("extra_perimeters_overhangs", new ConfigOptionBool(false));
- new_conf.set_key_value("extra_perimeters_odd_layers", new ConfigOptionBool(false));
- new_conf.set_key_value("overhangs_reverse", new ConfigOptionBool(false));
- fill_density = 0;
- } else {
- new_conf.set_key_value("spiral_vase", new ConfigOptionBool(false));
- }
- apply(config, &new_conf);
- if (cb_value_change)
- cb_value_change("fill_density", fill_density);
- }
- if (config->opt_bool("wipe_tower") && config->opt_bool("support_material") &&
- ((ConfigOptionEnumGeneric*)config->option("support_material_contact_distance_type"))->value != zdNone &&
- (config->opt_int("support_material_extruder") != 0 || config->opt_int("support_material_interface_extruder") != 0)) {
- wxString msg_text = _(L("The Wipe Tower currently supports the non-soluble supports only\n"
- "if they are printed with the current extruder without triggering a tool change.\n"
- "(both support_material_extruder and support_material_interface_extruder need to be set to 0)."));
- if (is_global_config)
- msg_text += "\n\n" + _(L("Shall I adjust those settings in order to enable the Wipe Tower?"));
- wxMessageDialog dialog(nullptr, msg_text, _(L("Wipe Tower")),
- wxICON_WARNING | (is_global_config ? wxYES | wxNO : wxOK));
- DynamicPrintConfig new_conf = *config;
- auto answer = dialog.ShowModal();
- if (!is_global_config) {
- if (this->local_config->get().optptr("wipe_tower"))
- new_conf.set_key_value("wipe_tower", new ConfigOptionBool(false));
- else if (this->local_config->get().optptr("support_material_extruder"))
- new_conf.set_key_value("support_material_extruder", new ConfigOptionInt(0));
- else if (this->local_config->get().optptr("support_material_interface_extruder"))
- new_conf.set_key_value("support_material_interface_extruder", new ConfigOptionInt(0));
- else if (this->local_config->get().optptr("support_material_contact_distance_type"))
- new_conf.set_key_value("support_material_contact_distance_type", new ConfigOptionEnum<SupportZDistanceType>(zdNone));
- else if (this->local_config->get().optptr("support_material"))
- new_conf.set_key_value("support_material", new ConfigOptionBool(false));
- this->local_config->apply_only(new_conf, this->local_config->keys(), true);
- } else if (answer == wxID_YES) {
- new_conf.set_key_value("support_material_extruder", new ConfigOptionInt(0));
- new_conf.set_key_value("support_material_interface_extruder", new ConfigOptionInt(0));
- } else
- new_conf.set_key_value("wipe_tower", new ConfigOptionBool(false));
- apply(config, &new_conf);
- }
- if (config->opt_bool("wipe_tower") && config->opt_bool("support_material") &&
- ((ConfigOptionEnumGeneric*)config->option("support_material_contact_distance_type"))->value == zdNone &&
- !config->opt_bool("support_material_synchronize_layers")) {
- wxString msg_text = _(L("For the Wipe Tower to work with the soluble supports, the support layers\n"
- "need to be synchronized with the object layers."));
- if (is_global_config)
- msg_text += "\n\n" + _(L("Shall I synchronize support layers in order to enable the Wipe Tower?"));
- wxMessageDialog dialog(nullptr, msg_text, _(L("Wipe Tower")),
- wxICON_WARNING | (is_global_config ? wxYES | wxNO : wxOK));
- DynamicPrintConfig new_conf = *config;
- auto answer = dialog.ShowModal();
- if (!is_global_config) {
- if (this->local_config->get().optptr("wipe_tower"))
- new_conf.set_key_value("wipe_tower", new ConfigOptionBool(false));
- else if (this->local_config->get().optptr("support_material_synchronize_layers"))
- new_conf.set_key_value("support_material_synchronize_layers", new ConfigOptionBool(true));
- else if (this->local_config->get().optptr("support_material_contact_distance_type"))
- new_conf.set_key_value("support_material_contact_distance_type", new ConfigOptionEnum<SupportZDistanceType>(zdFilament));
- else if (this->local_config->get().optptr("support_material"))
- new_conf.set_key_value("support_material", new ConfigOptionBool(false));
- this->local_config->apply_only(new_conf, this->local_config->keys(), true);
- } else if (answer == wxID_YES) {
- new_conf.set_key_value("support_material_synchronize_layers", new ConfigOptionBool(true));
- } else {
- new_conf.set_key_value("wipe_tower", new ConfigOptionBool(false));
- }
- apply(config, &new_conf);
- }
- // check forgotten '%'
- {
- struct optDescr {
- ConfigOptionFloatOrPercent* opt;
- std::string name;
- float min;
- float max;
- };
- float diameter = 0.4f;
- if (config->option<ConfigOptionFloatOrPercent>("extrusion_width")->percent) {
- //has to be percent
- diameter = 0;
- } else {
- diameter = config->option<ConfigOptionFloatOrPercent>("extrusion_width")->value;
- }
- std::vector<optDescr> opts;
- opts.push_back({ config->option<ConfigOptionFloatOrPercent>("infill_overlap"), "infill_overlap", 0, diameter * 10 });
- for (int i = 0; i < opts.size(); i++) {
- if ((!opts[i].opt->percent) && (opts[i].opt->get_abs_value(diameter) < opts[i].min || opts[i].opt->get_abs_value(diameter) > opts[i].max)) {
- wxString msg_text = _(L("Did you forgot to put a '%' in the " + opts[i].name + " field? "
- "it's currently set to " + std::to_string(opts[i].opt->get_abs_value(diameter)) + " mm."));
- if (is_global_config) {
- msg_text += "\n\n" + _(L("Shall I add the '%'?"));
- wxMessageDialog dialog(nullptr, msg_text, _(L("Wipe Tower")),
- wxICON_WARNING | (is_global_config ? wxYES | wxNO : wxOK));
- DynamicPrintConfig new_conf = *config;
- auto answer = dialog.ShowModal();
- if (answer == wxID_YES) {
- new_conf.set_key_value(opts[i].name, new ConfigOptionFloatOrPercent(opts[i].opt->value * 100, true));
- apply(config, &new_conf);
- }
- }
- }
- }
- }
- // check changes from FloatOrPercent to percent (useful to migrate config from prusa to Slic3r)
- {
- std::vector<std::string> names;
- names.push_back("bridge_flow_ratio");
- names.push_back("over_bridge_flow_ratio");
- names.push_back("bridge_overlap");
- names.push_back("fill_top_flow_ratio");
- names.push_back("first_layer_flow_ratio");
- for (int i = 0; i < names.size(); i++) {
- if (config->option<ConfigOptionPercent>(names[i])->value <= 2) {
- DynamicPrintConfig new_conf = *config;
- new_conf.set_key_value(names[i], new ConfigOptionPercent(config->option<ConfigOptionPercent>(names[i])->value * 100));
- apply(config, &new_conf);
- }
- }
- }
- if (config->opt_float("brim_width") > 0 && config->opt_float("brim_offset") >= config->opt_float("brim_width")) {
- wxString msg_text = _(L("It's not possible to use a bigger value for the brim offset than the brim width, as it won't extrude anything."
- " Brim offset have to be lower than the brim width."));
- if (is_global_config) {
- msg_text += "\n\n" + _(L("Shall I switch the brim offset to 0?"));
- wxMessageDialog dialog(nullptr, msg_text, _(L("Brim configuration")),
- wxICON_WARNING | (is_global_config ? wxYES | wxNO : wxOK));
- auto answer = dialog.ShowModal();
- if (!is_global_config || answer == wxID_YES) {
- DynamicPrintConfig new_conf = *config;
- new_conf.set_key_value("brim_offset", new ConfigOptionFloat(0));
- apply(config, &new_conf);
- }
- }
- }
- static bool support_material_overhangs_queried = false;
- if (config->opt_bool("support_material")) {
- // Ask only once.
- if (!support_material_overhangs_queried) {
- support_material_overhangs_queried = true;
- if (config->option<ConfigOptionFloatOrPercent>("overhangs_width_speed") == 0) {
- wxString msg_text = _(L("Supports work better, if the following feature is enabled:\n"
- "- overhangs with bridge speed & fan"));
- if (is_global_config) {
- msg_text += "\n\n" + _(L("Shall I adjust those settings for supports?"));
- wxMessageDialog dialog(nullptr, msg_text, _(L("Support Generator")),
- wxICON_WARNING | (is_global_config ? wxYES | wxNO | wxCANCEL : wxOK));
- DynamicPrintConfig new_conf = *config;
- auto answer = dialog.ShowModal();
- if (!is_global_config || answer == wxID_YES) {
- // Enable "detect bridging perimeters".
- new_conf.set_key_value("overhangs_width_speed", new ConfigOptionFloatOrPercent(50, true));
- } else if (answer == wxID_NO) {
- // Do nothing, leave supports on and "detect bridging perimeters" off.
- } else if (answer == wxID_CANCEL) {
- // Disable supports.
- new_conf.set_key_value("support_material", new ConfigOptionBool(false));
- support_material_overhangs_queried = false;
- }
- apply(config, &new_conf);
- }
- }
- }
- } else {
- support_material_overhangs_queried = false;
- }
- if (config->option<ConfigOptionPercent>("fill_density")->value == 100) {
- std::string fill_pattern = config->option<ConfigOptionEnum<InfillPattern>>("fill_pattern")->serialize();
- const std::vector<std::string>& top_fill_pattern_values = config->def()->get("top_fill_pattern")->enum_values;
- bool correct_100p_fill = std::find(top_fill_pattern_values.begin(), top_fill_pattern_values.end(), fill_pattern) != top_fill_pattern_values.end();
- if (!correct_100p_fill) {
- const std::vector<std::string>& bottom_fill_pattern_values = config->def()->get("bottom_fill_pattern")->enum_values;
- correct_100p_fill = std::find(bottom_fill_pattern_values.begin(), bottom_fill_pattern_values.end(), fill_pattern) != bottom_fill_pattern_values.end();
- }
- if (!correct_100p_fill) {
- // get fill_pattern name from enum_labels for using this one at dialog_msg
- const ConfigOptionDef* fill_pattern_def = config->def()->get("fill_pattern");
- assert(fill_pattern_def != nullptr);
- auto it_pattern = std::find(fill_pattern_def->enum_values.begin(), fill_pattern_def->enum_values.end(), fill_pattern);
- assert(it_pattern != fill_pattern_def->enum_values.end());
- if (it_pattern != fill_pattern_def->enum_values.end()) {
- wxString msg_text = GUI::format_wxstr(_L("The %1% infill pattern is not supposed to work at 100%% density."),
- _(fill_pattern_def->enum_labels[it_pattern - fill_pattern_def->enum_values.begin()]));
- if (is_global_config) {
- msg_text += "\n\n" + _L("Shall I switch to rectilinear fill pattern?");
- wxMessageDialog dialog(nullptr, msg_text, _L("Infill"),
- wxICON_WARNING | (is_global_config ? wxYES | wxNO : wxOK));
- DynamicPrintConfig new_conf = *config;
- auto answer = dialog.ShowModal();
- if (!is_global_config || answer == wxID_YES) {
- new_conf.set_key_value("fill_pattern", new ConfigOptionEnum<InfillPattern>(ipRectilinear));
- fill_density = 100;
- } else
- fill_density = wxGetApp().preset_bundle->fff_prints.get_selected_preset().config.option<ConfigOptionPercent>("fill_density")->value;
- new_conf.set_key_value("fill_density", new ConfigOptionPercent(fill_density));
- apply(config, &new_conf);
- if (cb_value_change)
- cb_value_change("fill_density", fill_density);
- }
- }
- }
- }
- }
- void ConfigManipulation::toggle_print_fff_options(DynamicPrintConfig* config)
- {
- bool have_perimeters = config->opt_int("perimeters") > 0;
- for (auto el : { "ensure_vertical_shell_thickness", "external_perimeter_speed", "extra_perimeters", "extra_perimeters_overhangs", "extra_perimeters_odd_layers",
- "external_perimeters_first", "external_perimeters_vase", "external_perimeter_extrusion_width",
- "no_perimeter_unsupported_algo", "only_one_perimeter_top", "overhangs", "overhangs_reverse",
- "perimeter_loop", "perimeter_loop_seam","perimeter_speed",
- "seam_position", "small_perimeter_speed", "small_perimeter_min_length", " small_perimeter_max_length", "spiral_vase",
- "thin_walls", "thin_perimeters"})
- toggle_field(el, have_perimeters);
- toggle_field("overhangs_width", config->option<ConfigOptionFloatOrPercent>("overhangs_width_speed")->value > 0);
- toggle_field("overhangs_reverse_threshold", have_perimeters && config->opt_bool("overhangs_reverse"));
- toggle_field("min_width_top_surface", have_perimeters && config->opt_bool("only_one_perimeter_top"));
- toggle_field("thin_perimeters_all", have_perimeters && config->opt_bool("thin_perimeters"));
- for (auto el : { "external_perimeters_vase", "external_perimeters_nothole", "external_perimeters_hole", "perimeter_bonding"})
- toggle_field(el, config->opt_bool("external_perimeters_first"));
- for (auto el : { "thin_walls_min_width", "thin_walls_overlap", "thin_walls_merge" })
- toggle_field(el, have_perimeters && config->opt_bool("thin_walls"));
- for (auto el : { "seam_angle_cost", "seam_travel_cost" })
- toggle_field(el, have_perimeters && config->option<ConfigOptionEnum<SeamPosition>>("seam_position")->value == SeamPosition::spCost);
- toggle_field("perimeter_loop_seam", config->opt_bool("perimeter_loop"));
- for (auto el : { "gap_fill_last", "gap_fill_min_area" })
- toggle_field(el, config->opt_bool("gap_fill"));
- toggle_field("avoid_crossing_not_first_layer", config->opt_bool("avoid_crossing_perimeters"));
- bool have_infill = config->option<ConfigOptionPercent>("fill_density")->value > 0;
- // infill_extruder uses the same logic as in Print::extruders()
- for (auto el : { "fill_pattern", "infill_connection", "infill_every_layers", "infill_only_where_needed",
- "solid_infill_every_layers", "solid_infill_below_area", "infill_extruder", "infill_anchor_max" })
- toggle_field(el, have_infill);
- // Only allow configuration of open anchors if the anchoring is enabled.
- bool has_infill_anchors = have_infill && config->option<ConfigOptionEnum<InfillConnection>>("infill_connection")->value != InfillConnection::icNotConnected;
- toggle_field("infill_anchor_max", has_infill_anchors);
- has_infill_anchors = has_infill_anchors && config->option<ConfigOptionFloatOrPercent>("infill_anchor_max")->value > 0;
- toggle_field("infill_anchor", has_infill_anchors);
- bool can_have_infill_dense = config->option<ConfigOptionPercent>("fill_density")->value < 50;
- for (auto el : { "infill_dense" })
- toggle_field(el, can_have_infill_dense);
- bool have_infill_dense = config->opt_bool("infill_dense") && can_have_infill_dense;
- for (auto el : { "infill_dense_algo" })
- toggle_field(el, have_infill_dense);
- bool has_spiral_vase = have_perimeters && config->opt_bool("spiral_vase");
- bool has_top_solid_infill = config->opt_int("top_solid_layers") > 0 || has_spiral_vase;
- bool has_bottom_solid_infill = config->opt_int("bottom_solid_layers") > 0;
- bool has_solid_infill = has_top_solid_infill || has_bottom_solid_infill || (have_infill && (config->opt_int("solid_infill_every_layers") > 0 || config->opt_float("solid_infill_below_area") > 0));
- // solid_infill_extruder uses the same logic as in Print::extruders()
- for (auto el : { "top_fill_pattern", "bottom_fill_pattern", "solid_fill_pattern", "enforce_full_fill_volume", "external_infill_margin", "bridged_infill_margin",
- "infill_first", "solid_infill_extruder", "solid_infill_extrusion_width", "solid_infill_speed" })
- toggle_field(el, has_solid_infill);
- for (auto el : { "fill_angle", "fill_angle_increment", "bridge_angle", "infill_extrusion_width",
- "infill_speed" })
- toggle_field(el, have_infill || has_solid_infill);
- toggle_field("top_solid_min_thickness", ! has_spiral_vase && has_top_solid_infill);
- toggle_field("bottom_solid_min_thickness", ! has_spiral_vase && has_bottom_solid_infill);
- // gap fill can appear in infill
- //toggle_field("gap_fill_speed", have_perimeters && config->opt_bool("gap_fill"));
- bool has_ironing_pattern = config->opt_enum<InfillPattern>("top_fill_pattern") == InfillPattern::ipSmooth
- || config->opt_enum<InfillPattern>("bottom_fill_pattern") == InfillPattern::ipSmooth
- || config->opt_enum<InfillPattern>("solid_fill_pattern") == InfillPattern::ipSmooth;
- for (auto el : {"fill_smooth_width, fill_smooth_distribution" })
- toggle_field(el, has_ironing_pattern);
- for (auto el : { "ironing", "top_fill_pattern", "infill_connection_top", "top_infill_extrusion_width", "top_solid_infill_speed" })
- toggle_field(el, has_top_solid_infill);
- for (auto el : { "bottom_fill_pattern", "infill_connection_bottom" })
- toggle_field(el, has_bottom_solid_infill);
- for (auto el : { "solid_fill_pattern", "infill_connection_solid" })
- toggle_field(el, has_solid_infill); // should be top_solid_layers") > 1 || bottom_solid_layers") > 1
- for (auto el : { "hole_to_polyhole_threshold", "hole_to_polyhole_twisted" })
- toggle_field(el, config->opt_bool("hole_to_polyhole"));
- bool have_default_acceleration = config->option<ConfigOptionFloatOrPercent>("default_acceleration")->value > 0;
- for (auto el : { "perimeter_acceleration", "infill_acceleration",
- "bridge_acceleration", "first_layer_acceleration", "travel_acceleration" })
- toggle_field(el, have_default_acceleration);
- bool have_skirt = config->opt_int("skirts") > 0;
- toggle_field("skirt_height", have_skirt && !config->opt_bool("draft_shield"));
- toggle_field("skirt_width", have_skirt);
- for (auto el : { "skirt_brim", "skirt_distance", "skirt_distance_from_brim", "draft_shield", "min_skirt_length" })
- toggle_field(el, have_skirt);
- bool have_brim = config->opt_float("brim_width") > 0 || config->opt_float("brim_width_interior") > 0;
- // perimeter_extruder uses the same logic as in Print::extruders()
- toggle_field("perimeter_extruder", have_perimeters || have_brim);
- toggle_field("brim_ears", config->opt_float("brim_width") > 0);
- toggle_field("brim_inside_holes", config->opt_float("brim_width") > 0 && config->opt_float("brim_width_interior") == 0);
- toggle_field("brim_ears_max_angle", have_brim && config->opt_bool("brim_ears"));
- toggle_field("brim_ears_pattern", have_brim && config->opt_bool("brim_ears"));
- bool have_raft = config->opt_int("raft_layers") > 0;
- bool have_support_material = config->opt_bool("support_material") || have_raft;
- bool have_support_material_auto = have_support_material && config->opt_bool("support_material_auto");
- bool have_support_interface = config->opt_int("support_material_interface_layers") > 0;
- bool have_support_soluble = have_support_material && ((ConfigOptionEnumGeneric*)config->option("support_material_contact_distance_type"))->value == zdNone;
- for (auto el : { "support_material_pattern", "support_material_with_sheath",
- "support_material_spacing", "support_material_angle", "support_material_interface_layers",
- "dont_support_bridges", "support_material_extrusion_width",
- "support_material_contact_distance_type",
- "support_material_xy_spacing", "support_material_interface_pattern" })
- toggle_field(el, have_support_material);
- toggle_field("support_material_threshold", have_support_material_auto);
- for (auto el : { "support_material_contact_distance_top",
- "support_material_contact_distance_bottom" })
- toggle_field(el, have_support_material && !have_support_soluble);
- for (auto el : { "support_material_interface_spacing", "support_material_interface_extruder",
- "support_material_interface_speed", "support_material_interface_contact_loops" })
- toggle_field(el, have_support_material && have_support_interface);
- toggle_field("support_material_synchronize_layers", have_support_soluble);
- toggle_field("perimeter_extrusion_width", have_perimeters || have_skirt || have_brim);
- toggle_field("support_material_extruder", have_support_material || have_skirt);
- toggle_field("support_material_speed", have_support_material || have_brim || have_skirt);
- bool has_PP_ironing = has_top_solid_infill && config->opt_bool("ironing");
- for (auto el : { "ironing_type", "ironing_flowrate", "ironing_spacing", "ironing_angle" })
- toggle_field(el, has_PP_ironing);
- bool has_ironing = has_PP_ironing || has_ironing_pattern;
- for (auto el : { "ironing_speed" })
- toggle_field(el, has_ironing);
-
- bool have_sequential_printing = config->opt_bool("complete_objects");
- for (auto el : { /*"extruder_clearance_radius", "extruder_clearance_height",*/ "complete_objects_one_skirt",
- "complete_objects_sort", "complete_objects_one_brim"})
- toggle_field(el, have_sequential_printing);
- bool have_ooze_prevention = config->opt_bool("ooze_prevention");
- toggle_field("standby_temperature_delta", have_ooze_prevention);
- bool have_wipe_tower = config->opt_bool("wipe_tower");
- for (auto el : { "wipe_tower_x", "wipe_tower_y", "wipe_tower_width", "wipe_tower_rotation_angle",
- "wipe_tower_bridging", "wipe_tower_brim", "wipe_tower_no_sparse_layers", "single_extruder_multi_material_priming" })
- toggle_field(el, have_wipe_tower);
- bool have_avoid_crossing_perimeters = config->opt_bool("avoid_crossing_perimeters");
- toggle_field("avoid_crossing_perimeters_max_detour", have_avoid_crossing_perimeters);
- for (auto el : { "fill_smooth_width", "fill_smooth_distribution" })
- toggle_field(el, (has_top_solid_infill && config->option<ConfigOptionEnum<InfillPattern>>("top_fill_pattern")->value == InfillPattern::ipSmooth)
- || (has_bottom_solid_infill && config->option<ConfigOptionEnum<InfillPattern>>("bottom_fill_pattern")->value == InfillPattern::ipSmooth)
- || (has_solid_infill && config->option<ConfigOptionEnum<InfillPattern>>("solid_fill_pattern")->value == InfillPattern::ipSmooth)
- || (have_support_material && config->option<ConfigOptionEnum<InfillPattern>>("support_material_interface_pattern")->value == InfillPattern::ipSmooth));
- //TODO: can the milling_diameter or the milling_cutter be check to enable/disable this?
- for (auto el : { "milling_after_z", "milling_extra_size", "milling_speed" })
- toggle_field(el, config->opt_bool("milling_post_process"));
- }
- void ConfigManipulation::update_print_sla_config(DynamicPrintConfig* config, const bool is_global_config/* = false*/)
- {
- double head_penetration = config->opt_float("support_head_penetration");
- double head_width = config->opt_float("support_head_width");
- if (head_penetration > head_width) {
- wxString msg_text = _(L("Head penetration should not be greater than the head width."));
- wxMessageDialog dialog(nullptr, msg_text, _(L("Invalid Head penetration")), wxICON_WARNING | wxOK);
- DynamicPrintConfig new_conf = *config;
- if (dialog.ShowModal() == wxID_OK) {
- new_conf.set_key_value("support_head_penetration", new ConfigOptionFloat(head_width));
- apply(config, &new_conf);
- }
- }
- double pinhead_d = config->opt_float("support_head_front_diameter");
- double pillar_d = config->opt_float("support_pillar_diameter");
- if (pinhead_d > pillar_d) {
- wxString msg_text = _(L("Pinhead diameter should be smaller than the pillar diameter."));
- wxMessageDialog dialog(nullptr, msg_text, _(L("Invalid pinhead diameter")), wxICON_WARNING | wxOK);
- DynamicPrintConfig new_conf = *config;
- if (dialog.ShowModal() == wxID_OK) {
- new_conf.set_key_value("support_head_front_diameter", new ConfigOptionFloat(pillar_d / 2.0));
- apply(config, &new_conf);
- }
- }
- }
- void ConfigManipulation::toggle_print_sla_options(DynamicPrintConfig* config)
- {
- bool supports_en = config->opt_bool("supports_enable");
- toggle_field("support_head_front_diameter", supports_en);
- toggle_field("support_head_penetration", supports_en);
- toggle_field("support_head_width", supports_en);
- toggle_field("support_pillar_diameter", supports_en);
- toggle_field("support_small_pillar_diameter_percent", supports_en);
- toggle_field("support_max_bridges_on_pillar", supports_en);
- toggle_field("support_pillar_connection_mode", supports_en);
- toggle_field("support_buildplate_only", supports_en);
- toggle_field("support_base_diameter", supports_en);
- toggle_field("support_base_height", supports_en);
- toggle_field("support_base_safety_distance", supports_en);
- toggle_field("support_critical_angle", supports_en);
- toggle_field("support_max_bridge_length", supports_en);
- toggle_field("support_max_pillar_link_distance", supports_en);
- toggle_field("support_points_density_relative", supports_en);
- toggle_field("support_points_minimal_distance", supports_en);
- bool pad_en = config->opt_bool("pad_enable");
- toggle_field("pad_wall_thickness", pad_en);
- toggle_field("pad_wall_height", pad_en);
- toggle_field("pad_brim_size", pad_en);
- toggle_field("pad_max_merge_distance", pad_en);
- // toggle_field("pad_edge_radius", supports_en);
- toggle_field("pad_wall_slope", pad_en);
- toggle_field("pad_around_object", pad_en);
- toggle_field("pad_around_object_everywhere", pad_en);
- bool zero_elev = config->opt_bool("pad_around_object") && pad_en;
- toggle_field("support_object_elevation", supports_en && !zero_elev);
- toggle_field("pad_object_gap", zero_elev);
- toggle_field("pad_around_object_everywhere", zero_elev);
- toggle_field("pad_object_connector_stride", zero_elev);
- toggle_field("pad_object_connector_width", zero_elev);
- toggle_field("pad_object_connector_penetration", zero_elev);
- }
- } // GUI
- } // Slic3r
|