-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RobotDescriptionLoader対応とmoveit_configの不必要な定義削除
- Loading branch information
Showing
1 changed file
with
100 additions
and
0 deletions.
There are no files selected for viewing
100 changes: 100 additions & 0 deletions
100
crane_plus_moveit_config/launch/run_move_group.launch.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
# Copyright 2020 RT 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 crane_plus_description.robot_description_loader \ | ||
import RobotDescriptionLoader | ||
from launch import LaunchDescription | ||
from launch.actions import DeclareLaunchArgument | ||
from launch.substitutions import LaunchConfiguration | ||
from moveit_configs_utils import MoveItConfigsBuilder | ||
from moveit_configs_utils.launch_utils import DeclareBooleanLaunchArg | ||
from moveit_configs_utils.launches import generate_move_group_launch | ||
from moveit_configs_utils.launches import generate_moveit_rviz_launch | ||
from moveit_configs_utils.launches import generate_rsp_launch | ||
from moveit_configs_utils.launches \ | ||
import generate_static_virtual_joint_tfs_launch | ||
|
||
|
||
def generate_launch_description(): | ||
ld = LaunchDescription() | ||
|
||
description_loader = RobotDescriptionLoader() | ||
|
||
ld.add_action( | ||
DeclareLaunchArgument( | ||
'loaded_description', | ||
default_value=description_loader.load(), | ||
description='Set robot_description text. \ | ||
It is recommended to use RobotDescriptionLoader() \ | ||
in crane_plus_description.', | ||
) | ||
) | ||
|
||
ld.add_action(DeclareBooleanLaunchArg('debug', default_value=False)) | ||
|
||
ld.add_action( | ||
DeclareLaunchArgument( | ||
'rviz_config', | ||
default_value=get_package_share_directory( | ||
'crane_plus_moveit_config' | ||
) | ||
+ '/config/moveit.rviz', | ||
description='Set the path to rviz configuration file.', | ||
) | ||
) | ||
|
||
declare_rviz_config_file = DeclareLaunchArgument( | ||
'rviz_config_file', | ||
default_value=get_package_share_directory('crane_plus_moveit_config') | ||
+ '/launch/run_move_group.rviz', | ||
description='Set the path to rviz configuration file.' | ||
) | ||
|
||
ld.add_action(declare_rviz_config_file) | ||
|
||
moveit_config = ( | ||
MoveItConfigsBuilder('crane_plus') | ||
.planning_scene_monitor( | ||
publish_robot_description=True, | ||
publish_robot_description_semantic=True, | ||
) | ||
.planning_pipelines(pipelines=['ompl']) | ||
.robot_description_kinematics(file_path='config/kinematics.yaml') | ||
.to_moveit_configs() | ||
) | ||
|
||
moveit_config.robot_description = { | ||
'robot_description': LaunchConfiguration('loaded_description') | ||
} | ||
|
||
moveit_config.move_group_capabilities = { | ||
'capabilities': '' | ||
} | ||
|
||
# Move group | ||
ld.add_entity(generate_move_group_launch(moveit_config)) | ||
|
||
# RViz | ||
ld.add_entity(generate_moveit_rviz_launch(moveit_config)) | ||
|
||
# Static TF | ||
ld.add_entity(generate_static_virtual_joint_tfs_launch(moveit_config)) | ||
|
||
# Publish TF | ||
ld.add_entity(generate_rsp_launch(moveit_config)) | ||
|
||
return ld |