ArrangeObjectsJob.py 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. # Copyright (c) 2017 Ultimaker B.V.
  2. # Cura is released under the terms of the AGPLv3 or higher.
  3. from UM.Job import Job
  4. from UM.Scene.SceneNode import SceneNode
  5. from UM.Math.Vector import Vector
  6. from UM.Operations.SetTransformOperation import SetTransformOperation
  7. from UM.Operations.TranslateOperation import TranslateOperation
  8. from UM.Operations.GroupedOperation import GroupedOperation
  9. from UM.Logger import Logger
  10. from UM.Message import Message
  11. from UM.i18n import i18nCatalog
  12. i18n_catalog = i18nCatalog("cura")
  13. from cura.ZOffsetDecorator import ZOffsetDecorator
  14. from cura.Arrange import Arrange
  15. from cura.ShapeArray import ShapeArray
  16. from typing import List
  17. class ArrangeObjectsJob(Job):
  18. def __init__(self, nodes: List[SceneNode], fixed_nodes: List[SceneNode], min_offset = 8):
  19. super().__init__()
  20. self._nodes = nodes
  21. self._fixed_nodes = fixed_nodes
  22. self._min_offset = min_offset
  23. def run(self):
  24. status_message = Message(i18n_catalog.i18nc("@info:status", "Finding new location for objects"), lifetime = 0, dismissable=False, progress = 0)
  25. status_message.show()
  26. arranger = Arrange.create(fixed_nodes = self._fixed_nodes)
  27. # Collect nodes to be placed
  28. nodes_arr = [] # fill with (size, node, offset_shape_arr, hull_shape_arr)
  29. for node in self._nodes:
  30. offset_shape_arr, hull_shape_arr = ShapeArray.fromNode(node, min_offset = self._min_offset)
  31. nodes_arr.append((offset_shape_arr.arr.shape[0] * offset_shape_arr.arr.shape[1], node, offset_shape_arr, hull_shape_arr))
  32. # Sort the nodes with the biggest area first.
  33. nodes_arr.sort(key=lambda item: item[0])
  34. nodes_arr.reverse()
  35. # Place nodes one at a time
  36. start_priority = 0
  37. last_priority = start_priority
  38. last_size = None
  39. grouped_operation = GroupedOperation()
  40. found_solution_for_all = True
  41. for idx, (size, node, offset_shape_arr, hull_shape_arr) in enumerate(nodes_arr):
  42. # For performance reasons, we assume that when a location does not fit,
  43. # it will also not fit for the next object (while what can be untrue).
  44. # We also skip possibilities by slicing through the possibilities (step = 10)
  45. if last_size == size: # This optimization works if many of the objects have the same size
  46. start_priority = last_priority
  47. else:
  48. start_priority = 0
  49. best_spot = arranger.bestSpot(offset_shape_arr, start_prio=start_priority, step=10)
  50. x, y = best_spot.x, best_spot.y
  51. node.removeDecorator(ZOffsetDecorator)
  52. if node.getBoundingBox():
  53. center_y = node.getWorldPosition().y - node.getBoundingBox().bottom
  54. else:
  55. center_y = 0
  56. if x is not None: # We could find a place
  57. last_size = size
  58. last_priority = best_spot.priority
  59. arranger.place(x, y, hull_shape_arr) # take place before the next one
  60. grouped_operation.addOperation(TranslateOperation(node, Vector(x, center_y, y), set_position = True))
  61. else:
  62. Logger.log("d", "Arrange all: could not find spot!")
  63. found_solution_for_all = False
  64. grouped_operation.addOperation(TranslateOperation(node, Vector(200, center_y, - idx * 20), set_position = True))
  65. status_message.setProgress((idx + 1) / len(nodes_arr) * 100)
  66. Job.yieldThread()
  67. grouped_operation.push()
  68. status_message.hide()
  69. if not found_solution_for_all:
  70. no_full_solution_message = Message(i18n_catalog.i18nc("@info:status", "Unable to find a location within the build volume for all objects"))
  71. no_full_solution_message.show()