-
Notifications
You must be signed in to change notification settings - Fork 0
/
behaviors.py
429 lines (355 loc) · 14.5 KB
/
behaviors.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
#! /usr/bin/env python
import rospy
import py_trees
import py_trees_ros
from queue_maker import GetObjectFromQueue
import actionlib
from local_path_planner.msg import (
moveRobotBaseAction,
moveRobotBaseActionGoal,
moveRobotBaseActionResult,
moveRobotBaseGoal,
)
from tidy_module.srv import (
IdentifyMisplacedObjects,
IdentifyMisplacedObjectsRequest,
GetCorrectPlacements,
GetCorrectPlacementsRequest,
)
from manipulation.msg import (
PickupAction,
PlaceAction,
OpenDrawerAction,
CloseDrawerAction,
PickupGoal,
PlaceGoal,
OpenDrawerGoal,
CloseDrawerGoal,
SetJointsToActuateAction,
SetJointsToActuateGoal,
)
from geometry_msgs.msg import Pose2D
from room_graph_navigator.msg import NavigateToRoomAction, NavigateToRoomGoal
from receptacle_navigator.msg import (
NavigateToReceptacleAction,
NavigateToReceptacleGoal,
)
from receptacle_navigator.srv import (
GetReceptacleLocations,
GetReceptacleLocationsRequest,
)
from copy import deepcopy
class RepeatUntilSuccessDecorator(py_trees.decorators.OneShot):
def update(self):
"""
Bounce if the child has already successfully completed.
Returns:
the behaviour's new status :class:`~py_trees.common.Status`
"""
for child in self.children:
child.setup(timeout=5.0)
if self.final_status:
self.logger.debug("{}.update()[bouncing]".format(self.__class__.__name__))
return self.final_status
if self.decorated.status in self.policy.value:
return self.decorated.status
elif self.decorated.status == py_trees.common.Status.INVALID:
return py_trees.common.Status.FAILURE
else:
return py_trees.common.Status.RUNNING
class NavigateToRoomBehavior(py_trees_ros.actions.FromBlackBoard):
def __init__(self, in_blackboard_key, out_blackboard_key=None):
super(NavigateToRoomBehavior, self).__init__(
name="RoomNavigator",
action_namespace="object_room_navigator",
action_spec=NavigateToRoomAction,
blackboard_key=in_blackboard_key,
)
def initialise(self):
self.action_goal = NavigateToRoomGoal()
self.action_goal.room = self.blackboard.goal.room
super(NavigateToRoomBehavior, self).initialise()
class NavigateToPose2DBehavior(py_trees_ros.actions.FromBlackBoard):
def __init__(self, blackboard_key):
super(NavigateToPose2DBehavior, self).__init__(
name="GotoPose",
action_namespace="move_fetch_robot_base",
action_spec=moveRobotBaseAction,
blackboard_key=blackboard_key,
)
def initialise(self):
self.action_goal = moveRobotBaseGoal()
self.action_goal.pose = self.blackboard.goal.pose
super(NavigateToPose2DBehavior, self).initialise()
class NavigateToReceptacleBehavior(py_trees_ros.actions.FromBlackBoard):
def __init__(self, blackboard_key):
super(NavigateToReceptacleBehavior, self).__init__(
name="ReceptacleNavigator",
action_namespace="receptacle_navigator",
action_spec=NavigateToReceptacleAction,
blackboard_key=blackboard_key,
)
def initialise(self):
self.action_goal = NavigateToReceptacleGoal()
self.action_goal.receptacle = self.blackboard.goal
super(NavigateToReceptacleBehavior, self).initialise()
class OpenDrawerBehavior(py_trees_ros.actions.FromBlackBoard):
def __init__(self, blackboard_key, out_blackboard_key="open_result"):
super(OpenDrawerBehavior, self).__init__(
name="OpenDrawer",
action_namespace="open_drawer_server",
action_spec=OpenDrawerAction,
blackboard_key=blackboard_key,
# out_blackboard_key = out_blackboard_key,
)
self.blackboard.register_key(
key="out",
access=py_trees.common.Access.WRITE,
remap_to=py_trees.blackboard.Blackboard.absolute_name(
"/", out_blackboard_key
),
)
def update(self):
status = super(OpenDrawerBehavior, self).update()
if status == py_trees.Status.SUCCESS:
self.set_response_to_blackboard()
return status
def set_response_to_blackboard(self):
opendrawer_res = {}
for goal_attribute in self.action_result.__slots__:
if goal_attribute != "success":
opendrawer_res[goal_attribute] = getattr(
self.action_result, goal_attribute
)
print(opendrawer_res)
self.blackboard.set("out", opendrawer_res)
class CloseDrawerBehavior(py_trees_ros.actions.FromBlackBoard):
def __init__(self, blackboard_key):
"""
blackboard key must be from opendrawer
"""
super(CloseDrawerBehavior, self).__init__(
name="CloseDrawer",
action_namespace="close_drawer_server",
action_spec=CloseDrawerAction,
blackboard_key=blackboard_key,
)
def initialise(self):
self.action_goal = CloseDrawerGoal()
for goal_attribute in self.action_goal.__slots__:
setattr(
self.action_goal, goal_attribute, self.blackboard.goal[goal_attribute]
)
super(CloseDrawerBehavior, self).initialise()
class NotPlaceInside(py_trees.behaviour.Behaviour):
"""Gets a location name from the queue"""
def __init__(self, name, blackboard_key):
super(NotPlaceInside, self).__init__(name)
self.blackboard = self.attach_blackboard_client(name=self.name)
self.blackboard.register_key(
key="goal",
access=py_trees.common.Access.READ,
remap_to=py_trees.blackboard.Blackboard.absolute_name(
"/", blackboard_key
),
)
def update(self):
"""Checks for the status of the navigation action"""
if "cabinet" in self.blackboard.goal.name or "drawer" in self.blackboard.goal.name:
return py_trees.common.Status.FAILURE
print("RETURNING SUCCESS")
return py_trees.common.Status.SUCCESS
class PickupBehavior(py_trees_ros.actions.FromBlackBoard):
def __init__(self, blackboard_key, out_blackboard_key="pickup_result", need_to_place = False, place_point_blackboard_key = None):
super(PickupBehavior, self).__init__(
name="PickupObject",
action_namespace="pickup_server",
action_spec=PickupAction,
blackboard_key=blackboard_key,
# out_blackboard_key = out_blackboard_key,
)
self.blackboard.register_key(
key="out",
access=py_trees.common.Access.WRITE,
remap_to=py_trees.blackboard.Blackboard.absolute_name(
"/", out_blackboard_key
),
)
self.need_to_place = need_to_place
if self.need_to_place:
self.blackboard.register_key(
key="place_point_key",
access=py_trees.common.Access.READ,
remap_to=py_trees.blackboard.Blackboard.absolute_name(
"/", place_point_blackboard_key
),
)
def update(self):
status = super(PickupBehavior, self).update()
if status == py_trees.Status.SUCCESS:
self.set_response_to_blackboard()
return status
def initialise(self):
self.action_goal = PickupGoal()
self.action_goal.object_id = self.blackboard.goal.object_id
if self.need_to_place:
self.action_goal.need_to_place = True
print("Result of opening : ", self.blackboard.place_point_key['place_point'])
self.action_goal.place_point = self.blackboard.place_point_key['place_point']
else:
self.action_goal.need_to_place = False
super(PickupBehavior, self).initialise()
def set_response_to_blackboard(self):
pickup_res = {}
for goal_attribute in self.action_result.__slots__:
if goal_attribute != "success":
pickup_res[goal_attribute] = getattr(self.action_result, goal_attribute)
print(pickup_res)
self.blackboard.set("out", pickup_res)
class PlaceBehavior(py_trees_ros.actions.FromBlackBoard):
def __init__(self, blackboard_key):
super(PlaceBehavior, self).__init__(
name="PlaceObject",
action_namespace="place_server",
action_spec=PlaceAction,
blackboard_key=blackboard_key,
)
def initialise(self):
self.action_goal = PlaceGoal()
for goal_attribute in self.action_goal.__slots__:
setattr(
self.action_goal, goal_attribute, self.blackboard.goal[goal_attribute]
)
super(PlaceBehavior, self).initialise()
class PrepareToActuateBehavior(py_trees_ros.actions.FromBlackBoard):
def __init__(self):
super(PrepareToActuateBehavior, self).__init__(
name="PrepareJointsForManip",
action_namespace="prepare_manipulation_joints",
action_spec=SetJointsToActuateAction,
blackboard_key="prepare_joints_key",
)
def initialise(self):
self.action_goal = SetJointsToActuateGoal()
super(PrepareToActuateBehavior, self).initialise()
class GetObjectFromQueueBehavior(py_trees.behaviour.Behaviour):
"""Gets a location name from the queue"""
def __init__(self, name, in_blackboard_key, out_blackboard_key):
super(GetObjectFromQueueBehavior, self).__init__(name)
self.blackboard = self.attach_blackboard_client(name=self.name)
self.blackboard.register_key(
key="object_list",
access=py_trees.common.Access.READ,
remap_to=py_trees.blackboard.Blackboard.absolute_name(
"/", in_blackboard_key
),
)
self.blackboard.register_key(
key=out_blackboard_key,
access=py_trees.common.Access.WRITE,
remap_to=py_trees.blackboard.Blackboard.absolute_name(
"/", out_blackboard_key
),
)
self.out_blackboard_key = out_blackboard_key
def initialise(self):
"""
Reset it
"""
super(GetObjectFromQueueBehavior, self).initialise()
self.sent_goal = False
def update(self):
# print("Calling update of get from queue : ", self.name)
objects_list = self.blackboard.object_list
if len(objects_list) == 0:
self.logger.info("No more objects available available")
return py_trees.common.Status.INVALID
else:
chosen_object = objects_list.pop(0)
# self.logger.info("Object chosen is : %s"%chosen_object)
self.blackboard.set(self.out_blackboard_key, chosen_object)
return py_trees.common.Status.SUCCESS
def terminate(self, new_status):
self.logger.info("Terminated with status %s" % new_status)
class IDMisplacedObjectBehavior(py_trees_ros.services.FromBlackBoard):
def __init__(self, out_blackboard_key, in_blackboard_key=None):
super(IDMisplacedObjectBehavior, self).__init__(
name="IDMisplacedObject",
action_namespace="objects_out_of_place_service",
action_spec=IdentifyMisplacedObjects,
blackboard_key="",
)
self.blackboard.register_key(
key="out",
access=py_trees.common.Access.WRITE,
remap_to=py_trees.blackboard.Blackboard.absolute_name(
"/", out_blackboard_key
),
)
def initialise(self):
self.action_goal = IdentifyMisplacedObjectsRequest()
# action_goal.object_id = self.blackboard.goal
super(IDMisplacedObjectBehavior, self).initialise()
def update(self):
status = super(IDMisplacedObjectBehavior, self).update()
if status == py_trees.Status.SUCCESS:
self.set_response_to_blackboard()
return status
def set_response_to_blackboard(self):
self.blackboard.set("out", list(deepcopy(self.action_result.object_locations)))
class GetPlacementCandidatesBehavior(py_trees_ros.services.FromBlackBoard):
def __init__(self, in_blackboard_key, out_blackboard_key):
super(GetPlacementCandidatesBehavior, self).__init__(
name="GetPlacementCandidates",
action_namespace="correct_object_placement_service",
action_spec=GetCorrectPlacements,
blackboard_key=in_blackboard_key,
)
self.blackboard.register_key(
key="out",
access=py_trees.common.Access.WRITE,
remap_to=py_trees.blackboard.Blackboard.absolute_name(
"/", out_blackboard_key
),
)
def initialise(self):
self.action_goal = GetCorrectPlacementsRequest()
self.action_goal.object_location = self.blackboard.goal
super(GetPlacementCandidatesBehavior, self).initialise()
def set_response_to_blackboard(self):
self.blackboard.set(
"out", list(deepcopy(self.action_result.placements.candidates))
)
def update(self):
status = super(GetPlacementCandidatesBehavior, self).update()
if status == py_trees.Status.SUCCESS:
self.set_response_to_blackboard()
return status
class GetReceptaclesLocationBehavior(py_trees_ros.services.FromBlackBoard):
def __init__(self, in_blackboard_key, out_blackboard_key):
super(GetReceptaclesLocationBehavior, self).__init__(
name="GetReceptaclesLocation",
action_namespace="available_receptacles",
action_spec=GetReceptacleLocations,
blackboard_key=in_blackboard_key,
)
self.blackboard.register_key(
key="out",
access=py_trees.common.Access.WRITE,
remap_to=py_trees.blackboard.Blackboard.absolute_name(
"/", out_blackboard_key
),
)
def initialise(self):
self.action_goal = GetReceptacleLocationsRequest()
self.action_goal.receptacles = self.blackboard.goal.receptacles
super(GetReceptaclesLocationBehavior, self).initialise()
def set_response_to_blackboard(self):
self.blackboard.set(
"out", list(deepcopy(self.action_result.receptacle_locations))
)
def update(self):
status = super(GetReceptaclesLocationBehavior, self).update()
if status == py_trees.Status.SUCCESS:
self.set_response_to_blackboard()
return status