Skip to content

Commit

Permalink
Merge pull request #18443 from Ultimaker/CURA-10542-Drop-to-buildplat…
Browse files Browse the repository at this point in the history
…e-permodel

Cura 10542 drop to buildplate permodel
  • Loading branch information
rburema authored Feb 27, 2024
2 parents 9f6e3ae + 5865906 commit 1a0622a
Show file tree
Hide file tree
Showing 11 changed files with 32 additions and 44 deletions.
6 changes: 3 additions & 3 deletions cura/CuraApplication.py
Original file line number Diff line number Diff line change
Expand Up @@ -1085,9 +1085,9 @@ def getMachineSettingsManager(self, *args) -> "MachineSettingsManager":
def getTextManager(self, *args) -> "TextManager":
return self._text_manager

@pyqtSlot(bool)
def getWorkplaceDropToBuildplate(self, drop_to_build_plate: bool) ->None:
return self._physics.setAppPerModelDropDown(drop_to_build_plate)
@pyqtSlot()
def setWorkplaceDropToBuildplate(self):
return self._physics.setAppAllModelDropDown()

def getCuraFormulaFunctions(self, *args) -> "CuraFormulaFunctions":
if self._cura_formula_functions is None:
Expand Down
22 changes: 8 additions & 14 deletions cura/PlatformPhysics.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,12 @@ def __init__(self, controller, volume):
self._minimum_gap = 2 # It is a minimum distance (in mm) between two models, applicable for small models

Application.getInstance().getPreferences().addPreference("physics/automatic_push_free", False)
Application.getInstance().getPreferences().addPreference("physics/automatic_drop_down", False)
self._app_per_model_drop = Application.getInstance().getPreferences().getValue("physics/automatic_drop_down")
Application.getInstance().getPreferences().addPreference("physics/automatic_drop_down", True)
self._app_all_model_drop = False

def getAppPerModelDropDown(self):
return self._app_per_model_drop

def setAppPerModelDropDown(self, drop_to_buildplate):
self._app_per_model_drop = drop_to_buildplate
def setAppAllModelDropDown(self):
self._app_all_model_drop = True
self._onChangeTimerFinished()

def _onSceneChanged(self, source):
if not source.callDecoration("isSliceable"):
Expand Down Expand Up @@ -78,7 +76,6 @@ def _onChangeTimerFinished(self):
# We try to shuffle all the nodes to prevent "locked" situations, where iteration B inverts iteration A.
# By shuffling the order of the nodes, this might happen a few times, but at some point it will resolve.
random.shuffle(nodes)

for node in nodes:
if node is root or not isinstance(node, SceneNode) or node.getBoundingBox() is None:
continue
Expand All @@ -88,12 +85,9 @@ def _onChangeTimerFinished(self):
# Move it downwards if bottom is above platform
move_vector = Vector()

# if per model drop is different then app_automatic_drop, in case of 3mf loading when user changes this setting for that model
if (self._app_per_model_drop != app_automatic_drop_down):
node.setSetting(SceneNodeSettings.AutoDropDown, self._app_per_model_drop)
if node.getSetting(SceneNodeSettings.AutoDropDown, self._app_per_model_drop) and not (node.getParent() and node.getParent().callDecoration("isGroup") or node.getParent() != root) and node.isEnabled(): #If an object is grouped, don't move it down
if (node.getSetting(SceneNodeSettings.AutoDropDown, app_automatic_drop_down) or self._app_all_model_drop) and not (node.getParent() and node.getParent().callDecoration("isGroup") or node.getParent() != root) and node.isEnabled():
z_offset = node.callDecoration("getZOffset") if node.getDecorator(ZOffsetDecorator.ZOffsetDecorator) else 0
move_vector = move_vector.set(y = -bbox.bottom + z_offset)
move_vector = move_vector.set(y=-bbox.bottom + z_offset)

# If there is no convex hull for the node, start calculating it and continue.
if not node.getDecorator(ConvexHullDecorator) and not node.callDecoration("isNonPrintingMesh") and node.callDecoration("getLayerData") is None:
Expand Down Expand Up @@ -180,7 +174,7 @@ def _onChangeTimerFinished(self):
op.push()

# setting this drop to model same as app_automatic_drop_down
self._app_per_model_drop = app_automatic_drop_down
self._app_all_model_drop = False
# After moving, we have to evaluate the boundary checks for nodes
build_volume.updateNodeBoundaryCheck()

Expand Down
5 changes: 5 additions & 0 deletions cura/Scene/CuraSceneNode.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from UM.Scene.SceneNodeDecorator import SceneNodeDecorator # To cast the deepcopy of every decorator back to SceneNodeDecorator.

import cura.CuraApplication # To get the build plate.
from UM.Scene.SceneNodeSettings import SceneNodeSettings
from cura.Settings.ExtruderStack import ExtruderStack # For typing.
from cura.Settings.SettingOverrideDecorator import SettingOverrideDecorator # For per-object settings.

Expand Down Expand Up @@ -41,6 +42,10 @@ def printOrder(self, new_value):
def isOutsideBuildArea(self) -> bool:
return self._outside_buildarea or self.callDecoration("getBuildPlateNumber") < 0

@property
def isDropDownEnabled(self) ->bool:
return self.getSetting(SceneNodeSettings.AutoDropDown, Application.getInstance().getPreferences().getValue("physics/automatic_drop_down"))

def isVisible(self) -> bool:
return super().isVisible() and self.callDecoration("getBuildPlateNumber") == cura.CuraApplication.CuraApplication.getInstance().getMultiBuildPlateModel().activeBuildPlate

Expand Down
4 changes: 4 additions & 0 deletions plugins/3MFReader/ThreeMFReader.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
from UM.MimeTypeDatabase import MimeTypeDatabase, MimeType
from UM.Scene.GroupDecorator import GroupDecorator
from UM.Scene.SceneNode import SceneNode # For typing.
from UM.Scene.SceneNodeSettings import SceneNodeSettings
from cura.CuraApplication import CuraApplication
from cura.Machines.ContainerTree import ContainerTree
from cura.Scene.BuildPlateDecorator import BuildPlateDecorator
Expand Down Expand Up @@ -180,6 +181,9 @@ def _convertSavitarNodeToUMNode(savitar_node: Savitar.SceneNode, file_name: str
if key == "print_order":
um_node.printOrder = int(setting_value)
continue
if key =="drop_to_buildplate":
um_node.setSetting(SceneNodeSettings.AutoDropDown, eval(setting_value))
continue
if key in known_setting_keys:
setting_container.setProperty(key, "value", setting_value)
else:
Expand Down
5 changes: 0 additions & 5 deletions plugins/3MFReader/WorkspaceDialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,11 +353,6 @@ def closeBackend(self) -> None:

Application.getInstance().getBackend().close()

@pyqtSlot(bool)
def setDropToBuildPlateForModel(self, drop_to_buildplate: bool) -> None:
CuraApplication.getInstance().getWorkplaceDropToBuildplate(drop_to_buildplate)


def setMaterialConflict(self, material_conflict: bool) -> None:
if self._has_material_conflict != material_conflict:
self._has_material_conflict = material_conflict
Expand Down
20 changes: 0 additions & 20 deletions plugins/3MFReader/WorkspaceDialog.qml
Original file line number Diff line number Diff line change
Expand Up @@ -351,25 +351,6 @@ UM.Dialog
}
}

Row
{
id: dropToBuildPlate
width: parent.width
height: childrenRect.height
spacing: UM.Theme.getSize("default_margin").width
UM.CheckBox
{
id: checkDropModels
text: catalog.i18nc("@text:window", "Drop models to buildplate")
checked: UM.Preferences.getValue("physics/automatic_drop_down")
onCheckedChanged: manager.setDropToBuildPlateForModel(checked)
}
function reloadValue()
{
checkDropModels.checked = UM.Preferences.getValue("physics/automatic_drop_down")
}
}

Row
{
id: clearBuildPlateWarning
Expand Down Expand Up @@ -492,7 +473,6 @@ UM.Dialog
materialSection.reloadValues()
profileSection.reloadValues()
printerSection.reloadValues()
dropToBuildPlate.reloadValue()
}
}
}
1 change: 1 addition & 0 deletions plugins/3MFWriter/ThreeMFWriter.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ def _convertUMNodeToSavitarNode(um_node,

if isinstance(um_node, CuraSceneNode):
savitar_node.setSetting("cura:print_order", str(um_node.printOrder))
savitar_node.setSetting("cura:drop_to_buildplate", str(um_node.isDropDownEnabled))

# Store the metadata.
for key, value in um_node.metadata.items():
Expand Down
10 changes: 9 additions & 1 deletion resources/qml/Actions.qml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Item
property alias printObjectAfterNext: printObjectAfterNextAction

property alias multiplyObject: multiplyObjectAction

property alias dropAll: dropAllAction
property alias selectAll: selectAllAction
property alias deleteAll: deleteAllAction
property alias reloadAll: reloadAllAction
Expand Down Expand Up @@ -490,6 +490,14 @@ Item
shortcut: "Shift+Ctrl+R"
}

Action
{
id: dropAllAction
text: catalog.i18nc("@action:inmenu menubar:edit","Drop All Models to buildplate")
shortcut: "Ctrl+B"
onTriggered: CuraApplication.setWorkplaceDropToBuildplate()
}

Action
{
id: resetAllTranslationAction
Expand Down
1 change: 1 addition & 0 deletions resources/qml/Menus/ContextMenu.qml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ Cura.Menu
Cura.MenuItem { action: Cura.Actions.reloadAll }
Cura.MenuItem { action: Cura.Actions.resetAllTranslation }
Cura.MenuItem { action: Cura.Actions.resetAll }
Cura.MenuItem { action: Cura.Actions.dropAll }

// Group actions
Cura.MenuSeparator {}
Expand Down
1 change: 1 addition & 0 deletions resources/qml/Menus/EditMenu.qml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Cura.Menu
Cura.MenuItem { action: Cura.Actions.deleteAll }
Cura.MenuItem { action: Cura.Actions.resetAllTranslation }
Cura.MenuItem { action: Cura.Actions.resetAll }
Cura.MenuItem { action: Cura.Actions.dropAll }
Cura.MenuSeparator { }
Cura.MenuItem { action: Cura.Actions.groupObjects }
Cura.MenuItem { action: Cura.Actions.mergeObjects }
Expand Down
1 change: 0 additions & 1 deletion resources/qml/Preferences/GeneralPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,6 @@ UM.PreferencesPage
onCheckedChanged:
{
UM.Preferences.setValue("physics/automatic_drop_down", checked)
CuraApplication.getWorkplaceDropToBuildplate(checked)
}
}
}
Expand Down

0 comments on commit 1a0622a

Please sign in to comment.