#ifndef slic3r_PresetBundle_hpp_ #define slic3r_PresetBundle_hpp_ #include "Preset.hpp" #include "AppConfig.hpp" #include "enum_bitmask.hpp" #include "MixedFilament.hpp" #include #include #include #include #include #include #include #define DEFAULT_USER_FOLDER_NAME "default" #define BUNDLE_STRUCTURE_JSON_NAME "bundle_structure.json" #define VALIDATE_PRESETS_SUCCESS 0 #define VALIDATE_PRESETS_PRINTER_NOT_FOUND 1 #define VALIDATE_PRESETS_FILAMENTS_NOT_FOUND 2 #define VALIDATE_PRESETS_MODIFIED_GCODES 3 // define an enum class of vendor type enum class VendorType { Unknown = 0, Klipper, Marlin, Marlin_BBL, Klipper_Qidi }; namespace Slic3r { struct AMSMapInfo { /*for new ams mapping*/ // from struct FilamentInfo std::string ams_id{""}; std::string slot_id{""}; }; struct AMSComboInfo { std::vector ams_filament_colors; std::vector> ams_multi_color_filment; std::vector ams_filament_presets; std::vector ams_names; void clear() { ams_filament_colors.clear(); ams_multi_color_filment.clear(); ams_filament_presets.clear(); ams_names.clear(); } bool empty() { return ams_names.empty(); } }; struct MergeFilamentInfo { std::vector> merges; bool is_empty() { return merges.empty();} }; struct FilamentBaseInfo { std::string filament_name; std::string filament_id; std::string filament_type; std::string vendor; int nozzle_temp_range_low{ 220 }; int nozzle_temp_range_high{ 220 }; int temperature_vitrification = INT_MAX; bool is_support{ false }; bool is_system{ true }; int filament_printable = 3; }; enum BundleType{ Default = 0, Local, Subscribed, }; // Orca: Bundle metadata structure for imported preset bundles struct BundleMetadata { std::string id; // Bundle ID: UUID (OrcaCloud) or name+timestamp (external) std::string name; // Display name std::string version; // Bundle version std::string description; std::string author; long long imported_time{0}; long long updated_time{0}; BundleType bundle_type{Default}; std::string path; // Cached preset names by type (populated on load) std::vector print_presets; std::vector filament_presets; std::vector printer_presets; // Runtime-only flags bool is_subscribed{false}; bool update_available{false}; bool not_found{false}; bool unauthorized{false}; bool load_from_json(const std::string& path); bool save_to_json(const std::string& path) const; }; struct PresetBundleMetadata { // To make sure write locks take precedent, pausereads needs to be true for when Orca needs to read or manipulate the container // We only need to explicitly pause reads when entering a region in Orca which we deem necessary to quickly acquire write locks. std::unordered_map m_bundles; std::shared_mutex RWMtx; std::atomic pauseReads{false}; void PauseRead() { pauseReads.store(true); } void UnpauseRead() { pauseReads.store(false); } void ReadLock() { RWMtx.lock_shared(); } void ReadUnlock() { RWMtx.unlock_shared(); } void WriteLock() { RWMtx.lock(); } void WriteUnlock() { RWMtx.unlock(); } }; // Bundle of Print + Filament + Printer presets. class PresetBundle { public: static DynamicPrintConfig construct_full_config(Preset &in_printer_preset, Preset &in_print_preset, const DynamicPrintConfig &project_config, std::vector &in_filament_presets, bool apply_extruder, std::optional> filament_maps_new); // ORCA: utility function to find the vendor for a given preset name static std::string find_preset_vendor(const std::string& preset_name, Preset::Type type); PresetBundle(); PresetBundle(const PresetBundle &rhs); PresetBundle& operator=(const PresetBundle &rhs); // Remove all the presets but the "-- default --". // Optionally remove all the files referenced by the presets from the user profile directory. void reset(bool delete_files); void setup_directories(); void copy_files(const std::string& from); struct PresetPreferences { std::string printer_model_id;// name of a preferred printer model std::string printer_variant; // name of a preferred printer variant std::string filament; // name of a preferred filament preset std::string sla_material; // name of a preferred sla_material preset }; // Load ini files of all types (print, filament, printer) from Slic3r::data_dir() / presets. // Load selections (current print, current filaments, current printer) from config.ini // select preferred presets, if any exist PresetsConfigSubstitutions load_presets(AppConfig &config, ForwardCompatibilitySubstitutionRule rule, const PresetPreferences& preferred_selection = PresetPreferences()); // Load selections (current print, current filaments, current printer) from config.ini // This is done just once on application start up. //BBS: change it to public void load_selections(AppConfig &config, const PresetPreferences& preferred_selection = PresetPreferences()); // BBS Load user presets PresetsConfigSubstitutions load_user_presets(std::string user, ForwardCompatibilitySubstitutionRule rule); PresetsConfigSubstitutions load_user_presets(AppConfig &config, std::map>& my_presets, ForwardCompatibilitySubstitutionRule rule); // Orca: Import subscribed bundle presets (load and save to disk in one operation), handles one bundle at a time PresetsConfigSubstitutions update_subscribed_presets(AppConfig& config, const std::map>& bundle_presets, const BundleMetadata& remote_metadata, ForwardCompatibilitySubstitutionRule rule); PresetsConfigSubstitutions import_presets(std::vector& files, std::function override_confirm, ForwardCompatibilitySubstitutionRule rule, AppConfig& config); bool import_json_presets(PresetsConfigSubstitutions& substitutions, std::string& file, std::function override_confirm, ForwardCompatibilitySubstitutionRule rule, int& overwrite, std::vector& result, const std::string& bundle_dir = ""); void save_user_presets(AppConfig& config, std::map& need_to_delete_list); void check_and_fix_user_presets_syncinfo(const std::string& user_id); void remove_users_preset(AppConfig &config, std::map> * my_presets = nullptr); void update_user_presets_directory(const std::string preset_folder); void remove_user_presets_directory(const std::string preset_folder); void update_system_preset_setting_ids(std::map>& system_presets); // Apply vendor configuration changes (Core library version, no GUI dependencies) // This function installs vendors from resources and loads them into the preset bundle // // Parameters: // new_vendors: Map of vendor names to their enabled printer models and variants // new_filaments: Map of filament names to their settings // app_config: Pointer to AppConfig to update with new vendor/filament selections // preferred_printer_model: Optional preferred printer model to select // preferred_printer_variant: Optional preferred printer variant to select // preferred_filament: Optional preferred filament to select // // Returns: true if successful, false otherwise bool apply_vendor_config( const std::map>>& new_vendors, const std::map& new_filaments, AppConfig* app_config, bool overwrite = true, const std::string& preferred_printer_model = std::string(), const std::string& preferred_printer_variant = std::string(), const std::string& preferred_filament = std::string()); //BBS: add API to get previous machine int validate_presets(const std::string &file_name, DynamicPrintConfig& config, std::set& different_gcodes); //BBS: add function to generate differed preset for save //the pointer should be freed by the caller Preset* get_preset_differed_for_save(Preset& preset); int get_differed_values_to_update(Preset& preset, std::map& key_values); //BBS: get vendor's current version Semver get_vendor_profile_version(std::string vendor_name); std::optional get_filament_by_filament_id(const std::string& filament_id, const std::string& printer_name = std::string()) const; // Orca: get vendor type VendorType get_current_vendor_type(); // Vendor related handy functions bool is_bbl_vendor() { return get_current_vendor_type() == VendorType::Marlin_BBL; } // Whether using bbl network for print upload bool use_bbl_network(); // Whether using bbl's device tab bool use_bbl_device_tab(); bool backup_user_folder() const; //BBS: project embedded preset logic PresetsConfigSubstitutions load_project_embedded_presets(std::vector project_presets, ForwardCompatibilitySubstitutionRule substitution_rule); std::vector get_current_project_embedded_presets(); void reset_project_embedded_presets(); //BBS: find printer model std::string get_texture_for_printer_model(std::string model_name); std::string get_stl_model_for_printer_model(std::string model_name); std::string get_hotend_model_for_printer_model(std::string model_name); // Export selections (current print, current filaments, current printer) into config.ini void export_selections(AppConfig &config); // BBS void set_num_filaments(unsigned int n, std::vector new_colors); void set_num_filaments(unsigned int n, std::string new_col = ""); void update_num_filaments(unsigned int to_del_flament_id); void get_ams_cobox_infos(AMSComboInfo &combox_info); unsigned int sync_ams_list(std::vector> &unknowns, bool use_map, std::map &maps, bool enable_append, MergeFilamentInfo &merge_info, bool color_only = false); //BBS: check whether this is the only edited filament bool is_the_only_edited_filament(unsigned int filament_index); // Mixed filament helpers — query virtual slot info bool is_mixed_filament(size_t idx) const { return mixed_filaments.is_mixed(static_cast(idx + 1), filament_presets.size()); } size_t total_filament_count() const { return mixed_filaments.total_filaments(filament_presets.size()); } // Sync the MixedFilamentManager to/from the project_config string key. void sync_mixed_filaments_from_config(); void sync_mixed_filaments_to_config(); void reset_default_nozzle_volume_type(); std::vector get_used_tpu_filaments(const std::vector &used_filaments); // Orca: update selected filament and print void update_selections(AppConfig &config); void set_calibrate_printer(std::string name); void set_is_validation_mode(bool mode) { validation_mode = mode; } void set_vendor_to_validate(std::string vendor) { vendor_to_validate = vendor; } std::vector> get_extruder_filament_info() const; std::set get_printer_names_by_printer_type_and_nozzle(const std::string &printer_type, std::string nozzle_diameter_str, bool system_only = true); bool check_filament_temp_equation_by_printer_type_and_nozzle_for_mas_tray(const std::string &printer_type, std::string & nozzle_diameter_str, std::string & setting_id, std::string & tag_uid, std::string & nozzle_temp_min, std::string & nozzle_temp_max, std::string & preset_setting_id); Preset * get_similar_printer_preset(std::string printer_model, std::string printer_variant); PresetCollection prints; PresetCollection sla_prints; PresetCollection filaments; PresetCollection sla_materials; PresetCollection& materials(PrinterTechnology pt) { return pt == ptFFF ? this->filaments : this->sla_materials; } const PresetCollection& materials(PrinterTechnology pt) const { return pt == ptFFF ? this->filaments : this->sla_materials; } PrinterPresetCollection printers; PhysicalPrinterCollection physical_printers; // Filament preset names for a multi-extruder or multi-material print. // extruders.size() should be the same as printers.get_edited_preset().config.nozzle_diameter.size() std::vector filament_presets; // BBS: ams std::map filament_ams_list; std::vector> ams_multi_color_filment; // Mixed (virtual) filaments for layer-based colour mixing. // This is the canonical instance; Print::m_mixed_filament_mgr is a slicing-time copy. MixedFilamentManager mixed_filaments; std::vector> extruder_ams_counts; // Calibrate Preset const * calibrate_printer = nullptr; std::set calibrate_filaments; // The project configuration values are kept separated from the print/filament/printer preset, // they are being serialized / deserialized from / to the .amf, .3mf, .config, .gcode, // and they are being used by slicing core. DynamicPrintConfig project_config; // There will be an entry for each system profile loaded, // and the system profiles will point to the VendorProfile instances owned by PresetBundle::vendors. VendorMap vendors; // Orca: for OrcaFilamentLibrary std::map m_config_maps; std::map m_filament_id_maps; // Orca: Bundle metadata and cached preset names // std::map m_bundles; fs::path dir_user_presets_local; fs::path dir_user_presets_subscribed; PresetBundleMetadata bundles; struct ObsoletePresets { std::vector prints; std::vector sla_prints; std::vector filaments; std::vector sla_materials; std::vector printers; }; ObsoletePresets obsolete_presets; bool has_defauls_only() const { return prints.has_defaults_only() && filaments.has_defaults_only() && printers.has_defaults_only(); } DynamicPrintConfig full_config(bool apply_extruder = true, std::optional>filament_maps = std::nullopt) const; // full_config() with the some "useless" config removed. DynamicPrintConfig full_config_secure(std::optional>filament_maps = std::nullopt) const; //BBS: add some functions for multiple extruders int get_printer_extruder_count() const; bool support_different_extruders(); // Orca: Ensure filament_presets has at least one slot per nozzle on FFF printers. // Called from (load|update)_selections before the parallel project_config arrays // (filament_colour/colour_type/map) are sized off filament_presets.size(), so a // short saved filament list doesn't truncate the loaded colors. void update_filament_count(); // Load user configuration and store it into the user profiles. // This method is called by the configuration wizard. void load_config_from_wizard(const std::string &name, DynamicPrintConfig config, Semver file_version) { this->load_config_file_config(name, false, std::move(config), file_version, true); } // Load configuration that comes from a model file containing configuration, such as 3MF et al. // This method is called by the Plater. void load_config_model(const std::string &name, DynamicPrintConfig config, Semver file_version = Semver()) { this->load_config_file_config(name, true, std::move(config), file_version); } // Load an external config file containing the print, filament and printer presets. // Instead of a config file, a G-code may be loaded containing the full set of parameters. // In the future the configuration will likely be read from an AMF file as well. // If the file is loaded successfully, its print / filament / printer profiles will be activated. ConfigSubstitutions load_config_file(const std::string &path, ForwardCompatibilitySubstitutionRule compatibility_rule); // Load a config bundle file, into presets and store the loaded presets into separate files // of the local configuration directory. // Load settings into the provided settings instance. // Activate the presets stored in the config bundle. // Returns the number of presets loaded successfully. enum LoadConfigBundleAttribute { // Save the profiles, which have been loaded. SaveImported, // Delete all old config profiles before loading. ResetUserProfile, // Load a system config bundle. LoadSystem, LoadVendorOnly, LoadFilamentOnly, }; using LoadConfigBundleAttributes = enum_bitmask; // Load the config bundle based on the flags. // Don't do any config substitutions when loading a system profile, perform and report substitutions otherwise. /*std::pair load_configbundle( const std::string &path, LoadConfigBundleAttributes flags, ForwardCompatibilitySubstitutionRule compatibility_rule);*/ //Orca: load config bundle from json, pass the base bundle to support cross vendor inheritance std::pair load_vendor_configs_from_json( const std::string &path, const std::string &vendor_name, LoadConfigBundleAttributes flags, ForwardCompatibilitySubstitutionRule compatibility_rule, const PresetBundle* base_bundle = nullptr); // Export a config bundle file containing all the presets and the names of the active presets. //void export_configbundle(const std::string &path, bool export_system_settings = false, bool export_physical_printers = false); //BBS: add a function to export current configbundle as default //void export_current_configbundle(const std::string &path); //BBS: add a function to export system presets for cloud-slicer //void export_system_configs(const std::string &path); std::vector export_current_configs(const std::string &path, std::function override_confirm, bool include_modify, bool export_system_settings = false); // Enable / disable the "- default -" preset. void set_default_suppressed(bool default_suppressed); // Set the filament preset name. As the name could come from the UI selection box, // an optional "(modified)" suffix will be removed from the filament name. void set_filament_preset(size_t idx, const std::string &name); // Read out the number of extruders from an active printer preset, // update size and content of filament_presets. // old_num_filaments: physical filament count before any add/delete (size_t(-1) = auto-detect). void update_multi_material_filament_presets(size_t to_delete_filament_id = size_t(-1), size_t old_num_filaments = size_t(-1)); // Rebuild old->new virtual filament mapping after mixed-row enable/delete // changes when the physical filament count itself did not change. void update_mixed_filament_id_remap(const std::vector &old_mixed, size_t old_num_filaments, size_t new_num_filaments); // Mapping generated during the latest filament count change. // Index is old 1-based filament ID, value is new 1-based filament ID (0 = removed). const std::vector& last_filament_id_remap() const { return m_last_filament_id_remap; } std::vector consume_last_filament_id_remap() { std::vector out = std::move(m_last_filament_id_remap); m_last_filament_id_remap.clear(); return out; } void on_extruders_count_changed(int extruder_count); // Update the is_compatible flag of all print and filament presets depending on whether they are marked // as compatible with the currently selected printer (and print in case of filament presets). // Also updates the is_visible flag of each preset. // If select_other_if_incompatible is true, then the print or filament preset is switched to some compatible // preset if the current print or filament preset is not compatible. void update_compatible(PresetSelectCompatibleType select_other_print_if_incompatible, PresetSelectCompatibleType select_other_filament_if_incompatible); void update_compatible(PresetSelectCompatibleType select_other_if_incompatible) { this->update_compatible(select_other_if_incompatible, select_other_if_incompatible); } // Set the is_visible flag for printer vendors, printer models and printer variants // based on the user configuration. // If the "vendor" section is missing, enable all models and variants of the particular vendor. void load_installed_printers(const AppConfig &config); const std::string& get_preset_name_by_alias(const Preset::Type& preset_type, const std::string& alias) const; const int get_required_hrc_by_filament_type(const std::string& filament_type) const; // Save current preset of a provided type under a new name. If the name is different from the old one, // Unselected option would be reverted to the beginning values //BBS: add project embedded preset logic void save_changes_for_preset(const std::string& new_name, Preset::Type type, const std::vector& unselected_options, bool save_to_project = false); std::pair load_system_models_from_json(ForwardCompatibilitySubstitutionRule compatibility_rule); std::pair load_system_filaments_json(ForwardCompatibilitySubstitutionRule compatibility_rule); VendorProfile get_custom_vendor_models() const; //orca: add 'custom' as default static const char *ORCA_DEFAULT_BUNDLE; static const char *ORCA_DEFAULT_PRINTER_MODEL; static const char *ORCA_DEFAULT_PRINTER_VARIANT; static const char *ORCA_DEFAULT_FILAMENT; static const char *ORCA_FILAMENT_LIBRARY; static const char *ORCA_DEFAULT_FILAMENT_PLACEHOLDER; static std::array types_list(PrinterTechnology pt) { if (pt == ptFFF) return { Preset::TYPE_PRINTER, Preset::TYPE_PRINT, Preset::TYPE_FILAMENT }; return { Preset::TYPE_PRINTER, Preset::TYPE_SLA_PRINT, Preset::TYPE_SLA_MATERIAL }; } // Orca: for validation only bool has_errors() const; private: //std::pair load_system_presets(ForwardCompatibilitySubstitutionRule compatibility_rule); //BBS: add json related logic std::pair load_system_presets_from_json(ForwardCompatibilitySubstitutionRule compatibility_rule); // Merge one vendor's presets with the other vendor's presets, report duplicates. std::vector merge_presets(PresetBundle &&other); // Update the multicolor information for filaments. void update_filament_multi_color(); // Update renamed_from and alias maps of system profiles. void update_system_maps(); // Build old->new filament ID remap for painted facet data normalization. void build_filament_id_remap(const std::vector &old_mixed, size_t old_num_filaments, size_t new_num_filaments, bool deleting_filament, unsigned int deleted_1based); // Set the is_visible flag for filaments and sla materials, // apply defaults based on enabled printers when no filaments/materials are installed. void load_installed_filaments(AppConfig &config); void load_installed_sla_materials(AppConfig &config); // Load print, filament & printer presets from a config. If it is an external config, then the name is extracted from the external path. // and the external config is just referenced, not stored into user profile directory. // If it is not an external config, then the config will be stored into the user profile directory. void load_config_file_config(const std::string &name_or_path, bool is_external, DynamicPrintConfig &&config, Semver file_version = Semver(), bool selected = false); /*ConfigSubstitutions load_config_file_config_bundle( const std::string &path, const boost::property_tree::ptree &tree, ForwardCompatibilitySubstitutionRule compatibility_rule);*/ DynamicPrintConfig full_fff_config(bool apply_extruder, std::optional> filament_maps=std::nullopt) const; DynamicPrintConfig full_sla_config() const; // Orca: used for validation only bool validation_mode = false; std::string vendor_to_validate = ""; int m_errors = 0; std::vector m_last_filament_id_remap; // Helper function: save preset to bundle directory with common logic bool save_preset_to_bundle_dir(Preset& preset, PresetCollection* collection, const std::string& bundle_id, const std::string& type_subdir, const std::string& bundle_base_dir); }; ENABLE_ENUM_BITMASK_OPERATORS(PresetBundle::LoadConfigBundleAttribute) } // namespace Slic3r #endif /* slic3r_PresetBundle_hpp_ */