MachineManager.py 88 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717
  1. # Copyright (c) 2020 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. import time
  4. import re
  5. import unicodedata
  6. from typing import Any, List, Dict, TYPE_CHECKING, Optional, cast, Set
  7. from PyQt5.QtCore import QObject, pyqtProperty, pyqtSignal, QTimer
  8. from UM.ConfigurationErrorMessage import ConfigurationErrorMessage
  9. from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator
  10. from UM.Settings.InstanceContainer import InstanceContainer
  11. from UM.Settings.Interfaces import ContainerInterface
  12. from UM.Signal import Signal
  13. from UM.FlameProfiler import pyqtSlot
  14. from UM import Util
  15. from UM.Logger import Logger
  16. from UM.Message import Message
  17. from UM.Settings.SettingFunction import SettingFunction
  18. from UM.Signal import postponeSignals, CompressTechnique
  19. import cura.CuraApplication # Imported like this to prevent circular references.
  20. from cura.Machines.ContainerNode import ContainerNode
  21. from cura.Machines.ContainerTree import ContainerTree
  22. from cura.Machines.Models.IntentCategoryModel import IntentCategoryModel
  23. from cura.PrinterOutput.PrinterOutputDevice import PrinterOutputDevice, ConnectionType
  24. from cura.PrinterOutput.Models.PrinterConfigurationModel import PrinterConfigurationModel
  25. from cura.PrinterOutput.Models.ExtruderConfigurationModel import ExtruderConfigurationModel
  26. from cura.PrinterOutput.Models.MaterialOutputModel import MaterialOutputModel
  27. from cura.Settings.CuraContainerRegistry import CuraContainerRegistry
  28. from cura.Settings.ExtruderManager import ExtruderManager
  29. from cura.Settings.ExtruderStack import ExtruderStack
  30. from cura.Settings.cura_empty_instance_containers import (empty_definition_changes_container, empty_variant_container,
  31. empty_material_container, empty_quality_container,
  32. empty_quality_changes_container, empty_intent_container)
  33. from .CuraStackBuilder import CuraStackBuilder
  34. from UM.i18n import i18nCatalog
  35. catalog = i18nCatalog("cura")
  36. from cura.Settings.GlobalStack import GlobalStack
  37. if TYPE_CHECKING:
  38. from cura.CuraApplication import CuraApplication
  39. from cura.Machines.MaterialNode import MaterialNode
  40. from cura.Machines.QualityChangesGroup import QualityChangesGroup
  41. from cura.Machines.QualityGroup import QualityGroup
  42. from cura.Machines.VariantNode import VariantNode
  43. class MachineManager(QObject):
  44. def __init__(self, application: "CuraApplication", parent: Optional["QObject"] = None) -> None:
  45. super().__init__(parent)
  46. self._active_container_stack = None # type: Optional[ExtruderStack]
  47. self._global_container_stack = None # type: Optional[GlobalStack]
  48. self._current_root_material_id = {} # type: Dict[str, str]
  49. self._default_extruder_position = "0" # to be updated when extruders are switched on and off
  50. self._instance_container_timer = QTimer() # type: QTimer
  51. self._instance_container_timer.setInterval(250)
  52. self._instance_container_timer.setSingleShot(True)
  53. self._instance_container_timer.timeout.connect(self.__emitChangedSignals)
  54. self._application = application
  55. self._container_registry = self._application.getContainerRegistry()
  56. self._application.globalContainerStackChanged.connect(self._onGlobalContainerChanged)
  57. self._container_registry.containerLoadComplete.connect(self._onContainersChanged)
  58. # When the global container is changed, active material probably needs to be updated.
  59. self.globalContainerChanged.connect(self.activeMaterialChanged)
  60. self.globalContainerChanged.connect(self.activeVariantChanged)
  61. self.globalContainerChanged.connect(self.activeQualityChanged)
  62. self.globalContainerChanged.connect(self.activeQualityChangesGroupChanged)
  63. self.globalContainerChanged.connect(self.activeQualityGroupChanged)
  64. self._stacks_have_errors = None # type: Optional[bool]
  65. extruder_manager = self._application.getExtruderManager()
  66. extruder_manager.activeExtruderChanged.connect(self._onActiveExtruderStackChanged)
  67. extruder_manager.activeExtruderChanged.connect(self.activeMaterialChanged)
  68. extruder_manager.activeExtruderChanged.connect(self.activeVariantChanged)
  69. extruder_manager.activeExtruderChanged.connect(self.activeQualityChanged)
  70. self.globalContainerChanged.connect(self.activeStackChanged)
  71. ExtruderManager.getInstance().activeExtruderChanged.connect(self.activeStackChanged)
  72. self.activeStackChanged.connect(self.activeStackValueChanged)
  73. self._application.getPreferences().addPreference("cura/active_machine", "")
  74. self._printer_output_devices = [] # type: List[PrinterOutputDevice]
  75. self._application.getOutputDeviceManager().outputDevicesChanged.connect(self._onOutputDevicesChanged)
  76. # There might already be some output devices by the time the signal is connected
  77. self._onOutputDevicesChanged()
  78. self._current_printer_configuration = PrinterConfigurationModel() # Indicates the current configuration setup in this printer
  79. self.activeMaterialChanged.connect(self._onCurrentConfigurationChanged)
  80. self.activeVariantChanged.connect(self._onCurrentConfigurationChanged)
  81. # Force to compute the current configuration
  82. self._onCurrentConfigurationChanged()
  83. self._application.callLater(self.setInitialActiveMachine)
  84. containers = CuraContainerRegistry.getInstance().findInstanceContainers(id = self.activeMaterialId) # type: List[InstanceContainer]
  85. if containers:
  86. containers[0].nameChanged.connect(self._onMaterialNameChanged)
  87. self.rootMaterialChanged.connect(self._onRootMaterialChanged)
  88. # Emit the printerConnectedStatusChanged when either globalContainerChanged or outputDevicesChanged are emitted
  89. self.globalContainerChanged.connect(self.printerConnectedStatusChanged)
  90. self.outputDevicesChanged.connect(self.printerConnectedStatusChanged)
  91. # For updating active quality display name
  92. self.activeQualityChanged.connect(self.activeQualityDisplayNameChanged)
  93. self.activeIntentChanged.connect(self.activeQualityDisplayNameChanged)
  94. self.activeQualityGroupChanged.connect(self.activeQualityDisplayNameChanged)
  95. self.activeQualityChangesGroupChanged.connect(self.activeQualityDisplayNameChanged)
  96. activeQualityDisplayNameChanged = pyqtSignal()
  97. activeQualityGroupChanged = pyqtSignal()
  98. activeQualityChangesGroupChanged = pyqtSignal()
  99. globalContainerChanged = pyqtSignal() # Emitted whenever the global stack is changed (ie: when changing between printers, changing a global profile, but not when changing a value)
  100. activeMaterialChanged = pyqtSignal()
  101. activeVariantChanged = pyqtSignal()
  102. activeQualityChanged = pyqtSignal()
  103. activeIntentChanged = pyqtSignal()
  104. activeStackChanged = pyqtSignal() # Emitted whenever the active extruder stack is changed (ie: when switching the active extruder tab or changing between printers)
  105. extruderChanged = pyqtSignal() # Emitted whenever an extruder is activated or deactivated or the default extruder changes.
  106. activeStackValueChanged = pyqtSignal() # Emitted whenever a value inside the active stack is changed.
  107. activeStackValidationChanged = pyqtSignal() # Emitted whenever a validation inside active container is changed
  108. stacksValidationChanged = pyqtSignal() # Emitted whenever a validation is changed
  109. numberExtrudersEnabledChanged = pyqtSignal() # Emitted when the number of extruders that are enabled changed
  110. blurSettings = pyqtSignal() # Emitted to force fields in the advanced sidebar to un-focus, so they update properly
  111. outputDevicesChanged = pyqtSignal()
  112. currentConfigurationChanged = pyqtSignal() # Emitted every time the current configurations of the machine changes
  113. printerConnectedStatusChanged = pyqtSignal() # Emitted every time the active machine change or the outputdevices change
  114. rootMaterialChanged = pyqtSignal()
  115. def setInitialActiveMachine(self) -> None:
  116. active_machine_id = self._application.getPreferences().getValue("cura/active_machine")
  117. if active_machine_id != "" and CuraContainerRegistry.getInstance().findContainerStacksMetadata(id = active_machine_id):
  118. # An active machine was saved, so restore it.
  119. self.setActiveMachine(active_machine_id)
  120. def _onOutputDevicesChanged(self) -> None:
  121. self._printer_output_devices = []
  122. for printer_output_device in self._application.getOutputDeviceManager().getOutputDevices():
  123. if isinstance(printer_output_device, PrinterOutputDevice):
  124. self._printer_output_devices.append(printer_output_device)
  125. self.outputDevicesChanged.emit()
  126. @pyqtProperty(QObject, notify = currentConfigurationChanged)
  127. def currentConfiguration(self) -> PrinterConfigurationModel:
  128. return self._current_printer_configuration
  129. def _onCurrentConfigurationChanged(self) -> None:
  130. if not self._global_container_stack:
  131. return
  132. # Create the configuration model with the current data in Cura
  133. self._current_printer_configuration.printerType = self._global_container_stack.definition.getName()
  134. if len(self._current_printer_configuration.extruderConfigurations) != len(self._global_container_stack.extruderList):
  135. self._current_printer_configuration.extruderConfigurations = [ExtruderConfigurationModel() for extruder in self._global_container_stack.extruderList]
  136. for extruder, extruder_configuration in zip(self._global_container_stack.extruderList, self._current_printer_configuration.extruderConfigurations):
  137. # For compare just the GUID is needed at this moment
  138. mat_type = extruder.material.getMetaDataEntry("material") if extruder.material != empty_material_container else None
  139. mat_guid = extruder.material.getMetaDataEntry("GUID") if extruder.material != empty_material_container else None
  140. mat_color = extruder.material.getMetaDataEntry("color_name") if extruder.material != empty_material_container else None
  141. mat_brand = extruder.material.getMetaDataEntry("brand") if extruder.material != empty_material_container else None
  142. mat_name = extruder.material.getMetaDataEntry("name") if extruder.material != empty_material_container else None
  143. material_model = MaterialOutputModel(mat_guid, mat_type, mat_color, mat_brand, mat_name)
  144. extruder_configuration.position = int(extruder.getMetaDataEntry("position"))
  145. extruder_configuration.material = material_model
  146. extruder_configuration.hotendID = extruder.variant.getName() if extruder.variant != empty_variant_container else None
  147. # An empty build plate configuration from the network printer is presented as an empty string, so use "" for an
  148. # empty build plate.
  149. self._current_printer_configuration.buildplateConfiguration = self._global_container_stack.getProperty("machine_buildplate_type", "value")\
  150. if self._global_container_stack.variant != empty_variant_container else self._global_container_stack.getProperty("machine_buildplate_type", "default_value")
  151. self.currentConfigurationChanged.emit()
  152. @pyqtSlot(QObject, result = bool)
  153. def matchesConfiguration(self, configuration: PrinterConfigurationModel) -> bool:
  154. return self._current_printer_configuration == configuration
  155. @pyqtProperty("QVariantList", notify = outputDevicesChanged)
  156. def printerOutputDevices(self) -> List[PrinterOutputDevice]:
  157. return self._printer_output_devices
  158. @pyqtProperty(int, constant=True)
  159. def totalNumberOfSettings(self) -> int:
  160. return len(self.getAllSettingKeys())
  161. def getAllSettingKeys(self) -> Set[str]:
  162. general_definition_containers = CuraContainerRegistry.getInstance().findDefinitionContainers(id="fdmprinter")
  163. if not general_definition_containers:
  164. return set()
  165. return general_definition_containers[0].getAllKeys()
  166. def _onGlobalContainerChanged(self) -> None:
  167. """Triggered when the global container stack is changed in CuraApplication."""
  168. if self._global_container_stack:
  169. try:
  170. self._global_container_stack.containersChanged.disconnect(self._onContainersChanged)
  171. except TypeError:
  172. pass
  173. try:
  174. self._global_container_stack.propertyChanged.disconnect(self._onPropertyChanged)
  175. except TypeError:
  176. pass
  177. for extruder_stack in self._global_container_stack.extruderList:
  178. extruder_stack.propertyChanged.disconnect(self._onPropertyChanged)
  179. extruder_stack.containersChanged.disconnect(self._onContainersChanged)
  180. # Update the local global container stack reference
  181. self._global_container_stack = self._application.getGlobalContainerStack()
  182. if self._global_container_stack:
  183. self.updateDefaultExtruder()
  184. self.updateNumberExtrudersEnabled()
  185. self.globalContainerChanged.emit()
  186. # After switching the global stack we reconnect all the signals and set the variant and material references
  187. if self._global_container_stack:
  188. self._application.getPreferences().setValue("cura/active_machine", self._global_container_stack.getId())
  189. self._global_container_stack.containersChanged.connect(self._onContainersChanged)
  190. self._global_container_stack.propertyChanged.connect(self._onPropertyChanged)
  191. # Global stack can have only a variant if it is a buildplate
  192. global_variant = self._global_container_stack.variant
  193. if global_variant != empty_variant_container:
  194. if global_variant.getMetaDataEntry("hardware_type") != "buildplate":
  195. self._global_container_stack.setVariant(empty_variant_container)
  196. # Set the global material to empty as we now use the extruder stack at all times - CURA-4482
  197. global_material = self._global_container_stack.material
  198. if global_material != empty_material_container:
  199. self._global_container_stack.setMaterial(empty_material_container)
  200. # Listen for changes on all extruder stacks
  201. for extruder_stack in self._global_container_stack.extruderList:
  202. extruder_stack.propertyChanged.connect(self._onPropertyChanged)
  203. extruder_stack.containersChanged.connect(self._onContainersChanged)
  204. self._onRootMaterialChanged()
  205. self.activeQualityGroupChanged.emit()
  206. def _onActiveExtruderStackChanged(self) -> None:
  207. self.blurSettings.emit() # Ensure no-one has focus.
  208. self._active_container_stack = ExtruderManager.getInstance().getActiveExtruderStack()
  209. def __emitChangedSignals(self) -> None:
  210. self.activeQualityChanged.emit()
  211. self.activeVariantChanged.emit()
  212. self.activeMaterialChanged.emit()
  213. self.activeIntentChanged.emit()
  214. self.rootMaterialChanged.emit()
  215. self.numberExtrudersEnabledChanged.emit()
  216. def _onContainersChanged(self, container: ContainerInterface) -> None:
  217. self._instance_container_timer.start()
  218. def _onPropertyChanged(self, key: str, property_name: str) -> None:
  219. if property_name == "value":
  220. # Notify UI items, such as the "changed" star in profile pull down menu.
  221. self.activeStackValueChanged.emit()
  222. @pyqtSlot(str)
  223. def setActiveMachine(self, stack_id: str) -> None:
  224. self.blurSettings.emit() # Ensure no-one has focus.
  225. container_registry = CuraContainerRegistry.getInstance()
  226. containers = container_registry.findContainerStacks(id = stack_id)
  227. if not containers:
  228. return
  229. global_stack = cast(GlobalStack, containers[0])
  230. # Make sure that the default machine actions for this machine have been added
  231. self._application.getMachineActionManager().addDefaultMachineActions(global_stack)
  232. extruder_manager = ExtruderManager.getInstance()
  233. extruder_manager.fixSingleExtrusionMachineExtruderDefinition(global_stack)
  234. if not global_stack.isValid():
  235. # Mark global stack as invalid
  236. ConfigurationErrorMessage.getInstance().addFaultyContainers(global_stack.getId())
  237. return # We're done here
  238. self._global_container_stack = global_stack
  239. extruder_manager.addMachineExtruders(global_stack)
  240. self._application.setGlobalContainerStack(global_stack)
  241. # Switch to the first enabled extruder
  242. self.updateDefaultExtruder()
  243. default_extruder_position = int(self.defaultExtruderPosition)
  244. old_active_extruder_index = extruder_manager.activeExtruderIndex
  245. extruder_manager.setActiveExtruderIndex(default_extruder_position)
  246. if old_active_extruder_index == default_extruder_position:
  247. # This signal might not have been emitted yet (if it didn't change) but we still want the models to update that depend on it because we changed the contents of the containers too.
  248. extruder_manager.activeExtruderChanged.emit()
  249. # Validate if the machine has the correct variants and materials.
  250. # It can happen that a variant or material is empty, even though the machine has them. This will ensure that
  251. # that situation will be fixed (and not occur again, since it switches it out to the preferred variant or
  252. # variant instead!)
  253. machine_node = ContainerTree.getInstance().machines[global_stack.definition.getId()]
  254. for extruder in self._global_container_stack.extruderList:
  255. variant_name = extruder.variant.getName()
  256. variant_node = machine_node.variants.get(variant_name)
  257. if variant_node is None:
  258. Logger.log("w", "An extruder has an unknown variant, switching it to the preferred variant")
  259. self.setVariantByName(extruder.getMetaDataEntry("position"), machine_node.preferred_variant_name)
  260. variant_node = machine_node.variants.get(machine_node.preferred_variant_name)
  261. material_node = variant_node.materials.get(extruder.material.getMetaDataEntry("base_file"))
  262. if material_node is None:
  263. Logger.log("w", "An extruder has an unknown material, switching it to the preferred material")
  264. self.setMaterialById(extruder.getMetaDataEntry("position"), machine_node.preferred_material)
  265. @staticmethod
  266. def getMachine(definition_id: str, metadata_filter: Optional[Dict[str, str]] = None) -> Optional["GlobalStack"]:
  267. """Given a definition id, return the machine with this id.
  268. Optional: add a list of keys and values to filter the list of machines with the given definition id
  269. :param definition_id: :type{str} definition id that needs to look for
  270. :param metadata_filter: :type{dict} list of metadata keys and values used for filtering
  271. """
  272. if metadata_filter is None:
  273. metadata_filter = {}
  274. machines = CuraContainerRegistry.getInstance().findContainerStacks(type = "machine", **metadata_filter)
  275. for machine in machines:
  276. if machine.definition.getId() == definition_id:
  277. return cast(GlobalStack, machine)
  278. return None
  279. @pyqtSlot(str, result=bool)
  280. @pyqtSlot(str, str, result = bool)
  281. def addMachine(self, definition_id: str, name: Optional[str] = None) -> bool:
  282. Logger.log("i", "Trying to add a machine with the definition id [%s]", definition_id)
  283. if name is None:
  284. definitions = CuraContainerRegistry.getInstance().findDefinitionContainers(id = definition_id)
  285. if definitions:
  286. name = definitions[0].getName()
  287. else:
  288. name = definition_id
  289. new_stack = CuraStackBuilder.createMachine(cast(str, name), definition_id)
  290. if new_stack:
  291. # Instead of setting the global container stack here, we set the active machine and so the signals are emitted
  292. self.setActiveMachine(new_stack.getId())
  293. else:
  294. Logger.log("w", "Failed creating a new machine!")
  295. return False
  296. return True
  297. def _checkStacksHaveErrors(self) -> bool:
  298. time_start = time.time()
  299. if self._global_container_stack is None: #No active machine.
  300. return False
  301. if self._global_container_stack.hasErrors():
  302. Logger.log("d", "Checking global stack for errors took %0.2f s and we found an error" % (time.time() - time_start))
  303. return True
  304. # Not a very pretty solution, but the extruder manager doesn't really know how many extruders there are
  305. machine_extruder_count = self._global_container_stack.getProperty("machine_extruder_count", "value")
  306. extruder_stacks = self._global_container_stack.extruderList
  307. count = 1 # We start with the global stack
  308. for stack in extruder_stacks:
  309. md = stack.getMetaData()
  310. if "position" in md and int(md["position"]) >= machine_extruder_count:
  311. continue
  312. count += 1
  313. if stack.hasErrors():
  314. Logger.log("d", "Checking %s stacks for errors took %.2f s and we found an error in stack [%s]" % (count, time.time() - time_start, str(stack)))
  315. return True
  316. Logger.log("d", "Checking %s stacks for errors took %.2f s" % (count, time.time() - time_start))
  317. return False
  318. @pyqtProperty(bool, notify = activeStackValueChanged)
  319. def hasUserSettings(self) -> bool:
  320. """Check if the global_container has instances in the user container"""
  321. if not self._global_container_stack:
  322. return False
  323. if self._global_container_stack.getTop().getNumInstances() != 0:
  324. return True
  325. for stack in self._global_container_stack.extruderList:
  326. if stack.getTop().getNumInstances() != 0:
  327. return True
  328. return False
  329. @pyqtProperty(int, notify = activeStackValueChanged)
  330. def numUserSettings(self) -> int:
  331. if not self._global_container_stack:
  332. return 0
  333. num_user_settings = self._global_container_stack.getTop().getNumInstances()
  334. stacks = self._global_container_stack.extruderList
  335. for stack in stacks:
  336. num_user_settings += stack.getTop().getNumInstances()
  337. return num_user_settings
  338. @pyqtSlot(str)
  339. def clearUserSettingAllCurrentStacks(self, key: str) -> None:
  340. """Delete a user setting from the global stack and all extruder stacks.
  341. :param key: :type{str} the name of the key to delete
  342. """
  343. Logger.log("i", "Clearing the setting [%s] from all stacks", key)
  344. if not self._global_container_stack:
  345. return
  346. send_emits_containers = []
  347. top_container = self._global_container_stack.getTop()
  348. top_container.removeInstance(key, postpone_emit=True)
  349. send_emits_containers.append(top_container)
  350. linked = not self._global_container_stack.getProperty(key, "settable_per_extruder") or \
  351. self._global_container_stack.getProperty(key, "limit_to_extruder") != "-1"
  352. if not linked:
  353. stack = ExtruderManager.getInstance().getActiveExtruderStack()
  354. stacks = [stack]
  355. else:
  356. stacks = self._global_container_stack.extruderList
  357. for stack in stacks:
  358. if stack is not None:
  359. container = stack.getTop()
  360. container.removeInstance(key, postpone_emit=True)
  361. send_emits_containers.append(container)
  362. for container in send_emits_containers:
  363. container.sendPostponedEmits()
  364. @pyqtProperty(bool, notify = stacksValidationChanged)
  365. def stacksHaveErrors(self) -> bool:
  366. """Check if none of the stacks contain error states
  367. Note that the _stacks_have_errors is cached due to performance issues
  368. Calling _checkStack(s)ForErrors on every change is simply too expensive
  369. """
  370. return bool(self._stacks_have_errors)
  371. @pyqtProperty(str, notify = globalContainerChanged)
  372. def activeMachineFirmwareVersion(self) -> str:
  373. if not self._printer_output_devices:
  374. return ""
  375. return self._printer_output_devices[0].firmwareVersion
  376. @pyqtProperty(str, notify = globalContainerChanged)
  377. def activeMachineAddress(self) -> str:
  378. if not self._printer_output_devices:
  379. return ""
  380. return self._printer_output_devices[0].address
  381. @pyqtProperty(bool, notify = printerConnectedStatusChanged)
  382. def printerConnected(self) -> bool:
  383. return bool(self._printer_output_devices)
  384. @pyqtProperty(bool, notify = printerConnectedStatusChanged)
  385. def activeMachineIsGroup(self) -> bool:
  386. if self.activeMachine is None:
  387. return False
  388. group_size = int(self.activeMachine.getMetaDataEntry("group_size", "-1"))
  389. return group_size > 1
  390. @pyqtProperty(bool, notify = printerConnectedStatusChanged)
  391. def activeMachineHasNetworkConnection(self) -> bool:
  392. # A network connection is only available if any output device is actually a network connected device.
  393. return any(d.connectionType == ConnectionType.NetworkConnection for d in self._printer_output_devices)
  394. @pyqtProperty(bool, notify = printerConnectedStatusChanged)
  395. def activeMachineHasCloudConnection(self) -> bool:
  396. # A cloud connection is only available if any output device actually is a cloud connected device.
  397. return any(d.connectionType == ConnectionType.CloudConnection for d in self._printer_output_devices)
  398. @pyqtProperty(bool, notify = printerConnectedStatusChanged)
  399. def activeMachineHasCloudRegistration(self) -> bool:
  400. return self.activeMachine is not None and ConnectionType.CloudConnection in self.activeMachine.configuredConnectionTypes
  401. @pyqtProperty(bool, notify = printerConnectedStatusChanged)
  402. def activeMachineIsUsingCloudConnection(self) -> bool:
  403. return self.activeMachineHasCloudConnection and not self.activeMachineHasNetworkConnection
  404. def activeMachineNetworkKey(self) -> str:
  405. if self._global_container_stack:
  406. return self._global_container_stack.getMetaDataEntry("um_network_key", "")
  407. return ""
  408. @pyqtProperty(str, notify = printerConnectedStatusChanged)
  409. def activeMachineNetworkGroupName(self) -> str:
  410. if self._global_container_stack:
  411. return self._global_container_stack.getMetaDataEntry("group_name", "")
  412. return ""
  413. @pyqtProperty(QObject, notify = globalContainerChanged)
  414. def activeMachine(self) -> Optional["GlobalStack"]:
  415. return self._global_container_stack
  416. @pyqtProperty(str, notify = activeStackChanged)
  417. def activeStackId(self) -> str:
  418. if self._active_container_stack:
  419. return self._active_container_stack.getId()
  420. return ""
  421. @pyqtProperty(QObject, notify = activeStackChanged)
  422. def activeStack(self) -> Optional["ExtruderStack"]:
  423. return self._active_container_stack
  424. @pyqtProperty(str, notify = activeMaterialChanged)
  425. def activeMaterialId(self) -> str:
  426. if self._active_container_stack:
  427. material = self._active_container_stack.material
  428. if material:
  429. return material.getId()
  430. return ""
  431. @pyqtProperty(float, notify = activeQualityGroupChanged)
  432. def activeQualityLayerHeight(self) -> float:
  433. """Gets the layer height of the currently active quality profile.
  434. This is indicated together with the name of the active quality profile.
  435. :return: The layer height of the currently active quality profile. If
  436. there is no quality profile, this returns the default layer height.
  437. """
  438. if not self._global_container_stack:
  439. return 0
  440. value = self._global_container_stack.getRawProperty("layer_height", "value", skip_until_container = self._global_container_stack.qualityChanges.getId())
  441. if isinstance(value, SettingFunction):
  442. value = value(self._global_container_stack)
  443. return value
  444. @pyqtProperty(str, notify = activeVariantChanged)
  445. def globalVariantName(self) -> str:
  446. if self._global_container_stack:
  447. variant = self._global_container_stack.variant
  448. if variant and not isinstance(variant, type(empty_variant_container)):
  449. return variant.getName()
  450. return ""
  451. @pyqtProperty(str, notify = activeQualityGroupChanged)
  452. def activeQualityType(self) -> str:
  453. global_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()
  454. if not global_stack:
  455. return ""
  456. return global_stack.quality.getMetaDataEntry("quality_type")
  457. @pyqtProperty(bool, notify = activeQualityGroupChanged)
  458. def isActiveQualitySupported(self) -> bool:
  459. global_container_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()
  460. if not global_container_stack:
  461. return False
  462. active_quality_group = self.activeQualityGroup()
  463. if active_quality_group is None:
  464. return False
  465. return active_quality_group.is_available
  466. @pyqtProperty(bool, notify = activeQualityGroupChanged)
  467. def isActiveQualityExperimental(self) -> bool:
  468. global_container_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()
  469. if not global_container_stack:
  470. return False
  471. active_quality_group = self.activeQualityGroup()
  472. if active_quality_group is None:
  473. return False
  474. return active_quality_group.is_experimental
  475. @pyqtProperty(str, notify = activeIntentChanged)
  476. def activeIntentCategory(self) -> str:
  477. global_container_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()
  478. if not global_container_stack:
  479. return ""
  480. return global_container_stack.getIntentCategory()
  481. # Provies a list of extruder positions that have a different intent from the active one.
  482. @pyqtProperty("QStringList", notify=activeIntentChanged)
  483. def extruderPositionsWithNonActiveIntent(self):
  484. global_container_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()
  485. if not global_container_stack:
  486. return []
  487. active_intent_category = self.activeIntentCategory
  488. result = []
  489. for extruder in global_container_stack.extruderList:
  490. if not extruder.isEnabled:
  491. continue
  492. category = extruder.intent.getMetaDataEntry("intent_category", "default")
  493. if category != active_intent_category:
  494. result.append(str(int(extruder.getMetaDataEntry("position")) + 1))
  495. return result
  496. @pyqtProperty(bool, notify = activeQualityChanged)
  497. def isCurrentSetupSupported(self) -> bool:
  498. """Returns whether there is anything unsupported in the current set-up.
  499. The current set-up signifies the global stack and all extruder stacks,
  500. so this indicates whether there is any container in any of the container
  501. stacks that is not marked as supported.
  502. """
  503. if not self._global_container_stack:
  504. return False
  505. for stack in [self._global_container_stack] + self._global_container_stack.extruderList:
  506. for container in stack.getContainers():
  507. if not container:
  508. return False
  509. if not Util.parseBool(container.getMetaDataEntry("supported", True)):
  510. return False
  511. return True
  512. @pyqtSlot(str)
  513. def copyValueToExtruders(self, key: str) -> None:
  514. """Copy the value of the setting of the current extruder to all other extruders as well as the global container."""
  515. if self._active_container_stack is None or self._global_container_stack is None:
  516. return
  517. new_value = self._active_container_stack.getProperty(key, "value")
  518. # Check in which stack the value has to be replaced
  519. for extruder_stack in self._global_container_stack.extruderList:
  520. if extruder_stack != self._active_container_stack and extruder_stack.getProperty(key, "value") != new_value:
  521. extruder_stack.userChanges.setProperty(key, "value", new_value) # TODO: nested property access, should be improved
  522. @pyqtSlot()
  523. def copyAllValuesToExtruders(self) -> None:
  524. """Copy the value of all manually changed settings of the current extruder to all other extruders."""
  525. if self._active_container_stack is None or self._global_container_stack is None:
  526. return
  527. for extruder_stack in self._global_container_stack.extruderList:
  528. if extruder_stack != self._active_container_stack:
  529. for key in self._active_container_stack.userChanges.getAllKeys():
  530. new_value = self._active_container_stack.getProperty(key, "value")
  531. # Check if the value has to be replaced
  532. extruder_stack.userChanges.setProperty(key, "value", new_value)
  533. @pyqtProperty(str, notify = globalContainerChanged)
  534. def activeQualityDefinitionId(self) -> str:
  535. """Get the Definition ID to use to select quality profiles for the currently active machine
  536. :returns: DefinitionID (string) if found, empty string otherwise
  537. """
  538. global_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()
  539. if not global_stack:
  540. return ""
  541. return ContainerTree.getInstance().machines[global_stack.definition.getId()].quality_definition
  542. @pyqtProperty(str, notify = globalContainerChanged)
  543. def activeDefinitionVariantsName(self) -> str:
  544. """Gets how the active definition calls variants
  545. Caveat: per-definition-variant-title is currently not translated (though the fallback is)
  546. """
  547. fallback_title = catalog.i18nc("@label", "Nozzle")
  548. if self._global_container_stack:
  549. return self._global_container_stack.definition.getMetaDataEntry("variants_name", fallback_title)
  550. return fallback_title
  551. @pyqtSlot(str, str)
  552. def renameMachine(self, machine_id: str, new_name: str) -> None:
  553. container_registry = CuraContainerRegistry.getInstance()
  554. machine_stack = container_registry.findContainerStacks(id = machine_id)
  555. if machine_stack:
  556. new_name = container_registry.createUniqueName("machine", machine_stack[0].getName(), new_name, machine_stack[0].definition.getName())
  557. machine_stack[0].setName(new_name)
  558. self.globalContainerChanged.emit()
  559. @pyqtSlot(str)
  560. def removeMachine(self, machine_id: str) -> None:
  561. Logger.log("i", "Attempting to remove a machine with the id [%s]", machine_id)
  562. # If the machine that is being removed is the currently active machine, set another machine as the active machine.
  563. activate_new_machine = (self._global_container_stack and self._global_container_stack.getId() == machine_id)
  564. # Activate a new machine before removing a machine because this is safer
  565. if activate_new_machine:
  566. machine_stacks = CuraContainerRegistry.getInstance().findContainerStacksMetadata(type = "machine")
  567. other_machine_stacks = [s for s in machine_stacks if s["id"] != machine_id]
  568. if other_machine_stacks:
  569. self.setActiveMachine(other_machine_stacks[0]["id"])
  570. metadatas = CuraContainerRegistry.getInstance().findContainerStacksMetadata(id = machine_id)
  571. if not metadatas:
  572. return # machine_id doesn't exist. Nothing to remove.
  573. metadata = metadatas[0]
  574. ExtruderManager.getInstance().removeMachineExtruders(machine_id)
  575. containers = CuraContainerRegistry.getInstance().findInstanceContainersMetadata(type = "user", machine = machine_id)
  576. for container in containers:
  577. CuraContainerRegistry.getInstance().removeContainer(container["id"])
  578. CuraContainerRegistry.getInstance().removeContainer(machine_id)
  579. # If the printer that is being removed is a network printer, the hidden printers have to be also removed
  580. group_id = metadata.get("group_id", None)
  581. if group_id:
  582. metadata_filter = {"group_id": group_id}
  583. hidden_containers = CuraContainerRegistry.getInstance().findContainerStacks(type = "machine", **metadata_filter)
  584. if hidden_containers:
  585. # This reuses the method and remove all printers recursively
  586. self.removeMachine(hidden_containers[0].getId())
  587. @pyqtProperty(bool, notify = activeMaterialChanged)
  588. def variantBuildplateCompatible(self) -> bool:
  589. """The selected buildplate is compatible if it is compatible with all the materials in all the extruders"""
  590. if not self._global_container_stack:
  591. return True
  592. buildplate_compatible = True # It is compatible by default
  593. for stack in self._global_container_stack.extruderList:
  594. if not stack.isEnabled:
  595. continue
  596. material_container = stack.material
  597. if material_container == empty_material_container:
  598. continue
  599. if material_container.getMetaDataEntry("buildplate_compatible"):
  600. active_buildplate_name = self.activeMachine.variant.name
  601. buildplate_compatible = buildplate_compatible and material_container.getMetaDataEntry("buildplate_compatible")[active_buildplate_name]
  602. return buildplate_compatible
  603. @pyqtProperty(bool, notify = activeMaterialChanged)
  604. def variantBuildplateUsable(self) -> bool:
  605. """The selected buildplate is usable if it is usable for all materials OR it is compatible for one but not compatible
  606. for the other material but the buildplate is still usable
  607. """
  608. if not self._global_container_stack:
  609. return True
  610. # Here the next formula is being calculated:
  611. # result = (not (material_left_compatible and material_right_compatible)) and
  612. # (material_left_compatible or material_left_usable) and
  613. # (material_right_compatible or material_right_usable)
  614. result = not self.variantBuildplateCompatible
  615. for stack in self._global_container_stack.extruderList:
  616. material_container = stack.material
  617. if material_container == empty_material_container:
  618. continue
  619. buildplate_compatible = material_container.getMetaDataEntry("buildplate_compatible")[self.activeVariantBuildplateName] if material_container.getMetaDataEntry("buildplate_compatible") else True
  620. buildplate_usable = material_container.getMetaDataEntry("buildplate_recommended")[self.activeVariantBuildplateName] if material_container.getMetaDataEntry("buildplate_recommended") else True
  621. result = result and (buildplate_compatible or buildplate_usable)
  622. return result
  623. @pyqtSlot(str, result = str)
  624. def getDefinitionByMachineId(self, machine_id: str) -> Optional[str]:
  625. """Get the Definition ID of a machine (specified by ID)
  626. :param machine_id: string machine id to get the definition ID of
  627. :returns: DefinitionID if found, None otherwise
  628. """
  629. containers = CuraContainerRegistry.getInstance().findContainerStacks(id = machine_id)
  630. if containers:
  631. return containers[0].definition.getId()
  632. return None
  633. def getIncompatibleSettingsOnEnabledExtruders(self, container: InstanceContainer) -> List[str]:
  634. if self._global_container_stack is None:
  635. return []
  636. extruder_count = self._global_container_stack.getProperty("machine_extruder_count", "value")
  637. result = [] # type: List[str]
  638. for setting_instance in container.findInstances():
  639. setting_key = setting_instance.definition.key
  640. if setting_key == "print_sequence":
  641. old_value = container.getProperty(setting_key, "value")
  642. Logger.log("d", "Reset setting [%s] in [%s] because its old value [%s] is no longer valid", setting_key, container, old_value)
  643. result.append(setting_key)
  644. continue
  645. if not self._global_container_stack.getProperty(setting_key, "type") in ("extruder", "optional_extruder"):
  646. continue
  647. old_value = container.getProperty(setting_key, "value")
  648. if isinstance(old_value, SettingFunction):
  649. old_value = old_value(self._global_container_stack)
  650. if int(old_value) < 0:
  651. continue
  652. if int(old_value) >= extruder_count or not self._global_container_stack.extruderList[int(old_value)].isEnabled:
  653. result.append(setting_key)
  654. Logger.log("d", "Reset setting [%s] in [%s] because its old value [%s] is no longer valid", setting_key, container, old_value)
  655. return result
  656. def correctExtruderSettings(self) -> None:
  657. """Update extruder number to a valid value when the number of extruders are changed, or when an extruder is changed"""
  658. if self._global_container_stack is None:
  659. return
  660. for setting_key in self.getIncompatibleSettingsOnEnabledExtruders(self._global_container_stack.userChanges):
  661. self._global_container_stack.userChanges.removeInstance(setting_key)
  662. add_user_changes = self.getIncompatibleSettingsOnEnabledExtruders(self._global_container_stack.qualityChanges)
  663. for setting_key in add_user_changes:
  664. # Apply quality changes that are incompatible to user changes, so we do not change the quality changes itself.
  665. self._global_container_stack.userChanges.setProperty(setting_key, "value", self._default_extruder_position)
  666. if add_user_changes:
  667. caution_message = Message(
  668. catalog.i18nc("@info:message Followed by a list of settings.", "Settings have been changed to match the current availability of extruders:") + " [{settings_list}]".format(settings_list = ", ".join(add_user_changes)),
  669. lifetime = 0,
  670. title = catalog.i18nc("@info:title", "Settings updated"))
  671. caution_message.show()
  672. def setActiveMachineExtruderCount(self, extruder_count: int) -> None:
  673. """Set the amount of extruders on the active machine (global stack)
  674. :param extruder_count: int the number of extruders to set
  675. """
  676. if self._global_container_stack is None:
  677. return
  678. extruder_manager = self._application.getExtruderManager()
  679. definition_changes_container = self._global_container_stack.definitionChanges
  680. if not self._global_container_stack or definition_changes_container == empty_definition_changes_container:
  681. return
  682. previous_extruder_count = self._global_container_stack.getProperty("machine_extruder_count", "value")
  683. if extruder_count == previous_extruder_count:
  684. return
  685. definition_changes_container.setProperty("machine_extruder_count", "value", extruder_count)
  686. self.updateDefaultExtruder()
  687. self.numberExtrudersEnabledChanged.emit()
  688. self.correctExtruderSettings()
  689. # Check to see if any objects are set to print with an extruder that will no longer exist
  690. root_node = self._application.getController().getScene().getRoot()
  691. for node in DepthFirstIterator(root_node):
  692. if node.getMeshData():
  693. extruder_nr = node.callDecoration("getActiveExtruderPosition")
  694. if extruder_nr is not None and int(extruder_nr) > extruder_count - 1:
  695. extruder = extruder_manager.getExtruderStack(extruder_count - 1)
  696. if extruder is not None:
  697. node.callDecoration("setActiveExtruder", extruder.getId())
  698. else:
  699. Logger.log("w", "Could not find extruder to set active.")
  700. # Make sure one of the extruder stacks is active
  701. extruder_manager.setActiveExtruderIndex(0)
  702. # Move settable_per_extruder values out of the global container
  703. # After CURA-4482 this should not be the case anymore, but we still want to support older project files.
  704. global_user_container = self._global_container_stack.userChanges
  705. for setting_instance in global_user_container.findInstances():
  706. setting_key = setting_instance.definition.key
  707. settable_per_extruder = self._global_container_stack.getProperty(setting_key, "settable_per_extruder")
  708. if settable_per_extruder:
  709. limit_to_extruder = int(self._global_container_stack.getProperty(setting_key, "limit_to_extruder"))
  710. extruder_position = max(0, limit_to_extruder)
  711. extruder_stack = self._global_container_stack.extruderList[extruder_position]
  712. if extruder_stack:
  713. extruder_stack.userChanges.setProperty(setting_key, "value", global_user_container.getProperty(setting_key, "value"))
  714. else:
  715. Logger.log("e", "Unable to find extruder on position %s", extruder_position)
  716. global_user_container.removeInstance(setting_key)
  717. # Signal that the global stack has changed
  718. self._application.globalContainerStackChanged.emit()
  719. self.forceUpdateAllSettings()
  720. def updateDefaultExtruder(self) -> None:
  721. if self._global_container_stack is None:
  722. return
  723. old_position = self._default_extruder_position
  724. new_default_position = "0"
  725. for extruder in self._global_container_stack.extruderList:
  726. if extruder.isEnabled:
  727. new_default_position = extruder.getMetaDataEntry("position", "0")
  728. break
  729. if new_default_position != old_position:
  730. self._default_extruder_position = new_default_position
  731. self.extruderChanged.emit()
  732. def updateNumberExtrudersEnabled(self) -> None:
  733. if self._global_container_stack is None:
  734. return
  735. definition_changes_container = self._global_container_stack.definitionChanges
  736. machine_extruder_count = self._global_container_stack.getProperty("machine_extruder_count", "value")
  737. extruder_count = 0
  738. for position, extruder in enumerate(self._global_container_stack.extruderList):
  739. if extruder.isEnabled and int(position) < machine_extruder_count:
  740. extruder_count += 1
  741. if self.numberExtrudersEnabled != extruder_count:
  742. definition_changes_container.setProperty("extruders_enabled_count", "value", extruder_count)
  743. self.numberExtrudersEnabledChanged.emit()
  744. @pyqtProperty(int, notify = numberExtrudersEnabledChanged)
  745. def numberExtrudersEnabled(self) -> int:
  746. if self._global_container_stack is None:
  747. return 1
  748. extruders_enabled_count = self._global_container_stack.definitionChanges.getProperty("extruders_enabled_count", "value")
  749. if extruders_enabled_count is None:
  750. extruders_enabled_count = len(self._global_container_stack.extruderList)
  751. return extruders_enabled_count
  752. @pyqtProperty(str, notify = extruderChanged)
  753. def defaultExtruderPosition(self) -> str:
  754. return self._default_extruder_position
  755. @pyqtSlot()
  756. def forceUpdateAllSettings(self) -> None:
  757. """This will fire the propertiesChanged for all settings so they will be updated in the front-end"""
  758. if self._global_container_stack is None:
  759. return
  760. with postponeSignals(*self._getContainerChangedSignals(), compress = CompressTechnique.CompressPerParameterValue):
  761. property_names = ["value", "resolve", "validationState"]
  762. for container in [self._global_container_stack] + self._global_container_stack.extruderList:
  763. for setting_key in container.getAllKeys():
  764. container.propertiesChanged.emit(setting_key, property_names)
  765. @pyqtSlot(int, bool)
  766. def setExtruderEnabled(self, position: int, enabled: bool) -> None:
  767. if self._global_container_stack is None or position >= len(self._global_container_stack.extruderList):
  768. Logger.log("w", "Could not find extruder on position %s.", position)
  769. return
  770. extruder = self._global_container_stack.extruderList[position]
  771. extruder.setEnabled(enabled)
  772. self.updateDefaultExtruder()
  773. self.updateNumberExtrudersEnabled()
  774. self.correctExtruderSettings()
  775. # In case this extruder is being disabled and it's the currently selected one, switch to the default extruder
  776. if not enabled and position == ExtruderManager.getInstance().activeExtruderIndex:
  777. ExtruderManager.getInstance().setActiveExtruderIndex(int(self._default_extruder_position))
  778. # Ensure that the quality profile is compatible with current combination, or choose a compatible one if available
  779. self._updateQualityWithMaterial()
  780. self.extruderChanged.emit()
  781. # Update material compatibility color
  782. self.activeQualityGroupChanged.emit()
  783. # Update items in SettingExtruder
  784. ExtruderManager.getInstance().extrudersChanged.emit(self._global_container_stack.getId())
  785. # Make sure the front end reflects changes
  786. self.forceUpdateAllSettings()
  787. # Also trigger the build plate compatibility to update
  788. self.activeMaterialChanged.emit()
  789. self.activeIntentChanged.emit()
  790. def _onMaterialNameChanged(self) -> None:
  791. self.activeMaterialChanged.emit()
  792. def _getContainerChangedSignals(self) -> List[Signal]:
  793. """Get the signals that signal that the containers changed for all stacks.
  794. This includes the global stack and all extruder stacks. So if any
  795. container changed anywhere.
  796. """
  797. if self._global_container_stack is None:
  798. return []
  799. return [s.containersChanged for s in self._global_container_stack.extruderList + [self._global_container_stack]]
  800. @pyqtSlot(str, str, str)
  801. def setSettingForAllExtruders(self, setting_name: str, property_name: str, property_value: str) -> None:
  802. if self._global_container_stack is None:
  803. return
  804. for extruder in self._global_container_stack.extruderList:
  805. container = extruder.userChanges
  806. container.setProperty(setting_name, property_name, property_value)
  807. @pyqtSlot(str)
  808. def resetSettingForAllExtruders(self, setting_name: str) -> None:
  809. """Reset all setting properties of a setting for all extruders.
  810. :param setting_name: The ID of the setting to reset.
  811. """
  812. if self._global_container_stack is None:
  813. return
  814. for extruder in self._global_container_stack.extruderList:
  815. container = extruder.userChanges
  816. container.removeInstance(setting_name)
  817. def _onRootMaterialChanged(self) -> None:
  818. """Update _current_root_material_id when the current root material was changed."""
  819. self._current_root_material_id = {}
  820. changed = False
  821. if self._global_container_stack:
  822. for extruder in self._global_container_stack.extruderList:
  823. material_id = extruder.material.getMetaDataEntry("base_file")
  824. position = extruder.getMetaDataEntry("position")
  825. if position not in self._current_root_material_id or material_id != self._current_root_material_id[position]:
  826. changed = True
  827. self._current_root_material_id[position] = material_id
  828. if changed:
  829. self.activeMaterialChanged.emit()
  830. @pyqtProperty("QVariant", notify = rootMaterialChanged)
  831. def currentRootMaterialId(self) -> Dict[str, str]:
  832. return self._current_root_material_id
  833. # Sets all quality and quality_changes containers to empty_quality and empty_quality_changes containers
  834. # for all stacks in the currently active machine.
  835. #
  836. def _setEmptyQuality(self) -> None:
  837. if self._global_container_stack is None:
  838. return
  839. self._global_container_stack.quality = empty_quality_container
  840. self._global_container_stack.qualityChanges = empty_quality_changes_container
  841. for extruder in self._global_container_stack.extruderList:
  842. extruder.quality = empty_quality_container
  843. extruder.qualityChanges = empty_quality_changes_container
  844. self.activeQualityGroupChanged.emit()
  845. self.activeQualityChangesGroupChanged.emit()
  846. self._updateIntentWithQuality()
  847. def _setQualityGroup(self, quality_group: Optional["QualityGroup"], empty_quality_changes: bool = True) -> None:
  848. if self._global_container_stack is None:
  849. return
  850. if quality_group is None:
  851. self._setEmptyQuality()
  852. return
  853. if quality_group.node_for_global is None or quality_group.node_for_global.container is None:
  854. return
  855. for node in quality_group.nodes_for_extruders.values():
  856. if node.container is None:
  857. return
  858. # Set quality and quality_changes for the GlobalStack
  859. self._global_container_stack.quality = quality_group.node_for_global.container
  860. if empty_quality_changes:
  861. self._global_container_stack.qualityChanges = empty_quality_changes_container
  862. # Set quality and quality_changes for each ExtruderStack
  863. for position, node in quality_group.nodes_for_extruders.items():
  864. self._global_container_stack.extruderList[position].quality = node.container
  865. if empty_quality_changes:
  866. self._global_container_stack.extruderList[position].qualityChanges = empty_quality_changes_container
  867. self.activeQualityGroupChanged.emit()
  868. self.activeQualityChangesGroupChanged.emit()
  869. self._updateIntentWithQuality()
  870. def _fixQualityChangesGroupToNotSupported(self, quality_changes_group: "QualityChangesGroup") -> None:
  871. metadatas = [quality_changes_group.metadata_for_global] + list(quality_changes_group.metadata_per_extruder.values())
  872. for metadata in metadatas:
  873. metadata["quality_type"] = "not_supported" # This actually changes the metadata of the container since they are stored by reference!
  874. quality_changes_group.quality_type = "not_supported"
  875. quality_changes_group.intent_category = "default"
  876. def _setQualityChangesGroup(self, quality_changes_group: "QualityChangesGroup") -> None:
  877. if self._global_container_stack is None:
  878. return # Can't change that.
  879. quality_type = quality_changes_group.quality_type
  880. # A custom quality can be created based on "not supported".
  881. # In that case, do not set quality containers to empty.
  882. quality_group = None
  883. if quality_type != "not_supported": # Find the quality group that the quality changes was based on.
  884. quality_group = ContainerTree.getInstance().getCurrentQualityGroups().get(quality_type)
  885. if quality_group is None:
  886. self._fixQualityChangesGroupToNotSupported(quality_changes_group)
  887. container_registry = cura.CuraApplication.CuraApplication.getInstance().getContainerRegistry()
  888. quality_changes_container = empty_quality_changes_container
  889. quality_container = empty_quality_container # type: InstanceContainer
  890. if quality_changes_group.metadata_for_global:
  891. global_containers = container_registry.findContainers(id = quality_changes_group.metadata_for_global["id"])
  892. if global_containers:
  893. quality_changes_container = global_containers[0]
  894. if quality_changes_group.metadata_for_global:
  895. containers = container_registry.findContainers(id = quality_changes_group.metadata_for_global["id"])
  896. if containers:
  897. quality_changes_container = cast(InstanceContainer, containers[0])
  898. if quality_group is not None and quality_group.node_for_global and quality_group.node_for_global.container:
  899. quality_container = quality_group.node_for_global.container
  900. self._global_container_stack.quality = quality_container
  901. self._global_container_stack.qualityChanges = quality_changes_container
  902. for position, extruder in enumerate(self._global_container_stack.extruderList):
  903. quality_node = None
  904. if quality_group is not None:
  905. quality_node = quality_group.nodes_for_extruders.get(position)
  906. quality_changes_container = empty_quality_changes_container
  907. quality_container = empty_quality_container
  908. quality_changes_metadata = quality_changes_group.metadata_per_extruder.get(position)
  909. if quality_changes_metadata:
  910. containers = container_registry.findContainers(id = quality_changes_metadata["id"])
  911. if containers:
  912. quality_changes_container = cast(InstanceContainer, containers[0])
  913. if quality_node and quality_node.container:
  914. quality_container = quality_node.container
  915. extruder.quality = quality_container
  916. extruder.qualityChanges = quality_changes_container
  917. self.setIntentByCategory(quality_changes_group.intent_category)
  918. self.activeQualityGroupChanged.emit()
  919. self.activeQualityChangesGroupChanged.emit()
  920. def _setVariantNode(self, position: str, variant_node: "VariantNode") -> None:
  921. if self._global_container_stack is None:
  922. return
  923. self._global_container_stack.extruderList[int(position)].variant = variant_node.container
  924. self.activeVariantChanged.emit()
  925. def _setGlobalVariant(self, container_node: "ContainerNode") -> None:
  926. if self._global_container_stack is None:
  927. return
  928. self._global_container_stack.variant = container_node.container
  929. if not self._global_container_stack.variant:
  930. self._global_container_stack.variant = self._application.empty_variant_container
  931. def _setMaterial(self, position: str, material_node: Optional["MaterialNode"] = None) -> None:
  932. if self._global_container_stack is None:
  933. return
  934. if material_node and material_node.container:
  935. material_container = material_node.container
  936. self._global_container_stack.extruderList[int(position)].material = material_container
  937. root_material_id = material_container.getMetaDataEntry("base_file", None)
  938. else:
  939. self._global_container_stack.extruderList[int(position)].material = empty_material_container
  940. root_material_id = None
  941. # The _current_root_material_id is used in the MaterialMenu to see which material is selected
  942. if position not in self._current_root_material_id or root_material_id != self._current_root_material_id[position]:
  943. self._current_root_material_id[position] = root_material_id
  944. self.rootMaterialChanged.emit()
  945. def activeMaterialsCompatible(self) -> bool:
  946. # Check material - variant compatibility
  947. if self._global_container_stack is not None:
  948. if Util.parseBool(self._global_container_stack.getMetaDataEntry("has_materials", False)):
  949. for extruder in self._global_container_stack.extruderList:
  950. if not extruder.isEnabled:
  951. continue
  952. if not extruder.material.getMetaDataEntry("compatible"):
  953. return False
  954. return True
  955. def _updateQualityWithMaterial(self, *args: Any) -> None:
  956. """Update current quality type and machine after setting material"""
  957. global_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()
  958. if global_stack is None:
  959. return
  960. Logger.log("d", "Updating quality/quality_changes due to material change")
  961. current_quality_type = global_stack.quality.getMetaDataEntry("quality_type")
  962. candidate_quality_groups = ContainerTree.getInstance().getCurrentQualityGroups()
  963. available_quality_types = {qt for qt, g in candidate_quality_groups.items() if g.is_available}
  964. Logger.log("d", "Current quality type = [%s]", current_quality_type)
  965. if not self.activeMaterialsCompatible():
  966. if current_quality_type is not None:
  967. Logger.log("i", "Active materials are not compatible, setting all qualities to empty (Not Supported).")
  968. self._setEmptyQuality()
  969. return
  970. if not available_quality_types:
  971. if global_stack.qualityChanges == empty_quality_changes_container:
  972. Logger.log("i", "No available quality types found, setting all qualities to empty (Not Supported).")
  973. self._setEmptyQuality()
  974. return
  975. if current_quality_type in available_quality_types:
  976. Logger.log("i", "Current available quality type [%s] is available, applying changes.", current_quality_type)
  977. self._setQualityGroup(candidate_quality_groups[current_quality_type], empty_quality_changes = False)
  978. return
  979. # The current quality type is not available so we use the preferred quality type if it's available,
  980. # otherwise use one of the available quality types.
  981. quality_type = sorted(list(available_quality_types))[0]
  982. if self._global_container_stack is None:
  983. Logger.log("e", "Global stack not present!")
  984. return
  985. preferred_quality_type = self._global_container_stack.getMetaDataEntry("preferred_quality_type")
  986. if preferred_quality_type in available_quality_types:
  987. quality_type = preferred_quality_type
  988. Logger.log("i", "The current quality type [%s] is not available, switching to [%s] instead",
  989. current_quality_type, quality_type)
  990. self._setQualityGroup(candidate_quality_groups[quality_type], empty_quality_changes = True)
  991. def _updateIntentWithQuality(self):
  992. """Update the current intent after the quality changed"""
  993. global_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()
  994. if global_stack is None:
  995. return
  996. Logger.log("d", "Updating intent due to quality change")
  997. category = "default"
  998. for extruder in global_stack.extruderList:
  999. if not extruder.isEnabled:
  1000. continue
  1001. current_category = extruder.intent.getMetaDataEntry("intent_category", "default")
  1002. if current_category != "default" and current_category != category:
  1003. category = current_category
  1004. continue
  1005. # It's also possible that the qualityChanges has an opinion about the intent_category.
  1006. # This is in the case that a QC was made on an intent, but none of the materials have that intent.
  1007. # If the user switches back, we do want the intent to be selected again.
  1008. #
  1009. # Do not ask empty quality changes for intent category.
  1010. if extruder.qualityChanges.getId() == empty_quality_changes_container.getId():
  1011. continue
  1012. current_category = extruder.qualityChanges.getMetaDataEntry("intent_category", "default")
  1013. if current_category != "default" and current_category != category:
  1014. category = current_category
  1015. self.setIntentByCategory(category)
  1016. @pyqtSlot()
  1017. def updateMaterialWithVariant(self, position: Optional[str] = None) -> None:
  1018. """Update the material profile in the current stacks when the variant is
  1019. changed.
  1020. :param position: The extruder stack to update. If provided with None, all
  1021. extruder stacks will be updated.
  1022. """
  1023. if self._global_container_stack is None:
  1024. return
  1025. if position is None:
  1026. position_list = [str(position) for position in range(len(self._global_container_stack.extruderList))]
  1027. else:
  1028. position_list = [position]
  1029. for position_item in position_list:
  1030. try:
  1031. extruder = self._global_container_stack.extruderList[int(position_item)]
  1032. except IndexError:
  1033. continue
  1034. current_material_base_name = extruder.material.getMetaDataEntry("base_file")
  1035. current_nozzle_name = extruder.variant.getMetaDataEntry("name")
  1036. # If we can keep the current material after the switch, try to do so.
  1037. nozzle_node = ContainerTree.getInstance().machines[self._global_container_stack.definition.getId()].variants[current_nozzle_name]
  1038. candidate_materials = nozzle_node.materials
  1039. old_approximate_material_diameter = int(extruder.material.getMetaDataEntry("approximate_diameter", default = 3))
  1040. new_approximate_material_diameter = int(self._global_container_stack.extruderList[int(position_item)].getApproximateMaterialDiameter())
  1041. # Only switch to the old candidate material if the approximate material diameter of the extruder stays the
  1042. # same.
  1043. if new_approximate_material_diameter == old_approximate_material_diameter and \
  1044. current_material_base_name in candidate_materials: # The current material is also available after the switch. Retain it.
  1045. new_material = candidate_materials[current_material_base_name]
  1046. self._setMaterial(position_item, new_material)
  1047. else:
  1048. # The current material is not available, find the preferred one.
  1049. approximate_material_diameter = int(self._global_container_stack.extruderList[int(position_item)].getApproximateMaterialDiameter())
  1050. material_node = nozzle_node.preferredMaterial(approximate_material_diameter)
  1051. self._setMaterial(position_item, material_node)
  1052. @pyqtSlot(str)
  1053. def switchPrinterType(self, machine_name: str) -> None:
  1054. """Given a printer definition name, select the right machine instance. In case it doesn't exist, create a new
  1055. instance with the same network key.
  1056. """
  1057. # Don't switch if the user tries to change to the same type of printer
  1058. if self._global_container_stack is None or self._global_container_stack.definition.name == machine_name:
  1059. return
  1060. Logger.log("i", "Attempting to switch the printer type to [%s]", machine_name)
  1061. # Get the definition id corresponding to this machine name
  1062. definitions = CuraContainerRegistry.getInstance().findDefinitionContainers(name=machine_name)
  1063. if not definitions:
  1064. Logger.log("e", "Unable to switch printer type since it could not be found!")
  1065. return
  1066. machine_definition_id = definitions[0].getId()
  1067. # Try to find a machine with the same network key
  1068. metadata_filter = {"group_id": self._global_container_stack.getMetaDataEntry("group_id")}
  1069. new_machine = self.getMachine(machine_definition_id, metadata_filter = metadata_filter)
  1070. # If there is no machine, then create a new one and set it to the non-hidden instance
  1071. if not new_machine:
  1072. new_machine = CuraStackBuilder.createMachine(machine_definition_id + "_sync", machine_definition_id)
  1073. if not new_machine:
  1074. Logger.log("e", "Failed to create new machine when switching configuration.")
  1075. return
  1076. for metadata_key in self._global_container_stack.getMetaData():
  1077. if metadata_key in new_machine.getMetaData():
  1078. continue # Don't copy the already preset stuff.
  1079. new_machine.setMetaDataEntry(metadata_key, self._global_container_stack.getMetaDataEntry(metadata_key))
  1080. # Special case, group_id should be overwritten!
  1081. new_machine.setMetaDataEntry("group_id", self._global_container_stack.getMetaDataEntry("group_id"))
  1082. else:
  1083. Logger.log("i", "Found a %s with the key %s. Let's use it!", machine_name, self.activeMachineNetworkKey())
  1084. # Set the current printer instance to hidden (the metadata entry must exist)
  1085. new_machine.setMetaDataEntry("hidden", False)
  1086. self._global_container_stack.setMetaDataEntry("hidden", True)
  1087. # The new_machine does not contain user changes (global or per-extruder user changes).
  1088. # Keep a temporary copy of the global and per-extruder user changes and transfer them to the user changes
  1089. # of the new machine after the new_machine becomes active.
  1090. global_user_changes = self._global_container_stack.userChanges
  1091. per_extruder_user_changes = [extruder_stack.userChanges for extruder_stack in self._global_container_stack.extruderList]
  1092. self.setActiveMachine(new_machine.getId())
  1093. # Apply the global and per-extruder userChanges to the new_machine (which is of different type than the
  1094. # previous one).
  1095. self._global_container_stack.setUserChanges(global_user_changes)
  1096. for i, user_changes in enumerate(per_extruder_user_changes):
  1097. self._global_container_stack.extruderList[i].setUserChanges(per_extruder_user_changes[i])
  1098. @pyqtSlot(QObject)
  1099. def applyRemoteConfiguration(self, configuration: PrinterConfigurationModel) -> None:
  1100. if self._global_container_stack is None:
  1101. return
  1102. self.blurSettings.emit()
  1103. container_registry = CuraContainerRegistry.getInstance()
  1104. with postponeSignals(*self._getContainerChangedSignals(), compress = CompressTechnique.CompressPerParameterValue):
  1105. self.switchPrinterType(configuration.printerType)
  1106. disabled_used_extruder_position_set = set()
  1107. extruders_to_disable = set()
  1108. # If an extruder that's currently used to print a model gets disabled due to the syncing, we need to show
  1109. # a message explaining why.
  1110. need_to_show_message = False
  1111. for extruder_configuration in configuration.extruderConfigurations:
  1112. # We support "" or None, since the cloud uses None instead of empty strings
  1113. extruder_has_hotend = extruder_configuration.hotendID and extruder_configuration.hotendID != ""
  1114. extruder_has_material = extruder_configuration.material.guid and extruder_configuration.material.guid != ""
  1115. # If the machine doesn't have a hotend or material, disable this extruder
  1116. if not extruder_has_hotend or not extruder_has_material:
  1117. extruders_to_disable.add(extruder_configuration.position)
  1118. # If there's no material and/or nozzle on the printer, enable the first extruder and disable the rest.
  1119. if len(extruders_to_disable) == len(self._global_container_stack.extruderList):
  1120. extruders_to_disable.remove(min(extruders_to_disable))
  1121. for extruder_configuration in configuration.extruderConfigurations:
  1122. position = str(extruder_configuration.position)
  1123. # If the machine doesn't have a hotend or material, disable this extruder
  1124. if int(position) in extruders_to_disable:
  1125. self._global_container_stack.extruderList[int(position)].setEnabled(False)
  1126. need_to_show_message = True
  1127. disabled_used_extruder_position_set.add(int(position))
  1128. else:
  1129. machine_node = ContainerTree.getInstance().machines.get(self._global_container_stack.definition.getId())
  1130. variant_node = machine_node.variants.get(extruder_configuration.hotendID)
  1131. if variant_node is None:
  1132. continue
  1133. self._setVariantNode(position, variant_node)
  1134. # Find the material profile that the printer has stored.
  1135. # This might find one of the duplicates if the user duplicated the material to sync with. But that's okay; both have this GUID so both are correct.
  1136. approximate_diameter = int(self._global_container_stack.extruderList[int(position)].getApproximateMaterialDiameter())
  1137. materials_with_guid = container_registry.findInstanceContainersMetadata(GUID = extruder_configuration.material.guid, approximate_diameter = str(approximate_diameter), ignore_case = True)
  1138. material_container_node = variant_node.preferredMaterial(approximate_diameter)
  1139. if materials_with_guid: # We also have the material profile that the printer wants to share.
  1140. base_file = materials_with_guid[0]["base_file"]
  1141. material_container_node = variant_node.materials.get(base_file, material_container_node)
  1142. self._setMaterial(position, material_container_node)
  1143. self._global_container_stack.extruderList[int(position)].setEnabled(True)
  1144. self.updateMaterialWithVariant(position)
  1145. self.updateDefaultExtruder()
  1146. self.updateNumberExtrudersEnabled()
  1147. self._updateQualityWithMaterial()
  1148. if need_to_show_message:
  1149. msg_str = "{extruders} is disabled because there is no material loaded. Please load a material or use custom configurations."
  1150. # Show human-readable extruder names such as "Extruder Left", "Extruder Front" instead of "Extruder 1, 2, 3".
  1151. extruder_names = []
  1152. for extruder_position in sorted(disabled_used_extruder_position_set):
  1153. extruder_stack = self._global_container_stack.extruderList[int(extruder_position)]
  1154. extruder_name = extruder_stack.definition.getName()
  1155. extruder_names.append(extruder_name)
  1156. extruders_str = ", ".join(extruder_names)
  1157. msg_str = msg_str.format(extruders = extruders_str)
  1158. message = Message(catalog.i18nc("@info:status", msg_str),
  1159. title = catalog.i18nc("@info:title", "Extruder(s) Disabled"))
  1160. message.show()
  1161. # See if we need to show the Discard or Keep changes screen
  1162. if self.hasUserSettings and self._application.getPreferences().getValue("cura/active_mode") == 1:
  1163. self._application.discardOrKeepProfileChanges()
  1164. @pyqtSlot("QVariant")
  1165. def setGlobalVariant(self, container_node: "ContainerNode") -> None:
  1166. self.blurSettings.emit()
  1167. with postponeSignals(*self._getContainerChangedSignals(), compress = CompressTechnique.CompressPerParameterValue):
  1168. self._setGlobalVariant(container_node)
  1169. self.updateMaterialWithVariant(None) # Update all materials
  1170. self._updateQualityWithMaterial()
  1171. @pyqtSlot(str, str)
  1172. def setMaterialById(self, position: str, root_material_id: str) -> None:
  1173. if self._global_container_stack is None:
  1174. return
  1175. machine_definition_id = self._global_container_stack.definition.id
  1176. position = str(position)
  1177. extruder_stack = self._global_container_stack.extruderList[int(position)]
  1178. nozzle_name = extruder_stack.variant.getName()
  1179. material_node = ContainerTree.getInstance().machines[machine_definition_id].variants[nozzle_name].materials[root_material_id]
  1180. self.setMaterial(position, material_node)
  1181. @pyqtSlot(str, "QVariant")
  1182. def setMaterial(self, position: str, container_node, global_stack: Optional["GlobalStack"] = None) -> None:
  1183. """Global_stack: if you want to provide your own global_stack instead of the current active one
  1184. if you update an active machine, special measures have to be taken.
  1185. """
  1186. if global_stack is not None and global_stack != self._global_container_stack:
  1187. global_stack.extruderList[int(position)].material = container_node.container
  1188. return
  1189. position = str(position)
  1190. self.blurSettings.emit()
  1191. with postponeSignals(*self._getContainerChangedSignals(), compress = CompressTechnique.CompressPerParameterValue):
  1192. self._setMaterial(position, container_node)
  1193. self._updateQualityWithMaterial()
  1194. # See if we need to show the Discard or Keep changes screen
  1195. if self.hasUserSettings and self._application.getPreferences().getValue("cura/active_mode") == 1:
  1196. self._application.discardOrKeepProfileChanges()
  1197. @pyqtSlot(str, str)
  1198. def setVariantByName(self, position: str, variant_name: str) -> None:
  1199. if self._global_container_stack is None:
  1200. return
  1201. machine_definition_id = self._global_container_stack.definition.id
  1202. machine_node = ContainerTree.getInstance().machines.get(machine_definition_id)
  1203. variant_node = machine_node.variants.get(variant_name)
  1204. if variant_node is None:
  1205. Logger.error("There is no variant with the name {variant_name}.")
  1206. return
  1207. self.setVariant(position, variant_node)
  1208. @pyqtSlot(str, "QVariant")
  1209. def setVariant(self, position: str, variant_node: "VariantNode") -> None:
  1210. position = str(position)
  1211. self.blurSettings.emit()
  1212. with postponeSignals(*self._getContainerChangedSignals(), compress = CompressTechnique.CompressPerParameterValue):
  1213. self._setVariantNode(position, variant_node)
  1214. self.updateMaterialWithVariant(position)
  1215. self._updateQualityWithMaterial()
  1216. # See if we need to show the Discard or Keep changes screen
  1217. if self.hasUserSettings and self._application.getPreferences().getValue("cura/active_mode") == 1:
  1218. self._application.discardOrKeepProfileChanges()
  1219. @pyqtSlot(str)
  1220. def setQualityGroupByQualityType(self, quality_type: str) -> None:
  1221. if self._global_container_stack is None:
  1222. return
  1223. # Get all the quality groups for this global stack and filter out by quality_type
  1224. self.setQualityGroup(ContainerTree.getInstance().getCurrentQualityGroups()[quality_type])
  1225. @pyqtSlot(QObject)
  1226. def setQualityGroup(self, quality_group: "QualityGroup", no_dialog: bool = False, global_stack: Optional["GlobalStack"] = None) -> None:
  1227. """Optionally provide global_stack if you want to use your own
  1228. The active global_stack is treated differently.
  1229. """
  1230. if global_stack is not None and global_stack != self._global_container_stack:
  1231. if quality_group is None:
  1232. Logger.log("e", "Could not set quality group because quality group is None")
  1233. return
  1234. if quality_group.node_for_global is None:
  1235. Logger.log("e", "Could not set quality group [%s] because it has no node_for_global", str(quality_group))
  1236. return
  1237. # This is not changing the quality for the active machine !!!!!!!!
  1238. global_stack.quality = quality_group.node_for_global.container
  1239. for extruder_nr, extruder_stack in enumerate(global_stack.extruderList):
  1240. quality_container = empty_quality_container
  1241. if extruder_nr in quality_group.nodes_for_extruders:
  1242. container = quality_group.nodes_for_extruders[extruder_nr].container
  1243. quality_container = container if container is not None else quality_container
  1244. extruder_stack.quality = quality_container
  1245. return
  1246. self.blurSettings.emit()
  1247. with postponeSignals(*self._getContainerChangedSignals(), compress = CompressTechnique.CompressPerParameterValue):
  1248. self._setQualityGroup(quality_group)
  1249. # See if we need to show the Discard or Keep changes screen
  1250. if not no_dialog and self.hasUserSettings and self._application.getPreferences().getValue("cura/active_mode") == 1:
  1251. self._application.discardOrKeepProfileChanges()
  1252. # The display name map of currently active quality.
  1253. # The display name has 2 parts, a main part and a suffix part.
  1254. # This display name is:
  1255. # - For built-in qualities (quality/intent): the quality type name, such as "Fine", "Normal", etc.
  1256. # - For custom qualities: <custom_quality_name> - <intent_name> - <quality_type_name>
  1257. # Examples:
  1258. # - "my_profile - Fine" (only based on a default quality, no intent involved)
  1259. # - "my_profile - Engineering - Fine" (based on an intent)
  1260. @pyqtProperty("QVariantMap", notify = activeQualityDisplayNameChanged)
  1261. def activeQualityDisplayNameMap(self) -> Dict[str, str]:
  1262. global_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()
  1263. if global_stack is None:
  1264. return {"main": "",
  1265. "suffix": ""}
  1266. display_name = global_stack.quality.getName()
  1267. intent_category = self.activeIntentCategory
  1268. if intent_category != "default":
  1269. intent_display_name = IntentCategoryModel.translation(intent_category,
  1270. "name",
  1271. catalog.i18nc("@label", "Unknown"))
  1272. display_name = "{intent_name} - {the_rest}".format(intent_name = intent_display_name,
  1273. the_rest = display_name)
  1274. main_part = display_name
  1275. suffix_part = ""
  1276. # Not a custom quality
  1277. if global_stack.qualityChanges != empty_quality_changes_container:
  1278. main_part = self.activeQualityOrQualityChangesName
  1279. suffix_part = display_name
  1280. return {"main": main_part,
  1281. "suffix": suffix_part}
  1282. @pyqtSlot(str)
  1283. def setIntentByCategory(self, intent_category: str) -> None:
  1284. """Change the intent category of the current printer.
  1285. All extruders can change their profiles. If an intent profile is
  1286. available with the desired intent category, that one will get chosen.
  1287. Otherwise the intent profile will be left to the empty profile, which
  1288. represents the "default" intent category.
  1289. :param intent_category: The intent category to change to.
  1290. """
  1291. global_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()
  1292. if global_stack is None:
  1293. return
  1294. container_tree = ContainerTree.getInstance()
  1295. for extruder in global_stack.extruderList:
  1296. definition_id = global_stack.definition.getId()
  1297. variant_name = extruder.variant.getName()
  1298. material_base_file = extruder.material.getMetaDataEntry("base_file")
  1299. quality_id = extruder.quality.getId()
  1300. if quality_id == empty_quality_container.getId():
  1301. extruder.intent = empty_intent_container
  1302. continue
  1303. # Yes, we can find this in a single line of code. This makes it easier to read and it has the benefit
  1304. # that it doesn't lump key errors together for the crashlogs
  1305. try:
  1306. machine_node = container_tree.machines[definition_id]
  1307. variant_node = machine_node.variants[variant_name]
  1308. material_node = variant_node.materials[material_base_file]
  1309. quality_node = material_node.qualities[quality_id]
  1310. except KeyError as e:
  1311. Logger.error("Can't set the intent category '{category}' since the profile '{profile}' in the stack is not supported according to the container tree.".format(category = intent_category, profile = e))
  1312. continue
  1313. for intent_node in quality_node.intents.values():
  1314. if intent_node.intent_category == intent_category: # Found an intent with the correct category.
  1315. extruder.intent = intent_node.container
  1316. break
  1317. else: # No intent had the correct category.
  1318. extruder.intent = empty_intent_container
  1319. def activeQualityGroup(self) -> Optional["QualityGroup"]:
  1320. """Get the currently activated quality group.
  1321. If no printer is added yet or the printer doesn't have quality profiles,
  1322. this returns ``None``.
  1323. :return: The currently active quality group.
  1324. """
  1325. global_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()
  1326. if not global_stack or global_stack.quality == empty_quality_container:
  1327. return None
  1328. return ContainerTree.getInstance().getCurrentQualityGroups().get(self.activeQualityType)
  1329. @pyqtProperty(str, notify = activeQualityGroupChanged)
  1330. def activeQualityGroupName(self) -> str:
  1331. """Get the name of the active quality group.
  1332. :return: The name of the active quality group.
  1333. """
  1334. quality_group = self.activeQualityGroup()
  1335. if quality_group is None:
  1336. return ""
  1337. return quality_group.getName()
  1338. @pyqtSlot(QObject)
  1339. def setQualityChangesGroup(self, quality_changes_group: "QualityChangesGroup", no_dialog: bool = False) -> None:
  1340. self.blurSettings.emit()
  1341. with postponeSignals(*self._getContainerChangedSignals(), compress = CompressTechnique.CompressPerParameterValue):
  1342. self._setQualityChangesGroup(quality_changes_group)
  1343. # See if we need to show the Discard or Keep changes screen
  1344. if not no_dialog and self.hasUserSettings and self._application.getPreferences().getValue("cura/active_mode") == 1:
  1345. self._application.discardOrKeepProfileChanges()
  1346. @pyqtSlot()
  1347. def resetToUseDefaultQuality(self) -> None:
  1348. if self._global_container_stack is None:
  1349. return
  1350. with postponeSignals(*self._getContainerChangedSignals(), compress = CompressTechnique.CompressPerParameterValue):
  1351. self._setQualityGroup(self.activeQualityGroup())
  1352. for stack in [self._global_container_stack] + self._global_container_stack.extruderList:
  1353. stack.userChanges.clear()
  1354. @pyqtProperty(QObject, fset = setQualityChangesGroup, notify = activeQualityChangesGroupChanged)
  1355. def activeQualityChangesGroup(self) -> Optional["QualityChangesGroup"]:
  1356. global_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()
  1357. if global_stack is None or global_stack.qualityChanges == empty_quality_changes_container:
  1358. return None
  1359. all_group_list = ContainerTree.getInstance().getCurrentQualityChangesGroups()
  1360. the_group = None
  1361. for group in all_group_list: # Match on the container ID of the global stack to find the quality changes group belonging to the active configuration.
  1362. if group.metadata_for_global and group.metadata_for_global["id"] == global_stack.qualityChanges.getId():
  1363. the_group = group
  1364. break
  1365. return the_group
  1366. @pyqtProperty(bool, notify = activeQualityChangesGroupChanged)
  1367. def hasCustomQuality(self) -> bool:
  1368. global_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()
  1369. return global_stack is None or global_stack.qualityChanges != empty_quality_changes_container
  1370. @pyqtProperty(str, notify = activeQualityGroupChanged)
  1371. def activeQualityOrQualityChangesName(self) -> str:
  1372. global_container_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()
  1373. if not global_container_stack:
  1374. return empty_quality_container.getName()
  1375. if global_container_stack.qualityChanges != empty_quality_changes_container:
  1376. return global_container_stack.qualityChanges.getName()
  1377. return global_container_stack.quality.getName()
  1378. @pyqtProperty(bool, notify = activeQualityGroupChanged)
  1379. def hasNotSupportedQuality(self) -> bool:
  1380. global_container_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()
  1381. return (not global_container_stack is None) and global_container_stack.quality == empty_quality_container and global_container_stack.qualityChanges == empty_quality_changes_container
  1382. @pyqtProperty(bool, notify = activeQualityGroupChanged)
  1383. def isActiveQualityCustom(self) -> bool:
  1384. global_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()
  1385. if global_stack is None:
  1386. return False
  1387. return global_stack.qualityChanges != empty_quality_changes_container
  1388. def _updateUponMaterialMetadataChange(self) -> None:
  1389. if self._global_container_stack is None:
  1390. return
  1391. with postponeSignals(*self._getContainerChangedSignals(), compress = CompressTechnique.CompressPerParameterValue):
  1392. self.updateMaterialWithVariant(None)
  1393. self._updateQualityWithMaterial()
  1394. @pyqtSlot(str, result = str)
  1395. def getAbbreviatedMachineName(self, machine_type_name: str) -> str:
  1396. """This function will translate any printer type name to an abbreviated printer type name"""
  1397. abbr_machine = ""
  1398. for word in re.findall(r"[\w']+", machine_type_name):
  1399. if word.lower() == "ultimaker":
  1400. abbr_machine += "UM"
  1401. elif word.isdigit():
  1402. abbr_machine += word
  1403. else:
  1404. stripped_word = "".join(char for char in unicodedata.normalize("NFD", word.upper()) if unicodedata.category(char) != "Mn")
  1405. # - use only the first character if the word is too long (> 3 characters)
  1406. # - use the whole word if it's not too long (<= 3 characters)
  1407. if len(stripped_word) > 3:
  1408. stripped_word = stripped_word[0]
  1409. abbr_machine += stripped_word
  1410. return abbr_machine