UFPWriter.py 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. #Copyright (c) 2018 Ultimaker B.V.
  2. #Cura is released under the terms of the LGPLv3 or higher.
  3. from typing import cast
  4. from Charon.VirtualFile import VirtualFile #To open UFP files.
  5. from Charon.OpenMode import OpenMode #To indicate that we want to write to UFP files.
  6. from io import StringIO #For converting g-code to bytes.
  7. from UM.Application import Application
  8. from UM.Logger import Logger
  9. from UM.Mesh.MeshWriter import MeshWriter #The writer we need to implement.
  10. from UM.PluginRegistry import PluginRegistry #To get the g-code writer.
  11. from PyQt5.QtCore import QBuffer
  12. from cura.Snapshot import Snapshot
  13. from UM.i18n import i18nCatalog
  14. catalog = i18nCatalog("cura")
  15. class UFPWriter(MeshWriter):
  16. def __init__(self):
  17. super().__init__(add_to_recent_files = False)
  18. self._snapshot = None
  19. Application.getInstance().getOutputDeviceManager().writeStarted.connect(self._createSnapshot)
  20. def _createSnapshot(self, *args):
  21. # must be called from the main thread because of OpenGL
  22. Logger.log("d", "Creating thumbnail image...")
  23. self._snapshot = Snapshot.snapshot(width = 300, height = 300)
  24. def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode):
  25. archive = VirtualFile()
  26. archive.openStream(stream, "application/x-ufp", OpenMode.WriteOnly)
  27. #Store the g-code from the scene.
  28. archive.addContentType(extension = "gcode", mime_type = "text/x-gcode")
  29. gcode_textio = StringIO() #We have to convert the g-code into bytes.
  30. gcode_writer = cast(MeshWriter, PluginRegistry.getInstance().getPluginObject("GCodeWriter"))
  31. success = gcode_writer.write(gcode_textio, None)
  32. if not success: #Writing the g-code failed. Then I can also not write the gzipped g-code.
  33. self.setInformation(gcode_writer.getInformation())
  34. return False
  35. gcode = archive.getStream("/3D/model.gcode")
  36. gcode.write(gcode_textio.getvalue().encode("UTF-8"))
  37. archive.addRelation(virtual_path = "/3D/model.gcode", relation_type = "http://schemas.ultimaker.org/package/2018/relationships/gcode")
  38. #Store the thumbnail.
  39. if self._snapshot:
  40. archive.addContentType(extension = "png", mime_type = "image/png")
  41. thumbnail = archive.getStream("/Metadata/thumbnail.png")
  42. thumbnail_buffer = QBuffer()
  43. thumbnail_buffer.open(QBuffer.ReadWrite)
  44. thumbnail_image = self._snapshot
  45. thumbnail_image.save(thumbnail_buffer, "PNG")
  46. thumbnail.write(thumbnail_buffer.data())
  47. archive.addRelation(virtual_path = "/Metadata/thumbnail.png", relation_type = "http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail", origin = "/3D/model.gcode")
  48. else:
  49. Logger.log("d", "Thumbnail not created, cannot save it")
  50. # Store the material.
  51. application = Application.getInstance()
  52. machine_manager = application.getMachineManager()
  53. material_manager = application.getMaterialManager()
  54. global_stack = machine_manager.activeMachine
  55. material_extension = "xml.fdm_material"
  56. material_mime_type = "application/x-ultimaker-material-profile"
  57. try:
  58. archive.addContentType(extension = material_extension, mime_type = material_mime_type)
  59. except:
  60. Logger.log("w", "The material extension: %s was already added", material_extension)
  61. added_materials = []
  62. for extruder_stack in global_stack.extruders.values():
  63. material = extruder_stack.material
  64. material_file_name = material.getMetaData()["base_file"] + ".xml.fdm_material"
  65. material_file_name = "/Materials/" + material_file_name
  66. #Same material cannot be added
  67. if material_file_name in added_materials:
  68. continue
  69. material_root_id = material.getMetaDataEntry("base_file")
  70. material_group = material_manager.getMaterialGroup(material_root_id)
  71. if material_group is None:
  72. Logger.log("e", "Cannot find material container with root id [%s]", material_root_id)
  73. return False
  74. material_container = material_group.root_material_node.getContainer()
  75. try:
  76. serialized_material = material_container.serialize()
  77. except NotImplementedError:
  78. Logger.log("e", "Unable serialize material container with root id: %s", material_root_id)
  79. return False
  80. material_file = archive.getStream(material_file_name)
  81. material_file.write(serialized_material.encode("UTF-8"))
  82. archive.addRelation(virtual_path = material_file_name,
  83. relation_type = "http://schemas.ultimaker.org/package/2018/relationships/material",
  84. origin = "/3D/model.gcode")
  85. added_materials.append(material_file_name)
  86. archive.close()
  87. return True