MaterialManager.py 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688
  1. # Copyright (c) 2018 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. from collections import defaultdict, OrderedDict
  4. import copy
  5. import uuid
  6. from typing import Dict, Optional, TYPE_CHECKING, Any, Set, List, cast, Tuple
  7. from PyQt5.Qt import QTimer, QObject, pyqtSignal, pyqtSlot
  8. from UM.Application import Application
  9. from UM.ConfigurationErrorMessage import ConfigurationErrorMessage
  10. from UM.Logger import Logger
  11. from UM.Settings.ContainerRegistry import ContainerRegistry
  12. from UM.Settings.SettingFunction import SettingFunction
  13. from UM.Util import parseBool
  14. from .MaterialNode import MaterialNode
  15. from .MaterialGroup import MaterialGroup
  16. from .VariantType import VariantType
  17. if TYPE_CHECKING:
  18. from UM.Settings.DefinitionContainer import DefinitionContainer
  19. from UM.Settings.InstanceContainer import InstanceContainer
  20. from cura.Settings.GlobalStack import GlobalStack
  21. from cura.Settings.ExtruderStack import ExtruderStack
  22. #
  23. # MaterialManager maintains a number of maps and trees for material lookup.
  24. # The models GUI and QML use are now only dependent on the MaterialManager. That means as long as the data in
  25. # MaterialManager gets updated correctly, the GUI models should be updated correctly too, and the same goes for GUI.
  26. #
  27. # For now, updating the lookup maps and trees here is very simple: we discard the old data completely and recreate them
  28. # again. This means the update is exactly the same as initialization. There are performance concerns about this approach
  29. # but so far the creation of the tables and maps is very fast and there is no noticeable slowness, we keep it like this
  30. # because it's simple.
  31. #
  32. class MaterialManager(QObject):
  33. materialsUpdated = pyqtSignal() # Emitted whenever the material lookup tables are updated.
  34. favoritesUpdated = pyqtSignal() # Emitted whenever the favorites are changed
  35. def __init__(self, container_registry, parent = None):
  36. super().__init__(parent)
  37. self._application = Application.getInstance()
  38. self._container_registry = container_registry # type: ContainerRegistry
  39. # Material_type -> generic material metadata
  40. self._fallback_materials_map = dict() # type: Dict[str, Dict[str, Any]]
  41. # Root_material_id -> MaterialGroup
  42. self._material_group_map = dict() # type: Dict[str, MaterialGroup]
  43. # Approximate diameter str
  44. self._diameter_machine_nozzle_buildplate_material_map = dict() # type: Dict[str, Dict[str, MaterialNode]]
  45. # We're using these two maps to convert between the specific diameter material id and the generic material id
  46. # because the generic material ids are used in qualities and definitions, while the specific diameter material is meant
  47. # i.e. generic_pla -> generic_pla_175
  48. # root_material_id -> approximate diameter str -> root_material_id for that diameter
  49. self._material_diameter_map = defaultdict(dict) # type: Dict[str, Dict[str, str]]
  50. # Material id including diameter (generic_pla_175) -> material root id (generic_pla)
  51. self._diameter_material_map = dict() # type: Dict[str, str]
  52. # This is used in Legacy UM3 send material function and the material management page.
  53. # GUID -> a list of material_groups
  54. self._guid_material_groups_map = defaultdict(list) # type: Dict[str, List[MaterialGroup]]
  55. # The machine definition ID for the non-machine-specific materials.
  56. # This is used as the last fallback option if the given machine-specific material(s) cannot be found.
  57. self._default_machine_definition_id = "fdmprinter"
  58. self._default_approximate_diameter_for_quality_search = "3"
  59. # When a material gets added/imported, there can be more than one InstanceContainers. In those cases, we don't
  60. # want to react on every container/metadata changed signal. The timer here is to buffer it a bit so we don't
  61. # react too many time.
  62. self._update_timer = QTimer(self)
  63. self._update_timer.setInterval(300)
  64. self._update_timer.setSingleShot(True)
  65. self._update_timer.timeout.connect(self._updateMaps)
  66. self._container_registry.containerMetaDataChanged.connect(self._onContainerMetadataChanged)
  67. self._container_registry.containerAdded.connect(self._onContainerMetadataChanged)
  68. self._container_registry.containerRemoved.connect(self._onContainerMetadataChanged)
  69. self._favorites = set() # type: Set[str]
  70. def initialize(self) -> None:
  71. # Find all materials and put them in a matrix for quick search.
  72. material_metadatas = {metadata["id"]: metadata for metadata in
  73. self._container_registry.findContainersMetadata(type = "material") if
  74. metadata.get("GUID")} # type: Dict[str, Dict[str, Any]]
  75. self._material_group_map = dict() # type: Dict[str, MaterialGroup]
  76. # Map #1
  77. # root_material_id -> MaterialGroup
  78. for material_id, material_metadata in material_metadatas.items():
  79. # We don't store empty material in the lookup tables
  80. if material_id == "empty_material":
  81. continue
  82. root_material_id = material_metadata.get("base_file", "")
  83. if root_material_id not in self._material_group_map:
  84. self._material_group_map[root_material_id] = MaterialGroup(root_material_id, MaterialNode(material_metadatas[root_material_id]))
  85. self._material_group_map[root_material_id].is_read_only = self._container_registry.isReadOnly(root_material_id)
  86. group = self._material_group_map[root_material_id]
  87. # Store this material in the group of the appropriate root material.
  88. if material_id != root_material_id:
  89. new_node = MaterialNode(material_metadata)
  90. group.derived_material_node_list.append(new_node)
  91. # Order this map alphabetically so it's easier to navigate in a debugger
  92. self._material_group_map = OrderedDict(sorted(self._material_group_map.items(), key = lambda x: x[0]))
  93. # Map #1.5
  94. # GUID -> material group list
  95. self._guid_material_groups_map = defaultdict(list) # type: Dict[str, List[MaterialGroup]]
  96. for root_material_id, material_group in self._material_group_map.items():
  97. guid = material_group.root_material_node.getMetaDataEntry("GUID", "")
  98. self._guid_material_groups_map[guid].append(material_group)
  99. # Map #2
  100. # Lookup table for material type -> fallback material metadata, only for read-only materials
  101. grouped_by_type_dict = dict() # type: Dict[str, Any]
  102. material_types_without_fallback = set()
  103. for root_material_id, material_node in self._material_group_map.items():
  104. material_type = material_node.root_material_node.getMetaDataEntry("material", "")
  105. if material_type not in grouped_by_type_dict:
  106. grouped_by_type_dict[material_type] = {"generic": None,
  107. "others": []}
  108. material_types_without_fallback.add(material_type)
  109. brand = material_node.root_material_node.getMetaDataEntry("brand", "")
  110. if brand.lower() == "generic":
  111. to_add = True
  112. if material_type in grouped_by_type_dict:
  113. diameter = material_node.root_material_node.getMetaDataEntry("approximate_diameter", "")
  114. if diameter != self._default_approximate_diameter_for_quality_search:
  115. to_add = False # don't add if it's not the default diameter
  116. if to_add:
  117. # Checking this first allow us to differentiate between not read only materials:
  118. # - if it's in the list, it means that is a new material without fallback
  119. # - if it is not, then it is a custom material with a fallback material (parent)
  120. if material_type in material_types_without_fallback:
  121. grouped_by_type_dict[material_type] = material_node.root_material_node._metadata
  122. material_types_without_fallback.remove(material_type)
  123. # Remove the materials that have no fallback materials
  124. for material_type in material_types_without_fallback:
  125. del grouped_by_type_dict[material_type]
  126. self._fallback_materials_map = grouped_by_type_dict
  127. # Map #3
  128. # There can be multiple material profiles for the same material with different diameters, such as "generic_pla"
  129. # and "generic_pla_175". This is inconvenient when we do material-specific quality lookup because a quality can
  130. # be for either "generic_pla" or "generic_pla_175", but not both. This map helps to get the correct material ID
  131. # for quality search.
  132. self._material_diameter_map = defaultdict(dict)
  133. self._diameter_material_map = dict()
  134. # Group the material IDs by the same name, material, brand, and color but with different diameters.
  135. material_group_dict = dict() # type: Dict[Tuple[Any], Dict[str, str]]
  136. keys_to_fetch = ("name", "material", "brand", "color")
  137. for root_material_id, machine_node in self._material_group_map.items():
  138. root_material_metadata = machine_node.root_material_node._metadata
  139. key_data_list = [] # type: List[Any]
  140. for key in keys_to_fetch:
  141. key_data_list.append(machine_node.root_material_node.getMetaDataEntry(key))
  142. key_data = cast(Tuple[Any], tuple(key_data_list)) # type: Tuple[Any]
  143. # If the key_data doesn't exist, it doesn't matter if the material is read only...
  144. if key_data not in material_group_dict:
  145. material_group_dict[key_data] = dict()
  146. else:
  147. # ...but if key_data exists, we just overwrite it if the material is read only, otherwise we skip it
  148. if not machine_node.is_read_only:
  149. continue
  150. approximate_diameter = machine_node.root_material_node.getMetaDataEntry("approximate_diameter", "")
  151. material_group_dict[key_data][approximate_diameter] = machine_node.root_material_node.getMetaDataEntry("id", "")
  152. # Map [root_material_id][diameter] -> root_material_id for this diameter
  153. for data_dict in material_group_dict.values():
  154. for root_material_id1 in data_dict.values():
  155. if root_material_id1 in self._material_diameter_map:
  156. continue
  157. diameter_map = data_dict
  158. for root_material_id2 in data_dict.values():
  159. self._material_diameter_map[root_material_id2] = diameter_map
  160. default_root_material_id = data_dict.get(self._default_approximate_diameter_for_quality_search)
  161. if default_root_material_id is None:
  162. default_root_material_id = list(data_dict.values())[0] # no default diameter present, just take "the" only one
  163. for root_material_id in data_dict.values():
  164. self._diameter_material_map[root_material_id] = default_root_material_id
  165. # Map #4
  166. # "machine" -> "nozzle name" -> "buildplate name" -> "root material ID" -> specific material InstanceContainer
  167. self._diameter_machine_nozzle_buildplate_material_map = dict() # type: Dict[str, Dict[str, MaterialNode]]
  168. for material_metadata in material_metadatas.values():
  169. self.__addMaterialMetadataIntoLookupTree(material_metadata)
  170. favorites = self._application.getPreferences().getValue("cura/favorite_materials")
  171. for item in favorites.split(";"):
  172. self._favorites.add(item)
  173. self.materialsUpdated.emit()
  174. def __addMaterialMetadataIntoLookupTree(self, material_metadata: Dict[str, Any]) -> None:
  175. material_id = material_metadata["id"]
  176. # We don't store empty material in the lookup tables
  177. if material_id == "empty_material":
  178. return
  179. root_material_id = material_metadata["base_file"]
  180. definition = material_metadata["definition"]
  181. approximate_diameter = material_metadata["approximate_diameter"]
  182. if approximate_diameter not in self._diameter_machine_nozzle_buildplate_material_map:
  183. self._diameter_machine_nozzle_buildplate_material_map[approximate_diameter] = {}
  184. machine_nozzle_buildplate_material_map = self._diameter_machine_nozzle_buildplate_material_map[
  185. approximate_diameter]
  186. if definition not in machine_nozzle_buildplate_material_map:
  187. machine_nozzle_buildplate_material_map[definition] = MaterialNode()
  188. # This is a list of information regarding the intermediate nodes:
  189. # nozzle -> buildplate
  190. nozzle_name = material_metadata.get("variant_name")
  191. buildplate_name = material_metadata.get("buildplate_name")
  192. intermediate_node_info_list = [(nozzle_name, VariantType.NOZZLE),
  193. (buildplate_name, VariantType.BUILD_PLATE),
  194. ]
  195. variant_manager = self._application.getVariantManager()
  196. machine_node = machine_nozzle_buildplate_material_map[definition]
  197. current_node = machine_node
  198. current_intermediate_node_info_idx = 0
  199. error_message = None # type: Optional[str]
  200. while current_intermediate_node_info_idx < len(intermediate_node_info_list):
  201. variant_name, variant_type = intermediate_node_info_list[current_intermediate_node_info_idx]
  202. if variant_name is not None:
  203. # The new material has a specific variant, so it needs to be added to that specific branch in the tree.
  204. variant = variant_manager.getVariantNode(definition, variant_name, variant_type)
  205. if variant is None:
  206. error_message = "Material {id} contains a variant {name} that does not exist.".format(
  207. id = material_metadata["id"], name = variant_name)
  208. break
  209. # Update the current node to advance to a more specific branch
  210. if variant_name not in current_node.children_map:
  211. current_node.children_map[variant_name] = MaterialNode()
  212. current_node = current_node.children_map[variant_name]
  213. current_intermediate_node_info_idx += 1
  214. if error_message is not None:
  215. Logger.log("e", "%s It will not be added into the material lookup tree.", error_message)
  216. self._container_registry.addWrongContainerId(material_metadata["id"])
  217. return
  218. # Add the material to the current tree node, which is the deepest (the most specific) branch we can find.
  219. # Sanity check: Make sure that there is no duplicated materials.
  220. if root_material_id in current_node.material_map:
  221. Logger.log("e", "Duplicated material [%s] with root ID [%s]. It has already been added.",
  222. material_id, root_material_id)
  223. ConfigurationErrorMessage.getInstance().addFaultyContainers(root_material_id)
  224. return
  225. current_node.material_map[root_material_id] = MaterialNode(material_metadata)
  226. def _updateMaps(self):
  227. Logger.log("i", "Updating material lookup data ...")
  228. self.initialize()
  229. def _onContainerMetadataChanged(self, container):
  230. self._onContainerChanged(container)
  231. def _onContainerChanged(self, container):
  232. container_type = container.getMetaDataEntry("type")
  233. if container_type != "material":
  234. return
  235. # update the maps
  236. self._update_timer.start()
  237. def getMaterialGroup(self, root_material_id: str) -> Optional[MaterialGroup]:
  238. return self._material_group_map.get(root_material_id)
  239. def getRootMaterialIDForDiameter(self, root_material_id: str, approximate_diameter: str) -> str:
  240. return self._material_diameter_map.get(root_material_id, {}).get(approximate_diameter, root_material_id)
  241. def getRootMaterialIDWithoutDiameter(self, root_material_id: str) -> str:
  242. return self._diameter_material_map.get(root_material_id, "")
  243. def getMaterialGroupListByGUID(self, guid: str) -> Optional[List[MaterialGroup]]:
  244. return self._guid_material_groups_map.get(guid)
  245. #
  246. # Return a dict with all root material IDs (k) and ContainerNodes (v) that's suitable for the given setup.
  247. #
  248. def getAvailableMaterials(self, machine_definition: "DefinitionContainer", nozzle_name: Optional[str],
  249. buildplate_name: Optional[str], diameter: float) -> Dict[str, MaterialNode]:
  250. # round the diameter to get the approximate diameter
  251. rounded_diameter = str(round(diameter))
  252. if rounded_diameter not in self._diameter_machine_nozzle_buildplate_material_map:
  253. Logger.log("i", "Cannot find materials with diameter [%s] (rounded to [%s])", diameter, rounded_diameter)
  254. return dict()
  255. machine_definition_id = machine_definition.getId()
  256. # If there are nozzle-and-or-buildplate materials, get the nozzle-and-or-buildplate material
  257. machine_nozzle_buildplate_material_map = self._diameter_machine_nozzle_buildplate_material_map[rounded_diameter]
  258. machine_node = machine_nozzle_buildplate_material_map.get(machine_definition_id)
  259. default_machine_node = machine_nozzle_buildplate_material_map.get(self._default_machine_definition_id)
  260. nozzle_node = None
  261. buildplate_node = None
  262. if nozzle_name is not None and machine_node is not None:
  263. nozzle_node = machine_node.getChildNode(nozzle_name)
  264. # Get buildplate node if possible
  265. if nozzle_node is not None and buildplate_name is not None:
  266. buildplate_node = nozzle_node.getChildNode(buildplate_name)
  267. nodes_to_check = [buildplate_node, nozzle_node, machine_node, default_machine_node]
  268. # Fallback mechanism of finding materials:
  269. # 1. buildplate-specific material
  270. # 2. nozzle-specific material
  271. # 3. machine-specific material
  272. # 4. generic material (for fdmprinter)
  273. machine_exclude_materials = machine_definition.getMetaDataEntry("exclude_materials", [])
  274. material_id_metadata_dict = dict() # type: Dict[str, MaterialNode]
  275. excluded_materials = set()
  276. for current_node in nodes_to_check:
  277. if current_node is None:
  278. continue
  279. # Only exclude the materials that are explicitly specified in the "exclude_materials" field.
  280. # Do not exclude other materials that are of the same type.
  281. for material_id, node in current_node.material_map.items():
  282. if material_id in machine_exclude_materials:
  283. excluded_materials.add(material_id)
  284. continue
  285. if material_id not in material_id_metadata_dict:
  286. material_id_metadata_dict[material_id] = node
  287. if excluded_materials:
  288. Logger.log("d", "Exclude materials {excluded_materials} for machine {machine_definition_id}".format(excluded_materials = ", ".join(excluded_materials), machine_definition_id = machine_definition_id))
  289. return material_id_metadata_dict
  290. #
  291. # A convenience function to get available materials for the given machine with the extruder position.
  292. #
  293. def getAvailableMaterialsForMachineExtruder(self, machine: "GlobalStack",
  294. extruder_stack: "ExtruderStack") -> Optional[Dict[str, MaterialNode]]:
  295. buildplate_name = machine.getBuildplateName()
  296. nozzle_name = None
  297. if extruder_stack.variant.getId() != "empty_variant":
  298. nozzle_name = extruder_stack.variant.getName()
  299. diameter = extruder_stack.getApproximateMaterialDiameter()
  300. # Fetch the available materials (ContainerNode) for the current active machine and extruder setup.
  301. return self.getAvailableMaterials(machine.definition, nozzle_name, buildplate_name, diameter)
  302. #
  303. # Gets MaterialNode for the given extruder and machine with the given material name.
  304. # Returns None if:
  305. # 1. the given machine doesn't have materials;
  306. # 2. cannot find any material InstanceContainers with the given settings.
  307. #
  308. def getMaterialNode(self, machine_definition_id: str, nozzle_name: Optional[str],
  309. buildplate_name: Optional[str], diameter: float, root_material_id: str) -> Optional["MaterialNode"]:
  310. # round the diameter to get the approximate diameter
  311. rounded_diameter = str(round(diameter))
  312. if rounded_diameter not in self._diameter_machine_nozzle_buildplate_material_map:
  313. Logger.log("i", "Cannot find materials with diameter [%s] (rounded to [%s]) for root material id [%s]",
  314. diameter, rounded_diameter, root_material_id)
  315. return None
  316. # If there are nozzle materials, get the nozzle-specific material
  317. machine_nozzle_buildplate_material_map = self._diameter_machine_nozzle_buildplate_material_map[rounded_diameter] # type: Dict[str, MaterialNode]
  318. machine_node = machine_nozzle_buildplate_material_map.get(machine_definition_id)
  319. nozzle_node = None
  320. buildplate_node = None
  321. # Fallback for "fdmprinter" if the machine-specific materials cannot be found
  322. if machine_node is None:
  323. machine_node = machine_nozzle_buildplate_material_map.get(self._default_machine_definition_id)
  324. if machine_node is not None and nozzle_name is not None:
  325. nozzle_node = machine_node.getChildNode(nozzle_name)
  326. if nozzle_node is not None and buildplate_name is not None:
  327. buildplate_node = nozzle_node.getChildNode(buildplate_name)
  328. # Fallback mechanism of finding materials:
  329. # 1. buildplate-specific material
  330. # 2. nozzle-specific material
  331. # 3. machine-specific material
  332. # 4. generic material (for fdmprinter)
  333. nodes_to_check = [buildplate_node, nozzle_node, machine_node,
  334. machine_nozzle_buildplate_material_map.get(self._default_machine_definition_id)]
  335. material_node = None
  336. for node in nodes_to_check:
  337. if node is not None:
  338. material_node = node.material_map.get(root_material_id)
  339. if material_node:
  340. break
  341. return material_node
  342. #
  343. # Gets MaterialNode for the given extruder and machine with the given material type.
  344. # Returns None if:
  345. # 1. the given machine doesn't have materials;
  346. # 2. cannot find any material InstanceContainers with the given settings.
  347. #
  348. def getMaterialNodeByType(self, global_stack: "GlobalStack", position: str, nozzle_name: str,
  349. buildplate_name: Optional[str], material_guid: str) -> Optional["MaterialNode"]:
  350. node = None
  351. machine_definition = global_stack.definition
  352. extruder_definition = global_stack.extruders[position].definition
  353. if parseBool(machine_definition.getMetaDataEntry("has_materials", False)):
  354. material_diameter = extruder_definition.getProperty("material_diameter", "value")
  355. if isinstance(material_diameter, SettingFunction):
  356. material_diameter = material_diameter(global_stack)
  357. # Look at the guid to material dictionary
  358. root_material_id = None
  359. for material_group in self._guid_material_groups_map[material_guid]:
  360. root_material_id = cast(str, material_group.root_material_node.getMetaDataEntry("id", ""))
  361. break
  362. if not root_material_id:
  363. Logger.log("i", "Cannot find materials with guid [%s] ", material_guid)
  364. return None
  365. node = self.getMaterialNode(machine_definition.getId(), nozzle_name, buildplate_name,
  366. material_diameter, root_material_id)
  367. return node
  368. # There are 2 ways to get fallback materials;
  369. # - A fallback by type (@sa getFallbackMaterialIdByMaterialType), which adds the generic version of this material
  370. # - A fallback by GUID; If a material has been duplicated, it should also check if the original materials do have
  371. # a GUID. This should only be done if the material itself does not have a quality just yet.
  372. def getFallBackMaterialIdsByMaterial(self, material: "InstanceContainer") -> List[str]:
  373. results = [] # type: List[str]
  374. material_groups = self.getMaterialGroupListByGUID(material.getMetaDataEntry("GUID"))
  375. for material_group in material_groups: # type: ignore
  376. if material_group.name != material.getId():
  377. # If the material in the group is read only, put it at the front of the list (since that is the most
  378. # likely one to get a result)
  379. if material_group.is_read_only:
  380. results.insert(0, material_group.name)
  381. else:
  382. results.append(material_group.name)
  383. fallback = self.getFallbackMaterialIdByMaterialType(material.getMetaDataEntry("material"))
  384. if fallback is not None:
  385. results.append(fallback)
  386. return results
  387. #
  388. # Used by QualityManager. Built-in quality profiles may be based on generic material IDs such as "generic_pla".
  389. # For materials such as ultimaker_pla_orange, no quality profiles may be found, so we should fall back to use
  390. # the generic material IDs to search for qualities.
  391. #
  392. # An example would be, suppose we have machine with preferred material set to "filo3d_pla" (1.75mm), but its
  393. # extruders only use 2.85mm materials, then we won't be able to find the preferred material for this machine.
  394. # A fallback would be to fetch a generic material of the same type "PLA" as "filo3d_pla", and in this case it will
  395. # be "generic_pla". This function is intended to get a generic fallback material for the given material type.
  396. #
  397. # This function returns the generic root material ID for the given material type, where material types are "PLA",
  398. # "ABS", etc.
  399. #
  400. def getFallbackMaterialIdByMaterialType(self, material_type: str) -> Optional[str]:
  401. # For safety
  402. if material_type not in self._fallback_materials_map:
  403. Logger.log("w", "The material type [%s] does not have a fallback material" % material_type)
  404. return None
  405. fallback_material = self._fallback_materials_map[material_type]
  406. if fallback_material:
  407. return self.getRootMaterialIDWithoutDiameter(fallback_material["id"])
  408. else:
  409. return None
  410. ## Get default material for given global stack, extruder position and extruder nozzle name
  411. # you can provide the extruder_definition and then the position is ignored (useful when building up global stack in CuraStackBuilder)
  412. def getDefaultMaterial(self, global_stack: "GlobalStack", position: str, nozzle_name: Optional[str],
  413. extruder_definition: Optional["DefinitionContainer"] = None) -> Optional["MaterialNode"]:
  414. node = None
  415. buildplate_name = global_stack.getBuildplateName()
  416. machine_definition = global_stack.definition
  417. # The extruder-compatible material diameter in the extruder definition may not be the correct value because
  418. # the user can change it in the definition_changes container.
  419. if extruder_definition is None:
  420. extruder_stack_or_definition = global_stack.extruders[position]
  421. is_extruder_stack = True
  422. else:
  423. extruder_stack_or_definition = extruder_definition
  424. is_extruder_stack = False
  425. if extruder_stack_or_definition and parseBool(global_stack.getMetaDataEntry("has_materials", False)):
  426. if is_extruder_stack:
  427. material_diameter = extruder_stack_or_definition.getCompatibleMaterialDiameter()
  428. else:
  429. material_diameter = extruder_stack_or_definition.getProperty("material_diameter", "value")
  430. if isinstance(material_diameter, SettingFunction):
  431. material_diameter = material_diameter(global_stack)
  432. approximate_material_diameter = str(round(material_diameter))
  433. root_material_id = machine_definition.getMetaDataEntry("preferred_material")
  434. root_material_id = self.getRootMaterialIDForDiameter(root_material_id, approximate_material_diameter)
  435. node = self.getMaterialNode(machine_definition.getId(), nozzle_name, buildplate_name,
  436. material_diameter, root_material_id)
  437. return node
  438. def removeMaterialByRootId(self, root_material_id: str):
  439. material_group = self.getMaterialGroup(root_material_id)
  440. if not material_group:
  441. Logger.log("i", "Unable to remove the material with id %s, because it doesn't exist.", root_material_id)
  442. return
  443. nodes_to_remove = [material_group.root_material_node] + material_group.derived_material_node_list
  444. for node in nodes_to_remove:
  445. self._container_registry.removeContainer(node.getMetaDataEntry("id", ""))
  446. #
  447. # Methods for GUI
  448. #
  449. #
  450. # Sets the new name for the given material.
  451. #
  452. @pyqtSlot("QVariant", str)
  453. def setMaterialName(self, material_node: "MaterialNode", name: str) -> None:
  454. root_material_id = material_node.getMetaDataEntry("base_file")
  455. if root_material_id is None:
  456. return
  457. if self._container_registry.isReadOnly(root_material_id):
  458. Logger.log("w", "Cannot set name of read-only container %s.", root_material_id)
  459. return
  460. material_group = self.getMaterialGroup(root_material_id)
  461. if material_group:
  462. container = material_group.root_material_node.getContainer()
  463. if container:
  464. container.setName(name)
  465. #
  466. # Removes the given material.
  467. #
  468. @pyqtSlot("QVariant")
  469. def removeMaterial(self, material_node: "MaterialNode") -> None:
  470. root_material_id = material_node.getMetaDataEntry("base_file")
  471. if root_material_id is not None:
  472. self.removeMaterialByRootId(root_material_id)
  473. #
  474. # Creates a duplicate of a material, which has the same GUID and base_file metadata.
  475. # Returns the root material ID of the duplicated material if successful.
  476. #
  477. @pyqtSlot("QVariant", result = str)
  478. def duplicateMaterial(self, material_node: MaterialNode, new_base_id: Optional[str] = None, new_metadata: Dict[str, Any] = None) -> Optional[str]:
  479. root_material_id = cast(str, material_node.getMetaDataEntry("base_file", ""))
  480. material_group = self.getMaterialGroup(root_material_id)
  481. if not material_group:
  482. Logger.log("i", "Unable to duplicate the material with id %s, because it doesn't exist.", root_material_id)
  483. return None
  484. base_container = material_group.root_material_node.getContainer()
  485. if not base_container:
  486. return None
  487. # Ensure all settings are saved.
  488. self._application.saveSettings()
  489. # Create a new ID & container to hold the data.
  490. new_containers = []
  491. if new_base_id is None:
  492. new_base_id = self._container_registry.uniqueName(base_container.getId())
  493. new_base_container = copy.deepcopy(base_container)
  494. new_base_container.getMetaData()["id"] = new_base_id
  495. new_base_container.getMetaData()["base_file"] = new_base_id
  496. if new_metadata is not None:
  497. for key, value in new_metadata.items():
  498. new_base_container.getMetaData()[key] = value
  499. new_containers.append(new_base_container)
  500. # Clone all of them.
  501. for node in material_group.derived_material_node_list:
  502. container_to_copy = node.getContainer()
  503. if not container_to_copy:
  504. continue
  505. # Create unique IDs for every clone.
  506. new_id = new_base_id
  507. if container_to_copy.getMetaDataEntry("definition") != "fdmprinter":
  508. new_id += "_" + container_to_copy.getMetaDataEntry("definition")
  509. if container_to_copy.getMetaDataEntry("variant_name"):
  510. nozzle_name = container_to_copy.getMetaDataEntry("variant_name")
  511. new_id += "_" + nozzle_name.replace(" ", "_")
  512. new_container = copy.deepcopy(container_to_copy)
  513. new_container.getMetaData()["id"] = new_id
  514. new_container.getMetaData()["base_file"] = new_base_id
  515. if new_metadata is not None:
  516. for key, value in new_metadata.items():
  517. new_container.getMetaData()[key] = value
  518. new_containers.append(new_container)
  519. for container_to_add in new_containers:
  520. container_to_add.setDirty(True)
  521. self._container_registry.addContainer(container_to_add)
  522. # if the duplicated material was favorite then the new material should also be added to favorite.
  523. if root_material_id in self.getFavorites():
  524. self.addFavorite(new_base_id)
  525. return new_base_id
  526. #
  527. # Create a new material by cloning Generic PLA for the current material diameter and generate a new GUID.
  528. # Returns the ID of the newly created material.
  529. @pyqtSlot(result = str)
  530. def createMaterial(self) -> str:
  531. from UM.i18n import i18nCatalog
  532. catalog = i18nCatalog("cura")
  533. # Ensure all settings are saved.
  534. self._application.saveSettings()
  535. machine_manager = self._application.getMachineManager()
  536. extruder_stack = machine_manager.activeStack
  537. approximate_diameter = str(extruder_stack.approximateMaterialDiameter)
  538. root_material_id = "generic_pla"
  539. root_material_id = self.getRootMaterialIDForDiameter(root_material_id, approximate_diameter)
  540. material_group = self.getMaterialGroup(root_material_id)
  541. if not material_group: # This should never happen
  542. Logger.log("w", "Cannot get the material group of %s.", root_material_id)
  543. return ""
  544. # Create a new ID & container to hold the data.
  545. new_id = self._container_registry.uniqueName("custom_material")
  546. new_metadata = {"name": catalog.i18nc("@label", "Custom Material"),
  547. "brand": catalog.i18nc("@label", "Custom"),
  548. "GUID": str(uuid.uuid4()),
  549. }
  550. self.duplicateMaterial(material_group.root_material_node,
  551. new_base_id = new_id,
  552. new_metadata = new_metadata)
  553. return new_id
  554. @pyqtSlot(str)
  555. def addFavorite(self, root_material_id: str) -> None:
  556. self._favorites.add(root_material_id)
  557. self.materialsUpdated.emit()
  558. # Ensure all settings are saved.
  559. self._application.getPreferences().setValue("cura/favorite_materials", ";".join(list(self._favorites)))
  560. self._application.saveSettings()
  561. @pyqtSlot(str)
  562. def removeFavorite(self, root_material_id: str) -> None:
  563. self._favorites.remove(root_material_id)
  564. self.materialsUpdated.emit()
  565. # Ensure all settings are saved.
  566. self._application.getPreferences().setValue("cura/favorite_materials", ";".join(list(self._favorites)))
  567. self._application.saveSettings()
  568. @pyqtSlot()
  569. def getFavorites(self):
  570. return self._favorites