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
|
import os
from launch_ros.actions import Node from launch_ros.substitutions import FindPackageShare
from launch import LaunchDescription from launch.actions import DeclareLaunchArgument, OpaqueFunction from launch.conditions import IfCondition from launch.substitutions import Command, FindExecutable, LaunchConfiguration, PathJoinSubstitution from launch_ros.parameter_descriptions import ParameterValue
import math import os import yaml
from ament_index_python.packages import get_package_share_directory
def construct_angle_radians(loader, node): """Utility function to construct radian values from yaml.""" value = loader.construct_scalar(node) try: return float(value) except SyntaxError: raise Exception("invalid expression: %s" % value)
def construct_angle_degrees(loader, node): """Utility function for converting degrees into radians from yaml.""" return math.radians(construct_angle_radians(loader, node))
def load_yaml(package_name, file_path): package_path = get_package_share_directory(package_name) absolute_file_path = os.path.join(package_path, file_path)
try: yaml.SafeLoader.add_constructor("!radians", construct_angle_radians) yaml.SafeLoader.add_constructor("!degrees", construct_angle_degrees) except Exception: raise Exception("yaml support not available; install python-yaml")
try: with open(absolute_file_path) as file: return yaml.safe_load(file) except OSError: return None
def load_yaml_abs(absolute_file_path): try: yaml.SafeLoader.add_constructor("!radians", construct_angle_radians) yaml.SafeLoader.add_constructor("!degrees", construct_angle_degrees) except Exception: raise Exception("yaml support not available; install python-yaml")
try: with open(absolute_file_path) as file: return yaml.safe_load(file) except OSError: return None
def launch_setup(context, *args, **kwargs):
description_package = LaunchConfiguration("description_package") description_file = LaunchConfiguration("description_file") moveit_config_package = LaunchConfiguration("moveit_config_package") moveit_joint_limits_file = LaunchConfiguration("moveit_joint_limits_file") moveit_config_file = LaunchConfiguration("moveit_config_file") prefix = LaunchConfiguration("prefix") use_sim_time = LaunchConfiguration("use_sim_time") launch_rviz = LaunchConfiguration("launch_rviz")
robot_description_content = Command( [ PathJoinSubstitution([FindExecutable(name="xacro")]), " ", PathJoinSubstitution([FindPackageShare(description_package), "config", description_file]), ] ) robot_description = {"robot_description": robot_description_content}
robot_description_semantic_content = Command( [ PathJoinSubstitution([FindExecutable(name="xacro")]), " ", PathJoinSubstitution( [FindPackageShare(moveit_config_package), "config", moveit_config_file] ), ] ) robot_description_semantic = {"robot_description_semantic": ParameterValue(robot_description_semantic_content, value_type=str)}
robot_description_kinematics = PathJoinSubstitution( [FindPackageShare(moveit_config_package), "config", "kinematics.yaml"] )
robot_description_planning = { "robot_description_planning": load_yaml( str(moveit_config_package.perform(context)), os.path.join("config", str(moveit_joint_limits_file.perform(context))), ) }
ompl_planning_pipeline_config = { "planning_plugin": "ompl_interface/OMPLPlanner", "request_adapters": """default_planner_request_adapters/AddTimeOptimalParameterization default_planner_request_adapters/FixWorkspaceBounds default_planner_request_adapters/FixStartStateBounds default_planner_request_adapters/FixStartStateCollision default_planner_request_adapters/FixStartStatePathConstraints""", "start_state_max_bounds_error": 0.1, }
ompl_planning_yaml = load_yaml("h1_moveit_config", "config/ompl_planning.yaml") ompl_planning_pipeline_config.update(ompl_planning_yaml)
cumotion_config_file_path = os.path.join( get_package_share_directory('isaac_ros_cumotion_moveit'), 'config', 'isaac_ros_cumotion_planning.yaml' ) with open(cumotion_config_file_path) as cumotion_config_file: cumotion_config = yaml.safe_load(cumotion_config_file)
planning_pipelines = {} planning_pipelines['planning_pipelines'] = ["isaac_ros_cumotion", "ompl"] planning_pipelines['default_planning_pipeline'] = "ompl" planning_pipelines['isaac_ros_cumotion'] = cumotion_config planning_pipelines['ompl'] = ompl_planning_pipeline_config
controllers_yaml = load_yaml("h1_moveit_config", "config/moveit_controllers.yaml") moveit_controllers = { "moveit_simple_controller_manager": controllers_yaml, "moveit_controller_manager": "moveit_simple_controller_manager/MoveItSimpleControllerManager", "trajectory_execution" : { "allowed_execution_duration_scaling": 2.0, "allowed_goal_duration_margin": 0.5, "allowed_start_tolerance": 0.01, } }
trajectory_execution = { "moveit_manage_controllers": False, "trajectory_execution.allowed_execution_duration_scaling": 1.2, "trajectory_execution.allowed_goal_duration_margin": 0.5, "trajectory_execution.allowed_start_tolerance": 0.01, }
planning_scene_monitor_parameters = { "publish_planning_scene": True, "publish_geometry_updates": True, "publish_state_updates": True, "publish_transforms_updates": True, "publish_robot_description":True, "publish_robot_description_semantic":True, }
move_group_node = Node( package="moveit_ros_move_group", executable="move_group", output="screen", parameters=[ robot_description, robot_description_semantic, robot_description_kinematics, robot_description_planning, planning_pipelines, trajectory_execution, moveit_controllers, planning_scene_monitor_parameters, {"use_sim_time": use_sim_time}, ], )
rviz_config_file = PathJoinSubstitution( [FindPackageShare(moveit_config_package), "config", "moveit.rviz"] ) rviz_node = Node( package="rviz2", condition=IfCondition(launch_rviz), executable="rviz2", name="rviz2_moveit", output="log", arguments=["-d", rviz_config_file], parameters=[ robot_description, robot_description_semantic, planning_pipelines, robot_description_kinematics, robot_description_planning, ], ) node_robot_state_publisher = Node( package='robot_state_publisher', executable='robot_state_publisher', parameters=[robot_description], output='screen' )
nodes_to_start = [ move_group_node, rviz_node, node_robot_state_publisher, ]
return nodes_to_start
def generate_launch_description(): declared_arguments = [] declared_arguments.append( DeclareLaunchArgument( "description_package", default_value="h1_moveit_config", description="Description package with robot URDF/XACRO files. Usually the argument \ is not set, it enables use of a custom description.", ) ) declared_arguments.append( DeclareLaunchArgument( "description_file", default_value="h1.urdf.xacro", description="URDF/XACRO description file with the robot.", ) ) declared_arguments.append( DeclareLaunchArgument( "moveit_config_package", default_value="h1_moveit_config", description="MoveIt config package with robot SRDF/XACRO files. Usually the argument \ is not set, it enables use of a custom moveit config.", ) ) declared_arguments.append( DeclareLaunchArgument( "moveit_config_file", default_value="h1_real.srdf.xacro", description="MoveIt SRDF/XACRO description file with the robot.", ) ) declared_arguments.append( DeclareLaunchArgument( "moveit_joint_limits_file", default_value="joint_limits.yaml", description="MoveIt joint limits that augment or override the values from the URDF robot_description.", ) ) declared_arguments.append( DeclareLaunchArgument( "use_sim_time", default_value="false", description="Make MoveIt to use simulation time. This is needed for the trajectory planing in simulation.", ) ) declared_arguments.append( DeclareLaunchArgument( "prefix", default_value='""', description="Prefix of the joint names, useful for \ multi-robot setup. If changed than also joint names in the controllers' configuration \ have to be updated.", ) ) declared_arguments.append( DeclareLaunchArgument("launch_rviz", default_value="true", description="Launch RViz?") )
return LaunchDescription(declared_arguments + [OpaqueFunction(function=launch_setup)])
|