Physics: Gravity, Collisions, Forces

A physics simulation is used in games and applications where objects are exposed to physical forces: Think of games like pool billiard and car racing simulators. Massive objects are pulled by gravity, forces cause objects to gain momentum, friction slows them down, solid objects collide and bounce off one another, etc. Action and Adventure games also make use of physics to implement solid obstacles, falling, and jumping.

The jMonkeyEngine3 has built-in support for jBullet Physics (based on Bullet Physics) via the com.jme3.bullet package. This article focuses mostly on the RigidBodyControl, but also introduces you to others.

If you are looking for info on how to respond to physics events such as collisions, read about Physics Listeners.

Technical Overview

Bullet physics runs internally at 60fps by default. This rate is not dependent on the actual framerate and it does not lock the framerate at 60fps. Instead, when the actual fps is higher than the physics framerate the system will display interpolated positions for the physics objects. When the framerate is lower than the physics framerate, the physics space will be stepped multiple times per frame to make up for the missing calculations. You create a Bullet PhysicsSpace in jME3 with a com.jme3.bullet.BulletAppState.

Internally, the updating and syncing of the actual physics objects happens in the following way:

  1. collision callbacks (BulletAppState.update())
  2. user update (simpleUpdate in main loop, update() in Controls and AppStates)
  3. physics to scenegraph syncing and applying (updateLogicalState())
  4. stepping physics (before or in parallel to Application.render())

When you use this physics simulation, values correspond to the following units:

  • 1 length unit (1.0f) equals 1 meter,
  • 1 weight unit (1.0f) equals 1 kilogram,
  • most torque and rotation values are expressed in radians.

Sample Code

Physics Application

A short overview of how to write a jME application with Physics capabilities:

Do the following once per application to gain access to the physicsSpace object:

  1. Make you application extend com.jme3.app.SimpleApplication.
  2. Create a BulletAppState field:
    private BulletAppState bulletAppState;
  3. Initialize your bulletAppState and attach it to the state manager:
    public void simpleInitApp() {
        bulletAppState = new BulletAppState();
        stateManager.attach(bulletAppState);

In your application, you can always access the BulletAppState via the ApplicationStateManager:

BulletAppState bas = app.getStateManager().getState(BulletAppState.class);

For each Spatial that you want to be physical:

  1. Create a CollisionShape.
  2. Create the PhysicsControl from the CollisionShape and a mass value.
  3. Add the PhysicsControl to its Spatial.
  4. Add the PhysicsControl to the PhysicsSpace.
  5. Attach the Spatial to the rootNode (as usual).
  6. (Optional) Implement the PhysicsCollisionListener interface to respond to PhysicsCollisionEvents.

Let's look at the details:

Create a CollisionShape

A CollisionShape is a simplified shape for which physics are easier to calculate than for the true shape of the model. This simplication approach speeds up the simulation greatly.

Before you can create a Physics Control, you must create a CollisionShape from the com.jme3.bullet.collision.shapes package. (Read the tip under "PhysicsControls Code Samples" how to use default CollisionShapes for Boxes and Spheres.)

Non-Mesh CollisionShape Usage Examples
BoxCollisionShape() Box-shaped behaviour, does not roll. Oblong or cubic objects like bricks, crates, furniture.
SphereCollisionShape() Spherical behaviour, can roll. Compact objects like apples, soccer balls, cannon balls, compact spaceships.
CylinderCollisionShape() Tube-shaped and disc-shaped behaviour, can roll on one side. Oblong objects like pillars.
Disc-shaped objects like wheels, plates.
CompoundCollisionShape() A CompoundCollisionShape allows custom combinations of shapes. Use the addChildShape() method on the compound object to add other shapes to it and position them relative to one another. A car with wheels (1 box + 4 cylinders), etc.
CapsuleCollisionShape() A built-in compound shape of a vertical cylinder with one sphere at the top and one sphere at the bottom. Typically used with CharacterControls: A cylinder-shaped body does not get stuck at corners and vertical obstacles; the rounded top and bottom do not get stuck on stair steps and ground obstacles. Persons, animals.
SimplexCollisionShape() A physical point, line, triangle, or rectangle Shape, defined by one to four points.Guardrails
PlaneCollisionShape() A 2D plane. Very fast. Flat solid floor or wall.

All non-mesh CollisionShapes can be used for dynamic, kinematic, as well as static Spatials. (Code samples see below)

Mesh CollisionShapes Usage Examples
MeshCollisionShape A mesh-accurate shape for static or kinematic Spatials. Can have complex shapes with openings and appendages.
Limitations: Collisions between two mesh-accurate shapes cannot be detected, only non-mesh shapes can collide with this shape. This Shape does not work with dynamic Spatials.
A whole static game level model.
HullCollisionShape A less accurate shape for dynamic Spatials that cannot easily be represented by a CompoundShape.
Limitations: The shape is convex (behaves as if you gift-wrapped the object), i.e. openings, appendages, etc, are not individually represented.
A dynamic 3D model.
GImpactCollisionShape A mesh-accurate shape for dynamic Spatials. It uses http://gimpact.sourceforge.net/.
Limitations: CPU intensive, use sparingly! We recommend using HullCollisionShape (or CompoundShape) instead to improve performance. Collisions between two mesh-accurate shapes cannot be detected, only non-mesh shapes can collide with this shape.
Complex dynamic objects (like spiders) in Virtual Reality or scientific simulations.
HeightFieldCollisionShape A mesh-accurate shape optimized for static terrains. This shape is much faster than other mesh-accurate shapes.
Limitations: Requires heightmap data. Collisions between two mesh-accurate shapes cannot be detected, only non-mesh shapes can collide with this shape.
Static terrains.

The mesh-accurate shapes can use a CollisionShapeFactory as constructor (code samples see below).

Pick the simplest and most applicable shape for the mesh for what you want to do: If you give a box a sphere collision shape, it will roll; if you give a ball a box collision shape, it will sit on a slope. If the shape is too big, the object will seem to float; if the shape is too small it will seem to sink into the ground. During development and debugging, you can make collision shapes visible by adding the following line after the bulletAppState initialization:

bulletAppState.getPhysicsSpace().enableDebug(assetManager);

CollisionShape Code Samples

  • One way of using a constructor and a Geometry's mesh for static Spatials:
    MeshCollisionShape level_shape = 
        new MeshCollisionShape(level_geo.getMesh());
  • One way of using a constructor and a Geometry's mesh for dynamic Spatials:
    HullCollisionShape shape = 
        new HullCollisionShape(katamari_geo.getMesh());
  • Creating a dynamic compound shape for a whole Node and subnodes:
    CompoundCollisionShape myComplexShape =
        CollisionShapeFactory.createMeshShape((Node) myComplexGeometry );
  • Creating a dynamic HullCollisionShape shape (or CompoundCollisionShape with HullCollisionShapes as children) for a Geometry:
    CollisionShape shape = 
        CollisionShapeFactory.createDynamicMeshShape(spaceCraft);
  • An angular, non-mesh-accurate compound shape:
    CompoundCollisionShape boxShape =
        CollisionShapeFactory.createBoxCompoundShape((Node) crate_geo);
  • A round, non-mesh-accurate compound shape:
    SphereCollisionShape sphereShape =
        new SphereCollisionShape(1.0f);

Create PhysicsControl

BulletPhysics are available in jME3 through PhysicsControls classes from the com.jme3.bullet.control package. jME3's PhysicsControl classes directly extend BulletPhysics objects and are the recommended way to use physics in a jME3 application. PhysicsControls are flexible and can be added to any Spatial to make it act according to physical properties.

Standard PhysicsControls Usage Examples
RigidBodyControlThe most commonly used PhysicsControl. You can use it for dynamic objects (solid objects that freely affected by collisions, forces, or gravity), for static objects (solid but not affected by any forces), or kinematic objects (remote-controlled solid objects). Impacting projectiles, moving obstacles like crates, rolling and bouncing balls, elevators, flying aircaft or space ships.
Solid immobile floors, walls, static obstacles.
GhostControlUse for collision and intersection detection between physical objects. A GhostControl itself is non-solid and invisible. GhostControl moves with the Spatial it is attached to. Use GhostControls to implement custom game interactions by adding it to a visible Geometry. A monster's "aggro radius", CharacterControl collisions, motion detectors, photo-electric alarm sensors, poisonous or radioactive perimeters, life-draining ghosts, etc.
Special PhysicsControls Usage Examples
VehicleControl
PhysicsVehicleWheel
Special Control used for "terrestrial" vehicles with suspension and wheels. Cars, tanks, hover crafts, ships, motorcycles…
CharacterControlSpecial Control used for Walking Characters.Upright walking persons, animals, robots…
RagDollControlSpecial Control used for collapsing, flailing, or falling characters Falling persons, animals, robots, "Rag dolls"

Click the links for details on the special PhysicsControls. This article is about RigidBodyControl.

PhysicsControls Code Samples

The PhysicsControl constructors expect a Collision Shape and a mass (a float in kilogram). The most commonly used PhysicsControl is the RigidBodyControl:

RigidBodyControl myThing_phys = 
    new RigidBodyControl( myThing_shape , 123.0f ); // dynamic
RigidBodyControl myDungeon_phys = 
    new RigidBodyControl( myDungeon_shape , 0.0f ); // static 

When you create the PhysicsControl, the mass value makes an important distinction: Set the mass to a non-zero value to create a dynamic object that can fall or roll, etc. Set the mass value to zero to create a static object, such as floor, wall, etc. If you give your floor a mass, it will fall out of the scene!

The following creates a box Geometry with the correct default BoxCollisionShape:

Box b = new Box(1,1,1);
Geometry box_geo = new Geometry("Box", b);
box_geo.addControl(new RigidBodyControl( 1.0f )); // explicit non-zero mass, implicit BoxCollisionShape

The following creates a MeshCollisionShape for a whole loaded (static) scene:

...
gameLevel.addControl(new RigidBodyControl(0.0f)); // explicit zero mass, implicit MeshCollisionShape

Spheres and Boxes automatically fall back on the correct default CollisionShape if you do not specify a CollisionShape in the RigidBodyControl constructor. Complex static objects can fall back on MeshCollisionShapes.

Add PhysicsControl to Spatial

For each physical Spatial in the scene:

  1. Add a PhysicsControl to a Spatial.
    myThing_geo.addControl(myThing_phys);
  2. Remember to also attach the Spatial to the rootNode, as always!

Add PhysicsControl to PhysicsSpace

The PhysicsSpace is an object in BulletAppState that is like a rootNode for Physics Controls.

  • Just like you add the Geometry to the rootNode, you add its PhysicsControl to the PhysicsSpace.
    bulletAppState.getPhysicsSpace().add(myThing_phys); 
    rootNode.attachChild(myThing_geo); 
  • When you remove a Geometry from the scene and detach it from the rootNode, also remove the PhysicsControl from the PhysicsSpace:
    bulletAppState.getPhysicsSpace().remove(myThing_phys);
    myThing_geo.removeFromParent();

You can either add the PhysicsControl to the PhysicsSpace, or add the PhysicsControl to the Geometry and then add the Geometry to the PhysicsSpace. jME3 understands both and the outcome is the same.

PhysicsSpace Code Samples

The PhysicsSpace also manages global physics settings. Typically, you can leave the defaults, and you don't need to change the following settings:

  • Specify physics accuracy.
    bulletAppState.getPhysicsSpace().setAccuracy(1f/60f;);
  • Specify global gravity.
    bulletAppState.getPhysicsSpace().setGravity(new Vector3f(0, -9.81f, 0));
  • Specify the size of the physics space as two opposite corners (only applies to AXIS_SWEEP broadphase).
    bulletAppState.getPhysicsSpace().setWorldMax(new Vector3f(10000f, 10000f, 10000f));
    bulletAppState.getPhysicsSpace().setWorldMin(new Vector3f(-10000f, -10000f, -10000f));

Specify Physical Properties

After you have registered, attached, and added everything, you can adjust physical properties or apply forces.

On a RigidBodyControl, you can set the following physical properties.

RigidBodyControl Method Property Examples
setGravity(new Vector3f(0f,-9.81f,0f)) You can change the gravity of individual physics objects after they were added to the PhysicsSpace. Gravity is a vector pointing from this Spatial towards the source of gravity. The longer the vector, the stronger is gravity.
If gravity is the same absolute direction for all objects (e.g. on a planet surface), set this vector globally on the PhysicsSpace object and not individually.
If the center of gravity is relative (e.g. towards a black hole) then setGravity() on each Spatial to constantly adjust the gravity vectors at each tick of their update() loops.
For planet earth:
new Vector3f(0f,-9.81f,0f)
setMass(1f) Sets the mass in kilogram. Dynamic objects have masses > 0.0f. Heavy dynamic objects need more force to be moved and light ones move with small amounts of force.
Static immobile objects (walls, floors, including buildings and terrains) must have a mass of zero!
Person: 60f, ball: 1.0f
Floor: 0.0f (!)
setFriction(1f) Friction.
Slippery objects have low friction. The ground has high friction.
Ice, slides: 0.0f
Soil, concrete, rock: 1.0f
setRestitution(0.0f) Bounciness. By default objects are not bouncy (0.0f). For a bouncy rubber object set this > 0.0f.
This setting has an impact on performance, so use it sparingly.
Brick: 0.0f
Rubber ball: 1.0f

On a RigidBodyControl, you can apply the following physical forces:

RigidBodyControl Method Motion
setPhysicsLocation()Positions the objects. Do not use setLocalTranslation() for physical objects. Important: Make certain not to make CollisionShapes overlap when positioning them.
setPhysicsRotation()Rotates the object. Do not use setLocalRotate() for physical objects.
setCcdMotionThreshold(0.1f) The amount of motion in 1 physics tick to trigger the continuous motion detection. Rarely used, but necessary if you need to fiddle with details.
setKinematic(true) By default, RigidBodyControls are dynamic (kinematic=false) and are affected by forces. If you set kinematic=true, the object is no longer affected by forces, but it still affects others. A kinematic is solid, and must have a mass.
(See detailed explanation below.)

Kinematic vs Dynamic vs Static

All physical objects…

  • must not overlap.
  • can detect collisions and report several values about the impact.
  • can respond to collisions dynamically, or statically, or kinematically.
Property Static Kinematic Dynamic
ExamplesImmobile obstacles: Floors, walls, buildings, …Remote-controlled solid objects: Airships, meteorites, elevators, doors; networked or remote-controlled NPCs; invisible "airhooks" for hinges and joints.Interactive objects: Rolling balls, movable crates, falling pillars, zero-g space ship…
Does it have a mass?no, 0.0fyes1), >0.0f yes, >0.0f
How does it move?neversetLocalTranslation();setLinearVelocity(); applyForce();
setWalkDirection(); for CharacterControl
How to place in scene?setPhysicsLocation();
setPhysicsRotation()
setLocalTranslation();
setLocalRotation();
setPhysicsLocation();
setPhysicsRotation()
Can it move and push others?noyesyes
Is is affected by forces?
(Falls when it mid-air? Can be pushed by others?)
nonoyes
How to activate this behaviour? setMass(0f);
setKinematic(false);
setMass(1f);
setKinematic(true);
setMass(1f);
setKinematic(false);

When Do I Use Kinematic Objects?

  • Kinematics are solid and characters can "stand" on them.
  • When they collide, Kinematics push dynamic objects, but a dynamic object never pushes a Kinematic.
  • You can hang kinematics up "in mid-air" and attach other PhysicsControls to them using hinges and joints. Picture them as "air hooks" for flying aircraft carriers, floating islands in the clouds, suspension bridges, swings, chains…
  • You can use Kinematics to create mobile remote-controlled physical objects, such as moving elevator platforms, flying blimps/airships. You have full control how Kinematics move, they never "fall" or "topple over".

The position of a kinematic RigidBodyControl is updated automatically depending on its spatial's translation. You move Spatials with a kinematic RigidBodyControl programmatically, that means you write translation and rotation code in the update loop. You describe the motion of kinematic objects either by using methods such as setLocalTranslation() or move(), or by using a MotionPath.

Forces: Moving Dynamic Objects

Use the following methods to move dynamic physical objects.

PhysicsControl Method Motion
setLinearVelocity(new Vector3f(0f,0f,1f)) Set the linear speed of this object.
setAngularVelocity(new Vector3f(0f,0f,1f)) Set the rotational speed of the object; the x, y and z component are the speed of rotation around that axis.
applyCentralForce(…) Move (push) the object once with a certain moment, expressed as a Vector3f.
applyForce(…) Move (push) the object once with a certain moment, expressed as a Vector3f. Optionally, you can specify where on the object the pushing force hits.
applyTorque(…) Rotate (twist) the object once around its axes, expressed as a Vector3f.
applyImpulse(…) An idealised change of momentum. This is the kind of push that you would use on a pool billiard ball.
applyTorqueImpulse(…) An idealised change of momentum. This is the kind of push that you would use on a pool billiard ball.
clearForces()Cancels out all forces (force, torque) etc and stops the motion.

It is technically possible to position PhysicsControls using setLocalTranslation(), e.g. to place them in their start position in the scene. However you must be very careful not to cause an "impossible state" where one physical object overlaps with another! Within the game, you typically use the setters shown here exclusively.

PhysicsControls also support the following advanced features:

PhysicsControl Method Property
setCollisionShape(collisionShape)Changes the collision shape after creation.
setCollideWithGroups()
setCollisionGroup()
addCollideWithGroup(COLLISION_GROUP_01)
removeCollideWithGroup(COLLISION_GROUP_01)
Collision Groups are integer bit masks – enums are available in the CollisionObject. All physics objects are by default in COLLISION_GROUP_01. Two objects collide when the collideWithGroups set of one contains the Collision Group of the other. Use this to improve performance by grouping objects that will never collide in different groups (the the engine saves times because it does not need to check on them).
setDamping(float, float)The first value is the linear threshold and the second the angular. This simulates dampening of forces, for example for underwater scenes.
setAngularFactor(1f)Set the amount of rotation that will be applied. A value of zero will cancel all rotational force outcome. (?)
setSleepingThreshold(float,float)Sets the sleeping thresholds which define when the object gets deactivated to save resources. The first value is the linear threshold and the second the angular. Low values keep the object active when it barely moves (slow precise performance), high values put the object to sleep immediately (imprecise fast performance). (?)
setCcdMotionThreshold(0f) Sets the amount of motion that has to happen in one physics tick to trigger the continuous motion detection. This avoids the problem of fast objects moving through other objects. Set to zero to disable (default).
setCcdSweptSphereRadius(.5f)Bullet does not use the full collision shape for continuous collision detection, insteadit uses a "swept sphere" shape to approximate a motion. Only relevant for fast moving dynamic bodies. (?)

You can setApplyPhysicsLocal(true) for an object to make it move relatively to its local physics space. You would do that if you need a physics space that moves with a node (e.g. a spaceship with artificial gravity surrounded by zero-g space). By default, it's set to false, and all movement is relative to the world.

Best Practices

  • Multiple Objects Too Slow? Do not overuse PhysicsControls. Although PhysicsControls are put to “sleep” when they are not moving, creating a world solely out of dynamic physics objects will quickly bring you to the limits of your computer's capabilities.
    Solution: Improve performance by replacing some physical Spatials with non-physical Spatials. Use the non-physical ones for non-solid things for which you do not need to detect collisions – foliage, plants, effects, ghosts, all remote or unreachable objects.
  • Complex Shape Too Slow? Breaking the level into manageable pieces helps the engine improve performance: The less CPU-intensive broadphase filters out parts of the scene that are out of reach. It only calculates the collisions for objects that are actually close to the action.
    Solution: A huge static city or terrain model should never be loaded as one huge mesh. Divide the scene into multiple physics objects, with each its own CollisionShape. Choose the most simple CollisionShape possible; use mesh-accurate shapes only for the few cases where precision is more important than speed. For example, you can use the very fast PlaneCollisionShape for flat streets, floors and the outside edge of the scene, if you keep these pieces separate.
  • Buggy? If you get weird behaviour, such as physical nodes jittering wildy and being ejected "for no apparent reason", it means you have created an impossible state – solid objects overlapping. This can happen when you position solid spatials too close to other solid spatials, e.g. when moving them with setLocalTranslation().
    Solution: Use the debug mode to make CollisionShapes visible and verify that CollisionShapes do not overlap.
    bulletAppState.getPhysicsSpace().enableDebug(assetManager);
  • Need more interactivity? You can actively control a physical game by triggering forces. You may also want to be able respond to collisions, e.g. by substracting health, awarding points, or by playing a sound.
    Solution: To specify how the game responds to collisions, you use Physics Listeners.
1) Inertia is calculated for kinematic objects, and you need mass to do that.
 
Except where otherwise noted, content on this wiki is licensed under the following license:CC Attribution 3.0 Unported