Skip to content

Commit

Permalink
Merge branch 'main' into CURA-11622_conan_v2
Browse files Browse the repository at this point in the history
  • Loading branch information
wawanbreton authored Dec 4, 2024
2 parents 10633d4 + 1b9f1c5 commit 8755e2a
Show file tree
Hide file tree
Showing 13 changed files with 36 additions and 26 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

<div align = center>

# ⚠️ ⚠️ On 03-12-2024, we will start merging branches on all the Cura-related repositories, that contain a migration of our Conan recipes to use Conan 2, and also a huge rework on many GitHub workflows. Unfortunately, we cannot test everything until it is merged, so it is very likely that some existing workflows will stop working. If you are a developer, you may also encounter troubles when updating your branches or updating your Conan dependencies. This message will be removed when the situation is stable enough. After that, please open new issues if you are still in trouble with the new recipes/workflows. Sorry for the inconvenience. ⚠️ ⚠️

[![Badge Issues]][Issues]   
[![Badge PullRequests]][PullRequests]   
[![Badge Closed]][Closed]
Expand Down
13 changes: 5 additions & 8 deletions plugins/SimulationView/SimulationView.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,12 +222,11 @@ def setTime(self, time: float) -> None:

self.setPath(i + fractional_value)

def advanceTime(self, time_increase: float) -> bool:
def advanceTime(self, time_increase: float) -> None:
"""
Advance the time by the given amount.
:param time_increase: The amount of time to advance (in seconds).
:return: True if the time was advanced, False if the end of the simulation was reached.
"""
total_duration = 0.0
if len(self.cumulativeLineDuration()) > 0:
Expand All @@ -237,15 +236,13 @@ def advanceTime(self, time_increase: float) -> bool:
# If we have reached the end of the simulation, go to the next layer.
if self.getCurrentLayer() == self.getMaxLayers():
# If we are already at the last layer, go to the first layer.
self.setTime(total_duration)
return False

# advance to the next layer, and reset the time
self.setLayer(self.getCurrentLayer() + 1)
self.setLayer(0)
else:
# advance to the next layer, and reset the time
self.setLayer(self.getCurrentLayer() + 1)
self.setTime(0.0)
else:
self.setTime(self._current_time + time_increase)
return True

def cumulativeLineDuration(self) -> List[float]:
# Make sure _cumulative_line_duration is initialized properly
Expand Down
4 changes: 1 addition & 3 deletions plugins/SimulationView/SimulationViewMainComponent.qml
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,7 @@ Item
{
// divide by 1000 to account for ms to s conversion
const advance_time = simulationTimer.interval / 1000.0;
if (!UM.SimulationView.advanceTime(advance_time)) {
playButton.pauseSimulation();
}
UM.SimulationView.advanceTime(advance_time);
// The status must be set here instead of in the resumeSimulation function otherwise it won't work
// correctly, because part of the logic is in this trigger function.
isSimulationPlaying = true;
Expand Down
6 changes: 3 additions & 3 deletions plugins/SimulationView/SimulationViewProxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ def numPaths(self):
def currentPath(self):
return self._simulation_view.getCurrentPath()

@pyqtSlot(float, result=bool)
def advanceTime(self, duration: float) -> bool:
return self._simulation_view.advanceTime(duration)
@pyqtSlot(float)
def advanceTime(self, duration: float) -> None:
self._simulation_view.advanceTime(duration)

@pyqtProperty(int, notify=currentPathChanged)
def minimumPath(self):
Expand Down
18 changes: 18 additions & 0 deletions resources/qml/Preferences/GeneralPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,9 @@ UM.PreferencesPage
UM.Preferences.resetPreference("general/restore_window_geometry")
restoreWindowPositionCheckbox.checked = boolCheck(UM.Preferences.getValue("general/restore_window_geometry"))

UM.Preferences.resetPreference("tool/flip_y_axis_tool_handle")
flipToolhandleYCheckbox.checked = boolcheck(UM.Preferences.getValue("tool/flip_y_axis_tool_handle"))

UM.Preferences.resetPreference("general/camera_perspective_mode")
//var defaultCameraMode = UM.Preferences.getValue("general/camera_perspective_mode")
// /setDefaultCameraMode(defaultCameraMode)
Expand Down Expand Up @@ -662,6 +665,21 @@ UM.PreferencesPage
}
}
}
UM.TooltipArea
{
width: childrenRect.width
height: childrenRect.height
text: catalog.i18nc("@info:tooltip", "Should the Y axis of the translate toolhandle be flipped?")

UM.CheckBox
{
id: flipToolhandleYCheckbox
text: catalog.i18nc("@option:check", "Flip toolhandle Y axis")
checked: boolCheck(UM.Preferences.getValue("tool/flip_y_axis_tool_handle"))
onCheckedChanged: UM.Preferences.setValue("tool/flip_y_axis_tool_handle", checked)
}
}


Item
{
Expand Down
1 change: 0 additions & 1 deletion tests/TestBuildVolume.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,4 +424,3 @@ def test_oneAtATime(self, build_volume: BuildVolume):
with patch("cura.Settings.ExtruderManager.ExtruderManager.getInstance"):
with patch.dict(self.setting_property_dict, {"print_sequence": {"value": "one_at_a_time"}}):
assert build_volume.getEdgeDisallowedSize() == 0.1

2 changes: 1 addition & 1 deletion tests/TestConvexHullDecorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,4 +188,4 @@ def test_compute2DConvexHullMeshDataGrouped(convex_hull_decorator):
copied_decorator._global_stack = mocked_stack
copied_decorator._getSettingProperty = MagicMock(return_value=0)
node.addDecorator(copied_decorator)
assert convex_hull_decorator._compute2DConvexHull() == Polygon([[-5.0, 5.0], [5.0, 5.0], [5.0, -5.0], [-5.0, -5.0]])
assert convex_hull_decorator._compute2DConvexHull() == Polygon([[-5.0, 5.0], [5.0, 5.0], [5.0, -5.0], [-5.0, -5.0]])
3 changes: 1 addition & 2 deletions tests/TestCuraSceneController.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,4 @@ def test_updateMaxBuildPlate(objects_model, multi_build_plate_model):
# And check what happens if we move down again!
controller._calcMaxBuildPlate = MagicMock(return_value=2)
controller.updateMaxBuildPlate(SceneNode())
assert controller._active_build_plate == 0 # We don't have any items anywhere, so default to 0

assert controller._active_build_plate == 0 # We don't have any items anywhere, so default to 0
2 changes: 0 additions & 2 deletions tests/TestCuraSceneNode.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,3 @@ def test_invalidConvexHull(self, cura_scene_node):
def test_outsideBuildArea(cura_scene_node):
cura_scene_node.setOutsideBuildArea(True)
assert cura_scene_node.isOutsideBuildArea


2 changes: 1 addition & 1 deletion tests/TestLayer.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ def test_elementCount():
layer_polygon.elementCount = 12
layer.polygons.append(layer_polygon)
assert layer.build(0, 0, [], [], [], [], [] ,[] , []) == (9001, 9002)
assert layer.elementCount == 12
assert layer.elementCount == 12
1 change: 0 additions & 1 deletion tests/TestObjectsModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,4 +226,3 @@ def test_updateOutsideBuildplate(self, objects_model, application_with_mocked_sc
"per_object_settings_count": 0,
"mesh_type": ""
}]

2 changes: 1 addition & 1 deletion tests/TestPrintInformation.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,4 +148,4 @@ def test_defineAbbreviatedMachineName():
# Test not ultimaker printer, name suffix should have first letter from the printer name
project_name = ["HelloWorld", ".3mf"]
print_information.setProjectName(project_name[0] + project_name[1])
assert printer_name[0] + "_" + project_name[0] == print_information._job_name
assert printer_name[0] + "_" + project_name[0] == print_information._job_name
6 changes: 3 additions & 3 deletions tests/TestProfileRequirements.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Copyright (c) 2018 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.

import configparser #To read the profiles.
import os #To join paths.
import configparser # To read the profiles.
import os # To join paths.
import pytest

## Makes sure that the variants for the Ultimaker 3 Extended are exactly the
Expand All @@ -13,7 +13,7 @@
# needed, but until then we should keep them the same. It's happened all too
# often that we updated the variants for the UM3 but forgot about the UM3E.
@pytest.mark.parametrize("um3_file, um3e_file", [
#List the corresponding files below.
# List the corresponding files below.
("ultimaker3_aa0.25.inst.cfg", "ultimaker3_extended_aa0.25.inst.cfg"),
("ultimaker3_aa0.8.inst.cfg", "ultimaker3_extended_aa0.8.inst.cfg"),
("ultimaker3_aa04.inst.cfg", "ultimaker3_extended_aa04.inst.cfg"),
Expand Down

0 comments on commit 8755e2a

Please sign in to comment.