-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnavigation_multirobot.launch.py
More file actions
357 lines (325 loc) · 12.8 KB
/
navigation_multirobot.launch.py
File metadata and controls
357 lines (325 loc) · 12.8 KB
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
# Copyright (c) 2018 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
from ament_index_python.packages import get_package_share_directory
from launch import LaunchDescription
from launch.actions import (
DeclareLaunchArgument,
GroupAction,
IncludeLaunchDescription,
OpaqueFunction,
)
from launch.conditions import IfCondition, UnlessCondition
from launch.launch_description_sources import PythonLaunchDescriptionSource
from launch.substitutions import (
EqualsSubstitution,
LaunchConfiguration,
)
from launch_ros.actions import (
Node,
PushROSNamespace,
SetParameter,
SetRemap,
)
from launch_ros.descriptions import ParameterFile
from nav2_common.launch import ReplaceString, RewrittenYaml
import yaml
def launch_nodes(context):
"""Configure and launch all the navigation nodes."""
kobuki_dir = get_package_share_directory('kobuki')
launch_dir = os.path.join(kobuki_dir, 'launch', 'multirobot')
lifecycle_nodes_navigation = [
'controller_server',
'smoother_server',
'planner_server',
'behavior_server',
'velocity_smoother',
'collision_monitor',
'bt_navigator',
'waypoint_follower',
'docking_server',
]
lifecycle_nodes_localization = [
'map_server',
'amcl'
]
namespace = LaunchConfiguration('namespace')
use_rviz = LaunchConfiguration('rviz')
rviz_config_file = LaunchConfiguration('rviz_config')
use_sim_time = LaunchConfiguration('use_sim_time')
map_yaml_file = LaunchConfiguration('map')
params_file = LaunchConfiguration('params_file')
do_tf_remapping = LaunchConfiguration('do_tf_remapping')
use_localization = LaunchConfiguration('use_localization')
set_initial_pose = LaunchConfiguration('set_initial_pose').perform(context)
set_initial_pose = set_initial_pose == 'True' or set_initial_pose == 'true'
robots_config_file = LaunchConfiguration('robots_config_file').perform(context)
# Map fully qualified names to relative ones so the node's namespace can be prepended.
# In case of the transforms (tf), currently, there doesn't seem to be a better alternative
# https://github.com/ros/geometry2/issues/32
# https://github.com/ros/robot_state_publisher/pull/30
# TODO(orduno) Substitute with `PushNodeRemapping`
# https://github.com/ros2/launch_ros/issues/56
# remappings = [('/tf', 'tf'), ('/tf_static', 'tf_static')]
# Update(butakus): This is controlled by the do_tf_remapping launch argument.
# Condition to check if a namespace is used
is_empty_namespace = EqualsSubstitution(LaunchConfiguration('namespace'), '')
# Only applies when `use_namespace` is True.
# '<robot_namespace>' keyword shall be replaced by 'namespace' launch argument.
# Config file 'nav2_multirobot_params_template.yaml' serves as a default & example.
# User-defined config file should contain '<robot_namespace>' keyword for the replacements.
# Notes:
# If a namespace is used, a trailing '/' is added to the namespace.
# If a namespace is not used (left empty), the tag <robot_namespace> is removed.
params_file = ReplaceString(
source_file=params_file,
replacements={'<robot_namespace>': (namespace, '/')},
condition=UnlessCondition(is_empty_namespace),
)
params_file = ReplaceString(
source_file=params_file,
replacements={'<robot_namespace>': ''},
condition=IfCondition(is_empty_namespace),
)
configured_params = ParameterFile(
RewrittenYaml(
source_file=params_file,
root_key=namespace,
param_rewrites={},
convert_types=True,
),
allow_substs=True,
)
navigation_nodes = GroupAction(
actions=[
SetParameter('use_sim_time', use_sim_time),
PushROSNamespace(condition=UnlessCondition(is_empty_namespace), namespace=namespace),
SetRemap(condition=IfCondition(do_tf_remapping), src='/tf', dst='tf'),
SetRemap(condition=IfCondition(do_tf_remapping), src='/tf_static', dst='tf_static'),
Node(
package='nav2_controller',
executable='controller_server',
output='screen',
parameters=[configured_params],
remappings=[('cmd_vel', 'cmd_vel_nav')],
),
Node(
package='nav2_smoother',
executable='smoother_server',
name='smoother_server',
output='screen',
parameters=[configured_params],
),
Node(
package='nav2_planner',
executable='planner_server',
name='planner_server',
output='screen',
parameters=[configured_params],
),
Node(
package='nav2_behaviors',
executable='behavior_server',
name='behavior_server',
output='screen',
parameters=[configured_params],
remappings=[('cmd_vel', 'cmd_vel_nav')],
),
Node(
package='nav2_bt_navigator',
executable='bt_navigator',
name='bt_navigator',
output='screen',
parameters=[configured_params],
),
Node(
package='nav2_waypoint_follower',
executable='waypoint_follower',
name='waypoint_follower',
output='screen',
parameters=[configured_params],
),
Node(
package='nav2_velocity_smoother',
executable='velocity_smoother',
name='velocity_smoother',
output='screen',
parameters=[configured_params],
remappings=[('cmd_vel', 'cmd_vel_nav')],
),
Node(
package='nav2_collision_monitor',
executable='collision_monitor',
name='collision_monitor',
output='screen',
parameters=[configured_params],
),
Node(
package='opennav_docking',
executable='opennav_docking',
name='docking_server',
output='screen',
parameters=[configured_params],
),
Node(
package='nav2_lifecycle_manager',
executable='lifecycle_manager',
name='lifecycle_manager_navigation',
output='screen',
parameters=[{'autostart': True}, {'node_names': lifecycle_nodes_navigation}],
),
],
)
rviz_cmd = IncludeLaunchDescription(
PythonLaunchDescriptionSource(
os.path.join(launch_dir, 'rviz_namespaced.launch.py')
),
condition=IfCondition(use_rviz),
launch_arguments={
'use_sim_time': use_sim_time,
'namespace': namespace,
'do_tf_remapping': do_tf_remapping,
'rviz_config_file': rviz_config_file,
}.items()
)
# Parse initial pose from multirobot setup config and build amcl params
initial_pose = {
'x': 0.0,
'y': 0.0,
'z': 0.0,
'yaw': 0.0
}
if set_initial_pose and os.path.isfile(robots_config_file):
config_robots = yaml.safe_load(open(robots_config_file, 'r'))
for robot_args in config_robots['robots']:
if robot_args.get('namespace', '') == namespace.perform(context):
initial_pose['x'] = robot_args.get('x', 0.0)
initial_pose['y'] = robot_args.get('y', 0.0)
initial_pose['z'] = robot_args.get('z', 0.0)
initial_pose['yaw'] = robot_args.get('Y', 0.0)
break
amcl_extra_params = {
'set_initial_pose': set_initial_pose,
'initial_pose': initial_pose,
}
localization_nodes = GroupAction(
condition=IfCondition(use_localization),
actions=[
SetParameter('use_sim_time', use_sim_time),
PushROSNamespace(condition=UnlessCondition(is_empty_namespace), namespace=namespace),
SetRemap(condition=IfCondition(do_tf_remapping), src='/tf', dst='tf'),
SetRemap(condition=IfCondition(do_tf_remapping), src='/tf_static', dst='tf_static'),
Node(
package='nav2_map_server',
executable='map_server',
name='map_server',
output='screen',
parameters=[configured_params, {'yaml_filename': map_yaml_file}],
),
Node(
package='nav2_amcl',
executable='amcl',
name='amcl',
output='screen',
parameters=[configured_params, amcl_extra_params],
),
Node(
package='nav2_lifecycle_manager',
executable='lifecycle_manager',
name='lifecycle_manager_localization',
output='screen',
parameters=[{'autostart': True}, {'node_names': lifecycle_nodes_localization}],
),
],
)
return [navigation_nodes, rviz_cmd, localization_nodes]
def generate_launch_description():
# Get the launch directory
kobuki_dir = get_package_share_directory('kobuki')
declare_namespace_cmd = DeclareLaunchArgument(
'namespace', default_value='', description='Top-level namespace'
)
declare_use_rviz_cmd = DeclareLaunchArgument(
'rviz', default_value='True', description='Whether to launch RVIZ')
declare_rviz_config_file_cmd = DeclareLaunchArgument(
'rviz_config',
default_value=os.path.join(kobuki_dir, 'rviz', 'nav2_namespaced_view.rviz'),
description='Full path to the RVIZ config file to use',
)
declare_use_sim_time_cmd = DeclareLaunchArgument(
'use_sim_time',
default_value='true',
description='Use simulation (Gazebo) clock if true',
)
declare_map_yaml_cmd = DeclareLaunchArgument(
'map',
default_value=os.path.join(
kobuki_dir,
'maps',
'aws_house.yaml'),
description='Full path to map yaml file to load'
)
declare_params_file_cmd = DeclareLaunchArgument(
'params_file',
default_value=os.path.join(
kobuki_dir, 'config', 'multirobot',
'nav2_multirobot_params_template.yaml'
),
description='Full path to the ROS2 parameters file to use for all launched nodes',
)
declare_do_tf_remapping_cmd = DeclareLaunchArgument(
'do_tf_remapping',
default_value='False',
description='Whether to remap the tf topic to independent namespaces (/tf -> tf)',
)
declare_use_localization_cmd = DeclareLaunchArgument(
'use_localization', default_value='True',
description='Whether to enable localization or not'
)
declare_set_initial_pose_cmd = DeclareLaunchArgument(
'set_initial_pose', default_value='True',
description="""
Set the initial_pose param in amcl.
The pose value is read from the multirobot_config file.
"""
)
declare_robots_config_cmd = DeclareLaunchArgument(
'robots_config_file',
default_value=os.path.join(
get_package_share_directory('kobuki'),
'config', 'multirobot',
'multirobot_config.yaml'),
description="""
YAML file with the configuration of the robots to be spawned.
This file is only used to set the robot's initial pose.
""",
)
# Create the launch description and populate
ld = LaunchDescription()
# Declare the launch options
ld.add_action(declare_namespace_cmd)
ld.add_action(declare_use_rviz_cmd)
ld.add_action(declare_rviz_config_file_cmd)
ld.add_action(declare_map_yaml_cmd)
ld.add_action(declare_use_sim_time_cmd)
ld.add_action(declare_params_file_cmd)
ld.add_action(declare_do_tf_remapping_cmd)
ld.add_action(declare_use_localization_cmd)
ld.add_action(declare_set_initial_pose_cmd)
ld.add_action(declare_robots_config_cmd)
# Add the actions to launch all of the navigation nodes
ld.add_action(OpaqueFunction(
function=launch_nodes
))
return ld