ExtrudersModel.py 9.6 KB

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