The amethyst_physics
crate, is the Amethyst physics abstraction layer which is an interface to a physics engine.
Its first aim is simplicity. The APIs are studied and implemented in a way to favor the developer experience. For example, in one line of code you are able to initialize any physics engine that implements the amethyst_physics
interface.
use amethyst_physics::PhysicsBundle;
use amethyst::amethyst_nphysics::NPhysicsBackend;
let game_data = GameDataBuilder::default()
.with_bundle(PhysicsBundle::<f32, NPhysicsBackend>::new()).unwrap()
The APIs follow the ECS architectural pattern, which Amethyst uses, and it provides many tools to speedup the development of common actions.
For example, you can create a RigidBody
component in this way:
let rigid_body_component = {
// Describe the Rigid Body characteristics.
let rb_desc = RigidBodyDesc {
mode: BodyMode::Dynamic,
mass: 1.0,
bounciness: 0.0,
friction: 0.05,
};
// Get the Physics World.
let physics_world = world.fetch::<PhysicsWorld<f32>>();
// Create the actual `RigidBody` component.
physics_world.rigid_body_server().create(&rb_desc)
};
At this point, the only thing to do is to add the rigid_body_component
to an Entity
; and when you want to drop it, you can simply remove the component.
As you may have noticed, this RigidBody
doesn't have any shape; let's add it:
let shape_component = {
// Descibe the shape.
let s_desc = ShapeDesc::Cube {
half_extents: Vector3::new(1.0, 1.0, 1.0),
};
// Take the Physics World.
let physics_world = world.fetch::<PhysicsWorld<f32>>();
// Create the actual `Shape` component.
physics_world.shape_server().create(&s_desc)
};
Now, just by adding this shape_component
to the Entity
the shape will be automatically assigned to the RigidBody
.
Notice that the shape can be shared by many bodies.
// Create `Entity` with a `RigidBody` and a `Shape`.
world
.create_entity()
.with(rigid_body_component)
.with(shape_component)
.with(Transform::default())
.build();
I've added the Transform
component, and as you probably expected, it's possible to position the RigidBody
by modifying it.
Everything works in full ECS style, and thanks to the amethyst_physics
synchronization, even removing a RigidBody
or a Shape
is just a matter of dropping the component.
Constraining a game engine to a specific physics engine is never a good idea because, depending on the project on which you are working, you may need a specific physics engine. To be able to use all of the Amethyst features (like the 3D Audio spatialization, the camera spring, Physics particle effects, etc...), the asset pipeline, with any physics engine that you need is a big plus!
In addition a community fellow can work on a module (like a kinematic controller which is able to climbing a ladder a wall a fence, walk on the stairs, etc..). If the engine allow to use this module with many physics engine the market is broader, and will be more convenient for the developer.
It may happen to be that the physics engine that you need is already integrated; If it isn't, then to implement the interface and preserve all the Amethyst features mentioned above is much more convinient, and it requires much less effort.
It is possible, even likely, to be well advanced into development when discovering that the physics engine you use is limited in a specific way, which is non-obvious (it cannot be known before reaching that point of development), non-common (other people aren’t interested in fixing it, or don’t understand the problem), and non-trivial, or even impossible to fix for the currently used backend.
If you have an abstraction layer, you have the option of:
If you do not have an abstraction layer, you have the option of:
If you want to do something advanced, which is pretty common, you have a way to do it across more than one physics backend.
The interface is divided into servers (available servers), and each of them provides access to a specific part part of the engine.
Each physics engine provides its own specific features, and amethyst_physics
allows one to use them even when (for obvious reasons) they don't fit the provided APIs.
Indeed it is possible to downcast the amethyst_physics
server pointer to the specific backend server exposing some specific functionalities.
Enjoy! Physicsing