MakerbotWriter.py 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. # Copyright (c) 2023 UltiMaker
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. from io import StringIO, BufferedIOBase
  4. import json
  5. from typing import cast, List, Optional, Dict
  6. from zipfile import BadZipFile, ZipFile, ZIP_DEFLATED
  7. import pyDulcificum as du
  8. from PyQt6.QtCore import QBuffer
  9. from UM.Logger import Logger
  10. from UM.Math.AxisAlignedBox import AxisAlignedBox
  11. from UM.Mesh.MeshWriter import MeshWriter
  12. from UM.MimeTypeDatabase import MimeTypeDatabase, MimeType
  13. from UM.PluginRegistry import PluginRegistry
  14. from UM.Scene.SceneNode import SceneNode
  15. from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator
  16. from UM.i18n import i18nCatalog
  17. from cura.CuraApplication import CuraApplication
  18. from cura.Snapshot import Snapshot
  19. from cura.Utils.Threading import call_on_qt_thread
  20. try:
  21. from cura.CuraVersion import ConanInstalls
  22. if type(ConanInstalls) == dict:
  23. CONAN_INSTALLS = ConanInstalls
  24. else:
  25. CONAN_INSTALLS = {}
  26. except ImportError:
  27. CONAN_INSTALLS = {}
  28. catalog = i18nCatalog("cura")
  29. class MakerbotWriter(MeshWriter):
  30. """A file writer that writes '.makerbot' files."""
  31. def __init__(self) -> None:
  32. super().__init__(add_to_recent_files=False)
  33. Logger.info(f"Using PyDulcificum: {du.__version__}")
  34. MimeTypeDatabase.addMimeType(
  35. MimeType(
  36. name="application/x-makerbot",
  37. comment="Makerbot Toolpath Package",
  38. suffixes=["makerbot"]
  39. )
  40. )
  41. _PNG_FORMATS = [
  42. {"prefix": "isometric_thumbnail", "width": 120, "height": 120},
  43. {"prefix": "isometric_thumbnail", "width": 320, "height": 320},
  44. {"prefix": "isometric_thumbnail", "width": 640, "height": 640},
  45. {"prefix": "thumbnail", "width": 140, "height": 106},
  46. {"prefix": "thumbnail", "width": 212, "height": 300},
  47. {"prefix": "thumbnail", "width": 960, "height": 1460},
  48. {"prefix": "thumbnail", "width": 90, "height": 90},
  49. ]
  50. _META_VERSION = "3.0.0"
  51. # must be called from the main thread because of OpenGL
  52. @staticmethod
  53. @call_on_qt_thread
  54. def _createThumbnail(width: int, height: int) -> Optional[QBuffer]:
  55. if not CuraApplication.getInstance().isVisible:
  56. Logger.warning("Can't create snapshot when renderer not initialized.")
  57. return
  58. try:
  59. snapshot = Snapshot.isometricSnapshot(width, height)
  60. thumbnail_buffer = QBuffer()
  61. thumbnail_buffer.open(QBuffer.OpenModeFlag.WriteOnly)
  62. snapshot.save(thumbnail_buffer, "PNG")
  63. return thumbnail_buffer
  64. except:
  65. Logger.logException("w", "Failed to create snapshot image")
  66. return None
  67. def write(self, stream: BufferedIOBase, nodes: List[SceneNode], mode=MeshWriter.OutputMode.BinaryMode) -> bool:
  68. if mode != MeshWriter.OutputMode.BinaryMode:
  69. Logger.log("e", "MakerbotWriter does not support text mode.")
  70. self.setInformation(catalog.i18nc("@error:not supported", "MakerbotWriter does not support text mode."))
  71. return False
  72. # The GCodeWriter plugin is always available since it is in the "required" list of plugins.
  73. gcode_writer = PluginRegistry.getInstance().getPluginObject("GCodeWriter")
  74. if gcode_writer is None:
  75. Logger.log("e", "Could not find the GCodeWriter plugin, is it disabled?.")
  76. self.setInformation(
  77. catalog.i18nc("@error:load", "Could not load GCodeWriter plugin. Try to re-enable the plugin."))
  78. return False
  79. gcode_writer = cast(MeshWriter, gcode_writer)
  80. gcode_text_io = StringIO()
  81. success = gcode_writer.write(gcode_text_io, None)
  82. # Writing the g-code failed. Then I can also not write the gzipped g-code.
  83. if not success:
  84. self.setInformation(gcode_writer.getInformation())
  85. return False
  86. json_toolpaths = du.gcode_2_miracle_jtp(gcode_text_io.getvalue())
  87. metadata = self._getMeta(nodes)
  88. png_files = []
  89. for png_format in self._PNG_FORMATS:
  90. width, height, prefix = png_format["width"], png_format["height"], png_format["prefix"]
  91. thumbnail_buffer = self._createThumbnail(width, height)
  92. if thumbnail_buffer is None:
  93. Logger.warning(f"Could not create thumbnail of size {width}x{height}.")
  94. continue
  95. png_files.append({
  96. "file": f"{prefix}_{width}x{height}.png",
  97. "data": thumbnail_buffer.data(),
  98. })
  99. try:
  100. with ZipFile(stream, "w", compression=ZIP_DEFLATED) as zip_stream:
  101. zip_stream.writestr("meta.json", json.dumps(metadata, indent=4))
  102. zip_stream.writestr("print.jsontoolpath", json_toolpaths)
  103. for png_file in png_files:
  104. file, data = png_file["file"], png_file["data"]
  105. zip_stream.writestr(file, data)
  106. except (IOError, OSError, BadZipFile) as ex:
  107. Logger.log("e", f"Could not write to (.makerbot) file because: '{ex}'.")
  108. self.setInformation(catalog.i18nc("@error", "MakerbotWriter could not save to the designated path."))
  109. return False
  110. return True
  111. def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]:
  112. application = CuraApplication.getInstance()
  113. machine_manager = application.getMachineManager()
  114. global_stack = machine_manager.activeMachine
  115. extruders = global_stack.extruderList
  116. nodes = []
  117. for root_node in root_nodes:
  118. for node in DepthFirstIterator(root_node):
  119. if not getattr(node, "_outside_buildarea", False):
  120. if node.callDecoration(
  121. "isSliceable") and node.getMeshData() and node.isVisible() and not node.callDecoration(
  122. "isNonThumbnailVisibleMesh"):
  123. nodes.append(node)
  124. meta = dict()
  125. meta["bot_type"] = global_stack.definition.getMetaDataEntry("reference_machine_id")
  126. bounds: Optional[AxisAlignedBox] = None
  127. for node in nodes:
  128. node_bounds = node.getBoundingBox()
  129. if node_bounds is None:
  130. continue
  131. if bounds is None:
  132. bounds = node_bounds
  133. else:
  134. bounds = bounds + node_bounds
  135. if bounds is not None:
  136. meta["bounding_box"] = {
  137. "x_min": bounds.left,
  138. "x_max": bounds.right,
  139. "y_min": bounds.back,
  140. "y_max": bounds.front,
  141. "z_min": bounds.bottom,
  142. "z_max": bounds.top,
  143. }
  144. material_bed_temperature = global_stack.getProperty("material_bed_temperature", "value")
  145. meta["platform_temperature"] = material_bed_temperature
  146. build_volume_temperature = global_stack.getProperty("build_volume_temperature", "value")
  147. meta["build_plane_temperature"] = build_volume_temperature
  148. print_information = application.getPrintInformation()
  149. meta["commanded_duration_s"] = int(print_information.currentPrintTime)
  150. meta["duration_s"] = int(print_information.currentPrintTime)
  151. material_lengths = list(map(meterToMillimeter, print_information.materialLengths))
  152. meta["extrusion_distance_mm"] = material_lengths[0]
  153. meta["extrusion_distances_mm"] = material_lengths
  154. meta["extrusion_mass_g"] = print_information.materialWeights[0]
  155. meta["extrusion_masses_g"] = print_information.materialWeights
  156. meta["uuid"] = print_information.slice_uuid
  157. materials = [extruder.material.getMetaData().get("reference_material_id") for extruder in extruders]
  158. meta["material"] = materials[0]
  159. meta["materials"] = materials
  160. materials_temps = [extruder.getProperty("default_material_print_temperature", "value") for extruder in
  161. extruders]
  162. meta["extruder_temperature"] = materials_temps[0]
  163. meta["extruder_temperatures"] = materials_temps
  164. meta["model_counts"] = [{"count": 1, "name": node.getName()} for node in nodes]
  165. tool_types = [extruder.variant.getMetaDataEntry("reference_extruder_id") for extruder in extruders]
  166. meta["tool_type"] = tool_types[0]
  167. meta["tool_types"] = tool_types
  168. meta["version"] = MakerbotWriter._META_VERSION
  169. meta["preferences"] = dict()
  170. for node in nodes:
  171. bounds = node.getBoundingBox()
  172. meta["preferences"][str(node.getName())] = {
  173. "machineBounds": [bounds.right, bounds.back, bounds.left, bounds.front] if bounds is not None else None,
  174. "printMode": CuraApplication.getInstance().getIntentManager().currentIntentCategory,
  175. }
  176. meta["miracle_config"] = {"gaggles": {str(node.getName()): {} for node in nodes}}
  177. version_info = dict()
  178. cura_engine_info = CONAN_INSTALLS.get("curaengine", {"version": "unknown", "revision": "unknown"})
  179. version_info["curaengine_version"] = cura_engine_info["version"]
  180. version_info["curaengine_commit_hash"] = cura_engine_info["revision"]
  181. dulcificum_info = CONAN_INSTALLS.get("dulcificum", {"version": "unknown", "revision": "unknown"})
  182. version_info["dulcificum_version"] = dulcificum_info["version"]
  183. version_info["dulcificum_commit_hash"] = dulcificum_info["revision"]
  184. version_info["makerbot_writer_version"] = self.getVersion()
  185. version_info["pyDulcificum_version"] = du.__version__
  186. # Add engine plugin information to the metadata
  187. for name, package_info in CONAN_INSTALLS.items():
  188. if not name.startswith("curaengine_"):
  189. continue
  190. version_info[f"{name}_version"] = package_info["version"]
  191. version_info[f"{name}_commit_hash"] = package_info["revision"]
  192. # Add version info to the main metadata, but also to "miracle_config"
  193. # so that it shows up in analytics
  194. meta["miracle_config"].update(version_info)
  195. meta.update(version_info)
  196. # TODO add the following instructions
  197. # num_tool_changes
  198. # num_z_layers
  199. # num_z_transitions
  200. # platform_temperature
  201. # total_commands
  202. return meta
  203. def meterToMillimeter(value: float) -> float:
  204. """Converts a value in meters to millimeters."""
  205. return value * 1000.0