mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-22 05:39:37 +08:00
48 lines
1.5 KiB
Python
48 lines
1.5 KiB
Python
# Copyright (c) 2015 Ultimaker B.V.
|
|
# Uranium is released under the terms of the LGPLv3 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
|
|
from UM.Platform import Platform
|
|
|
|
i18n_catalog = i18nCatalog("cura")
|
|
|
|
def getMetaData():
|
|
workspace_extension = "3mf"
|
|
|
|
metaData = {}
|
|
|
|
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": workspace_extension,
|
|
"description": i18n_catalog.i18nc("@item:inlistbox", "Cura Project 3MF file"),
|
|
"mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+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 {}
|