MachineManager.py 84 KB

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