CuraApplication.py 96 KB

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