Introduction

Gazebo is being migrated to Ignition Robotics, which is a refactor of Gazebo’s source code, breaking it into smaller reusable libraries and making them more powerful and flexible in the process. This project is about migrating skeleton animation, i.e. actors, so they can be loaded into Ignition Gazebo. The work will involve making sure that Collada skins and animations, as well as BVH animations, are loaded and animated correctly using SDFormat, Ignition Rendering and Ignition Common.

Quick Overview

What is done?

Actor simulation is now supported in Ignition Gazebo. The actor can be loaded from Collada files (.dae), and the actor animations can be specified by both Collada files (.dae) and BVH files (.bvh). We also add support to allow the Actor follow predefined trajectories.

Any demo?

gazebo_sequence

How to use?

<include> 
    <uri>https://fuel.ignitionrobotics.org/1.0/Mingfei/models/actor</uri>
</include>
<actor name="actor">
    <skin>
      <filename>YOUR_SKIN_FILENAME</filename>
    </skin>
    .... <!-- check following [usage] more details -->
</actor>

Implementations

The whole project consists of three phases, as illustrated in the figure below:

flowchart

Prepare actor for Gazebo

This phase consists of two parts: parsing actor sdf and testing the skins and animations.

The parsing process is standard: first obtain values from xml tag given by the definition, and then populate the properties with these values in sdformat. This parsing process is to prepare necessary information for Gazebo to load the actor.

The testing process is to check how to render meshes according to the rendering engine. An example of rendering the actor mesh is implemented in ign-rendering, i.e., actor_animation. This example tests how an actor mesh can be loaded from the Collada file, and how the animations can be played both from Collada files and BVH files. The following functions were added to class ignition::common::Skeleton and ignition::rendering::Mesh to make this example work (see ign-common PR & ign-rendering PR for more details):

Note that the ignition::rendering functions only provide a high-level abstraction of APIs that need to be implemented based on the rendering engines. This project only implemented the rendering functions for Ogre engine, and the implementations for other engines, e.g., Ogre2, are left as future work. Furthermore, for the BVH animation to be correctly loaded to Collada animation, some additional frame alignments, i.e., translations and rotations, need to be made between the animation skeleton and Collada skeleton.

The following gifs show the rendering results (with Ogre engine).

dae_animation

dae_animation

Note that this rendering of actor is a standalone example (not in Gazebo).

Load actor in Gazebo

The rendering of actor in Gazebo needs two more steps. The first step is to load the mesh and animations based on the input sdf, and the second step is to bridge the communication between the gz-client and the gz-server so that the actor can be visually presented at the client side.

  1. Step 1: Load the mesh and animations according to the sdf, see ign-gazebo PR:
    • ignition::gazebo::SdfEntityCreator::CreateEntities: Create all entities that exist in the sdf::Actor object and load their plugins.
    • ignition::gazebo::SceneManager::CreateActor: Create an actor
    • ignition::gazebo::SceneManager::ActorMeshById: Get a rendering mesh given an id
    • ignition::gazebo::SceneManager::ActorMeshAnimationAt: Get the animation of actor mesh given an id
  2. Step 2: Communication between the gz-client and the gz-server, see ign-gazebo PR & ign-msgs PR:
    • ignition::msgs::Actor: new message proto, including Animation, Waypoint, Trajectory and Actor
    • ignition::gazebo::components::Actor: This component contains actor source information.
    • ignition::gazebo::convert: conversion between an actor message and an actor

Update actor in Gazebo

The updating of an actor requires to update the global pose (i.e., following trajectories) in the world and the skeleton transformations (i.e., playing animations) in the local frames. These two process need to be synchronized to avoid any misalignment between the two poses (the global pose and the local pose). For example, if the walking animation (local poses) is not synchronized with the actor world pose (global pose), the actor may appear to be sliding on the floor rather than walking.

To synchronize the trajectory following and animation playing, a new class, TrajectoryInfo, was created under the same file with common::Animation, see ign-common PR.

The class TrajectoryInfo has a member function DistanceSoFar to calculate the elapsed distance in the trajectory. The elapsed distance is used to interpolate the local transformations in SceneManager::ActorMeshAnimationAt so that the local animation transformations are aligned with the global actor poses. Then the actor pose is updated in RenderUtil::Update as follows:

for (auto &tf : actorTransforms)
{
  auto actorMesh = this->dataPtr->sceneManager.ActorMeshById(tf.first);
  auto actorVisual = this->dataPtr->sceneManager.NodeById(tf.first);
  if (!actorMesh || !actorVisual)
    continue;

  math::Pose3d actorPose;
  actorPose.Pos() = tf.second["actorPose"].Translation();
  actorPose.Rot() = tf.second["actorPose"].Rotation();
  actorVisual->SetLocalPose(actorPose);
  tf.second.erase("actorPose");
  actorMesh->SetSkeletonLocalTransforms(tf.second);
}

Below is a demo to show the synchronized result.

gazebo_sequence

Several common actor models are created in the Fuel for quick demonstrations and fast prototyping.

Usage

There are two ways to load an actor. One is to use the existing models in the Fuel. Another is to explicitly create an actor tag in the sdf file.

Using existing models

Below are actor-related models from the Fuel:

To use the above model, we include the model in the sdf file. For example, the following lines use the actor which follows a sequence of trajectories with different animations:

<include> 
    <uri>https://fuel.ignitionrobotics.org/1.0/Mingfei/models/actor</uri>
</include>

Using actor tag

The actor can also be manually specified in the sdf models, .e.g.,

<actor name="actor">
    <pose>0 0 1.1 0 0 0</pose>
    <skin>
      <filename>YOUR_SKIN_FILENAME</filename>
      <scale>1.0</scale>
    </skin>
    <animation name="animation_name">
      <filename>YOUR_ANIMATION_FILE(support dae and bvh format)</filename>
      <scale>1.0</scale>
      <interpolate_x>true</interpolate_x>
    </animation>
    <script>
      <loop>true</loop>
      <delay_start>1.0</delay_start>
      <auto_start>true</auto_start>
      <trajectory id="0" type="animation_name">
        <waypoint>
          <time>0</time>
          <pose>0 0 1.0 0 0 0</pose>
        </waypoint>
        <waypoint>
          <time>3</time>
          <pose>0 0 1.0 0 0 0</pose>
        </waypoint>
      </trajectory>
    </script>
</actor>

Code release

Actor-related PRs:

All Actor-related PRs of this project are listed below.

Documentation-related PRs:

This project also created PRs to improve the readability of the installation docs.

Other bug-related PRs:

This project also solves several bugs in existing repositories.

Future work: