123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420 |
- # Copyright (c) 2016 Ultimaker B.V.
- # Cura is released under the terms of the AGPLv3 or higher.
- from PyQt5.QtCore import pyqtSignal, pyqtProperty, pyqtSlot, QObject, QVariant #For communicating data and events to Qt.
- import UM.Application #To get the global container stack to find the current machine.
- import UM.Logger
- import UM.Settings.ContainerRegistry #Finding containers by ID.
- import UM.Settings.SettingFunction
- ## Manages all existing extruder stacks.
- #
- # This keeps a list of extruder stacks for each machine.
- class ExtruderManager(QObject):
- ## Signal to notify other components when the list of extruders for a machine definition changes.
- extrudersChanged = pyqtSignal(QVariant)
- ## Signal to notify other components when the global container stack is switched to a definition
- # that has different extruders than the previous global container stack
- globalContainerStackDefinitionChanged = pyqtSignal()
- ## Notify when the user switches the currently active extruder.
- activeExtruderChanged = pyqtSignal()
- ## Registers listeners and such to listen to changes to the extruders.
- def __init__(self, parent = None):
- super().__init__(parent)
- self._extruder_trains = { } #Per machine, a dictionary of extruder container stack IDs.
- self._active_extruder_index = 0
- UM.Application.getInstance().globalContainerStackChanged.connect(self.__globalContainerStackChanged)
- self._global_container_stack_definition_id = None
- self._addCurrentMachineExtruders()
- ## Gets the unique identifier of the currently active extruder stack.
- #
- # The currently active extruder stack is the stack that is currently being
- # edited.
- #
- # \return The unique ID of the currently active extruder stack.
- @pyqtProperty(str, notify = activeExtruderChanged)
- def activeExtruderStackId(self):
- if not UM.Application.getInstance().getGlobalContainerStack():
- return None # No active machine, so no active extruder.
- try:
- return self._extruder_trains[UM.Application.getInstance().getGlobalContainerStack().getId()][str(self._active_extruder_index)].getId()
- except KeyError: # Extruder index could be -1 if the global tab is selected, or the entry doesn't exist if the machine definition is wrong.
- return None
- @pyqtProperty(int, notify = extrudersChanged)
- def extruderCount(self):
- if not UM.Application.getInstance().getGlobalContainerStack():
- return 0 # No active machine, so no extruders.
- return len(self._extruder_trains[UM.Application.getInstance().getGlobalContainerStack().getId()])
- @pyqtProperty("QVariantMap", notify=extrudersChanged)
- def extruderIds(self):
- map = {}
- for position in self._extruder_trains[UM.Application.getInstance().getGlobalContainerStack().getId()]:
- map[position] = self._extruder_trains[UM.Application.getInstance().getGlobalContainerStack().getId()][position].getId()
- return map
- @pyqtSlot(str, result = str)
- def getQualityChangesIdByExtruderStackId(self, id):
- for position in self._extruder_trains[UM.Application.getInstance().getGlobalContainerStack().getId()]:
- extruder = self._extruder_trains[UM.Application.getInstance().getGlobalContainerStack().getId()][position]
- if extruder.getId() == id:
- return extruder.findContainer(type = "quality_changes").getId()
- ## The instance of the singleton pattern.
- #
- # It's None if the extruder manager hasn't been created yet.
- __instance = None
- ## Gets an instance of the extruder manager, or creates one if no instance
- # exists yet.
- #
- # This is an implementation of singleton. If an extruder manager already
- # exists, it is re-used.
- #
- # \return The extruder manager.
- @classmethod
- def getInstance(cls):
- if not cls.__instance:
- cls.__instance = ExtruderManager()
- return cls.__instance
- ## Changes the active extruder by index.
- #
- # \param index The index of the new active extruder.
- @pyqtSlot(int)
- def setActiveExtruderIndex(self, index):
- self._active_extruder_index = index
- self.activeExtruderChanged.emit()
- @pyqtProperty(int, notify = activeExtruderChanged)
- def activeExtruderIndex(self):
- return self._active_extruder_index
- def getActiveExtruderStack(self):
- global_container_stack = UM.Application.getInstance().getGlobalContainerStack()
- if global_container_stack:
- if global_container_stack.getId() in self._extruder_trains:
- if str(self._active_extruder_index) in self._extruder_trains[global_container_stack.getId()]:
- return self._extruder_trains[global_container_stack.getId()][str(self._active_extruder_index)]
- return None
- ## Get an extruder stack by index
- def getExtruderStack(self, index):
- global_container_stack = UM.Application.getInstance().getGlobalContainerStack()
- if global_container_stack:
- if global_container_stack.getId() in self._extruder_trains:
- if str(index) in self._extruder_trains[global_container_stack.getId()]:
- return self._extruder_trains[global_container_stack.getId()][str(index)]
- return None
- ## Adds all extruders of a specific machine definition to the extruder
- # manager.
- #
- # \param machine_definition The machine definition to add the extruders for.
- # \param machine_id The machine_id to add the extruders for.
- def addMachineExtruders(self, machine_definition, machine_id):
- changed = False
- machine_definition_id = machine_definition.getId()
- if machine_id not in self._extruder_trains:
- self._extruder_trains[machine_id] = { }
- changed = True
- container_registry = UM.Settings.ContainerRegistry.getInstance()
- if container_registry:
- # Add the extruder trains that don't exist yet.
- for extruder_definition in container_registry.findDefinitionContainers(machine = machine_definition_id):
- position = extruder_definition.getMetaDataEntry("position", None)
- if not position:
- UM.Logger.log("w", "Extruder definition %s specifies no position metadata entry.", extruder_definition.getId())
- if not container_registry.findContainerStacks(machine = machine_id, position = position): # Doesn't exist yet.
- self.createExtruderTrain(extruder_definition, machine_definition, position, machine_id)
- changed = True
- # Gets the extruder trains that we just created as well as any that still existed.
- extruder_trains = container_registry.findContainerStacks(type = "extruder_train", machine = machine_id)
- for extruder_train in extruder_trains:
- self._extruder_trains[machine_id][extruder_train.getMetaDataEntry("position")] = extruder_train
- # regardless of what the next stack is, we have to set it again, because of signal routing.
- extruder_train.setNextStack(UM.Application.getInstance().getGlobalContainerStack())
- changed = True
- if changed:
- self.extrudersChanged.emit(machine_id)
- ## Creates a container stack for an extruder train.
- #
- # The container stack has an extruder definition at the bottom, which is
- # linked to a machine definition. Then it has a variant profile, a material
- # profile, a quality profile and a user profile, in that order.
- #
- # The resulting container stack is added to the registry.
- #
- # \param extruder_definition The extruder to create the extruder train for.
- # \param machine_definition The machine that the extruder train belongs to.
- # \param position The position of this extruder train in the extruder slots of the machine.
- # \param machine_id The id of the "global" stack this extruder is linked to.
- def createExtruderTrain(self, extruder_definition, machine_definition, position, machine_id):
- # Cache some things.
- container_registry = UM.Settings.ContainerRegistry.getInstance()
- machine_definition_id = UM.Application.getInstance().getMachineManager().getQualityDefinitionId(machine_definition)
- # Create a container stack for this extruder.
- extruder_stack_id = container_registry.uniqueName(extruder_definition.getId())
- container_stack = UM.Settings.ContainerStack(extruder_stack_id)
- container_stack.setName(extruder_definition.getName()) # Take over the display name to display the stack with.
- container_stack.addMetaDataEntry("type", "extruder_train")
- container_stack.addMetaDataEntry("machine", machine_id)
- container_stack.addMetaDataEntry("position", position)
- container_stack.addContainer(extruder_definition)
- # Find the variant to use for this extruder.
- variant = container_registry.findInstanceContainers(id = "empty_variant")[0]
- if machine_definition.getMetaDataEntry("has_variants"):
- # First add any variant. Later, overwrite with preference if the preference is valid.
- variants = container_registry.findInstanceContainers(definition = machine_definition_id, type = "variant")
- if len(variants) >= 1:
- variant = variants[0]
- preferred_variant_id = machine_definition.getMetaDataEntry("preferred_variant")
- if preferred_variant_id:
- preferred_variants = container_registry.findInstanceContainers(id = preferred_variant_id, definition = machine_definition_id, type = "variant")
- if len(preferred_variants) >= 1:
- variant = preferred_variants[0]
- else:
- UM.Logger.log("w", "The preferred variant \"%s\" of machine %s doesn't exist or is not a variant profile.", preferred_variant_id, machine_id)
- # And leave it at the default variant.
- container_stack.addContainer(variant)
- # Find a material to use for this variant.
- material = container_registry.findInstanceContainers(id = "empty_material")[0]
- if machine_definition.getMetaDataEntry("has_materials"):
- # First add any material. Later, overwrite with preference if the preference is valid.
- machine_has_variant_materials = machine_definition.getMetaDataEntry("has_variant_materials", default = False)
- if machine_has_variant_materials or machine_has_variant_materials == "True":
- materials = container_registry.findInstanceContainers(type = "material", definition = machine_definition_id, variant = variant.getId())
- else:
- materials = container_registry.findInstanceContainers(type = "material", definition = machine_definition_id)
- if len(materials) >= 1:
- material = materials[0]
- preferred_material_id = machine_definition.getMetaDataEntry("preferred_material")
- if preferred_material_id:
- search_criteria = { "type": "material", "id": preferred_material_id}
- if machine_definition.getMetaDataEntry("has_machine_materials"):
- search_criteria["definition"] = machine_definition.id
- if machine_definition.getMetaDataEntry("has_variants") and variant:
- search_criteria["variant"] = variant.id
- else:
- search_criteria["definition"] = "fdmprinter"
- preferred_materials = container_registry.findInstanceContainers(**search_criteria)
- if len(preferred_materials) >= 1:
- material = preferred_materials[0]
- else:
- UM.Logger.log("w", "The preferred material \"%s\" of machine %s doesn't exist or is not a material profile.", preferred_material_id, machine_id)
- # And leave it at the default material.
- container_stack.addContainer(material)
- # Find a quality to use for this extruder.
- quality = container_registry.getEmptyInstanceContainer()
- search_criteria = { "type": "quality" }
- if machine_definition.getMetaDataEntry("has_machine_quality"):
- search_criteria["definition"] = machine_definition_id
- if machine_definition.getMetaDataEntry("has_materials") and material:
- search_criteria["material"] = material.id
- else:
- search_criteria["definition"] = "fdmprinter"
- preferred_quality = machine_definition.getMetaDataEntry("preferred_quality")
- if preferred_quality:
- search_criteria["id"] = preferred_quality
- containers = UM.Settings.ContainerRegistry.getInstance().findInstanceContainers(**search_criteria)
- if not containers and preferred_quality:
- UM.Logger.log("w", "The preferred quality \"%s\" of machine %s doesn't exist or is not a quality profile.", preferred_quality, machine_id)
- search_criteria.pop("id", None)
- containers = UM.Settings.ContainerRegistry.getInstance().findInstanceContainers(**search_criteria)
- if containers:
- quality = containers[0]
- container_stack.addContainer(quality)
- empty_quality_changes = container_registry.findInstanceContainers(id = "empty_quality_changes")[0]
- container_stack.addContainer(empty_quality_changes)
- user_profile = container_registry.findInstanceContainers(type = "user", extruder = extruder_stack_id)
- if user_profile: # There was already a user profile, loaded from settings.
- user_profile = user_profile[0]
- else:
- user_profile = UM.Settings.InstanceContainer(extruder_stack_id + "_current_settings") # Add an empty user profile.
- user_profile.addMetaDataEntry("type", "user")
- user_profile.addMetaDataEntry("extruder", extruder_stack_id)
- user_profile.setDefinition(machine_definition)
- container_registry.addContainer(user_profile)
- container_stack.addContainer(user_profile)
- # regardless of what the next stack is, we have to set it again, because of signal routing.
- container_stack.setNextStack(UM.Application.getInstance().getGlobalContainerStack())
- container_registry.addContainer(container_stack)
- def getAllExtruderValues(self, setting_key):
- global_container_stack = UM.Application.getInstance().getGlobalContainerStack()
- multi_extrusion = global_container_stack.getProperty("machine_extruder_count", "value") > 1
- if not multi_extrusion:
- return [global_container_stack.getProperty(setting_key, "value")]
- result = []
- for index in self.extruderIds:
- extruder_stack_id = self.extruderIds[str(index)]
- stack = UM.Settings.ContainerRegistry.getInstance().findContainerStacks(id=extruder_stack_id)[0]
- result.append(stack.getProperty(setting_key, "value"))
- return result
- ## Removes the container stack and user profile for the extruders for a specific machine.
- #
- # \param machine_id The machine to remove the extruders for.
- def removeMachineExtruders(self, machine_id):
- for extruder in self.getMachineExtruders(machine_id):
- containers = UM.Settings.ContainerRegistry.getInstance().findInstanceContainers(type = "user", extruder = extruder.getId())
- for container in containers:
- UM.Settings.ContainerRegistry.getInstance().removeContainer(container.getId())
- UM.Settings.ContainerRegistry.getInstance().removeContainer(extruder.getId())
- ## Returns extruders for a specific machine.
- #
- # \param machine_id The machine to get the extruders of.
- def getMachineExtruders(self, machine_id):
- if machine_id not in self._extruder_trains:
- UM.Logger.log("w", "Tried to get the extruder trains for machine %s, which doesn't exist.", machine_id)
- return
- for name in self._extruder_trains[machine_id]:
- yield self._extruder_trains[machine_id][name]
- ## Returns a list containing the global stack and active extruder stacks.
- #
- # The first element is the global container stack, followed by any extruder stacks.
- # \return \type{List[ContainerStack]}
- def getActiveGlobalAndExtruderStacks(self):
- global_stack = UM.Application.getInstance().getGlobalContainerStack()
- if not global_stack:
- return None
- result = [global_stack]
- result.extend(self.getActiveExtruderStacks())
- return result
- ## Returns the list of active extruder stacks.
- #
- # \return \type{List[ContainerStack]} a list of
- def getActiveExtruderStacks(self):
- global_stack = UM.Application.getInstance().getGlobalContainerStack()
- return list(self._extruder_trains[global_stack.getId()].values()) if global_stack else []
- def __globalContainerStackChanged(self):
- self._addCurrentMachineExtruders()
- global_container_stack = UM.Application.getInstance().getGlobalContainerStack()
- if global_container_stack and global_container_stack.getBottom() and global_container_stack.getBottom().getId() != self._global_container_stack_definition_id:
- self._global_container_stack_definition_id = global_container_stack.getBottom().getId()
- self.globalContainerStackDefinitionChanged.emit()
- self.activeExtruderChanged.emit()
- ## Adds the extruders of the currently active machine.
- def _addCurrentMachineExtruders(self):
- global_stack = UM.Application.getInstance().getGlobalContainerStack()
- if global_stack and global_stack.getBottom():
- self.addMachineExtruders(global_stack.getBottom(), global_stack.getId())
- ## Get all extruder values for a certain setting.
- #
- # This is exposed to SettingFunction so it can be used in value functions.
- #
- # \param key The key of the setting to retieve values for.
- #
- # \return A list of values for all extruders. If an extruder does not have a value, it will not be in the list.
- # If no extruder has the value, the list will contain the global value.
- @staticmethod
- def getExtruderValues(key):
- global_stack = UM.Application.getInstance().getGlobalContainerStack()
- result = []
- for extruder in ExtruderManager.getInstance().getMachineExtruders(global_stack.getId()):
- value = extruder.getRawProperty(key, "value")
- if value is None:
- continue
- if isinstance(value, UM.Settings.SettingFunction):
- value = value(extruder)
- result.append(value)
- if not result:
- result.append(global_stack.getProperty(key, "value"))
- return result
- ## Get all extruder values for a certain setting.
- #
- # This is exposed to qml for display purposes
- #
- # \param key The key of the setting to retieve values for.
- #
- # \return String representing the extruder values
- @pyqtSlot(str, result="QVariant")
- def getInstanceExtruderValues(self, key):
- return ExtruderManager.getExtruderValues(key)
- ## Get the value for a setting from a specific extruder.
- #
- # This is exposed to SettingFunction to use in value functions.
- #
- # \param extruder_index The index of the extruder to get the value from.
- # \param key The key of the setting to get the value of.
- #
- # \return The value of the setting for the specified extruder or for the
- # global stack if not found.
- @staticmethod
- def getExtruderValue(extruder_index, key):
- extruder = ExtruderManager.getInstance().getExtruderStack(extruder_index)
- if extruder:
- value = extruder.getRawProperty(key, "value")
- if isinstance(value, UM.Settings.SettingFunction):
- value = value(extruder)
- else: #Just a value from global.
- value = UM.Application.getInstance().getGlobalContainerStack().getProperty(key, "value")
- return value
- ## Get the resolve value or value for a given key
- #
- # This is the effective value for a given key, it is used for values in the global stack.
- # This is exposed to SettingFunction to use in value functions.
- # \param key The key of the setting to get the value of.
- #
- # \return The effective value
- @staticmethod
- def getResolveOrValue(key):
- global_stack = UM.Application.getInstance().getGlobalContainerStack()
- resolved_value = global_stack.getProperty(key, "resolve")
- if resolved_value is not None:
- user_container = global_stack.findContainer({"type": "user"})
- quality_changes_container = global_stack.findContainer({"type": "quality_changes"})
- if user_container.hasProperty(key, "value") or quality_changes_container.hasProperty(key, "value"):
- # Normal case
- value = global_stack.getProperty(key, "value")
- else:
- # We have a resolved value and we're using it because of no user and quality_changes value
- value = resolved_value
- else:
- value = global_stack.getRawProperty(key, "value")
- return value
|