VariantNode.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. # Copyright (c) 2019 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. from typing import TYPE_CHECKING
  4. from UM.Logger import Logger
  5. from UM.Settings.ContainerRegistry import ContainerRegistry
  6. from UM.Settings.Interfaces import ContainerInterface
  7. from UM.Signal import Signal
  8. from cura.Machines.ContainerNode import ContainerNode
  9. from cura.Machines.MaterialNode import MaterialNode
  10. import UM.FlameProfiler
  11. if TYPE_CHECKING:
  12. from typing import Dict
  13. from cura.Machines.MachineNode import MachineNode
  14. class VariantNode(ContainerNode):
  15. """This class represents an extruder variant in the container tree.
  16. The subnodes of these nodes are materials.
  17. This node contains materials with ALL filament diameters underneath it. The tree of this variant is not specific
  18. to one global stack, so because the list of materials can be different per stack depending on the compatible
  19. material diameter setting, we cannot filter them here. Filtering must be done in the model.
  20. """
  21. def __init__(self, container_id: str, machine: "MachineNode") -> None:
  22. super().__init__(container_id)
  23. self.machine = machine
  24. self.materials = {} # type: Dict[str, MaterialNode] # Mapping material base files to their nodes.
  25. self.materialsChanged = Signal()
  26. container_registry = ContainerRegistry.getInstance()
  27. self.variant_name = container_registry.findContainersMetadata(id = container_id)[0]["name"] # Store our own name so that we can filter more easily.
  28. container_registry.containerAdded.connect(self._materialAdded)
  29. container_registry.containerRemoved.connect(self._materialRemoved)
  30. self._loadAll()
  31. @UM.FlameProfiler.profile
  32. def _loadAll(self) -> None:
  33. """(Re)loads all materials under this variant."""
  34. container_registry = ContainerRegistry.getInstance()
  35. if not self.machine.has_materials:
  36. self.materials["empty_material"] = MaterialNode("empty_material", variant = self)
  37. return # There should not be any materials loaded for this printer.
  38. # Find all the materials for this variant's name.
  39. else: # Printer has its own material profiles. Look for material profiles with this printer's definition.
  40. base_materials = container_registry.findInstanceContainersMetadata(type = "material", definition = "fdmprinter")
  41. printer_specific_materials = container_registry.findInstanceContainersMetadata(type = "material", definition = self.machine.container_id)
  42. variant_specific_materials = container_registry.findInstanceContainersMetadata(type = "material", definition = self.machine.container_id, variant_name = self.variant_name) # If empty_variant, this won't return anything.
  43. materials_per_base_file = {material["base_file"]: material for material in base_materials}
  44. materials_per_base_file.update({material["base_file"]: material for material in printer_specific_materials}) # Printer-specific profiles override global ones.
  45. materials_per_base_file.update({material["base_file"]: material for material in variant_specific_materials}) # Variant-specific profiles override all of those.
  46. materials = list(materials_per_base_file.values())
  47. # Filter materials based on the exclude_materials property.
  48. filtered_materials = [material for material in materials if not self.machine.isExcludedMaterial(material)]
  49. for material in filtered_materials:
  50. base_file = material["base_file"]
  51. if base_file not in self.materials:
  52. self.materials[base_file] = MaterialNode(material["id"], variant = self)
  53. self.materials[base_file].materialChanged.connect(self.materialsChanged)
  54. if not self.materials:
  55. self.materials["empty_material"] = MaterialNode("empty_material", variant = self)
  56. def preferredMaterial(self, approximate_diameter: int) -> MaterialNode:
  57. """Finds the preferred material for this printer with this nozzle in one of the extruders.
  58. If the preferred material is not available, an arbitrary material is returned. If there is a configuration
  59. mistake (like a typo in the preferred material) this returns a random available material. If there are no
  60. available materials, this will return the empty material node.
  61. :param approximate_diameter: The desired approximate diameter of the material.
  62. :return: The node for the preferred material, or any arbitrary material if there is no match.
  63. """
  64. for base_material, material_node in self.materials.items():
  65. if self.machine.preferred_material == base_material and approximate_diameter == int(material_node.getMetaDataEntry("approximate_diameter")):
  66. return material_node
  67. # First fallback: Check if we should be checking for the 175 variant.
  68. if approximate_diameter == 2:
  69. preferred_material = self.machine.preferred_material + "_175"
  70. for base_material, material_node in self.materials.items():
  71. if preferred_material == base_material and approximate_diameter == int(material_node.getMetaDataEntry("approximate_diameter")):
  72. return material_node
  73. # Second fallback: Choose any material with matching diameter.
  74. for material_node in self.materials.values():
  75. if material_node.getMetaDataEntry("approximate_diameter") and approximate_diameter == int(material_node.getMetaDataEntry("approximate_diameter")):
  76. Logger.log("w", "Could not find preferred material %s, falling back to whatever works", self.machine.preferred_material)
  77. return material_node
  78. fallback = next(iter(self.materials.values())) # Should only happen with empty material node.
  79. Logger.log("w", "Could not find preferred material {preferred_material} with diameter {diameter} for variant {variant_id}, falling back to {fallback}.".format(
  80. preferred_material = self.machine.preferred_material,
  81. diameter = approximate_diameter,
  82. variant_id = self.container_id,
  83. fallback = fallback.container_id
  84. ))
  85. return fallback
  86. @UM.FlameProfiler.profile
  87. def _materialAdded(self, container: ContainerInterface) -> None:
  88. """When a material gets added to the set of profiles, we need to update our tree here."""
  89. if container.getMetaDataEntry("type") != "material":
  90. return # Not interested.
  91. if not ContainerRegistry.getInstance().findContainersMetadata(id = container.getId()):
  92. # CURA-6889
  93. # containerAdded and removed signals may be triggered in the next event cycle. If a container gets added
  94. # and removed in the same event cycle, in the next cycle, the connections should just ignore the signals.
  95. # The check here makes sure that the container in the signal still exists.
  96. Logger.log("d", "Got container added signal for container [%s] but it no longer exists, do nothing.",
  97. container.getId())
  98. return
  99. if not self.machine.has_materials:
  100. return # We won't add any materials.
  101. material_definition = container.getMetaDataEntry("definition")
  102. base_file = container.getMetaDataEntry("base_file")
  103. if base_file in self.machine.exclude_materials:
  104. return # Material is forbidden for this printer.
  105. if base_file not in self.materials: # Completely new base file. Always better than not having a file as long as it matches our set-up.
  106. if material_definition != "fdmprinter" and material_definition != self.machine.container_id:
  107. return
  108. material_variant = container.getMetaDataEntry("variant_name")
  109. if material_variant is not None and material_variant != self.variant_name:
  110. return
  111. else: # We already have this base profile. Replace the base profile if the new one is more specific.
  112. new_definition = container.getMetaDataEntry("definition")
  113. if new_definition == "fdmprinter":
  114. return # Just as unspecific or worse.
  115. material_variant = container.getMetaDataEntry("variant_name")
  116. if new_definition != self.machine.container_id or material_variant != self.variant_name:
  117. return # Doesn't match this set-up.
  118. original_metadata = ContainerRegistry.getInstance().findContainersMetadata(id = self.materials[base_file].container_id)[0]
  119. if "variant_name" in original_metadata or material_variant is None:
  120. return # Original was already specific or just as unspecific as the new one.
  121. if "empty_material" in self.materials:
  122. del self.materials["empty_material"]
  123. self.materials[base_file] = MaterialNode(container.getId(), variant = self, container = container)
  124. self.materials[base_file].materialChanged.connect(self.materialsChanged)
  125. self.materialsChanged.emit(self.materials[base_file])
  126. @UM.FlameProfiler.profile
  127. def _materialRemoved(self, container: ContainerInterface) -> None:
  128. if container.getMetaDataEntry("type") != "material":
  129. return # Only interested in materials.
  130. base_file = container.getMetaDataEntry("base_file")
  131. if base_file not in self.materials:
  132. return # We don't track this material anyway. No need to remove it.
  133. original_node = self.materials[base_file]
  134. del self.materials[base_file]
  135. self.materialsChanged.emit(original_node)
  136. # Now a different material from the same base file may have been hidden because it was not as specific as the one we deleted.
  137. # Search for any submaterials from that base file that are still left.
  138. materials_same_base_file = ContainerRegistry.getInstance().findContainersMetadata(base_file = base_file)
  139. if materials_same_base_file:
  140. most_specific_submaterial = None
  141. for submaterial in materials_same_base_file:
  142. if submaterial["definition"] == self.machine.container_id:
  143. if submaterial.get("variant_name", "empty") == self.variant_name:
  144. most_specific_submaterial = submaterial
  145. break # most specific match possible
  146. if submaterial.get("variant_name", "empty") == "empty":
  147. most_specific_submaterial = submaterial
  148. if most_specific_submaterial is None:
  149. Logger.log("w", "Material %s removed, but no suitable replacement found", base_file)
  150. else:
  151. Logger.log("i", "Material %s (%s) overridden by %s", base_file, self.variant_name, most_specific_submaterial.get("id"))
  152. self.materials[base_file] = MaterialNode(most_specific_submaterial["id"], variant = self)
  153. self.materialsChanged.emit(self.materials[base_file])
  154. if not self.materials: # The last available material just got deleted and there is nothing with the same base file to replace it.
  155. self.materials["empty_material"] = MaterialNode("empty_material", variant = self)
  156. self.materialsChanged.emit(self.materials["empty_material"])