CuraApplication.py 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277
  1. # Copyright (c) 2023 UltiMaker
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. import enum
  4. import os
  5. import re
  6. import sys
  7. import tempfile
  8. import time
  9. import platform
  10. from pathlib import Path
  11. from typing import cast, TYPE_CHECKING, Optional, Callable, List, Any, Dict
  12. import requests
  13. import numpy
  14. from PyQt6.QtCore import QObject, QTimer, QUrl, QUrlQuery, pyqtSignal, pyqtProperty, QEvent, pyqtEnum, QCoreApplication, \
  15. QByteArray
  16. from PyQt6.QtGui import QColor, QIcon
  17. from PyQt6.QtQml import qmlRegisterUncreatableMetaObject, qmlRegisterSingletonType, qmlRegisterType
  18. from PyQt6.QtWidgets import QMessageBox
  19. import UM.Util
  20. import cura.Settings.cura_empty_instance_containers
  21. from UM.Application import Application
  22. from UM.Decorators import override, deprecated
  23. from UM.FlameProfiler import pyqtSlot
  24. from UM.Logger import Logger
  25. from UM.Math.AxisAlignedBox import AxisAlignedBox
  26. from UM.Math.Matrix import Matrix
  27. from UM.Math.Quaternion import Quaternion
  28. from UM.Math.Vector import Vector
  29. from UM.Mesh.ReadMeshJob import ReadMeshJob
  30. from UM.Message import Message
  31. from UM.Operations.AddSceneNodeOperation import AddSceneNodeOperation
  32. from UM.Operations.GroupedOperation import GroupedOperation
  33. from UM.Operations.SetTransformOperation import SetTransformOperation
  34. from UM.Platform import Platform
  35. from UM.PluginError import PluginNotFoundError
  36. from UM.Preferences import Preferences
  37. from UM.Qt.Bindings.FileProviderModel import FileProviderModel
  38. from UM.Qt.QtApplication import QtApplication # The class we're inheriting from.
  39. from UM.Resources import Resources
  40. from UM.Scene.Camera import Camera
  41. from UM.Scene.GroupDecorator import GroupDecorator
  42. from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator
  43. from UM.Scene.SceneNode import SceneNode
  44. from UM.Scene.SceneNodeSettings import SceneNodeSettings
  45. from UM.Scene.Selection import Selection
  46. from UM.Scene.ToolHandle import ToolHandle
  47. from UM.Settings.ContainerRegistry import ContainerRegistry
  48. from UM.Settings.InstanceContainer import InstanceContainer
  49. from UM.Settings.SettingDefinition import SettingDefinition, DefinitionPropertyType, toIntConversion
  50. from UM.Settings.SettingFunction import SettingFunction
  51. from UM.Settings.Validator import Validator
  52. from UM.View.SelectionPass import SelectionPass # For typing.
  53. from UM.Workspace.WorkspaceReader import WorkspaceReader
  54. from UM.i18n import i18nCatalog
  55. from UM.Version import Version
  56. from cura import ApplicationMetadata
  57. from cura.API import CuraAPI
  58. from cura.API.Account import Account
  59. from cura.Arranging.ArrangeObjectsJob import ArrangeObjectsJob
  60. from cura.Machines.MachineErrorChecker import MachineErrorChecker
  61. from cura.Machines.Models.BuildPlateModel import BuildPlateModel
  62. from cura.Machines.Models.CustomQualityProfilesDropDownMenuModel import CustomQualityProfilesDropDownMenuModel
  63. from cura.Machines.Models.DiscoveredPrintersModel import DiscoveredPrintersModel
  64. from cura.Machines.Models.DiscoveredCloudPrintersModel import DiscoveredCloudPrintersModel
  65. from cura.Machines.Models.ExtrudersModel import ExtrudersModel
  66. from cura.Machines.Models.FavoriteMaterialsModel import FavoriteMaterialsModel
  67. from cura.Machines.Models.FirstStartMachineActionsModel import FirstStartMachineActionsModel
  68. from cura.Machines.Models.GenericMaterialsModel import GenericMaterialsModel
  69. from cura.Machines.Models.GlobalStacksModel import GlobalStacksModel
  70. from cura.Machines.Models.IntentCategoryModel import IntentCategoryModel
  71. from cura.Machines.Models.IntentModel import IntentModel
  72. from cura.Machines.Models.MaterialBrandsModel import MaterialBrandsModel
  73. from cura.Machines.Models.MaterialManagementModel import MaterialManagementModel
  74. from cura.Machines.Models.MultiBuildPlateModel import MultiBuildPlateModel
  75. from cura.Machines.Models.NozzleModel import NozzleModel
  76. from cura.Machines.Models.QualityManagementModel import QualityManagementModel
  77. from cura.Machines.Models.QualityProfilesDropDownMenuModel import QualityProfilesDropDownMenuModel
  78. from cura.Machines.Models.QualitySettingsModel import QualitySettingsModel
  79. from cura.Machines.Models.SettingVisibilityPresetsModel import SettingVisibilityPresetsModel
  80. from cura.Machines.Models.UserChangesModel import UserChangesModel
  81. from cura.Operations.SetParentOperation import SetParentOperation
  82. from cura.PrinterOutput.NetworkMJPGImage import NetworkMJPGImage
  83. from cura.PrinterOutput.PrinterOutputDevice import PrinterOutputDevice
  84. from cura.Scene import ZOffsetDecorator
  85. from cura.Scene.BlockSlicingDecorator import BlockSlicingDecorator
  86. from cura.Scene.BuildPlateDecorator import BuildPlateDecorator
  87. from cura.Scene.ConvexHullDecorator import ConvexHullDecorator
  88. from cura.Scene.CuraSceneController import CuraSceneController
  89. from cura.Scene.CuraSceneNode import CuraSceneNode
  90. from cura.Scene.SliceableObjectDecorator import SliceableObjectDecorator
  91. from cura.Settings.ContainerManager import ContainerManager
  92. from cura.Settings.CuraContainerRegistry import CuraContainerRegistry
  93. from cura.Settings.CuraFormulaFunctions import CuraFormulaFunctions
  94. from cura.Settings.ExtruderManager import ExtruderManager
  95. from cura.Settings.ExtruderStack import ExtruderStack
  96. from cura.Settings.GlobalStack import GlobalStack
  97. from cura.Settings.IntentManager import IntentManager
  98. from cura.Settings.MachineManager import MachineManager
  99. from cura.Settings.MachineNameValidator import MachineNameValidator
  100. from cura.Settings.MaterialSettingsVisibilityHandler import MaterialSettingsVisibilityHandler
  101. from cura.Settings.SettingInheritanceManager import SettingInheritanceManager
  102. from cura.Settings.SidebarCustomMenuItemsModel import SidebarCustomMenuItemsModel
  103. from cura.Settings.SimpleModeSettingsManager import SimpleModeSettingsManager
  104. from cura.TaskManagement.OnExitCallbackManager import OnExitCallbackManager
  105. from cura.UI import CuraSplashScreen, PrintInformation
  106. from cura.UI.MachineActionManager import MachineActionManager
  107. from cura.UI.AddPrinterPagesModel import AddPrinterPagesModel
  108. from cura.UI.MachineSettingsManager import MachineSettingsManager
  109. from cura.UI.ObjectsModel import ObjectsModel
  110. from cura.UI.RecommendedMode import RecommendedMode
  111. from cura.UI.TextManager import TextManager
  112. from cura.UI.WelcomePagesModel import WelcomePagesModel
  113. from cura.UI.WhatsNewPagesModel import WhatsNewPagesModel
  114. from cura.UltimakerCloud import UltimakerCloudConstants
  115. from cura.Utils.NetworkingUtil import NetworkingUtil
  116. from . import BuildVolume
  117. from . import CameraAnimation
  118. from . import CuraActions
  119. from . import PlatformPhysics
  120. from . import PrintJobPreviewImageProvider
  121. from .Arranging.Nest2DArrange import Nest2DArrange
  122. from .AutoSave import AutoSave
  123. from .Machines.Models.CompatibleMachineModel import CompatibleMachineModel
  124. from .Machines.Models.MachineListModel import MachineListModel
  125. from .Machines.Models.ActiveIntentQualitiesModel import ActiveIntentQualitiesModel
  126. from .Machines.Models.IntentSelectionModel import IntentSelectionModel
  127. from .SingleInstance import SingleInstance
  128. if TYPE_CHECKING:
  129. from UM.Settings.EmptyInstanceContainer import EmptyInstanceContainer
  130. numpy.seterr(all = "ignore")
  131. class CuraApplication(QtApplication):
  132. # SettingVersion represents the set of settings available in the machine/extruder definitions.
  133. # You need to make sure that this version number needs to be increased if there is any non-backwards-compatible
  134. # changes of the settings.
  135. SettingVersion = 22
  136. Created = False
  137. class ResourceTypes(enum.IntEnum):
  138. QmlFiles = Resources.UserType + 1
  139. Firmware = Resources.UserType + 2
  140. QualityInstanceContainer = Resources.UserType + 3
  141. QualityChangesInstanceContainer = Resources.UserType + 4
  142. MaterialInstanceContainer = Resources.UserType + 5
  143. VariantInstanceContainer = Resources.UserType + 6
  144. UserInstanceContainer = Resources.UserType + 7
  145. MachineStack = Resources.UserType + 8
  146. ExtruderStack = Resources.UserType + 9
  147. DefinitionChangesContainer = Resources.UserType + 10
  148. SettingVisibilityPreset = Resources.UserType + 11
  149. IntentInstanceContainer = Resources.UserType + 12
  150. ImageFiles = Resources.UserType + 13
  151. pyqtEnum(ResourceTypes)
  152. def __init__(self, *args, **kwargs):
  153. super().__init__(name = ApplicationMetadata.CuraAppName,
  154. app_display_name = ApplicationMetadata.CuraAppDisplayName,
  155. version = ApplicationMetadata.CuraVersion if not ApplicationMetadata.IsAlternateVersion else ApplicationMetadata.CuraBuildType,
  156. latest_url = ApplicationMetadata.CuraLatestURL,
  157. api_version = ApplicationMetadata.CuraSDKVersion,
  158. build_type = ApplicationMetadata.CuraBuildType,
  159. is_debug_mode = ApplicationMetadata.CuraDebugMode,
  160. tray_icon_name = "cura-icon-32.png" if not ApplicationMetadata.IsAlternateVersion else "cura-icon-32_wip.png",
  161. **kwargs)
  162. self.default_theme = "cura-light"
  163. self.change_log_url = "https://ultimaker.com/ultimaker-cura-latest-features?utm_source=cura&utm_medium=software&utm_campaign=cura-update-features"
  164. self.beta_change_log_url = "https://ultimaker.com/ultimaker-cura-beta-features?utm_source=cura&utm_medium=software&utm_campaign=cura-update-features"
  165. self._boot_loading_time = time.time()
  166. self._on_exit_callback_manager = OnExitCallbackManager(self)
  167. # Variables set from CLI
  168. self._files_to_open = []
  169. self._urls_to_open = []
  170. self._use_single_instance = False
  171. self._single_instance = None
  172. self._open_project_mode: Optional[str] = None
  173. self._cura_formula_functions = None # type: Optional[CuraFormulaFunctions]
  174. self._machine_action_manager: Optional[MachineActionManager] = None
  175. self.empty_container = None # type: EmptyInstanceContainer
  176. self.empty_definition_changes_container = None # type: EmptyInstanceContainer
  177. self.empty_variant_container = None # type: EmptyInstanceContainer
  178. self.empty_intent_container = None # type: EmptyInstanceContainer
  179. self.empty_material_container = None # type: EmptyInstanceContainer
  180. self.empty_quality_container = None # type: EmptyInstanceContainer
  181. self.empty_quality_changes_container = None # type: EmptyInstanceContainer
  182. self._material_manager = None
  183. self._machine_manager = None
  184. self._extruder_manager = None
  185. self._container_manager = None
  186. self._object_manager = None
  187. self._extruders_model = None
  188. self._extruders_model_with_optional = None
  189. self._build_plate_model = None
  190. self._multi_build_plate_model = None
  191. self._setting_visibility_presets_model = None
  192. self._setting_inheritance_manager = None
  193. self._simple_mode_settings_manager = None
  194. self._cura_scene_controller = None
  195. self._machine_error_checker = None
  196. self._backend_plugins: List[BackendPlugin] = []
  197. self._machine_settings_manager = MachineSettingsManager(self, parent = self)
  198. self._material_management_model = None
  199. self._quality_management_model = None
  200. self._discovered_printer_model = DiscoveredPrintersModel(self, parent = self)
  201. self._discovered_cloud_printers_model = DiscoveredCloudPrintersModel(self, parent = self)
  202. self._first_start_machine_actions_model = None
  203. self._welcome_pages_model = WelcomePagesModel(self, parent = self)
  204. self._add_printer_pages_model = AddPrinterPagesModel(self, parent = self)
  205. self._add_printer_pages_model_without_cancel = AddPrinterPagesModel(self, parent = self)
  206. self._whats_new_pages_model = WhatsNewPagesModel(self, parent = self)
  207. self._text_manager = TextManager(parent = self)
  208. self._quality_profile_drop_down_menu_model = None
  209. self._custom_quality_profile_drop_down_menu_model = None
  210. self._cura_API = CuraAPI(self)
  211. self._physics = None
  212. self._volume = None
  213. self._output_devices = {}
  214. self._print_information = None
  215. self._previous_active_tool = None
  216. self._platform_activity = False
  217. self._scene_bounding_box = AxisAlignedBox.Null
  218. self._center_after_select = False
  219. self._camera_animation = None
  220. self._cura_actions = None
  221. self.started = False
  222. self._message_box_callback = None
  223. self._message_box_callback_arguments = []
  224. self._i18n_catalog = None
  225. self._currently_loading_files = []
  226. self._non_sliceable_extensions = []
  227. self._additional_components = {} # Components to add to certain areas in the interface
  228. self._open_file_queue = [] # A list of files to open (after the application has started)
  229. self._open_url_queue = [] # A list of urls to open (after the application has started)
  230. self._update_platform_activity_timer = None
  231. self._sidebar_custom_menu_items = [] # type: list # Keeps list of custom menu items for the side bar
  232. self._plugins_loaded = False
  233. # Backups
  234. self._auto_save = None # type: Optional[AutoSave]
  235. self._enable_save = True
  236. self._container_registry_class = CuraContainerRegistry
  237. # Redefined here in order to please the typing.
  238. self._container_registry = None # type: CuraContainerRegistry
  239. from cura.CuraPackageManager import CuraPackageManager
  240. self._package_manager_class = CuraPackageManager
  241. from UM.CentralFileStorage import CentralFileStorage
  242. CentralFileStorage.setIsEnterprise(ApplicationMetadata.IsEnterpriseVersion)
  243. Resources.setIsEnterprise(ApplicationMetadata.IsEnterpriseVersion)
  244. self._conan_installs = ApplicationMetadata.CONAN_INSTALLS
  245. self._python_installs = ApplicationMetadata.PYTHON_INSTALLS
  246. self._supported_url_schemes: List[str] = ["cura", "slicer"]
  247. @pyqtProperty(str, constant=True)
  248. def ultimakerCloudApiRootUrl(self) -> str:
  249. return UltimakerCloudConstants.CuraCloudAPIRoot
  250. @pyqtProperty(str, constant = True)
  251. def ultimakerCloudAccountRootUrl(self) -> str:
  252. return UltimakerCloudConstants.CuraCloudAccountAPIRoot
  253. @pyqtProperty(str, constant=True)
  254. def ultimakerDigitalFactoryUrl(self) -> str:
  255. return UltimakerCloudConstants.CuraDigitalFactoryURL
  256. def addCommandLineOptions(self):
  257. """Adds command line options to the command line parser.
  258. This should be called after the application is created and before the pre-start.
  259. """
  260. super().addCommandLineOptions()
  261. self._cli_parser.add_argument("--help", "-h",
  262. action = "store_true",
  263. default = False,
  264. help = "Show this help message and exit.")
  265. self._cli_parser.add_argument("--single-instance",
  266. dest = "single_instance",
  267. action = "store_true",
  268. default = False)
  269. # >> For debugging
  270. # Trigger an early crash, i.e. a crash that happens before the application enters its event loop.
  271. self._cli_parser.add_argument("--trigger-early-crash",
  272. dest = "trigger_early_crash",
  273. action = "store_true",
  274. default = False,
  275. help = "FOR TESTING ONLY. Trigger an early crash to show the crash dialog.")
  276. self._cli_parser.add_argument("file", nargs = "*", help = "Files to load after starting the application.")
  277. def getContainerRegistry(self) -> "CuraContainerRegistry":
  278. return self._container_registry
  279. def parseCliOptions(self):
  280. super().parseCliOptions()
  281. if self._cli_args.help:
  282. self._cli_parser.print_help()
  283. sys.exit(0)
  284. self._use_single_instance = self._cli_args.single_instance
  285. # FOR TESTING ONLY
  286. if self._cli_args.trigger_early_crash:
  287. assert not "This crash is triggered by the trigger_early_crash command line argument."
  288. for filename in self._cli_args.file:
  289. url = QUrl(filename)
  290. if url.scheme() in self._supported_url_schemes:
  291. self._urls_to_open.append(url)
  292. else:
  293. self._files_to_open.append(os.path.abspath(filename))
  294. def initialize(self) -> None:
  295. self.__addExpectedResourceDirsAndSearchPaths() # Must be added before init of super
  296. super().initialize(ApplicationMetadata.IsEnterpriseVersion)
  297. self._preferences.addPreference("cura/single_instance", False)
  298. self._use_single_instance = self._preferences.getValue("cura/single_instance") or self._cli_args.single_instance
  299. self.__sendCommandToSingleInstance()
  300. self._initializeSettingDefinitions()
  301. self._initializeSettingFunctions()
  302. self.__addAllResourcesAndContainerResources()
  303. self.__addAllEmptyContainers()
  304. self.__setLatestResouceVersionsForVersionUpgrade()
  305. self._machine_action_manager = MachineActionManager(self)
  306. self._machine_action_manager.initialize()
  307. def __sendCommandToSingleInstance(self):
  308. self._single_instance = SingleInstance(self, self._files_to_open, self._urls_to_open)
  309. # If we use single instance, try to connect to the single instance server, send commands, and then exit.
  310. # If we cannot find an existing single instance server, this is the only instance, so just keep going.
  311. if self._use_single_instance:
  312. if self._single_instance.startClient():
  313. Logger.log("i", "Single instance commands were sent, exiting")
  314. sys.exit(0)
  315. def __addExpectedResourceDirsAndSearchPaths(self):
  316. """Adds expected directory names and search paths for Resources."""
  317. # this list of dir names will be used by UM to detect an old cura directory
  318. for dir_name in ["extruders", "machine_instances", "materials", "plugins", "quality", "quality_changes", "user", "variants", "intent"]:
  319. Resources.addExpectedDirNameInData(dir_name)
  320. app_root = os.path.abspath(os.path.join(os.path.dirname(sys.executable)))
  321. if platform.system() == "Darwin":
  322. Resources.addSecureSearchPath(os.path.join(app_root, "Resources", "share", "cura", "resources"))
  323. Resources.addSecureSearchPath(
  324. os.path.join(self._app_install_dir, "Resources", "share", "cura", "resources"))
  325. else:
  326. Resources.addSecureSearchPath(os.path.join(app_root, "share", "cura", "resources"))
  327. Resources.addSecureSearchPath(os.path.join(self._app_install_dir, "share", "cura", "resources"))
  328. if not hasattr(sys, "frozen"):
  329. cura_data_root = os.environ.get('CURA_DATA_ROOT', None)
  330. if cura_data_root:
  331. Resources.addSearchPath(str(Path(cura_data_root).joinpath("resources")))
  332. Resources.addSearchPath(os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "resources"))
  333. # local Conan cache
  334. Resources.addSearchPath(os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "..", "resources"))
  335. Resources.addSearchPath(os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "..", "plugins"))
  336. # venv site-packages
  337. Resources.addSearchPath(os.path.join(app_root, "..", "share", "cura", "resources"))
  338. @classmethod
  339. def _initializeSettingDefinitions(cls):
  340. # Need to do this before ContainerRegistry tries to load the machines
  341. SettingDefinition.addSupportedProperty("settable_per_mesh", DefinitionPropertyType.Any, default=True,
  342. read_only=True)
  343. SettingDefinition.addSupportedProperty("settable_per_extruder", DefinitionPropertyType.Any, default=True,
  344. read_only=True)
  345. # this setting can be changed for each group in one-at-a-time mode
  346. SettingDefinition.addSupportedProperty("settable_per_meshgroup", DefinitionPropertyType.Any, default=True,
  347. read_only=True)
  348. SettingDefinition.addSupportedProperty("settable_globally", DefinitionPropertyType.Any, default=True,
  349. read_only=True)
  350. # From which stack the setting would inherit if not defined per object (handled in the engine)
  351. # AND for settings which are not settable_per_mesh:
  352. # which extruder is the only extruder this setting is obtained from
  353. SettingDefinition.addSupportedProperty("limit_to_extruder", DefinitionPropertyType.Function, default="-1",
  354. depends_on="value")
  355. # For settings which are not settable_per_mesh and not settable_per_extruder:
  356. # A function which determines the glabel/meshgroup value by looking at the values of the setting in all (used) extruders
  357. SettingDefinition.addSupportedProperty("resolve", DefinitionPropertyType.Function, default=None,
  358. depends_on="value")
  359. SettingDefinition.addSettingType("extruder", None, toIntConversion, Validator)
  360. SettingDefinition.addSettingType("optional_extruder", None, toIntConversion, None)
  361. SettingDefinition.addSettingType("[int]", None, str, None)
  362. def _initializeSettingFunctions(self):
  363. """Adds custom property types, settings types, and extra operators (functions).
  364. Whom need to be registered in SettingDefinition and SettingFunction.
  365. """
  366. self._cura_formula_functions = CuraFormulaFunctions(self)
  367. SettingFunction.registerOperator("extruderValue", self._cura_formula_functions.getValueInExtruder)
  368. SettingFunction.registerOperator("extruderValues", self._cura_formula_functions.getValuesInAllExtruders)
  369. SettingFunction.registerOperator("anyExtruderWithMaterial", self._cura_formula_functions.getExtruderPositionWithMaterial)
  370. SettingFunction.registerOperator("anyExtruderNrWithOrDefault",
  371. self._cura_formula_functions.getAnyExtruderPositionWithOrDefault)
  372. SettingFunction.registerOperator("resolveOrValue", self._cura_formula_functions.getResolveOrValue)
  373. SettingFunction.registerOperator("defaultExtruderPosition", self._cura_formula_functions.getDefaultExtruderPosition)
  374. SettingFunction.registerOperator("valueFromContainer", self._cura_formula_functions.getValueFromContainerAtIndex)
  375. SettingFunction.registerOperator("extruderValueFromContainer", self._cura_formula_functions.getValueFromContainerAtIndexInExtruder)
  376. def __addAllResourcesAndContainerResources(self) -> None:
  377. """Adds all resources and container related resources."""
  378. Resources.addStorageType(self.ResourceTypes.QualityInstanceContainer, "quality")
  379. Resources.addStorageType(self.ResourceTypes.QualityChangesInstanceContainer, "quality_changes")
  380. Resources.addStorageType(self.ResourceTypes.VariantInstanceContainer, "variants")
  381. Resources.addStorageType(self.ResourceTypes.MaterialInstanceContainer, "materials")
  382. Resources.addStorageType(self.ResourceTypes.UserInstanceContainer, "user")
  383. Resources.addStorageType(self.ResourceTypes.ExtruderStack, "extruders")
  384. Resources.addStorageType(self.ResourceTypes.MachineStack, "machine_instances")
  385. Resources.addStorageType(self.ResourceTypes.DefinitionChangesContainer, "definition_changes")
  386. Resources.addStorageType(self.ResourceTypes.SettingVisibilityPreset, "setting_visibility")
  387. Resources.addStorageType(self.ResourceTypes.IntentInstanceContainer, "intent")
  388. Resources.addStorageType(self.ResourceTypes.ImageFiles, "images")
  389. self._container_registry.addResourceType(self.ResourceTypes.QualityInstanceContainer, "quality")
  390. self._container_registry.addResourceType(self.ResourceTypes.QualityChangesInstanceContainer, "quality_changes")
  391. self._container_registry.addResourceType(self.ResourceTypes.VariantInstanceContainer, "variant")
  392. self._container_registry.addResourceType(self.ResourceTypes.MaterialInstanceContainer, "material")
  393. self._container_registry.addResourceType(self.ResourceTypes.UserInstanceContainer, "user")
  394. self._container_registry.addResourceType(self.ResourceTypes.ExtruderStack, "extruder_train")
  395. self._container_registry.addResourceType(self.ResourceTypes.MachineStack, "machine")
  396. self._container_registry.addResourceType(self.ResourceTypes.DefinitionChangesContainer, "definition_changes")
  397. self._container_registry.addResourceType(self.ResourceTypes.IntentInstanceContainer, "intent")
  398. self._container_registry.addResourceType(self.ResourceTypes.ImageFiles, "images")
  399. Resources.addType(self.ResourceTypes.QmlFiles, "qml")
  400. Resources.addType(self.ResourceTypes.Firmware, "firmware")
  401. def __addAllEmptyContainers(self) -> None:
  402. """Adds all empty containers."""
  403. # Add empty variant, material and quality containers.
  404. # Since they are empty, they should never be serialized and instead just programmatically created.
  405. # We need them to simplify the switching between materials.
  406. self.empty_container = cura.Settings.cura_empty_instance_containers.empty_container
  407. self._container_registry.addContainer(
  408. cura.Settings.cura_empty_instance_containers.empty_definition_changes_container)
  409. self.empty_definition_changes_container = cura.Settings.cura_empty_instance_containers.empty_definition_changes_container
  410. self._container_registry.addContainer(cura.Settings.cura_empty_instance_containers.empty_variant_container)
  411. self.empty_variant_container = cura.Settings.cura_empty_instance_containers.empty_variant_container
  412. self._container_registry.addContainer(cura.Settings.cura_empty_instance_containers.empty_intent_container)
  413. self.empty_intent_container = cura.Settings.cura_empty_instance_containers.empty_intent_container
  414. self._container_registry.addContainer(cura.Settings.cura_empty_instance_containers.empty_material_container)
  415. self.empty_material_container = cura.Settings.cura_empty_instance_containers.empty_material_container
  416. self._container_registry.addContainer(cura.Settings.cura_empty_instance_containers.empty_quality_container)
  417. self.empty_quality_container = cura.Settings.cura_empty_instance_containers.empty_quality_container
  418. self._container_registry.addContainer(cura.Settings.cura_empty_instance_containers.empty_quality_changes_container)
  419. self.empty_quality_changes_container = cura.Settings.cura_empty_instance_containers.empty_quality_changes_container
  420. def __setLatestResouceVersionsForVersionUpgrade(self):
  421. """Initializes the version upgrade manager with by providing the paths for each resource type and the latest
  422. versions. """
  423. self._version_upgrade_manager.setCurrentVersions(
  424. {
  425. ("quality", InstanceContainer.Version * 1000000 + self.SettingVersion): (self.ResourceTypes.QualityInstanceContainer, "application/x-uranium-instancecontainer"),
  426. ("quality_changes", InstanceContainer.Version * 1000000 + self.SettingVersion): (self.ResourceTypes.QualityChangesInstanceContainer, "application/x-uranium-instancecontainer"),
  427. ("intent", InstanceContainer.Version * 1000000 + self.SettingVersion): (self.ResourceTypes.IntentInstanceContainer, "application/x-uranium-instancecontainer"),
  428. ("machine_stack", GlobalStack.Version * 1000000 + self.SettingVersion): (self.ResourceTypes.MachineStack, "application/x-cura-globalstack"),
  429. ("extruder_train", ExtruderStack.Version * 1000000 + self.SettingVersion): (self.ResourceTypes.ExtruderStack, "application/x-cura-extruderstack"),
  430. ("preferences", Preferences.Version * 1000000 + self.SettingVersion): (Resources.Preferences, "application/x-uranium-preferences"),
  431. ("user", InstanceContainer.Version * 1000000 + self.SettingVersion): (self.ResourceTypes.UserInstanceContainer, "application/x-uranium-instancecontainer"),
  432. ("definition_changes", InstanceContainer.Version * 1000000 + self.SettingVersion): (self.ResourceTypes.DefinitionChangesContainer, "application/x-uranium-instancecontainer"),
  433. ("variant", InstanceContainer.Version * 1000000 + self.SettingVersion): (self.ResourceTypes.VariantInstanceContainer, "application/x-uranium-instancecontainer"),
  434. ("setting_visibility", SettingVisibilityPresetsModel.Version * 1000000 + self.SettingVersion): (self.ResourceTypes.SettingVisibilityPreset, "application/x-uranium-preferences"),
  435. ("machine", 2): (Resources.DefinitionContainers, "application/x-uranium-definitioncontainer"),
  436. ("extruder", 2): (Resources.DefinitionContainers, "application/x-uranium-definitioncontainer")
  437. }
  438. )
  439. def startSplashWindowPhase(self) -> None:
  440. """Runs preparations that needs to be done before the starting process."""
  441. self.setRequiredPlugins([
  442. # Misc.:
  443. "ConsoleLogger", # You want to be able to read the log if something goes wrong.
  444. "CuraEngineBackend", # Cura is useless without this one since you can't slice.
  445. "FileLogger", # You want to be able to read the log if something goes wrong.
  446. "XmlMaterialProfile", # Cura crashes without this one.
  447. "Marketplace",
  448. # This contains the interface to enable/disable plug-ins, so if you disable it you can't enable it back.
  449. "PrepareStage", # Cura is useless without this one since you can't load models.
  450. "PreviewStage", # This shows the list of the plugin views that are installed in Cura.
  451. "MonitorStage", # Major part of Cura's functionality.
  452. "LocalFileOutputDevice", # Major part of Cura's functionality.
  453. "LocalContainerProvider", # Cura is useless without any profiles or setting definitions.
  454. # Views:
  455. "SimpleView", # Dependency of SolidView.
  456. "SolidView", # Displays models. Cura is useless without it.
  457. # Readers & Writers:
  458. "GCodeWriter", # Cura is useless if it can't write its output.
  459. "STLReader", # Most common model format, so disabling this makes Cura 90% useless.
  460. "3MFWriter", # Required for writing project files.
  461. # Tools:
  462. "CameraTool", # Needed to see the scene. Cura is useless without it.
  463. "SelectionTool", # Dependency of the rest of the tools.
  464. "TranslateTool", # You'll need this for almost every print.
  465. ])
  466. # Plugins need to be set here, since in the super the check is done if they are actually loaded.
  467. super().startSplashWindowPhase()
  468. if not self.getIsHeadLess():
  469. try:
  470. self.setWindowIcon(QIcon(Resources.getPath(Resources.Images, "cura-icon.png" if not ApplicationMetadata.IsAlternateVersion else "cura-icon_wip.png")))
  471. except FileNotFoundError:
  472. Logger.log("w", "Unable to find the window icon.")
  473. self._i18n_catalog = i18nCatalog("cura")
  474. self._update_platform_activity_timer = QTimer()
  475. self._update_platform_activity_timer.setInterval(500)
  476. self._update_platform_activity_timer.setSingleShot(True)
  477. self._update_platform_activity_timer.timeout.connect(self.updatePlatformActivity)
  478. self.getController().getScene().sceneChanged.connect(self.updatePlatformActivityDelayed)
  479. self.getController().toolOperationStopped.connect(self._onToolOperationStopped)
  480. self.getController().contextMenuRequested.connect(self._onContextMenuRequested)
  481. self.getCuraSceneController().activeBuildPlateChanged.connect(self.updatePlatformActivityDelayed)
  482. self._setLoadingHint(self._i18n_catalog.i18nc("@info:progress", "Loading machines..."))
  483. self._container_registry.allMetadataLoaded.connect(ContainerRegistry.getInstance)
  484. with self._container_registry.lockFile():
  485. self._container_registry.loadAllMetadata()
  486. self._setLoadingHint(self._i18n_catalog.i18nc("@info:progress", "Setting up preferences..."))
  487. # Set the setting version for Preferences
  488. preferences = self.getPreferences()
  489. preferences.addPreference("metadata/setting_version", 0)
  490. preferences.setValue("metadata/setting_version", self.SettingVersion) # Don't make it equal to the default so that the setting version always gets written to the file.
  491. preferences.addPreference("cura/active_mode", "simple")
  492. preferences.addPreference("cura/categories_expanded", "")
  493. preferences.addPreference("cura/jobname_prefix", True)
  494. preferences.addPreference("cura/select_models_on_load", False)
  495. preferences.addPreference("view/center_on_select", False)
  496. preferences.addPreference("mesh/scale_to_fit", False)
  497. preferences.addPreference("mesh/scale_tiny_meshes", True)
  498. preferences.addPreference("cura/dialog_on_project_save", True)
  499. preferences.addPreference("cura/asked_dialog_on_project_save", False)
  500. preferences.addPreference("cura/choice_on_profile_override", "always_ask")
  501. preferences.addPreference("cura/choice_on_open_project", "always_ask")
  502. preferences.addPreference("cura/use_multi_build_plate", False)
  503. preferences.addPreference("cura/show_list_of_objects", False)
  504. preferences.addPreference("view/settings_list_height", 400)
  505. preferences.addPreference("view/settings_visible", False)
  506. preferences.addPreference("view/settings_xpos", 0)
  507. preferences.addPreference("view/settings_ypos", 56)
  508. preferences.addPreference("view/colorscheme_xpos", 0)
  509. preferences.addPreference("view/colorscheme_ypos", 56)
  510. preferences.addPreference("cura/currency", "€")
  511. preferences.addPreference("cura/material_settings", "{}")
  512. preferences.addPreference("view/invert_zoom", False)
  513. preferences.addPreference("view/filter_current_build_plate", False)
  514. preferences.addPreference("cura/sidebar_collapsed", False)
  515. preferences.addPreference("cura/favorite_materials", "")
  516. preferences.addPreference("cura/expanded_brands", "")
  517. preferences.addPreference("cura/expanded_types", "")
  518. preferences.addPreference("general/accepted_user_agreement", False)
  519. preferences.addPreference("cura/market_place_show_plugin_banner", True)
  520. preferences.addPreference("cura/market_place_show_material_banner", True)
  521. preferences.addPreference("cura/market_place_show_manage_packages_banner", True)
  522. for key in [
  523. "dialog_load_path", # dialog_save_path is in LocalFileOutputDevicePlugin
  524. "dialog_profile_path",
  525. "dialog_material_path"]:
  526. preferences.addPreference("local_file/%s" % key, os.path.expanduser("~/"))
  527. preferences.setDefault("local_file/last_used_type", "text/x-gcode")
  528. self.applicationShuttingDown.connect(self.saveSettings)
  529. self.engineCreatedSignal.connect(self._onEngineCreated)
  530. self.getCuraSceneController().setActiveBuildPlate(0) # Initialize
  531. CuraApplication.Created = True
  532. def _onEngineCreated(self):
  533. self._qml_engine.addImageProvider("print_job_preview", PrintJobPreviewImageProvider.PrintJobPreviewImageProvider())
  534. version = Version(self.getVersion())
  535. if hasattr(sys, "frozen") and version.hasPostFix() and "beta" not in version.getPostfixType():
  536. self._qml_engine.rootObjects()[0].setTitle(f"{ApplicationMetadata.CuraAppDisplayName} {ApplicationMetadata.CuraVersion}")
  537. message = Message(
  538. self._i18n_catalog.i18nc("@info:warning",
  539. f"This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}"),
  540. lifetime = 0,
  541. title = self._i18n_catalog.i18nc("@info:title", "Nightly build"),
  542. message_type = Message.MessageType.WARNING)
  543. message.show()
  544. @pyqtProperty(bool)
  545. def needToShowUserAgreement(self) -> bool:
  546. return not UM.Util.parseBool(self.getPreferences().getValue("general/accepted_user_agreement"))
  547. @pyqtSlot(bool)
  548. def setNeedToShowUserAgreement(self, set_value: bool = True) -> None:
  549. self.getPreferences().setValue("general/accepted_user_agreement", str(not set_value))
  550. @pyqtSlot(str, str)
  551. def writeToLog(self, severity: str, message: str) -> None:
  552. Logger.log(severity, message)
  553. # DO NOT call this function to close the application, use checkAndExitApplication() instead which will perform
  554. # pre-exit checks such as checking for in-progress USB printing, etc.
  555. # Except for the 'Decline and close' in the 'User Agreement'-step in the Welcome-pages, that should be a hard exit.
  556. @pyqtSlot()
  557. def closeApplication(self) -> None:
  558. Logger.log("i", "Close application")
  559. # Workaround: Before closing the window, remove the global stack.
  560. # This is necessary because as the main window gets closed, hundreds of QML elements get updated which often
  561. # request the global stack. However as the Qt-side of the Machine Manager is being dismantled, the conversion of
  562. # the Global Stack to a QObject fails.
  563. # If instead we first take down the global stack, PyQt will just convert `None` to `null` which succeeds, and
  564. # the QML code then gets `null` as the global stack and can deal with that as it deems fit.
  565. self.getMachineManager().setActiveMachine(None)
  566. QtApplication.getInstance().closeAllWindows()
  567. main_window = self.getMainWindow()
  568. if main_window is not None:
  569. main_window.close()
  570. QtApplication.closeAllWindows()
  571. QCoreApplication.quit()
  572. # This function first performs all upon-exit checks such as USB printing that is in progress.
  573. # Use this to close the application.
  574. @pyqtSlot()
  575. def checkAndExitApplication(self) -> None:
  576. self._on_exit_callback_manager.resetCurrentState()
  577. self._on_exit_callback_manager.triggerNextCallback()
  578. @pyqtSlot(result = bool)
  579. def getIsAllChecksPassed(self) -> bool:
  580. return self._on_exit_callback_manager.getIsAllChecksPassed()
  581. def getOnExitCallbackManager(self) -> "OnExitCallbackManager":
  582. return self._on_exit_callback_manager
  583. def triggerNextExitCheck(self) -> None:
  584. self._on_exit_callback_manager.triggerNextCallback()
  585. showConfirmExitDialog = pyqtSignal(str, arguments = ["message"])
  586. def setConfirmExitDialogCallback(self, callback: Callable) -> None:
  587. self._confirm_exit_dialog_callback = callback
  588. @pyqtSlot(bool)
  589. def callConfirmExitDialogCallback(self, yes_or_no: bool) -> None:
  590. self._confirm_exit_dialog_callback(yes_or_no)
  591. showPreferencesWindow = pyqtSignal()
  592. """Signal to connect preferences action in QML"""
  593. @pyqtSlot()
  594. def showPreferences(self) -> None:
  595. """Show the preferences window"""
  596. self.showPreferencesWindow.emit()
  597. # This is called by drag-and-dropping curapackage files.
  598. @pyqtSlot(QUrl)
  599. def installPackageViaDragAndDrop(self, file_url: str) -> Optional[str]:
  600. filename = QUrl(file_url).toLocalFile()
  601. return self._package_manager.installPackage(filename)
  602. @override(Application)
  603. def getGlobalContainerStack(self) -> Optional["GlobalStack"]:
  604. return self._global_container_stack
  605. @override(Application)
  606. def setGlobalContainerStack(self, stack: Optional["GlobalStack"]) -> None:
  607. self._setLoadingHint(self._i18n_catalog.i18nc("@info:progress", "Initializing Active Machine..."))
  608. super().setGlobalContainerStack(stack)
  609. showMessageBox = pyqtSignal(str,str, str, str, int, int,
  610. arguments = ["title", "text", "informativeText", "detailedText","buttons", "icon"])
  611. """A reusable dialogbox"""
  612. def messageBox(self, title, text,
  613. informativeText = "",
  614. detailedText = "",
  615. buttons = QMessageBox.StandardButton.Ok,
  616. icon = QMessageBox.Icon.NoIcon,
  617. callback = None,
  618. callback_arguments = []
  619. ):
  620. self._message_box_callback = callback
  621. self._message_box_callback_arguments = callback_arguments
  622. self.showMessageBox.emit(title, text, informativeText, detailedText, buttons, icon)
  623. showDiscardOrKeepProfileChanges = pyqtSignal()
  624. showCompareAndSaveProfileChanges = pyqtSignal(int)
  625. def discardOrKeepProfileChanges(self) -> bool:
  626. has_user_interaction = False
  627. choice = self.getPreferences().getValue("cura/choice_on_profile_override")
  628. if choice == "always_discard":
  629. # don't show dialog and DISCARD the profile
  630. self.discardOrKeepProfileChangesClosed("discard")
  631. elif choice == "always_keep":
  632. # don't show dialog and KEEP the profile
  633. self.discardOrKeepProfileChangesClosed("keep")
  634. elif not self._is_headless:
  635. # ALWAYS ask whether to keep or discard the profile
  636. self.showDiscardOrKeepProfileChanges.emit()
  637. has_user_interaction = True
  638. return has_user_interaction
  639. @pyqtSlot(str)
  640. def discardOrKeepProfileChangesClosed(self, option: str) -> None:
  641. global_stack = self.getGlobalContainerStack()
  642. if global_stack is None:
  643. return
  644. if option == "discard":
  645. for extruder in global_stack.extruderList:
  646. extruder.userChanges.clear()
  647. global_stack.userChanges.clear()
  648. self.getMachineManager().correctExtruderSettings()
  649. # if the user decided to keep settings then the user settings should be re-calculated and validated for errors
  650. # before slicing. To ensure that slicer uses right settings values
  651. elif option == "keep":
  652. for extruder in global_stack.extruderList:
  653. extruder.userChanges.update()
  654. global_stack.userChanges.update()
  655. @pyqtSlot(int)
  656. def messageBoxClosed(self, button):
  657. if self._message_box_callback:
  658. self._message_box_callback(button, *self._message_box_callback_arguments)
  659. self._message_box_callback = None
  660. self._message_box_callback_arguments = []
  661. def enableSave(self, enable: bool):
  662. self._enable_save = enable
  663. # Cura has multiple locations where instance containers need to be saved, so we need to handle this differently.
  664. def saveSettings(self) -> None:
  665. if not self.started or not self._enable_save:
  666. # Do not do saving during application start or when data should not be saved on quit.
  667. return
  668. ContainerRegistry.getInstance().saveDirtyContainers()
  669. self.savePreferences()
  670. def saveStack(self, stack):
  671. if not self._enable_save:
  672. return
  673. ContainerRegistry.getInstance().saveContainer(stack)
  674. @pyqtSlot(str, result = QUrl)
  675. def getDefaultPath(self, key):
  676. default_path = self.getPreferences().getValue("local_file/%s" % key)
  677. if os.path.exists(default_path):
  678. return QUrl.fromLocalFile(default_path)
  679. return QUrl()
  680. @pyqtSlot(str, str)
  681. def setDefaultPath(self, key, default_path):
  682. self.getPreferences().setValue("local_file/%s" % key, QUrl(default_path).toLocalFile())
  683. def _loadPlugins(self) -> None:
  684. """Handle loading of all plugin types (and the backend explicitly)
  685. :py:class:`Uranium.UM.PluginRegistry`
  686. """
  687. self._plugin_registry.setCheckIfTrusted(ApplicationMetadata.IsEnterpriseVersion)
  688. self._plugin_registry.addType("profile_reader", self._addProfileReader)
  689. self._plugin_registry.addType("profile_writer", self._addProfileWriter)
  690. self._plugin_registry.addType("backend_plugin", self._addBackendPlugin)
  691. if Platform.isLinux():
  692. lib_suffixes = {"", "64", "32", "x32"} # A few common ones on different distributions.
  693. else:
  694. lib_suffixes = {""}
  695. for suffix in lib_suffixes:
  696. self._plugin_registry.addPluginLocation(os.path.join(QtApplication.getInstallPrefix(), "lib" + suffix, "cura"))
  697. if not hasattr(sys, "frozen"):
  698. self._plugin_registry.addPluginLocation(os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "plugins"))
  699. self._plugin_registry.preloaded_plugins.append("ConsoleLogger")
  700. # Since it's possible to get crashes in code before the sentrylogger is loaded, we want to start this plugin
  701. # as quickly as possible, as we might get unsolvable crash reports without it.
  702. self._plugin_registry.preloaded_plugins.append("SentryLogger")
  703. self._plugin_registry.loadPlugins()
  704. if self.getBackend() is None:
  705. raise RuntimeError("Could not load the backend plugin!")
  706. self._plugins_loaded = True
  707. def _setLoadingHint(self, hint: str):
  708. """Set a short, user-friendly hint about current loading status.
  709. The way this message is displayed depends on application state
  710. """
  711. if self.started:
  712. Logger.info(hint)
  713. else:
  714. self.showSplashMessage(hint)
  715. def run(self):
  716. super().run()
  717. self._log_hardware_info()
  718. Logger.debug("Using conan dependencies: {}", str(self.conanInstalls))
  719. Logger.debug("Using python dependencies: {}", str(self.pythonInstalls))
  720. Logger.log("i", "Initializing machine error checker")
  721. self._machine_error_checker = MachineErrorChecker(self)
  722. self._machine_error_checker.initialize()
  723. self.processEvents()
  724. Logger.log("i", "Initializing machine manager")
  725. self._setLoadingHint(self._i18n_catalog.i18nc("@info:progress", "Initializing machine manager..."))
  726. self.getMachineManager()
  727. self.processEvents()
  728. Logger.log("i", "Initializing container manager")
  729. self._container_manager = ContainerManager(self)
  730. self.processEvents()
  731. # Check if we should run as single instance or not. If so, set up a local socket server which listener which
  732. # coordinates multiple Cura instances and accepts commands.
  733. if self._use_single_instance:
  734. self.__setUpSingleInstanceServer()
  735. # Setup scene and build volume
  736. self._setLoadingHint(self._i18n_catalog.i18nc("@info:progress", "Initializing build volume..."))
  737. root = self.getController().getScene().getRoot()
  738. self._volume = BuildVolume.BuildVolume(self, root)
  739. # initialize info objects
  740. self._print_information = PrintInformation.PrintInformation(self)
  741. self._cura_actions = CuraActions.CuraActions(self)
  742. self.processEvents()
  743. # Initialize setting visibility presets model.
  744. self._setting_visibility_presets_model = SettingVisibilityPresetsModel(self.getPreferences(), parent = self)
  745. # Initialize Cura API
  746. self._cura_API.initialize()
  747. self.processEvents()
  748. self._output_device_manager.start()
  749. self._welcome_pages_model.initialize()
  750. self._add_printer_pages_model.initialize()
  751. self._add_printer_pages_model_without_cancel.initialize(cancellable = False)
  752. self._whats_new_pages_model.initialize()
  753. # Initialize the FileProviderModel
  754. self._file_provider_model.initialize(self._onFileProviderEnabledChanged)
  755. # Detect in which mode to run and execute that mode
  756. if self._is_headless:
  757. self.runWithoutGUI()
  758. else:
  759. self.runWithGUI()
  760. self.started = True
  761. self.initializationFinished.emit()
  762. Logger.log("d", "Booting Cura took %s seconds", time.time() - self._boot_loading_time)
  763. # For now use a timer to postpone some things that need to be done after the application and GUI are
  764. # initialized, for example opening files because they may show dialogs which can be closed due to incomplete
  765. # GUI initialization.
  766. self._post_start_timer = QTimer(self)
  767. self._post_start_timer.setInterval(1000)
  768. self._post_start_timer.setSingleShot(True)
  769. self._post_start_timer.timeout.connect(self._onPostStart)
  770. self._post_start_timer.start()
  771. self._auto_save = AutoSave(self)
  772. self._auto_save.initialize()
  773. self.exec()
  774. def _log_hardware_info(self):
  775. hardware_info = platform.uname()
  776. Logger.info(f"System: {hardware_info.system}")
  777. Logger.info(f"Release: {hardware_info.release}")
  778. Logger.info(f"Version: {hardware_info.version}")
  779. Logger.info(f"Processor name: {hardware_info.processor}")
  780. Logger.info(f"CPU Cores: {os.cpu_count()}")
  781. def __setUpSingleInstanceServer(self):
  782. if self._use_single_instance:
  783. self._single_instance.startServer()
  784. def _onPostStart(self):
  785. for file_name in self._files_to_open:
  786. self.callLater(self._openFile, file_name)
  787. for file_name in self._open_file_queue: # Open all the files that were queued up while plug-ins were loading.
  788. self.callLater(self._openFile, file_name)
  789. for url in self._urls_to_open:
  790. self.callLater(self._openUrl, url)
  791. for url in self._open_url_queue:
  792. self.callLater(self._openUrl, url)
  793. initializationFinished = pyqtSignal()
  794. showAddPrintersUncancellableDialog = pyqtSignal() # Used to show the add printers dialog with a greyed background
  795. def runWithoutGUI(self):
  796. """Run Cura without GUI elements and interaction (server mode)."""
  797. self.closeSplash()
  798. def runWithGUI(self):
  799. """Run Cura with GUI (desktop mode)."""
  800. self._setLoadingHint(self._i18n_catalog.i18nc("@info:progress", "Setting up scene..."))
  801. controller = self.getController()
  802. t = controller.getTool("TranslateTool")
  803. if t:
  804. t.setEnabledAxis([ToolHandle.XAxis, ToolHandle.YAxis, ToolHandle.ZAxis])
  805. Selection.selectionChanged.connect(self.onSelectionChanged)
  806. # Set default background color for scene
  807. self.getRenderer().setBackgroundColor(QColor(245, 245, 245))
  808. self.processEvents()
  809. # Initialize platform physics
  810. self._physics = PlatformPhysics.PlatformPhysics(controller, self._volume)
  811. # Initialize camera
  812. root = controller.getScene().getRoot()
  813. camera = Camera("3d", root)
  814. diagonal = self.getBuildVolume().getDiagonalSize()
  815. if diagonal < 1: #No printer added yet. Set a default camera distance for normal-sized printers.
  816. diagonal = 375
  817. camera.setPosition(Vector(-80, 180, 700) * diagonal / 375)
  818. camera.lookAt(Vector(0, 0, 0))
  819. controller.getScene().setActiveCamera("3d")
  820. # Initialize camera tool
  821. camera_tool = controller.getTool("CameraTool")
  822. if camera_tool:
  823. camera_tool.setOrigin(Vector(0, 30, 0))
  824. camera_tool.setZoomRange(0.1, 2000)
  825. # Initialize camera animations
  826. self._camera_animation = CameraAnimation.CameraAnimation()
  827. self._camera_animation.setCameraTool(self.getController().getTool("CameraTool"))
  828. self._setLoadingHint(self._i18n_catalog.i18nc("@info:progress", "Loading interface..."))
  829. # Initialize QML engine
  830. self.setMainQml(Resources.getPath(self.ResourceTypes.QmlFiles, "Cura.qml"))
  831. self._qml_import_paths.append(Resources.getPath(self.ResourceTypes.QmlFiles))
  832. self._setLoadingHint(self._i18n_catalog.i18nc("@info:progress", "Initializing engine..."))
  833. self.initializeEngine()
  834. self.getTheme().setCheckIfTrusted(ApplicationMetadata.IsEnterpriseVersion)
  835. # Initialize UI state
  836. controller.setActiveStage("PrepareStage")
  837. controller.setActiveView("SolidView")
  838. controller.setCameraTool("CameraTool")
  839. controller.setSelectionTool("SelectionTool")
  840. # Hide the splash screen
  841. self.closeSplash()
  842. @pyqtSlot(result = QObject)
  843. def getDiscoveredPrintersModel(self, *args) -> "DiscoveredPrintersModel":
  844. return self._discovered_printer_model
  845. @pyqtSlot(result=QObject)
  846. def getDiscoveredCloudPrintersModel(self, *args) -> "DiscoveredCloudPrintersModel":
  847. return self._discovered_cloud_printers_model
  848. @pyqtSlot(result = QObject)
  849. def getFirstStartMachineActionsModel(self, *args) -> "FirstStartMachineActionsModel":
  850. if self._first_start_machine_actions_model is None:
  851. self._first_start_machine_actions_model = FirstStartMachineActionsModel(self, parent = self)
  852. if self.started:
  853. self._first_start_machine_actions_model.initialize()
  854. return self._first_start_machine_actions_model
  855. @pyqtSlot(result = QObject)
  856. def getSettingVisibilityPresetsModel(self, *args) -> SettingVisibilityPresetsModel:
  857. return self._setting_visibility_presets_model
  858. @pyqtSlot(result = QObject)
  859. def getWelcomePagesModel(self, *args) -> "WelcomePagesModel":
  860. return self._welcome_pages_model
  861. @pyqtSlot(result = QObject)
  862. def getAddPrinterPagesModel(self, *args) -> "AddPrinterPagesModel":
  863. return self._add_printer_pages_model
  864. @pyqtSlot(result = QObject)
  865. def getAddPrinterPagesModelWithoutCancel(self, *args) -> "AddPrinterPagesModel":
  866. return self._add_printer_pages_model_without_cancel
  867. @pyqtSlot(result = QObject)
  868. def getWhatsNewPagesModel(self, *args) -> "WhatsNewPagesModel":
  869. return self._whats_new_pages_model
  870. @pyqtSlot(result = QObject)
  871. def getMachineSettingsManager(self, *args) -> "MachineSettingsManager":
  872. return self._machine_settings_manager
  873. @pyqtSlot(result = QObject)
  874. def getTextManager(self, *args) -> "TextManager":
  875. return self._text_manager
  876. def getCuraFormulaFunctions(self, *args) -> "CuraFormulaFunctions":
  877. if self._cura_formula_functions is None:
  878. self._cura_formula_functions = CuraFormulaFunctions(self)
  879. return self._cura_formula_functions
  880. def getMachineErrorChecker(self, *args) -> MachineErrorChecker:
  881. return self._machine_error_checker
  882. def getMachineManager(self, *args) -> MachineManager:
  883. if self._machine_manager is None:
  884. self._machine_manager = MachineManager(self, parent = self)
  885. return self._machine_manager
  886. def getExtruderManager(self, *args) -> ExtruderManager:
  887. if self._extruder_manager is None:
  888. self._extruder_manager = ExtruderManager()
  889. return self._extruder_manager
  890. def getIntentManager(self, *args) -> IntentManager:
  891. return IntentManager.getInstance()
  892. def getObjectsModel(self, *args):
  893. if self._object_manager is None:
  894. self._object_manager = ObjectsModel(self)
  895. return self._object_manager
  896. @pyqtSlot(str, result = "QVariantList")
  897. def getSupportedActionMachineList(self, definition_id: str) -> List["MachineAction"]:
  898. return self._machine_action_manager.getSupportedActions(self._machine_manager.getDefinitionByMachineId(definition_id))
  899. @pyqtSlot(result = QObject)
  900. def getExtrudersModel(self, *args) -> "ExtrudersModel":
  901. if self._extruders_model is None:
  902. self._extruders_model = ExtrudersModel(self)
  903. return self._extruders_model
  904. @pyqtSlot(result = QObject)
  905. def getExtrudersModelWithOptional(self, *args) -> "ExtrudersModel":
  906. if self._extruders_model_with_optional is None:
  907. self._extruders_model_with_optional = ExtrudersModel(self)
  908. self._extruders_model_with_optional.setAddOptionalExtruder(True)
  909. return self._extruders_model_with_optional
  910. @pyqtSlot(result = QObject)
  911. def getMultiBuildPlateModel(self, *args) -> MultiBuildPlateModel:
  912. if self._multi_build_plate_model is None:
  913. self._multi_build_plate_model = MultiBuildPlateModel(self)
  914. return self._multi_build_plate_model
  915. @pyqtSlot(result = QObject)
  916. def getBuildPlateModel(self, *args) -> BuildPlateModel:
  917. if self._build_plate_model is None:
  918. self._build_plate_model = BuildPlateModel(self)
  919. return self._build_plate_model
  920. def getCuraSceneController(self, *args) -> CuraSceneController:
  921. if self._cura_scene_controller is None:
  922. self._cura_scene_controller = CuraSceneController.createCuraSceneController()
  923. return self._cura_scene_controller
  924. def getSettingInheritanceManager(self, *args) -> SettingInheritanceManager:
  925. if self._setting_inheritance_manager is None:
  926. self._setting_inheritance_manager = SettingInheritanceManager.createSettingInheritanceManager()
  927. return self._setting_inheritance_manager
  928. @pyqtSlot(result = QObject)
  929. def getMachineActionManager(self, *args: Any) -> MachineActionManager:
  930. """Get the machine action manager
  931. We ignore any *args given to this, as we also register the machine manager as qml singleton.
  932. It wants to give this function an engine and script engine, but we don't care about that.
  933. """
  934. return self._machine_action_manager
  935. @pyqtSlot(result = QObject)
  936. def getMaterialManagementModel(self) -> MaterialManagementModel:
  937. if not self._material_management_model:
  938. self._material_management_model = MaterialManagementModel(parent = self)
  939. return self._material_management_model
  940. @pyqtSlot(result = QObject)
  941. def getQualityManagementModel(self) -> QualityManagementModel:
  942. if not self._quality_management_model:
  943. self._quality_management_model = QualityManagementModel(parent = self)
  944. return self._quality_management_model
  945. @pyqtSlot(result=QObject)
  946. def getSimpleModeSettingsManager(self)-> SimpleModeSettingsManager:
  947. if self._simple_mode_settings_manager is None:
  948. self._simple_mode_settings_manager = SimpleModeSettingsManager()
  949. return self._simple_mode_settings_manager
  950. @pyqtSlot(result = QObject)
  951. def getFileProviderModel(self) -> FileProviderModel:
  952. return self._file_provider_model
  953. def _onFileProviderEnabledChanged(self):
  954. self._file_provider_model.update()
  955. def event(self, event):
  956. """Handle Qt events"""
  957. if event.type() == QEvent.Type.FileOpen:
  958. if self._plugins_loaded:
  959. if event.file():
  960. self._openFile(event.file())
  961. if event.url():
  962. self._openUrl(event.url())
  963. else:
  964. if event.file():
  965. self._open_file_queue.append(event.file())
  966. if event.url():
  967. self._open_url_queue.append(event.url())
  968. if int(event.type()) == 20: # 'QEvent.Type.Quit' enum isn't there, even though it should be according to docs.
  969. # Once we're at this point, everything should have been flushed already (past OnExitCallbackManager).
  970. # It's more difficult to call sys.exit(0): That requires that it happens as the result of a pyqtSignal-emit.
  971. # (See https://doc.qt.io/qt-6/qcoreapplication.html#quit)
  972. os._exit(0)
  973. return super().event(event)
  974. def getAutoSave(self) -> Optional[AutoSave]:
  975. return self._auto_save
  976. def getPrintInformation(self):
  977. """Get print information (duration / material used)"""
  978. return self._print_information
  979. @pyqtSlot(result=QObject)
  980. def getQualityProfilesDropDownMenuModel(self, *args, **kwargs)-> QualityProfilesDropDownMenuModel:
  981. if self._quality_profile_drop_down_menu_model is None:
  982. self._quality_profile_drop_down_menu_model = QualityProfilesDropDownMenuModel(self)
  983. return self._quality_profile_drop_down_menu_model
  984. @pyqtSlot(result=QObject)
  985. def getCustomQualityProfilesDropDownMenuModel(self, *args, **kwargs)->CustomQualityProfilesDropDownMenuModel:
  986. if self._custom_quality_profile_drop_down_menu_model is None:
  987. self._custom_quality_profile_drop_down_menu_model = CustomQualityProfilesDropDownMenuModel(self)
  988. return self._custom_quality_profile_drop_down_menu_model
  989. @deprecated("SimpleModeSettingsManager is deprecated and will be removed in major SDK release, Use getSimpleModeSettingsManager() instead", since = "5.7.0")
  990. def getSimpleModeSettingsManagerWrapper(self, *args, **kwargs):
  991. return self.getSimpleModeSettingsManager()
  992. @deprecated("MachineActionManager is deprecated and will be removed in major SDK release, Use getMachineActionManager() instead", since="5.7.0")
  993. def getMachineActionManagerWrapper(self, *args, **kwargs):
  994. return self.getMachineActionManager()
  995. @deprecated("QualityManagementModel is deprecated and will be removed in major SDK release, Use getQualityManagementModel() instead", since="5.7.0")
  996. def getQualityManagementModelWrapper(self, *args, **kwargs):
  997. return self.getQualityManagementModel()
  998. @deprecated("MaterialManagementModel is deprecated and will be removed in major SDK release, Use getMaterialManagementModel() instead", since = "5.7.0")
  999. def getMaterialManagementModelWrapper(self, *args, **kwargs):
  1000. return self.getMaterialManagementModel()
  1001. @deprecated("QualityProfilesDropDownMenuModel is deprecated and will be removed in major SDK release, Use getQualityProfilesDropDownMenuModel() instead", since = "5.7.0")
  1002. def getQualityProfilesDropDownMenuModelWrapper(self, *args, **kwargs):
  1003. return self.getQualityProfilesDropDownMenuModel()
  1004. @deprecated("CustomQualityProfilesDropDownMenuModel is deprecated and will be removed in major SDK release, Use getCustomQualityProfilesDropDownMenuModel() instead", since = "5.7.0")
  1005. def getCustomQualityProfilesDropDownMenuModelWrapper(self, *args, **kwargs):
  1006. return self.getCustomQualityProfilesDropDownMenuModel()
  1007. def getCuraAPI(self, *args, **kwargs) -> "CuraAPI":
  1008. return self._cura_API
  1009. def registerObjects(self, engine):
  1010. """Registers objects for the QML engine to use.
  1011. :param engine: The QML engine.
  1012. """
  1013. super().registerObjects(engine)
  1014. # global contexts
  1015. self.processEvents()
  1016. engine.rootContext().setContextProperty("Printer", self)
  1017. engine.rootContext().setContextProperty("CuraApplication", self)
  1018. engine.rootContext().setContextProperty("PrintInformation", self._print_information)
  1019. engine.rootContext().setContextProperty("CuraActions", self._cura_actions)
  1020. engine.rootContext().setContextProperty("CuraSDKVersion", ApplicationMetadata.CuraSDKVersion)
  1021. self.processEvents()
  1022. qmlRegisterUncreatableMetaObject(CuraApplication.staticMetaObject, "Cura", 1, 0, "ResourceTypes", "ResourceTypes is an enum-only type")
  1023. self.processEvents()
  1024. qmlRegisterSingletonType(CuraSceneController, "Cura", 1, 0, self.getCuraSceneController, "SceneController")
  1025. qmlRegisterSingletonType(ExtruderManager, "Cura", 1, 0, self.getExtruderManager, "ExtruderManager")
  1026. qmlRegisterSingletonType(MachineManager, "Cura", 1, 0, self.getMachineManager, "MachineManager")
  1027. qmlRegisterSingletonType(IntentManager, "Cura", 1, 6, self.getIntentManager, "IntentManager")
  1028. qmlRegisterSingletonType(SettingInheritanceManager, "Cura", 1, 0, self.getSettingInheritanceManager, "SettingInheritanceManager")
  1029. qmlRegisterSingletonType(SimpleModeSettingsManager, "Cura", 1, 0, self.getSimpleModeSettingsManagerWrapper, "SimpleModeSettingsManager")
  1030. qmlRegisterSingletonType(MachineActionManager, "Cura", 1, 0, self.getMachineActionManagerWrapper, "MachineActionManager")
  1031. self.processEvents()
  1032. qmlRegisterType(NetworkingUtil, "Cura", 1, 5, "NetworkingUtil")
  1033. qmlRegisterType(WelcomePagesModel, "Cura", 1, 0, "WelcomePagesModel")
  1034. qmlRegisterType(WhatsNewPagesModel, "Cura", 1, 0, "WhatsNewPagesModel")
  1035. qmlRegisterType(AddPrinterPagesModel, "Cura", 1, 0, "AddPrinterPagesModel")
  1036. qmlRegisterType(TextManager, "Cura", 1, 0, "TextManager")
  1037. qmlRegisterType(RecommendedMode, "Cura", 1, 0, "RecommendedMode")
  1038. self.processEvents()
  1039. qmlRegisterType(NetworkMJPGImage, "Cura", 1, 0, "NetworkMJPGImage")
  1040. qmlRegisterType(ObjectsModel, "Cura", 1, 0, "ObjectsModel")
  1041. qmlRegisterType(BuildPlateModel, "Cura", 1, 0, "BuildPlateModel")
  1042. qmlRegisterType(MultiBuildPlateModel, "Cura", 1, 0, "MultiBuildPlateModel")
  1043. qmlRegisterType(InstanceContainer, "Cura", 1, 0, "InstanceContainer")
  1044. qmlRegisterType(ExtrudersModel, "Cura", 1, 0, "ExtrudersModel")
  1045. qmlRegisterType(GlobalStacksModel, "Cura", 1, 0, "GlobalStacksModel")
  1046. qmlRegisterType(MachineListModel, "Cura", 1, 0, "MachineListModel")
  1047. qmlRegisterType(CompatibleMachineModel, "Cura", 1, 0, "CompatibleMachineModel")
  1048. self.processEvents()
  1049. qmlRegisterType(FavoriteMaterialsModel, "Cura", 1, 0, "FavoriteMaterialsModel")
  1050. qmlRegisterType(GenericMaterialsModel, "Cura", 1, 0, "GenericMaterialsModel")
  1051. qmlRegisterType(MaterialBrandsModel, "Cura", 1, 0, "MaterialBrandsModel")
  1052. qmlRegisterSingletonType(QualityManagementModel, "Cura", 1, 0, self.getQualityManagementModelWrapper,"QualityManagementModel")
  1053. qmlRegisterSingletonType(MaterialManagementModel, "Cura", 1, 5, self.getMaterialManagementModelWrapper,"MaterialManagementModel")
  1054. self.processEvents()
  1055. qmlRegisterType(DiscoveredPrintersModel, "Cura", 1, 0, "DiscoveredPrintersModel")
  1056. qmlRegisterType(DiscoveredCloudPrintersModel, "Cura", 1, 7, "DiscoveredCloudPrintersModel")
  1057. qmlRegisterSingletonType(QualityProfilesDropDownMenuModel, "Cura", 1, 0, self.getQualityProfilesDropDownMenuModelWrapper, "QualityProfilesDropDownMenuModel")
  1058. qmlRegisterSingletonType(CustomQualityProfilesDropDownMenuModel, "Cura", 1, 0, self.getCustomQualityProfilesDropDownMenuModelWrapper, "CustomQualityProfilesDropDownMenuModel")
  1059. qmlRegisterType(NozzleModel, "Cura", 1, 0, "NozzleModel")
  1060. qmlRegisterType(IntentModel, "Cura", 1, 6, "IntentModel")
  1061. qmlRegisterType(IntentCategoryModel, "Cura", 1, 6, "IntentCategoryModel")
  1062. qmlRegisterType(IntentSelectionModel, "Cura", 1, 7, "IntentSelectionModel")
  1063. qmlRegisterType(ActiveIntentQualitiesModel, "Cura", 1, 7, "ActiveIntentQualitiesModel")
  1064. self.processEvents()
  1065. qmlRegisterType(MaterialSettingsVisibilityHandler, "Cura", 1, 0, "MaterialSettingsVisibilityHandler")
  1066. qmlRegisterType(SettingVisibilityPresetsModel, "Cura", 1, 0, "SettingVisibilityPresetsModel")
  1067. qmlRegisterType(QualitySettingsModel, "Cura", 1, 0, "QualitySettingsModel")
  1068. qmlRegisterType(FirstStartMachineActionsModel, "Cura", 1, 0, "FirstStartMachineActionsModel")
  1069. qmlRegisterType(MachineNameValidator, "Cura", 1, 0, "MachineNameValidator")
  1070. qmlRegisterType(UserChangesModel, "Cura", 1, 0, "UserChangesModel")
  1071. qmlRegisterSingletonType(ContainerManager, "Cura", 1, 0, ContainerManager.getInstance, "ContainerManager")
  1072. qmlRegisterType(SidebarCustomMenuItemsModel, "Cura", 1, 0, "SidebarCustomMenuItemsModel")
  1073. qmlRegisterType(PrinterOutputDevice, "Cura", 1, 0, "PrinterOutputDevice")
  1074. from cura.API import CuraAPI
  1075. qmlRegisterSingletonType(CuraAPI, "Cura", 1, 1, self.getCuraAPI, "API")
  1076. qmlRegisterUncreatableMetaObject(CuraApplication.staticMetaObject, "Cura", 1, 0, "AccountSyncState", "AccountSyncState is an enum-only type")
  1077. # As of Qt5.7, it is necessary to get rid of any ".." in the path for the singleton to work.
  1078. actions_url = QUrl.fromLocalFile(os.path.abspath(Resources.getPath(CuraApplication.ResourceTypes.QmlFiles, "Actions.qml")))
  1079. qmlRegisterSingletonType(actions_url, "Cura", 1, 0, "Actions")
  1080. for path in Resources.getAllResourcesOfType(CuraApplication.ResourceTypes.QmlFiles):
  1081. type_name = os.path.splitext(os.path.basename(path))[0]
  1082. if type_name in ("Cura", "Actions"):
  1083. continue
  1084. # Ignore anything that is not a QML file.
  1085. if not path.endswith(".qml"):
  1086. continue
  1087. qmlRegisterType(QUrl.fromLocalFile(path), "Cura", 1, 0, type_name)
  1088. self.processEvents()
  1089. def onSelectionChanged(self):
  1090. if Selection.hasSelection():
  1091. if self.getController().getActiveTool():
  1092. # If the tool has been disabled by the new selection
  1093. if not self.getController().getActiveTool().getEnabled():
  1094. # Default
  1095. self.getController().setActiveTool("TranslateTool")
  1096. else:
  1097. if self._previous_active_tool:
  1098. self.getController().setActiveTool(self._previous_active_tool)
  1099. if not self.getController().getActiveTool().getEnabled():
  1100. self.getController().setActiveTool("TranslateTool")
  1101. self._previous_active_tool = None
  1102. else:
  1103. # Default
  1104. self.getController().setActiveTool("TranslateTool")
  1105. if self.getPreferences().getValue("view/center_on_select"):
  1106. self._center_after_select = True
  1107. else:
  1108. if self.getController().getActiveTool():
  1109. self._previous_active_tool = self.getController().getActiveTool().getPluginId()
  1110. self.getController().setActiveTool(None)
  1111. def _onToolOperationStopped(self, event):
  1112. if self._center_after_select and Selection.getSelectedObject(0) is not None:
  1113. self._center_after_select = False
  1114. self._camera_animation.setStart(self.getController().getTool("CameraTool").getOrigin())
  1115. self._camera_animation.setTarget(Selection.getSelectedObject(0).getWorldPosition())
  1116. self._camera_animation.start()
  1117. activityChanged = pyqtSignal()
  1118. sceneBoundingBoxChanged = pyqtSignal()
  1119. @pyqtProperty(bool, notify = activityChanged)
  1120. def platformActivity(self):
  1121. return self._platform_activity
  1122. @pyqtProperty(str, notify = sceneBoundingBoxChanged)
  1123. def getSceneBoundingBoxString(self):
  1124. return self._i18n_catalog.i18nc("@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm.", "%(width).1f x %(depth).1f x %(height).1f mm") % {'width' : self._scene_bounding_box.width.item(), 'depth': self._scene_bounding_box.depth.item(), 'height' : self._scene_bounding_box.height.item()}
  1125. def updatePlatformActivityDelayed(self, node = None):
  1126. if node is not None and (node.getMeshData() is not None or node.callDecoration("getLayerData")):
  1127. self._update_platform_activity_timer.start()
  1128. def updatePlatformActivity(self, node = None):
  1129. """Update scene bounding box for current build plate"""
  1130. count = 0
  1131. scene_bounding_box = None
  1132. is_block_slicing_node = False
  1133. active_build_plate = self.getMultiBuildPlateModel().activeBuildPlate
  1134. print_information = self.getPrintInformation()
  1135. for node in DepthFirstIterator(self.getController().getScene().getRoot()):
  1136. if (
  1137. not issubclass(type(node), CuraSceneNode) or
  1138. (not node.getMeshData() and not node.callDecoration("getLayerData")) or
  1139. (node.callDecoration("getBuildPlateNumber") != active_build_plate)):
  1140. continue
  1141. if node.callDecoration("isBlockSlicing"):
  1142. is_block_slicing_node = True
  1143. count += 1
  1144. # After clicking the Undo button, if the build plate empty the project name needs to be set
  1145. if print_information.baseName == '':
  1146. print_information.setBaseName(node.getName())
  1147. if not scene_bounding_box:
  1148. scene_bounding_box = node.getBoundingBox()
  1149. else:
  1150. other_bb = node.getBoundingBox()
  1151. if other_bb is not None:
  1152. scene_bounding_box = scene_bounding_box + node.getBoundingBox()
  1153. if print_information:
  1154. print_information.setPreSliced(is_block_slicing_node)
  1155. self.getWorkspaceFileHandler().setEnabled(not is_block_slicing_node)
  1156. if not scene_bounding_box:
  1157. scene_bounding_box = AxisAlignedBox.Null
  1158. if repr(self._scene_bounding_box) != repr(scene_bounding_box):
  1159. self._scene_bounding_box = scene_bounding_box
  1160. self.sceneBoundingBoxChanged.emit()
  1161. self._platform_activity = True if count > 0 else False
  1162. self.activityChanged.emit()
  1163. @pyqtSlot()
  1164. def selectAll(self):
  1165. """Select all nodes containing mesh data in the scene."""
  1166. if not self.getController().getToolsEnabled():
  1167. return
  1168. Selection.clear()
  1169. for node in DepthFirstIterator(self.getController().getScene().getRoot()):
  1170. if not isinstance(node, SceneNode):
  1171. continue
  1172. if not node.getMeshData() and not node.callDecoration("isGroup"):
  1173. continue # Node that doesn't have a mesh and is not a group.
  1174. if node.getParent() and node.getParent().callDecoration("isGroup") or node.getParent().callDecoration("isSliceable"):
  1175. continue # Grouped nodes don't need resetting as their parent (the group) is reset)
  1176. if not node.isSelectable():
  1177. continue # i.e. node with layer data
  1178. if not node.callDecoration("isSliceable") and not node.callDecoration("isGroup"):
  1179. continue # i.e. node with layer data
  1180. Selection.add(node)
  1181. @pyqtSlot()
  1182. def resetAllTranslation(self):
  1183. """Reset all translation on nodes with mesh data."""
  1184. Logger.log("i", "Resetting all scene translations")
  1185. nodes = []
  1186. for node in DepthFirstIterator(self.getController().getScene().getRoot()):
  1187. if not isinstance(node, SceneNode):
  1188. continue
  1189. if not node.getMeshData() and not node.callDecoration("isGroup"):
  1190. continue # Node that doesn't have a mesh and is not a group.
  1191. if node.getParent() and node.getParent().callDecoration("isGroup"):
  1192. continue # Grouped nodes don't need resetting as their parent (the group) is reset)
  1193. if not node.isSelectable():
  1194. continue # i.e. node with layer data
  1195. nodes.append(node)
  1196. if nodes:
  1197. op = GroupedOperation()
  1198. for node in nodes:
  1199. # Ensure that the object is above the build platform
  1200. node.removeDecorator(ZOffsetDecorator.ZOffsetDecorator)
  1201. if node.getBoundingBox():
  1202. center_y = node.getWorldPosition().y - node.getBoundingBox().bottom
  1203. else:
  1204. center_y = 0
  1205. op.addOperation(SetTransformOperation(node, Vector(0, center_y, 0)))
  1206. op.push()
  1207. @pyqtSlot()
  1208. def resetAll(self):
  1209. """Reset all transformations on nodes with mesh data."""
  1210. Logger.log("i", "Resetting all scene transformations")
  1211. nodes = []
  1212. for node in DepthFirstIterator(self.getController().getScene().getRoot()):
  1213. if not isinstance(node, SceneNode):
  1214. continue
  1215. if not node.getMeshData() and not node.callDecoration("isGroup"):
  1216. continue # Node that doesn't have a mesh and is not a group.
  1217. if node.getParent() and node.getParent().callDecoration("isGroup"):
  1218. continue # Grouped nodes don't need resetting as their parent (the group) is reset)
  1219. if not node.callDecoration("isSliceable") and not node.callDecoration("isGroup"):
  1220. continue # i.e. node with layer data
  1221. nodes.append(node)
  1222. if nodes:
  1223. op = GroupedOperation()
  1224. for node in nodes:
  1225. # Ensure that the object is above the build platform
  1226. node.removeDecorator(ZOffsetDecorator.ZOffsetDecorator)
  1227. if node.getBoundingBox():
  1228. center_y = node.getWorldPosition().y - node.getBoundingBox().bottom
  1229. else:
  1230. center_y = 0
  1231. op.addOperation(SetTransformOperation(node, Vector(0, center_y, 0), Quaternion(), Vector(1, 1, 1)))
  1232. op.push()
  1233. # Single build plate
  1234. @pyqtSlot()
  1235. def arrangeAll(self) -> None:
  1236. self._arrangeAll(grid_arrangement = False)
  1237. @pyqtSlot()
  1238. def arrangeAllInGrid(self) -> None:
  1239. self._arrangeAll(grid_arrangement = True)
  1240. def _arrangeAll(self, *, grid_arrangement: bool) -> None:
  1241. nodes_to_arrange = []
  1242. active_build_plate = self.getMultiBuildPlateModel().activeBuildPlate
  1243. locked_nodes = []
  1244. for node in DepthFirstIterator(self.getController().getScene().getRoot()):
  1245. if not isinstance(node, SceneNode):
  1246. continue
  1247. if not node.getMeshData() and not node.callDecoration("isGroup"):
  1248. continue # Node that doesn't have a mesh and is not a group.
  1249. parent_node = node.getParent()
  1250. if parent_node and parent_node.callDecoration("isGroup"):
  1251. continue # Grouped nodes don't need resetting as their parent (the group) is reset)
  1252. if not node.isSelectable():
  1253. continue # i.e. node with layer data
  1254. if not node.callDecoration("isSliceable") and not node.callDecoration("isGroup"):
  1255. continue # i.e. node with layer data
  1256. if node.callDecoration("getBuildPlateNumber") == active_build_plate:
  1257. # Skip nodes that are too big
  1258. bounding_box = node.getBoundingBox()
  1259. if bounding_box is None or bounding_box.width < self._volume.getBoundingBox().width or bounding_box.depth < self._volume.getBoundingBox().depth:
  1260. # Arrange only the unlocked nodes and keep the locked ones in place
  1261. if node.getSetting(SceneNodeSettings.LockPosition):
  1262. locked_nodes.append(node)
  1263. else:
  1264. nodes_to_arrange.append(node)
  1265. self.arrange(nodes_to_arrange, locked_nodes, grid_arrangement = grid_arrangement)
  1266. def arrange(self, nodes: List[SceneNode], fixed_nodes: List[SceneNode], *, grid_arrangement: bool = False) -> None:
  1267. """Arrange a set of nodes given a set of fixed nodes
  1268. :param nodes: nodes that we have to place
  1269. :param fixed_nodes: nodes that are placed in the arranger before finding spots for nodes
  1270. :param grid_arrangement: If set to true if objects are to be placed in a grid
  1271. """
  1272. min_offset = self.getBuildVolume().getEdgeDisallowedSize() + 2 # Allow for some rounding errors
  1273. job = ArrangeObjectsJob(nodes, fixed_nodes, min_offset = max(min_offset, 8), grid_arrange = grid_arrangement)
  1274. job.start()
  1275. @pyqtSlot()
  1276. def reloadAll(self) -> None:
  1277. """Reload all mesh data on the screen from file."""
  1278. Logger.log("i", "Reloading all loaded mesh data.")
  1279. nodes = []
  1280. has_merged_nodes = False
  1281. gcode_filename = None # type: Optional[str]
  1282. for node in DepthFirstIterator(self.getController().getScene().getRoot()):
  1283. # Objects loaded from Gcode should also be included.
  1284. gcode_filename = node.callDecoration("getGcodeFileName")
  1285. if gcode_filename is not None:
  1286. break
  1287. if not isinstance(node, CuraSceneNode) or not node.getMeshData():
  1288. if node.getName() == "MergedMesh":
  1289. has_merged_nodes = True
  1290. continue
  1291. nodes.append(node)
  1292. # We can open only one gcode file at the same time. If the current view has a gcode file open, just reopen it
  1293. # for reloading.
  1294. if gcode_filename:
  1295. self._openFile(gcode_filename)
  1296. if not nodes:
  1297. return
  1298. objects_in_filename: Dict[str, List[CuraSceneNode]] = {}
  1299. for node in nodes:
  1300. mesh_data = node.getMeshData()
  1301. if mesh_data:
  1302. file_name = mesh_data.getFileName()
  1303. if file_name:
  1304. if file_name not in objects_in_filename:
  1305. objects_in_filename[file_name] = []
  1306. if file_name in objects_in_filename:
  1307. objects_in_filename[file_name].append(node)
  1308. else:
  1309. Logger.log("w", "Unable to reload data because we don't have a filename.")
  1310. for file_name, nodes in objects_in_filename.items():
  1311. file_path = os.path.normpath(os.path.dirname(file_name))
  1312. job = ReadMeshJob(file_name,
  1313. add_to_recent_files=file_path != tempfile.gettempdir()) # Don't add temp files to the recent files list
  1314. job._nodes = nodes # type: ignore
  1315. job.finished.connect(self._reloadMeshFinished)
  1316. if has_merged_nodes:
  1317. job.finished.connect(self.updateOriginOfMergedMeshes)
  1318. job.start()
  1319. @pyqtSlot("QStringList")
  1320. def setExpandedCategories(self, categories: List[str]) -> None:
  1321. categories = list(set(categories))
  1322. categories.sort()
  1323. joined = ";".join(categories)
  1324. if joined != self.getPreferences().getValue("cura/categories_expanded"):
  1325. self.getPreferences().setValue("cura/categories_expanded", joined)
  1326. self.expandedCategoriesChanged.emit()
  1327. expandedCategoriesChanged = pyqtSignal()
  1328. @pyqtProperty("QStringList", notify = expandedCategoriesChanged)
  1329. def expandedCategories(self) -> List[str]:
  1330. return self.getPreferences().getValue("cura/categories_expanded").split(";")
  1331. @pyqtSlot()
  1332. def mergeSelected(self):
  1333. self.groupSelected()
  1334. try:
  1335. group_node = Selection.getAllSelectedObjects()[0]
  1336. except Exception as e:
  1337. Logger.log("e", "mergeSelected: Exception: %s", e)
  1338. return
  1339. meshes = [node.getMeshData() for node in group_node.getAllChildren() if node.getMeshData()]
  1340. # Compute the center of the objects
  1341. object_centers = []
  1342. for mesh, node in zip(meshes, group_node.getChildren()):
  1343. transformed_mesh = mesh.getTransformed(Matrix()) # Forget about the transformations that the original object had.
  1344. center = transformed_mesh.getCenterPosition()
  1345. if center is not None:
  1346. object_centers.append(center)
  1347. if object_centers:
  1348. middle_x = sum([v.x for v in object_centers]) / len(object_centers)
  1349. middle_y = sum([v.y for v in object_centers]) / len(object_centers)
  1350. middle_z = sum([v.z for v in object_centers]) / len(object_centers)
  1351. offset = Vector(middle_x, middle_y, middle_z)
  1352. else:
  1353. offset = Vector(0, 0, 0)
  1354. # Move each node to the same position.
  1355. for mesh, node in zip(meshes, group_node.getChildren()):
  1356. node.setTransformation(Matrix()) # Removes any changes in position and rotation.
  1357. # Align the object around its zero position
  1358. # and also apply the offset to center it inside the group.
  1359. node.setPosition(-mesh.getZeroPosition() - offset)
  1360. # Use the previously found center of the group bounding box as the new location of the group
  1361. group_node.setPosition(group_node.getBoundingBox().center)
  1362. group_node.setName("MergedMesh") # add a specific name to distinguish this node
  1363. def updateOriginOfMergedMeshes(self, _):
  1364. """Updates origin position of all merged meshes"""
  1365. group_nodes = []
  1366. for node in DepthFirstIterator(self.getController().getScene().getRoot()):
  1367. if isinstance(node, CuraSceneNode) and node.getName() == "MergedMesh":
  1368. # Checking by name might be not enough, the merged mesh should has "GroupDecorator" decorator
  1369. for decorator in node.getDecorators():
  1370. if isinstance(decorator, GroupDecorator):
  1371. group_nodes.append(node)
  1372. break
  1373. for group_node in group_nodes:
  1374. meshes = [node.getMeshData() for node in group_node.getAllChildren() if node.getMeshData()]
  1375. # Compute the center of the objects
  1376. object_centers = []
  1377. # Forget about the translation that the original objects have
  1378. zero_translation = Matrix(data=numpy.zeros(3))
  1379. for mesh, node in zip(meshes, group_node.getChildren()):
  1380. transformation = node.getLocalTransformation()
  1381. transformation.setTranslation(zero_translation)
  1382. transformed_mesh = mesh.getTransformed(transformation)
  1383. center = transformed_mesh.getCenterPosition()
  1384. if center is not None:
  1385. object_centers.append(center)
  1386. if object_centers:
  1387. middle_x = sum([v.x for v in object_centers]) / len(object_centers)
  1388. middle_y = sum([v.y for v in object_centers]) / len(object_centers)
  1389. middle_z = sum([v.z for v in object_centers]) / len(object_centers)
  1390. offset = Vector(middle_x, middle_y, middle_z)
  1391. else:
  1392. offset = Vector(0, 0, 0)
  1393. # Move each node to the same position.
  1394. for mesh, node in zip(meshes, group_node.getChildren()):
  1395. transformation = node.getLocalTransformation()
  1396. transformation.setTranslation(zero_translation)
  1397. transformed_mesh = mesh.getTransformed(transformation)
  1398. # Align the object around its zero position
  1399. # and also apply the offset to center it inside the group.
  1400. node.setPosition(-transformed_mesh.getZeroPosition() - offset)
  1401. # Use the previously found center of the group bounding box as the new location of the group
  1402. group_node.setPosition(group_node.getBoundingBox().center)
  1403. @pyqtSlot()
  1404. def groupSelected(self) -> None:
  1405. # Create a group-node
  1406. group_node = CuraSceneNode()
  1407. group_decorator = GroupDecorator()
  1408. group_node.addDecorator(group_decorator)
  1409. group_node.addDecorator(ConvexHullDecorator())
  1410. group_node.addDecorator(BuildPlateDecorator(self.getMultiBuildPlateModel().activeBuildPlate))
  1411. group_node.setParent(self.getController().getScene().getRoot())
  1412. group_node.setSelectable(True)
  1413. center = Selection.getSelectionCenter()
  1414. group_node.setPosition(center)
  1415. group_node.setCenterPosition(center)
  1416. # Remove nodes that are directly parented to another selected node from the selection so they remain parented
  1417. selected_nodes = Selection.getAllSelectedObjects().copy()
  1418. for node in selected_nodes:
  1419. parent = node.getParent()
  1420. if parent is not None and parent in selected_nodes and not parent.callDecoration("isGroup"):
  1421. Selection.remove(node)
  1422. # Move selected nodes into the group-node
  1423. Selection.applyOperation(SetParentOperation, group_node)
  1424. # Deselect individual nodes and select the group-node instead
  1425. for node in group_node.getChildren():
  1426. Selection.remove(node)
  1427. Selection.add(group_node)
  1428. @pyqtSlot()
  1429. def ungroupSelected(self) -> None:
  1430. selected_objects = Selection.getAllSelectedObjects().copy()
  1431. for node in selected_objects:
  1432. if node.callDecoration("isGroup"):
  1433. op = GroupedOperation()
  1434. group_parent = node.getParent()
  1435. children = node.getChildren().copy()
  1436. for child in children:
  1437. # Ungroup only 1 level deep
  1438. if child.getParent() != node:
  1439. continue
  1440. # Set the parent of the children to the parent of the group-node
  1441. op.addOperation(SetParentOperation(child, group_parent))
  1442. # Add all individual nodes to the selection
  1443. Selection.add(child)
  1444. op.push()
  1445. # Note: The group removes itself from the scene once all its children have left it,
  1446. # see GroupDecorator._onChildrenChanged
  1447. def _createSplashScreen(self) -> Optional[CuraSplashScreen.CuraSplashScreen]:
  1448. if self._is_headless:
  1449. return None
  1450. return CuraSplashScreen.CuraSplashScreen()
  1451. def _onActiveMachineChanged(self):
  1452. pass
  1453. fileLoaded = pyqtSignal(str)
  1454. fileCompleted = pyqtSignal(str)
  1455. def _reloadMeshFinished(self, job) -> None:
  1456. """
  1457. Function called when ReadMeshJob finishes reloading a file in the background, then update node objects in the
  1458. scene from its source file. The function gets all the nodes that exist in the file through the job result, and
  1459. then finds the scene nodes that need to be refreshed by their name. Each job refreshes all nodes of a file.
  1460. Nodes that are not present in the updated file are kept in the scene.
  1461. :param job: The :py:class:`Uranium.UM.ReadMeshJob.ReadMeshJob` running in the background that reads all the
  1462. meshes in a file
  1463. """
  1464. job_result = job.getResult() # nodes that exist inside the file read by this job
  1465. if len(job_result) == 0:
  1466. Logger.log("e", "Reloading the mesh failed.")
  1467. return
  1468. renamed_nodes = {} # type: Dict[str, int]
  1469. # Find the node to be refreshed based on its id
  1470. for job_result_node in job_result:
  1471. mesh_data = job_result_node.getMeshData()
  1472. if not mesh_data:
  1473. Logger.log("w", "Could not find a mesh in reloaded node.")
  1474. continue
  1475. # Solves issues with object naming
  1476. result_node_name = job_result_node.getName()
  1477. if not result_node_name:
  1478. result_node_name = os.path.basename(mesh_data.getFileName())
  1479. if result_node_name in renamed_nodes: # objects may get renamed by ObjectsModel._renameNodes() when loaded
  1480. renamed_nodes[result_node_name] += 1
  1481. result_node_name = "{0}({1})".format(result_node_name, renamed_nodes[result_node_name])
  1482. else:
  1483. renamed_nodes[job_result_node.getName()] = 0
  1484. # Find the matching scene node to replace
  1485. scene_node = None
  1486. for replaced_node in job._nodes:
  1487. if replaced_node.getName() == result_node_name:
  1488. scene_node = replaced_node
  1489. break
  1490. if scene_node:
  1491. scene_node.setMeshData(mesh_data)
  1492. else:
  1493. # Current node is a new one in the file, or it's name has changed
  1494. # TODO: Load this mesh into the scene. Also alter the "_reloadJobFinished" action in UM.Scene
  1495. Logger.log("w", "Could not find matching node for object '{0}' in the scene.".format(result_node_name))
  1496. def _openFile(self, filename):
  1497. self.readLocalFile(QUrl.fromLocalFile(filename))
  1498. def _openUrl(self, url: QUrl) -> None:
  1499. if url.scheme() not in self._supported_url_schemes:
  1500. # only handle cura:// and slicer:// urls schemes
  1501. return
  1502. match url.host() + url.path():
  1503. case "open" | "open/":
  1504. query = QUrlQuery(url.query())
  1505. model_url = QUrl(query.queryItemValue("file", options=QUrl.ComponentFormattingOption.FullyDecoded))
  1506. def on_finish(response):
  1507. content_disposition_header_key = QByteArray("content-disposition".encode())
  1508. if not response.hasRawHeader(content_disposition_header_key):
  1509. Logger.log("w", "Could not find Content-Disposition header in response from {0}".format(
  1510. model_url.url()))
  1511. # Use the last part of the url as the filename, and assume it is an STL file
  1512. filename = model_url.path().split("/")[-1] + ".stl"
  1513. else:
  1514. # content_disposition is in the format
  1515. # ```
  1516. # content_disposition attachment; "filename=[FILENAME]"
  1517. # ```
  1518. # Use a regex to extract the filename
  1519. content_disposition = str(response.rawHeader(content_disposition_header_key).data(),
  1520. encoding='utf-8')
  1521. content_disposition_match = re.match(r'attachment; filename="(?P<filename>.*)"',
  1522. content_disposition)
  1523. assert content_disposition_match is not None
  1524. filename = content_disposition_match.group("filename")
  1525. tmp = tempfile.NamedTemporaryFile(suffix=filename, delete=False)
  1526. with open(tmp.name, "wb") as f:
  1527. f.write(response.readAll())
  1528. self.readLocalFile(QUrl.fromLocalFile(tmp.name), add_to_recent_files=False)
  1529. def on_error(*args, **kwargs):
  1530. Logger.log("w", "Could not download file from {0}".format(model_url.url()))
  1531. Message("Could not download file: " + str(model_url.url()),
  1532. title= "Loading Model failed",
  1533. message_type=Message.MessageType.ERROR).show()
  1534. return
  1535. self.getHttpRequestManager().get(
  1536. model_url.url(),
  1537. callback=on_finish,
  1538. error_callback=on_error,
  1539. )
  1540. case path:
  1541. Logger.log("w", "Unsupported url scheme path: {0}".format(path))
  1542. def _addProfileReader(self, profile_reader):
  1543. # TODO: Add the profile reader to the list of plug-ins that can be used when importing profiles.
  1544. pass
  1545. def _addProfileWriter(self, profile_writer):
  1546. pass
  1547. def _addBackendPlugin(self, backend_plugin: "BackendPlugin") -> None:
  1548. self._container_registry.addAdditionalSettingDefinitionsAppender(backend_plugin)
  1549. self._backend_plugins.append(backend_plugin)
  1550. def getBackendPlugins(self) -> List["BackendPlugin"]:
  1551. return self._backend_plugins
  1552. @pyqtSlot("QSize")
  1553. def setMinimumWindowSize(self, size):
  1554. main_window = self.getMainWindow()
  1555. if main_window:
  1556. main_window.setMinimumSize(size)
  1557. def getBuildVolume(self):
  1558. return self._volume
  1559. additionalComponentsChanged = pyqtSignal(str, arguments = ["areaId"])
  1560. @pyqtProperty("QVariantMap", notify = additionalComponentsChanged)
  1561. def additionalComponents(self):
  1562. return self._additional_components
  1563. @pyqtSlot(str, "QVariant")
  1564. def addAdditionalComponent(self, area_id: str, component):
  1565. """Add a component to a list of components to be reparented to another area in the GUI.
  1566. The actual reparenting is done by the area itself.
  1567. :param area_id: dentifying name of the area to which the component should be reparented
  1568. :param (QQuickComponent) component: The component that should be reparented
  1569. """
  1570. if area_id not in self._additional_components:
  1571. self._additional_components[area_id] = []
  1572. self._additional_components[area_id].append(component)
  1573. self.additionalComponentsChanged.emit(area_id)
  1574. @pyqtSlot(str)
  1575. def log(self, msg):
  1576. Logger.log("d", msg)
  1577. openProjectFile = pyqtSignal(QUrl, bool, arguments = ["project_file", "add_to_recent_files"]) # Emitted when a project file is about to open.
  1578. @pyqtSlot(QUrl, str, bool)
  1579. @pyqtSlot(QUrl, str)
  1580. @pyqtSlot(QUrl)
  1581. def readLocalFile(self, file: QUrl, project_mode: Optional[str] = None, add_to_recent_files: bool = True):
  1582. """Open a local file
  1583. :param project_mode: How to handle project files. Either None(default): Follow user preference, "open_as_model"
  1584. or "open_as_project". This parameter is only considered if the file is a project file.
  1585. :param add_to_recent_files: Whether or not to add the file as an option to the Recent Files list.
  1586. """
  1587. Logger.log("i", "Attempting to read file %s", file.toString())
  1588. if not file.isValid():
  1589. return
  1590. self._open_project_mode = project_mode
  1591. scene = self.getController().getScene()
  1592. for node in DepthFirstIterator(scene.getRoot()):
  1593. if node.callDecoration("isBlockSlicing"):
  1594. self.deleteAll()
  1595. break
  1596. is_project_file = self.checkIsValidProjectFile(file)
  1597. if self._open_project_mode is None:
  1598. self._open_project_mode = self.getPreferences().getValue("cura/choice_on_open_project")
  1599. if is_project_file and self._open_project_mode == "open_as_project":
  1600. # open as project immediately without presenting a dialog
  1601. workspace_handler = self.getWorkspaceFileHandler()
  1602. workspace_handler.readLocalFile(file, add_to_recent_files_hint = add_to_recent_files)
  1603. return
  1604. if is_project_file and self._open_project_mode == "always_ask":
  1605. # present a dialog asking to open as project or import models
  1606. self.callLater(self.openProjectFile.emit, file, add_to_recent_files)
  1607. return
  1608. # Either the file is a model file or we want to load only models from project. Continue to load models.
  1609. if self.getPreferences().getValue("cura/select_models_on_load"):
  1610. Selection.clear()
  1611. f = file.toLocalFile()
  1612. extension = os.path.splitext(f)[1]
  1613. extension = extension.lower()
  1614. filename = os.path.basename(f)
  1615. if self._currently_loading_files:
  1616. # If a non-slicable file is already being loaded, we prevent loading of any further non-slicable files
  1617. if extension in self._non_sliceable_extensions:
  1618. message = Message(
  1619. self._i18n_catalog.i18nc("@info:status",
  1620. "Only one G-code file can be loaded at a time. Skipped importing {0}",
  1621. filename),
  1622. title = self._i18n_catalog.i18nc("@info:title", "Warning"),
  1623. message_type = Message.MessageType.WARNING)
  1624. message.show()
  1625. return
  1626. # If file being loaded is non-slicable file, then prevent loading of any other files
  1627. extension = os.path.splitext(self._currently_loading_files[0])[1]
  1628. extension = extension.lower()
  1629. if extension in self._non_sliceable_extensions:
  1630. message = Message(
  1631. self._i18n_catalog.i18nc("@info:status",
  1632. "Can't open any other file if G-code is loading. Skipped importing {0}",
  1633. filename),
  1634. title = self._i18n_catalog.i18nc("@info:title", "Error"),
  1635. message_type = Message.MessageType.ERROR)
  1636. message.show()
  1637. return
  1638. self._currently_loading_files.append(f)
  1639. if extension in self._non_sliceable_extensions:
  1640. self.deleteAll(only_selectable = False)
  1641. job = ReadMeshJob(f, add_to_recent_files = add_to_recent_files)
  1642. job.finished.connect(self._readMeshFinished)
  1643. job.start()
  1644. def _readMeshFinished(self, job):
  1645. global_container_stack = self.getGlobalContainerStack()
  1646. if not global_container_stack:
  1647. Logger.log("w", "Can't load meshes before a printer is added.")
  1648. return
  1649. if not self._volume:
  1650. Logger.log("w", "Can't load meshes before the build volume is initialized")
  1651. return
  1652. nodes = job.getResult()
  1653. if nodes is None:
  1654. Logger.error("Read mesh job returned None. Mesh loading must have failed.")
  1655. return
  1656. file_name = job.getFileName()
  1657. file_name_lower = file_name.lower()
  1658. file_extension = file_name_lower.split(".")[-1]
  1659. self._currently_loading_files.remove(file_name)
  1660. self.fileLoaded.emit(file_name)
  1661. target_build_plate = self.getMultiBuildPlateModel().activeBuildPlate
  1662. root = self.getController().getScene().getRoot()
  1663. fixed_nodes = []
  1664. for node_ in DepthFirstIterator(root):
  1665. if node_.callDecoration("isSliceable") and node_.callDecoration("getBuildPlateNumber") == target_build_plate:
  1666. fixed_nodes.append(node_)
  1667. default_extruder_position = self.getMachineManager().defaultExtruderPosition
  1668. default_extruder_id = self._global_container_stack.extruderList[int(default_extruder_position)].getId()
  1669. select_models_on_load = self.getPreferences().getValue("cura/select_models_on_load")
  1670. nodes_to_arrange = [] # type: List[CuraSceneNode]
  1671. fixed_nodes = []
  1672. for node_ in DepthFirstIterator(self.getController().getScene().getRoot()):
  1673. # Only count sliceable objects
  1674. if node_.callDecoration("isSliceable"):
  1675. fixed_nodes.append(node_)
  1676. for original_node in nodes:
  1677. # Create a CuraSceneNode just if the original node is not that type
  1678. if isinstance(original_node, CuraSceneNode):
  1679. node = original_node
  1680. else:
  1681. node = CuraSceneNode()
  1682. node.setMeshData(original_node.getMeshData())
  1683. node.source_mime_type = original_node.source_mime_type
  1684. # Setting meshdata does not apply scaling.
  1685. if original_node.getScale() != Vector(1.0, 1.0, 1.0):
  1686. node.scale(original_node.getScale())
  1687. node.setSelectable(True)
  1688. if not node.getName():
  1689. node.setName(os.path.basename(file_name))
  1690. self.getBuildVolume().checkBoundsAndUpdate(node)
  1691. is_non_sliceable = "." + file_extension in self._non_sliceable_extensions
  1692. if is_non_sliceable:
  1693. # Need to switch first to the preview stage and then to layer view
  1694. self.callLater(lambda: (self.getController().setActiveStage("PreviewStage"),
  1695. self.getController().setActiveView("SimulationView")))
  1696. block_slicing_decorator = BlockSlicingDecorator()
  1697. node.addDecorator(block_slicing_decorator)
  1698. else:
  1699. sliceable_decorator = SliceableObjectDecorator()
  1700. node.addDecorator(sliceable_decorator)
  1701. scene = self.getController().getScene()
  1702. # If there is no convex hull for the node, start calculating it and continue.
  1703. if not node.getDecorator(ConvexHullDecorator):
  1704. node.addDecorator(ConvexHullDecorator())
  1705. for child in node.getAllChildren():
  1706. if not child.getDecorator(ConvexHullDecorator):
  1707. child.addDecorator(ConvexHullDecorator())
  1708. if file_extension != "3mf":
  1709. if node.callDecoration("isSliceable"):
  1710. # Ensure that the bottom of the bounding box is on the build plate
  1711. if node.getBoundingBox():
  1712. center_y = node.getWorldPosition().y - node.getBoundingBox().bottom
  1713. else:
  1714. center_y = 0
  1715. node.translate(Vector(0, center_y, 0))
  1716. nodes_to_arrange.append(node)
  1717. # If the file is a project,and models are to be loaded from a that project,
  1718. # models inside file should be arranged in buildplate.
  1719. elif self._open_project_mode == "open_as_model":
  1720. nodes_to_arrange.append(node)
  1721. # This node is deep copied from some other node which already has a BuildPlateDecorator, but the deepcopy
  1722. # of BuildPlateDecorator produces one that's associated with build plate -1. So, here we need to check if
  1723. # the BuildPlateDecorator exists or not and always set the correct build plate number.
  1724. build_plate_decorator = node.getDecorator(BuildPlateDecorator)
  1725. if build_plate_decorator is None:
  1726. build_plate_decorator = BuildPlateDecorator(target_build_plate)
  1727. node.addDecorator(build_plate_decorator)
  1728. build_plate_decorator.setBuildPlateNumber(target_build_plate)
  1729. operation = AddSceneNodeOperation(node, scene.getRoot())
  1730. operation.push()
  1731. node.callDecoration("setActiveExtruder", default_extruder_id)
  1732. scene.sceneChanged.emit(node)
  1733. if select_models_on_load:
  1734. Selection.add(node)
  1735. try:
  1736. arranger = Nest2DArrange(nodes_to_arrange, self.getBuildVolume(), fixed_nodes)
  1737. arranger.arrange()
  1738. except:
  1739. Logger.logException("e", "Failed to arrange the models")
  1740. # Ensure that we don't have any weird floaty objects (CURA-7855)
  1741. for node in nodes_to_arrange:
  1742. node.translate(Vector(0, -node.getBoundingBox().bottom, 0), SceneNode.TransformSpace.World)
  1743. self.fileCompleted.emit(file_name)
  1744. def addNonSliceableExtension(self, extension):
  1745. self._non_sliceable_extensions.append(extension)
  1746. @pyqtSlot(str, result=bool)
  1747. def checkIsValidProjectFile(self, file_url):
  1748. """Checks if the given file URL is a valid project file. """
  1749. file_path = QUrl(file_url).toLocalFile()
  1750. workspace_reader = self.getWorkspaceFileHandler().getReaderForFile(file_path)
  1751. if workspace_reader is None:
  1752. return False # non-project files won't get a reader
  1753. try:
  1754. result = workspace_reader.preRead(file_path, show_dialog=False)
  1755. return result == WorkspaceReader.PreReadResult.accepted
  1756. except:
  1757. Logger.logException("e", "Could not check file %s", file_url)
  1758. return False
  1759. def _onContextMenuRequested(self, x: float, y: float) -> None:
  1760. # Ensure we select the object if we request a context menu over an object without having a selection.
  1761. if Selection.hasSelection():
  1762. return
  1763. selection_pass = cast(SelectionPass, self.getRenderer().getRenderPass("selection"))
  1764. if not selection_pass: # If you right-click before the rendering has been initialised there might not be a selection pass yet.
  1765. return
  1766. node = self.getController().getScene().findObject(selection_pass.getIdAtPosition(x, y))
  1767. if not node:
  1768. return
  1769. parent = node.getParent()
  1770. while parent and parent.callDecoration("isGroup"):
  1771. node = parent
  1772. parent = node.getParent()
  1773. Selection.add(node)
  1774. @pyqtSlot()
  1775. def showMoreInformationDialogForAnonymousDataCollection(self):
  1776. try:
  1777. slice_info = self._plugin_registry.getPluginObject("SliceInfoPlugin")
  1778. slice_info.showMoreInfoDialog()
  1779. except PluginNotFoundError:
  1780. Logger.log("w", "Plugin SliceInfo was not found, so not able to show the info dialog.")
  1781. def addSidebarCustomMenuItem(self, menu_item: dict) -> None:
  1782. self._sidebar_custom_menu_items.append(menu_item)
  1783. def getSidebarCustomMenuItems(self) -> list:
  1784. return self._sidebar_custom_menu_items
  1785. @pyqtSlot(result = bool)
  1786. def shouldShowWelcomeDialog(self) -> bool:
  1787. # Only show the complete flow if there is no printer yet.
  1788. return self._machine_manager.activeMachine is None
  1789. @pyqtSlot(result = bool)
  1790. def shouldShowWhatsNewDialog(self) -> bool:
  1791. has_active_machine = self._machine_manager.activeMachine is not None
  1792. has_app_just_upgraded = self.hasJustUpdatedFromOldVersion()
  1793. # Only show the what's new dialog if there's no machine and we have just upgraded
  1794. show_whatsnew_only = has_active_machine and has_app_just_upgraded
  1795. return show_whatsnew_only
  1796. @pyqtSlot(result = int)
  1797. def appWidth(self) -> int:
  1798. main_window = QtApplication.getInstance().getMainWindow()
  1799. if main_window:
  1800. return main_window.width()
  1801. return 0
  1802. @pyqtSlot(result = int)
  1803. def appHeight(self) -> int:
  1804. main_window = QtApplication.getInstance().getMainWindow()
  1805. if main_window:
  1806. return main_window.height()
  1807. return 0
  1808. @pyqtSlot()
  1809. def deleteAll(self, only_selectable: bool = True) -> None:
  1810. super().deleteAll(only_selectable = only_selectable)
  1811. # Also remove nodes with LayerData
  1812. self._removeNodesWithLayerData(only_selectable = only_selectable)
  1813. def _removeNodesWithLayerData(self, only_selectable: bool = True) -> None:
  1814. Logger.log("i", "Clearing scene")
  1815. nodes = []
  1816. for node in DepthFirstIterator(self.getController().getScene().getRoot()):
  1817. if not isinstance(node, SceneNode):
  1818. continue
  1819. if not node.isEnabled():
  1820. continue
  1821. if (not node.getMeshData() and not node.callDecoration("getLayerData")) and not node.callDecoration("isGroup"):
  1822. continue # Node that doesn't have a mesh and is not a group.
  1823. if only_selectable and not node.isSelectable():
  1824. continue # Only remove nodes that are selectable.
  1825. if not node.callDecoration("isSliceable") and not node.callDecoration("getLayerData") and not node.callDecoration("isGroup"):
  1826. continue # Grouped nodes don't need resetting as their parent (the group) is reset)
  1827. nodes.append(node)
  1828. if nodes:
  1829. from UM.Operations.GroupedOperation import GroupedOperation
  1830. op = GroupedOperation()
  1831. for node in nodes:
  1832. from UM.Operations.RemoveSceneNodeOperation import RemoveSceneNodeOperation
  1833. op.addOperation(RemoveSceneNodeOperation(node))
  1834. # Reset the print information
  1835. self.getController().getScene().sceneChanged.emit(node)
  1836. op.push()
  1837. from UM.Scene.Selection import Selection
  1838. Selection.clear()
  1839. @classmethod
  1840. def getInstance(cls, *args, **kwargs) -> "CuraApplication":
  1841. return cast(CuraApplication, super().getInstance(**kwargs))
  1842. @pyqtProperty(bool, constant=True)
  1843. def isEnterprise(self) -> bool:
  1844. return ApplicationMetadata.IsEnterpriseVersion
  1845. @pyqtProperty("QVariant", constant=True)
  1846. def conanInstalls(self) -> Dict[str, Dict[str, str]]:
  1847. return self._conan_installs
  1848. @pyqtProperty("QVariant", constant=True)
  1849. def pythonInstalls(self) -> Dict[str, Dict[str, str]]:
  1850. return self._python_installs