\page resources Finding resources
Setting up and running a simulation can involve loading various kinds of resources, such as robot models and plugins, from different locations, which can include a local filesystem and online servers. Gazebo offers a few different mechanisms for locating required resources.
A plugin is a shared library that adheres to a specific API and is loaded at
runtime. Typically, plugins are scoped to perform a narrow set of features.
For example, the diff_drive
plugin, provided by Gazebo, implements
a differential drive controller for mobile robots.
Gazebo relies on plugins for rendering, physics simulation, sensor data generation, and many of the capabilities. The following sections describe how Gazebo finds and loads different types of plugins.
A system plugin is used by Gazebo, and provides an entry point for simulation customization and control. Refer to the \subpage createsystemplugins tutorial for information about creating your own system plugin.
System plugins may be loaded through:
- Tags in SDF files, where
filename
is the shared library andname
is the class to be loaded. A system plugin can be attached to different entities.- Attached to the world:
<world><plugin>
- Attached to a model:
<model><plugin>
- Attached to a sensor:
<sensor><plugin>
- Attached to the world:
- Passing the shared library and class to be loaded through PluginInfo (within ServerConfig) when instantiating the Server.
Gazebo will look for system plugins on the following paths, in order:
- All paths on the
GZ_SIM_SYSTEM_PLUGIN_PATH
environment variable $HOME/.gz/sim/plugins
- [Systems that are installed with Gazebo](https://gazebosim.org/api/gazebo/4.6/namespace gz_1_1gazebo_1_1systems.html)
Each Gazebo GUI plugin defines a widget.
GUI plugins may be loaded through:
- Tags in SDF world files, where
filename
is the shared library:<world><gui><plugin>
- Tags in GUI config files,
where
filename
is the shared library:<plugin>
- The plugin menu on the top-right of the screen.
Gazebo will look for GUI plugins on the following paths, in order:
- All paths set on the
GZ_GUI_PLUGIN_PATH
environment variable - GUI plugins that are installed with Gazebo
- Other paths added by calling
gz::gui::App()->AddPluginPath
~/.gz/gui/plugins
- [Plugins which are installed with Gazebo GUI](https://gazebosim.org/api/gui/4.2/namespace gz_1_1gui_1_1plugins.html)
Gazebo Physics uses a plugin architecture and its physics engines are built as plugins that are loaded at run time using Gazebo Plugin.
See the Physics engines tutorial for more details.
Gazebo Rendering uses a plugin architecture and its render engines are built as plugins that are loaded at run time using Gazebo Plugin.
At the moment, Gazebo Rendering will only look for render engine plugin
shared libraries installed within its <install_prefix>/lib
directory.
Likewise, the resources used by these engines are located in Gazebo
Rendering's <install_prefix>/share
directory.
Each unique type of sensor in Gazebo Sensors is a plugin. When a particular sensor type is requested, the relevant plugin is loaded by Gazebo Plugin and a sensor object is instantiated from it.
At the moment, Gazebo Sensors will only look for sensor plugin
shared libraries installed within its <install_prefix>/lib
directory.
Top-level entities such as models, lights and actors may be loaded through:
- Tags in SDF world files:
<world><model>
<world><light>
<world><actor>
<include><uri>
(path / URL)
- The
/world/<world_name>/create
service:- SDF file as string (
<model>
/<light>
/<actor>
root) - Path / URL to SDF file
- (TODO)
gz::msgs::Model
,gz::msgs::Light
- SDF file as string (
- Within a system, using SdfEntityCreator or directly creating components and entities.
Gazebo will look for URIs (path / URL) in the following, in order:
- All paths on the
GZ_SIM_RESOURCE_PATH
* environment variable (if path is URI, scheme is stripped) - Current running path / absolute path
- Gazebo Fuel
- Cache (i.e.
$HOME/.ignition/fuel
) - Web server
- Cache (i.e.
* The SDF_PATH
environment variable also works in some scenarios, but
it's not recommended when using Gazebo.
Mesh files may be loaded through:
- Tags in SDF files:
<geometry><mesh><uri>
<actor><skin><filename>
<actor><animation><filename>
Gazebo will look for URIs (path / URL) in the following, in order:
- Current running path / absolute path
- All paths on the
GZ_SIM_RESOURCE_PATH
* environment variable (if path is URI, scheme is stripped)
* The GZ_FILE_PATH
environment variable also works in some scenarios, but
it's not recommended when using Gazebo.
Gazebo Sim's GUI configuration can come from the following, in order:
- The command line option
--gui-config <file path>
- Plugins within SDF's
<world><gui>
$HOME/.gz/sim/<#>/gui.config
(if that file doesn't exist, the defaultgui.config
file that is installed with Gazebo will be copied to that location)