12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- # Copyright (c) 2015 Ultimaker B.V.
- # Uranium is released under the terms of the AGPLv3 or higher.
- import sys
- from UM.Logger import Logger
- try:
- from . import ThreeMFWriter
- except ImportError:
- Logger.log("w", "Could not import ThreeMFWriter; libSavitar may be missing")
- from . import ThreeMFWorkspaceWriter
- from UM.i18n import i18nCatalog
- i18n_catalog = i18nCatalog("uranium")
- def getMetaData():
- metaData = {
- "plugin": {
- "name": i18n_catalog.i18nc("@label", "3MF Writer"),
- "author": "Ultimaker",
- "version": "1.0",
- "description": i18n_catalog.i18nc("@info:whatsthis", "Provides support for writing 3MF files."),
- "api": 3
- }
- }
- if "3MFWriter.ThreeMFWriter" in sys.modules:
- metaData["mesh_writer"] = {
- "output": [{
- "extension": "3mf",
- "description": i18n_catalog.i18nc("@item:inlistbox", "3MF file"),
- "mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml",
- "mode": ThreeMFWriter.ThreeMFWriter.OutputMode.BinaryMode
- }]
- }
- metaData["workspace_writer"] = {
- "output": [{
- "extension": "curaproject.3mf",
- "description": i18n_catalog.i18nc("@item:inlistbox", "Cura Project 3MF file"),
- "mime_type": "application/x-curaproject+xml",
- "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode
- }]
- }
- return metaData
- def register(app):
- if "3MFWriter.ThreeMFWriter" in sys.modules:
- return {"mesh_writer": ThreeMFWriter.ThreeMFWriter(),
- "workspace_writer": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter()}
- else:
- return {}
|