-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aea1346
commit 1f5a3a2
Showing
57 changed files
with
186 additions
and
2,099 deletions.
There are no files selected for viewing
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
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,115 @@ | ||
import os | ||
|
||
from ament_index_python.packages import get_package_share_directory | ||
from launch import LaunchDescription | ||
from launch.actions import OpaqueFunction, IncludeLaunchDescription, DeclareLaunchArgument | ||
from launch.launch_description_sources import PythonLaunchDescriptionSource | ||
from launch.substitutions import LaunchConfiguration, PathJoinSubstitution | ||
from launch_ros.substitutions import FindPackageShare | ||
from launch_ros.actions import Node | ||
|
||
TURTLEBOT3_MODEL = os.environ['TURTLEBOT3_MODEL'] | ||
|
||
def launch_setup(context, *args, **kwargs): | ||
|
||
map_name = LaunchConfiguration('map_name', default='map10') | ||
world_file_name = map_name.perform(context) + '.world.xml' | ||
world = os.path.join(get_package_share_directory('explorer_gazebo'), 'worlds', world_file_name) | ||
|
||
pkg_gazebo_ros = get_package_share_directory('gazebo_ros') | ||
nav2_file_dir = get_package_share_directory('turtlebot3_navigation2') | ||
gazebo_launch_file_dir = os.path.join(get_package_share_directory('turtlebot3_gazebo'), 'launch') | ||
cartographer_launch_file_dir = os.path.join(get_package_share_directory('explorer_cartographer'), 'launch') | ||
|
||
use_sim_time = LaunchConfiguration('use_sim_time', default='true') | ||
x_pose = LaunchConfiguration('x_pose', default='2.0') | ||
y_pose = LaunchConfiguration('y_pose', default='3.0') | ||
|
||
param_file_name = TURTLEBOT3_MODEL + '.yaml' | ||
|
||
gzserver_cmd = IncludeLaunchDescription( | ||
PythonLaunchDescriptionSource( | ||
os.path.join(pkg_gazebo_ros, 'launch', 'gzserver.launch.py') | ||
), | ||
launch_arguments={'world': world}.items() | ||
) | ||
|
||
gzclient_cmd = IncludeLaunchDescription( | ||
PythonLaunchDescriptionSource( | ||
os.path.join(pkg_gazebo_ros, 'launch', 'gzclient.launch.py') | ||
) | ||
) | ||
|
||
robot_state_publisher_cmd = IncludeLaunchDescription( | ||
PythonLaunchDescriptionSource( | ||
os.path.join(gazebo_launch_file_dir, 'robot_state_publisher.launch.py') | ||
), | ||
launch_arguments={'use_sim_time': use_sim_time}.items() | ||
) | ||
|
||
spawn_turtlebot_cmd = IncludeLaunchDescription( | ||
PythonLaunchDescriptionSource( | ||
os.path.join(gazebo_launch_file_dir, 'spawn_turtlebot3.launch.py') | ||
), | ||
launch_arguments={ | ||
'x_pose': x_pose, | ||
'y_pose': y_pose | ||
}.items() | ||
) | ||
|
||
cartographer_cmd = IncludeLaunchDescription( | ||
PythonLaunchDescriptionSource( | ||
os.path.join(cartographer_launch_file_dir, 'cartographer.launch.py') | ||
), | ||
launch_arguments={'use_sim_time': use_sim_time}.items(), | ||
) | ||
|
||
nav2_cmd = IncludeLaunchDescription( | ||
PythonLaunchDescriptionSource( | ||
os.path.join(get_package_share_directory('nav2_bringup'), 'launch', 'bringup_launch.py') | ||
), | ||
launch_arguments={ | ||
'map': os.path.join(nav2_file_dir, 'map', 'map.yaml'), | ||
'use_sim_time': use_sim_time, | ||
'params_file': os.path.join(nav2_file_dir, 'param', param_file_name)}.items(), | ||
) | ||
|
||
wanderer_cmd = Node( | ||
package='explorer_wanderer', | ||
executable='wanderer_server', | ||
name='wanderer_server', | ||
output='screen', | ||
) | ||
|
||
discoverer_cmd = Node( | ||
package='explorer_wanderer', | ||
executable='discoverer_server', | ||
name='discoverer_server', | ||
output='screen', | ||
) | ||
|
||
watchtower_cmd = Node( | ||
package='explorer_map_utils', | ||
executable='watchtower', | ||
name='watchtower', | ||
output='screen', | ||
parameters=[{'map_name': map_name}], | ||
) | ||
|
||
return [ | ||
gzserver_cmd, | ||
gzclient_cmd, | ||
robot_state_publisher_cmd, | ||
spawn_turtlebot_cmd, | ||
cartographer_cmd, | ||
nav2_cmd, | ||
wanderer_cmd, | ||
discoverer_cmd, | ||
watchtower_cmd, | ||
] | ||
|
||
|
||
def generate_launch_description(): | ||
return LaunchDescription([ | ||
OpaqueFunction(function=launch_setup) | ||
]) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.