Worlds, Bodies and Masses

Worlds

To use the ODE physics system, you need to have an OdeWorld. A world is an essential component in the physics structure, it holds all your rigid bodies and joints, and controls global parameters, such as gravity, for the scene.

#include "odeWorld.h"

OdeWorld myWorld;
myWorld.set_gravity(0, 0, -9.81);

As you can see, the gravity is set to a downward vector with length 9.81. This value is the average gravity acceleration on Earth. If you want objects to fall faster or slower, (e.g. if your game plays on the Moon, where the gravity acceleration is 1.62 m/s²) you need to change this value, but in most cases you want to leave it around 9.81 m/s².

Bodies and masses

In physics space, the objects that matter are called bodies. In order to have something affected by physics, you need to create an OdeBody, and set an OdeMass on it.

An OdeMass does not just define how much an object weighs. You roughly have to specify a shape so ODE will know how the mass is divided over the body. Also, ODE will have to know either the density of the object or the mass.

In the following example the geometry is assumed to be a box-shaped object made of lead, and the box has a width, length and height of 1 meter.

#include "odeBody.h"
#include "odeMass.h"

OdeBody myBody (myWorld);
myBody.set_position(somePandaObject.get_pos(render));
myBody.set_quaternion(somePandaObject.get_quat(render));
OdeMass myMass;
myMass.set_box(11340, 1, 1, 1);
myBody.set_mass(myMass);

First, the position and quaternion are set of the body, this is directly copied from the NodePath’s pos and quat; do note that when using getPos and getQuat, you need to get them in global coordinate space, this is done here by specifying render as first argument.

Then, a mass is set for the body. The first argument specified in the setBox call is the density of the object, the second is the dimensions (lx, ly, lz) of the box. Each material has it’s own density, for example, water has a density of 1000 kg/m³, copper usually between 8920 and 8960 kg/m³. The value shown in the example above is the density for lead.

There are of course cases where you don’t know the density (although it is easy to calculate), or when the object is not easy to fit in a box shape. OdeMass provides the following methods:

OdeMass.setZero()

Sets all the mass parameters to 0, meaning it will have no mass at all.

OdeMass.setSphere(density, radius)

This specifies that the object’s mass is spherical with the given radius.

OdeMass.setSphereTotal(total_mass, radius)

Use this if you don’t know the density but do know the total mass of the object.

OdeMass.setBox(density, lx, ly, lz)

Use this for box-shaped objects.

OdeMass.setBoxTotal(total_mass, lx, ly, lz)

The same as the former, but specifies the total mass instead of the density.

OdeMass.setCylinder(density, direction, radius, length)

To be used for objects shaped like a cylinder.

OdeMass.setCylinderTotal(total_mass, direction, radius, length)

Again the same cylinder, but specifies the mass instead of the density.

OdeMass.setCapsule(density, direction, radius, length)

A capsule is similar to a cylinder, but has capped edges.

OdeMass.setCapsuleTotal(total_mass, direction, radius, length)

Use this if you only have a mass and not the density.

OdeMass.add(other)

Adds an other OdeMass object to this mass.

OdeMass.adjust(total_mass)

Adjusts the mass parameters to have the specified total mass.

OdeMass.rotate(matrix)

Rotates the matrix using the specified Mat3 object.

More methods are listed on the OdeMass page in the API Reference.

For more complex shapes, you might want to decompose the object into several simple ones, and use the add(other) method to add the masses together. If that still isn’t enough, you might want to set the individual parameters of the mass using setParameters, which is not explained here because it that goes beyond the scope of this manual page. Note that the shape you set is not actually used for collisions: it’s just used to roughly determine how the mass is divided in the object.