ExtrudersModel.py 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. # Copyright (c) 2018 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. from PyQt5.QtCore import Qt, pyqtSignal, pyqtProperty, QTimer
  4. from typing import Iterable, TYPE_CHECKING
  5. from UM.i18n import i18nCatalog
  6. from UM.Qt.ListModel import ListModel
  7. from UM.Application import Application
  8. import UM.FlameProfiler
  9. if TYPE_CHECKING:
  10. from cura.Settings.ExtruderStack import ExtruderStack # To listen to changes on the extruders.
  11. catalog = i18nCatalog("cura")
  12. ## Model that holds extruders.
  13. #
  14. # This model is designed for use by any list of extruders, but specifically
  15. # intended for drop-down lists of the current machine's extruders in place of
  16. # settings.
  17. class ExtrudersModel(ListModel):
  18. # The ID of the container stack for the extruder.
  19. IdRole = Qt.UserRole + 1
  20. ## Human-readable name of the extruder.
  21. NameRole = Qt.UserRole + 2
  22. ## Colour of the material loaded in the extruder.
  23. ColorRole = Qt.UserRole + 3
  24. ## Index of the extruder, which is also the value of the setting itself.
  25. #
  26. # An index of 0 indicates the first extruder, an index of 1 the second
  27. # one, and so on. This is the value that will be saved in instance
  28. # containers.
  29. IndexRole = Qt.UserRole + 4
  30. # The ID of the definition of the extruder.
  31. DefinitionRole = Qt.UserRole + 5
  32. # The material of the extruder.
  33. MaterialRole = Qt.UserRole + 6
  34. # The variant of the extruder.
  35. VariantRole = Qt.UserRole + 7
  36. StackRole = Qt.UserRole + 8
  37. MaterialBrandRole = Qt.UserRole + 9
  38. ColorNameRole = Qt.UserRole + 10
  39. ## Is the extruder enabled?
  40. EnabledRole = Qt.UserRole + 11
  41. ## List of colours to display if there is no material or the material has no known
  42. # colour.
  43. defaultColors = ["#ffc924", "#86ec21", "#22eeee", "#245bff", "#9124ff", "#ff24c8"]
  44. ## Initialises the extruders model, defining the roles and listening for
  45. # changes in the data.
  46. #
  47. # \param parent Parent QtObject of this list.
  48. def __init__(self, parent = None):
  49. super().__init__(parent)
  50. self.addRoleName(self.IdRole, "id")
  51. self.addRoleName(self.NameRole, "name")
  52. self.addRoleName(self.EnabledRole, "enabled")
  53. self.addRoleName(self.ColorRole, "color")
  54. self.addRoleName(self.IndexRole, "index")
  55. self.addRoleName(self.DefinitionRole, "definition")
  56. self.addRoleName(self.MaterialRole, "material")
  57. self.addRoleName(self.VariantRole, "variant")
  58. self.addRoleName(self.StackRole, "stack")
  59. self.addRoleName(self.MaterialBrandRole, "material_brand")
  60. self.addRoleName(self.ColorNameRole, "color_name")
  61. self._update_extruder_timer = QTimer()
  62. self._update_extruder_timer.setInterval(100)
  63. self._update_extruder_timer.setSingleShot(True)
  64. self._update_extruder_timer.timeout.connect(self.__updateExtruders)
  65. self._active_machine_extruders = [] # type: Iterable[ExtruderStack]
  66. self._add_optional_extruder = False
  67. # Listen to changes
  68. Application.getInstance().globalContainerStackChanged.connect(self._extrudersChanged) # When the machine is swapped we must update the active machine extruders
  69. Application.getInstance().getExtruderManager().extrudersChanged.connect(self._extrudersChanged) # When the extruders change we must link to the stack-changed signal of the new extruder
  70. Application.getInstance().getContainerRegistry().containerMetaDataChanged.connect(self._onExtruderStackContainersChanged) # When meta data from a material container changes we must update
  71. self._extrudersChanged() # Also calls _updateExtruders
  72. addOptionalExtruderChanged = pyqtSignal()
  73. def setAddOptionalExtruder(self, add_optional_extruder):
  74. if add_optional_extruder != self._add_optional_extruder:
  75. self._add_optional_extruder = add_optional_extruder
  76. self.addOptionalExtruderChanged.emit()
  77. self._updateExtruders()
  78. @pyqtProperty(bool, fset = setAddOptionalExtruder, notify = addOptionalExtruderChanged)
  79. def addOptionalExtruder(self):
  80. return self._add_optional_extruder
  81. ## Links to the stack-changed signal of the new extruders when an extruder
  82. # is swapped out or added in the current machine.
  83. #
  84. # \param machine_id The machine for which the extruders changed. This is
  85. # filled by the ExtruderManager.extrudersChanged signal when coming from
  86. # that signal. Application.globalContainerStackChanged doesn't fill this
  87. # signal; it's assumed to be the current printer in that case.
  88. def _extrudersChanged(self, machine_id = None):
  89. machine_manager = Application.getInstance().getMachineManager()
  90. if machine_id is not None:
  91. if machine_manager.activeMachine is None:
  92. # No machine, don't need to update the current machine's extruders
  93. return
  94. if machine_id != machine_manager.activeMachine.getId():
  95. # Not the current machine
  96. return
  97. # Unlink from old extruders
  98. for extruder in self._active_machine_extruders:
  99. extruder.containersChanged.disconnect(self._onExtruderStackContainersChanged)
  100. extruder.enabledChanged.disconnect(self._updateExtruders)
  101. # Link to new extruders
  102. self._active_machine_extruders = []
  103. extruder_manager = Application.getInstance().getExtruderManager()
  104. for extruder in extruder_manager.getActiveExtruderStacks():
  105. if extruder is None: #This extruder wasn't loaded yet. This happens asynchronously while this model is constructed from QML.
  106. continue
  107. extruder.containersChanged.connect(self._onExtruderStackContainersChanged)
  108. extruder.enabledChanged.connect(self._updateExtruders)
  109. self._active_machine_extruders.append(extruder)
  110. self._updateExtruders() # Since the new extruders may have different properties, update our own model.
  111. def _onExtruderStackContainersChanged(self, container):
  112. # Update when there is an empty container or material or variant change
  113. if container.getMetaDataEntry("type") in ["material", "variant", None]:
  114. # The ExtrudersModel needs to be updated when the material-name or -color changes, because the user identifies extruders by material-name
  115. self._updateExtruders()
  116. modelChanged = pyqtSignal()
  117. def _updateExtruders(self):
  118. self._update_extruder_timer.start()
  119. ## Update the list of extruders.
  120. #
  121. # This should be called whenever the list of extruders changes.
  122. @UM.FlameProfiler.profile
  123. def __updateExtruders(self):
  124. extruders_changed = False
  125. if self.count != 0:
  126. extruders_changed = True
  127. items = []
  128. global_container_stack = Application.getInstance().getGlobalContainerStack()
  129. if global_container_stack:
  130. # get machine extruder count for verification
  131. machine_extruder_count = global_container_stack.getProperty("machine_extruder_count", "value")
  132. for extruder in Application.getInstance().getExtruderManager().getActiveExtruderStacks():
  133. position = extruder.getMetaDataEntry("position", default = "0")
  134. try:
  135. position = int(position)
  136. except ValueError:
  137. # Not a proper int.
  138. position = -1
  139. if position >= machine_extruder_count:
  140. continue
  141. default_color = self.defaultColors[position] if 0 <= position < len(self.defaultColors) else self.defaultColors[0]
  142. color = extruder.material.getMetaDataEntry("color_code", default = default_color) if extruder.material else default_color
  143. material_brand = extruder.material.getMetaDataEntry("brand", default = "generic")
  144. color_name = extruder.material.getMetaDataEntry("color_name")
  145. # construct an item with only the relevant information
  146. item = {
  147. "id": extruder.getId(),
  148. "name": extruder.getName(),
  149. "enabled": extruder.isEnabled,
  150. "color": color,
  151. "index": position,
  152. "definition": extruder.getBottom().getId(),
  153. "material": extruder.material.getName() if extruder.material else "",
  154. "variant": extruder.variant.getName() if extruder.variant else "", # e.g. print core
  155. "stack": extruder,
  156. "material_brand": material_brand,
  157. "color_name": color_name
  158. }
  159. items.append(item)
  160. extruders_changed = True
  161. if extruders_changed:
  162. # sort by extruder index
  163. items.sort(key = lambda i: i["index"])
  164. # We need optional extruder to be last, so add it after we do sorting.
  165. # This way we can simply interpret the -1 of the index as the last item (which it now always is)
  166. if self._add_optional_extruder:
  167. item = {
  168. "id": "",
  169. "name": catalog.i18nc("@menuitem", "Not overridden"),
  170. "enabled": True,
  171. "color": "#ffffff",
  172. "index": -1,
  173. "definition": "",
  174. "material": "",
  175. "variant": "",
  176. "stack": None,
  177. "material_brand": "",
  178. "color_name": "",
  179. }
  180. items.append(item)
  181. if self._items != items:
  182. self.setItems(items)
  183. self.modelChanged.emit()