Skip to content

robotology/gz-sim-yarp-plugins

Repository files navigation

gz-sim-yarp-plugins

Warning

This repository contains a preliminary work in progress of integration of Modern Gazebo (gz) and YARP devices, a port of some functionalities of https://github.com/robotology/gazebo-yarp-plugins to Modern Gazebo.
The repo is working in progress, and public interfaces can change without warning.

Table of contents

Installation

conda (recommended)

You can easily install the C++ and Python library with via conda-forge using the following command:

conda install -c conda-forge gz-sim-yarp-plugins

If you are not familiar with conda or conda-forge, you can read an introduction document in conda-forge overview.

robotology-superbuild (advanced)

You may want to install gz-sim-yarp-plugins through the robotology-superbuild, an easy way to download, compile and install the robotology software on multiple operating systems, using the CMake build system and its extension YCM. To get gz-sim-yarp-plugins when using the robotology-superbuild, please enable the ROBOTOLOGY_USES_GZ_SIM CMake option of the superbuild.

Build from source (advanced)

If you want to build gz-sim-yarp-plugins directly from source, you can check the documentation in docs/build-from-source.md.

Usage

Once the plugins are available, you can see how to use the different plugins by looking in the directories contained in the tutorial folder of this repo. Each directory is an example, and contains a README that shows how to run that example.

Migrating from Gazebo Classic and gazebo-yarp-plugins

If you are migrating from an existing project made for Gazebo Classic and gazebo-yarp-plugins, check out the migration guide.

How to specify Yarp configurations

There are two ways to specify the Yarp configuration of a plugin:

Concerning yarpConfigurationFile, the preferred way to specify the path to the configuration file is by using Gazebo URIs. A URI has the following general scheme:

scheme:[//authority]path[?query][#fragment] 

For example, the configuration file for an IMU plugin can be specified as:

<plugin name="gzyarp::Imu" filename="gz-sim-yarp-imu-system">
    <yarpConfigurationFile>model://ergoCub/conf/imu.ini</yarpConfigurationFile>
</plugin>

This means that the imu.ini file location is relative to the ergoCub model path, that is automatically found by Gazebo through the GZ_SIM_SYSTEM_PLUGIN_PATH environment variable:

models
    └── ergoCub
        ├── conf
        │   ├── controlboard.ini
        │   ├── ft.ini
        │   └── imu.ini
        └── model.sdf

Warning

It is possible, but strongly discouraged, to specify the location of a yarpConfigurationFile using absolute paths or paths relative to the current working directory: the former approach is not portable, while the latter only works if the library is loaded from the directory it was intended to be loaded from.

Run Tests

To run the tests, just configure the project with the BUILD_TESTING option, and run ctest:

cd build
cmake -DBUILD_TESTING:BOOL=ON
ctest

For more details, check how the tests are run as part of the Continuous Integration, in .github/workflows.

Contributing

Refer to the Contributing page.

Maintainers