diff --git a/harmonic/ros2_interop.md b/harmonic/ros2_interop.md index db43f4675..197b832c6 100644 --- a/harmonic/ros2_interop.md +++ b/harmonic/ros2_interop.md @@ -20,7 +20,7 @@ Start a fresh ROS 2 Python launch file or add the following nodes in your projec 1. A robot model development and test setup 2. Configure RViz (and other ROS 2 tools) to control a robot model simulated by a Gazebo world -Note: The full source code for this tutorial can be found in the [ros_gz_example_brigup package](https://github.com/gazebosim/ros_gz_project_template/tree/main/ros_gz_example_bringup/launch) launch files. +Note: The full source code for this tutorial can be found in the [ros_gz_example_bringup package](https://github.com/gazebosim/ros_gz_project_template/tree/main/ros_gz_example_bringup/launch) launch files. ## Implementation diff --git a/harmonic/ros_gz_project_template_guide.md b/harmonic/ros_gz_project_template_guide.md index abc0ee718..25b99a07a 100644 --- a/harmonic/ros_gz_project_template_guide.md +++ b/harmonic/ros_gz_project_template_guide.md @@ -32,15 +32,53 @@ In this guide, you will learn how to use the `ros_gz_project_template` to create At this point you'll have the following packages in your project: -* `ros_gz_example_description` - holds the SDF description of the simulated system and any other simulation assets. -Simulation assets means your models or robot descriptions in URDF or SDF, meshes and materials files to help visualize different parts of the robot and finally compiling all these elements in a simulated world SDF. Existing assets can be used by installing the models directory and exporting the paths to your environment. -Setting up paths can be also automated using colcon environment hooks with a [DSV file](https://colcon.readthedocs.io/en/released/developer/environment.html?highlight=dsv#dsv-files) prepending the model share path to Gazebo resource path. +* `ros_gz_example_application` - holds ROS 2 specific code and configurations. Namely where control, planning or any high level algoritms reside. + +
├── CMakeLists.txt
+ ├── package.xml
+ ├── src
+ └── ...
+
+
+* `ros_gz_example_bringup` - holds launch files and high level utilities, communication bridge between ROS and Gazebo. Any robot or hardware specific configurations go here.
+
+ ├── config + │ ├── ros_gz_example_bridge.yaml + │ └── diff_drive.rviz + ├── launch + └── diff_drive.launch.py ++ +* `ros_gz_example_description` - holds the SDF description of the simulated system and any other [simulation assets](#accessing-simulation-assets). + +
├── hooks + │ └── ros_gz_example_description.dsv.in + ├── models + ├── diff_drive + ├── model.config + └── model.sdf +* `ros_gz_example_gazebo` - holds Gazebo specific code and configurations. Namely this is where user-defined worlds and custom system plugins end up. -* `ros_gz_example_application` - holds ROS 2 specific code and configurations. Namely where control, planning or any high level algoritms reside. +
├── include + │ └── ros_gz_example_gazebo + │ ├── BasicSystem.hh + │ └── FullSystem.hh + ├── src + │ ├── BasicSystem.cc + │ └── FullSystem.cc + ├── worlds + └── diff_drive.sdf +-* `ros_gz_example_bringup` - holds launch files and high level utilities, communication bridge between ROS and Gazebo. Any robot or hardware specific configurations go here. +## Accessing Simulation Assets + +Simulation assets include your models or robot descriptions in URDF or SDF, meshes and materials files to help visualize different parts of the robot and finally compiling all these elements in a simulated world SDF. Gazebo offers a few different mechanisms for locating those, initializing it's search on `GZ_SIM_RESOURCE_PATH` environment variable, see gz-sim API on [finding resources](https://gazebosim.org/api/sim/8/resources.html) for more details. + +There is a difference in how ROS and Gazebo resolves URIs, that the ROS side can handle `package://` URIs, but by default SDFormat only supports `model://`. Now `libsdformat` can convert `package://` to `model://` URIs. So existing simulation assets can be loaded by "installing" the models directory and exporting the model paths to your environment. + +This can be automated using colcon environment hooks (shell scripts provided by a ROS package) in a [DSV file](https://colcon.readthedocs.io/en/released/developer/environment.html?highlight=dsv#dsv-files). Whenever you source the setup file in a workspace these environment hooks are also being sourced. See an [example](https://github.com/gazebosim/ros_gz_project_template/blob/main/ros_gz_example_gazebo/hooks/ros_gz_example_gazebo.dsv.in) of prepending the model share path to `GZ_SIM_RESOURCE_PATH` which enables Gazebo to load models from a ROS package using the `model://` URI. ## Development