CuraApplication.py 104 KB

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