From 8bf65c0963d1ee39bba12f67f33177d4ac6d6a60 Mon Sep 17 00:00:00 2001 From: "chunmao.guo" Date: Fri, 6 Dec 2024 14:05:50 +0800 Subject: [PATCH] FIX: object params variant crash Change-Id: Ia67b98c29a0cc97f8479911ffdefb942cb6c751f Jira: none --- src/libslic3r/Config.cpp | 6 ++++-- src/libslic3r/PrintConfig.cpp | 4 ++++ src/slic3r/GUI/Field.cpp | 2 +- src/slic3r/GUI/Tab.cpp | 20 ++++++++++++++++---- 4 files changed, 25 insertions(+), 7 deletions(-) diff --git a/src/libslic3r/Config.cpp b/src/libslic3r/Config.cpp index ac1e46416..ec5699e98 100644 --- a/src/libslic3r/Config.cpp +++ b/src/libslic3r/Config.cpp @@ -453,10 +453,12 @@ void ConfigBase::apply_only(const ConfigBase &other, const t_config_option_keys // This is only possible if other is of DynamicConfig type. if (auto n = opt_key.find('#'); n != std::string::npos) { auto opt_key2 = opt_key.substr(0, n); - auto my_opt2 = dynamic_cast(this->option(opt_key2, true)); + auto my_opt2 = dynamic_cast(this->option(opt_key2)); + auto other_opt = other.option(opt_key2); + if (my_opt2 == nullptr && other_opt) + my_opt2 = dynamic_cast(other_opt->clone()); if (my_opt2) { int index = std::atoi(opt_key.c_str() + n + 1); - auto other_opt = other.option(opt_key2); if (other_opt) my_opt2->set_at(other_opt, index, index); continue; diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index e493c4eff..68dffea9f 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -430,6 +430,10 @@ std::vector> get_extruder_ams_count(const std::vector> extruder_ams_counts; for (const std::string& str : strs) { std::map ams_count_info; + if (str.empty()) { + extruder_ams_counts.emplace_back(ams_count_info); + continue; + } std::vector ams_infos; boost::algorithm::split(ams_infos, str, boost::algorithm::is_any_of("|")); for (const std::string& ams_info : ams_infos) { diff --git a/src/slic3r/GUI/Field.cpp b/src/slic3r/GUI/Field.cpp index c3763b637..ae52aae7b 100644 --- a/src/slic3r/GUI/Field.cpp +++ b/src/slic3r/GUI/Field.cpp @@ -923,7 +923,7 @@ void CheckBox::set_value(const boost::any& value, bool change_event) { m_disable_change_event = !change_event; if (m_opt.nullable) { - m_is_na_val = boost::any_cast(value) == ConfigOptionBoolsNullable::nil_value(); + m_is_na_val = value.empty() || boost::any_cast(value) == ConfigOptionBoolsNullable::nil_value(); if (!m_is_na_val) m_last_meaningful_value = value; dynamic_cast<::CheckBox*>(window)->SetValue(m_is_na_val ? false : boost::any_cast(value) != 0); // BBS diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 49c4e070b..12de9bd3c 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -2548,7 +2548,9 @@ void TabPrintModel::update_model_config() //update(); if (!m_null_keys.empty()) { if (m_active_page) { - for (auto k : m_null_keys) { + auto null_keys = m_null_keys; + filter_diff_option(null_keys); + for (auto k : null_keys) { auto f = m_active_page->get_field(k); if (f) f->set_value(boost::any(), false); @@ -2581,7 +2583,9 @@ void TabPrintModel::activate_selected_page(std::function throw_if_cancel { TabPrint::activate_selected_page(throw_if_canceled); if (m_active_page) { - for (auto k : m_null_keys) { + auto null_keys = m_null_keys; + filter_diff_option(null_keys); + for (auto k : null_keys) { auto f = m_active_page->get_field(k); if (f) f->set_value(boost::any(), false); @@ -2615,7 +2619,7 @@ void TabPrintModel::on_value_change(const std::string& opt_id, const boost::any& bool set = true; // *m_config->option(k) != *m_prints.get_selected_preset().config.option(k) || inull != m_null_keys.end(); auto tab_opt = dynamic_cast(m_config->option(opt_key)); static std::map null_vecs { - {coBools, new ConfigOptionBoolsNullable(1, ConfigOptionBoolsNullable::nil_value())}, + {coBools, new ConfigOptionBoolsNullable(std::initializer_list{ConfigOptionBoolsNullable::nil_value()})}, {coInts, new ConfigOptionIntsNullable(1, ConfigOptionIntsNullable::nil_value())}, {coFloats, new ConfigOptionFloatsNullable(1, ConfigOptionFloatsNullable::nil_value())}, {coPercents, new ConfigOptionPercentsNullable(1, ConfigOptionPercentsNullable::nil_value())}, @@ -2672,7 +2676,15 @@ void TabPrintModel::on_value_change(const std::string& opt_id, const boost::any& void TabPrintModel::reload_config() { TabPrint::reload_config(); - auto keys = m_config_manipulation.applying_keys(); + if (m_active_page) { + auto null_keys = m_null_keys; + filter_diff_option(null_keys); + for (auto k : null_keys) { + auto f = m_active_page->get_field(k); + if (f) f->set_value(boost::any(), false); + } + } + auto keys = m_config_manipulation.applying_keys(); bool super_changed = false; for (auto & k : keys) { if (has_key(k)) {