17struct ComponentContext;
31 static constexpr Type All = 0b00111111;
32 static constexpr Type TranslationX = 0b00000001;
33 static constexpr Type TranslationY = 0b00000010;
34 static constexpr Type TranslationZ = 0b00000100;
35 static constexpr Type Translation = 0b00000111;
36 static constexpr Type RotationX = 0b00001000;
37 static constexpr Type RotationY = 0b00010000;
38 static constexpr Type RotationZ = 0b00100000;
39 static constexpr Type Rotation = 0b00111000;
48 static constexpr Type
None = 0x0;
86 DegreeOfFreedom::Type
freedom = DegreeOfFreedom::All;
104 m_info.
type = BodyType::Static;
108 if ((m_info.
flags & exclusiveFlags) == exclusiveFlags)
113 VerifyShapeSettings();
118 m_handle{std::exchange(other.m_handle,
nullptr)},
119 m_shape{other.m_shape},
129 m_handle = std::exchange(other.m_handle,
nullptr);
130 m_shape = other.m_shape;
131 m_info = other.m_info;
141 auto GetEntity()
const ->
Entity {
return m_self; }
142 auto GetInfo()
const ->
const RigidBodyInfo& {
return m_info; }
148 auto GetBodyType()
const ->
BodyType {
return m_info.
type; }
149 void SetBodyType(
BodyType type,
bool wake =
true);
155 auto GetDegreesOfFreedom()
const -> DegreeOfFreedom::Type {
return m_info.
freedom; }
156 void SetDegreesOfFreedom(DegreeOfFreedom::Type dof);
159 auto GetShape()
const ->
const Shape& {
return m_shape; }
160 void SetShape(
const Shape& shape,
const Vector3& transformScale,
bool wake =
true);
163 auto IsAwake()
const -> bool;
164 void SetAwakeState(
bool wake);
165 auto GetFriction()
const ->
float {
return m_info.
friction; }
166 void SetFriction(
float friction);
167 auto GetRestitution()
const ->
float {
return m_info.
restitution; }
168 void SetRestitution(
float restitution);
170 void SetGravityMultiplier(
float factor);
176 auto GetMass()
const ->
float {
return m_info.
mass; }
177 void SetMass(
float mass);
178 auto GetLinearDamping()
const ->
float {
return m_info.
linearDamping; }
179 void SetLinearDamping(
float damping);
180 auto GetAngularDamping()
const ->
float {
return m_info.
angularDamping; }
181 void SetAngularDamping(
float damping);
185 void SetTrigger(
bool value);
187 void UseContinuousDetection(
bool value);
188 auto ScalesWithTransform()
const ->
bool {
return !IgnoreTransformScaling(); }
190 void IgnoreTransformScaling(
bool value);
192 void DisableSleeping(
bool value);
198 auto GetLinearVelocity()
const ->
Vector3;
199 void SetLinearVelocity(
const Vector3& velocity);
200 void AddLinearVelocity(
const Vector3& velocity);
201 auto GetAngularVelocity()
const ->
Vector3;
202 void SetAngularVelocity(
const Vector3& velocity);
203 void SetVelocities(
const Vector3& linearVelocity,
const Vector3& angularVelocity);
204 void AddVelocities(
const Vector3& linearVelocity,
const Vector3& angularVelocity);
210 void AddForce(
const Vector3& force);
212 void AddTorque(
const Vector3& torque);
213 void AddImpulse(
const Vector3& impulse);
215 void AddAngularImpulse(
const Vector3& impulse);
236 void RemoveVehicle();
238 auto GetVehicle() const -> const
Vehicle*;
265 auto IsInitialized() const noexcept ->
bool {
return m_handle; }
266 auto GetHandle() const ->
BodyHandle {
return m_handle; }
267 void SetHandle(BodyHandle handle) { m_handle = handle; }
268 static void SetContext(physics::ComponentContext* ctx) { s_ctx = ctx; }
272 inline static physics::ComponentContext* s_ctx =
nullptr;
277 RigidBodyInfo m_info;
279 void VerifyShapeSettings();
uint32_t ConstraintId
Unique value identifying internal Constraint state.
Definition: Constraints.h:129
std::variant< FixedConstraintInfo, PointConstraintInfo, DistanceConstraintInfo, HingeConstraintInfo, SliderConstraintInfo, SwingTwistConstraintInfo > ConstraintInfo
Generalized constraint initialization information.
Definition: Constraints.h:126
BodyType
Determines movement and collision behavior of a RigidBody.
Definition: RigidBody.h:70
@ Kinematic
movable only with velocities; collides with all other bodies
@ Dynamic
movable with velocities and forces; collides with all other bodies
void * BodyHandle
Handle to internal RigidBody state.
Definition: RigidBody.h:21
A physics constraint attaching the owning RigidBody to another.
Definition: Constraints.h:133
Identifies an object in the registry.
Definition: Entity.h:18
static constexpr auto Null() noexcept
Construct a null Entity.
Definition: Entity.h:61
Component managing physics simulation properties.
Definition: RigidBody.h:92
void SetSimulatedBodyPosition(Transform &transform, const Vector3 &position, bool wake=true)
Set the position of an object's Transform and RigidBody.
auto AddConstraint(const ConstraintInfo &createInfo) -> Constraint &
Add a Constraint between the RigidBody and the world.
void RemoveConstraint(ConstraintId constraintId)
Remove a constraint from the RigidBody.
auto AddConstraint(const ConstraintInfo &createInfo, const RigidBody &otherBody) -> Constraint &
Add a Constraint between the RigidBody and another.
auto SetSimulatedBodyScale(Transform &transform, const Vector3 &scale, bool wake=true) -> Vector3
Set the scale of an object's Transform and RigidBody.
void SetSimulatedBodyRotation(Transform &transform, const Quaternion &rotation, bool wake=true)
Set the rotation of an object's Transform and RigidBody.
auto GetConstraints() -> std::span< Constraint >
View all of the constraints attached to the RigidBody.
auto GetConstraints() const -> std::span< const Constraint >
Add a Constraint between the RigidBody and another.
A vehicle that can be added to a RigidBody.
Definition: Vehicle.h:156
Default storage behavior for pooled components.
Definition: Component.h:70
static constexpr bool EnableOnAddCallbacks
Enable the OnAdd Signal in the component's pool.
Definition: Component.h:72
static constexpr bool EnableOnCommitCallbacks
Enable the OnCommit Signal in the component's pool.
Definition: Component.h:75
static constexpr bool EnableOnRemoveCallbacks
Enable the OnRemove Signal in the component's pool.
Definition: Component.h:78
Flags indicating allowed degrees of freedom of a RigidBody.
Definition: RigidBody.h:28
Quaternion type for representing 3D rotations.
Definition: Quaternion.h:13
Flags for configuring RigidBody behavior.
Definition: RigidBody.h:44
static constexpr Type None
Disable all flags.
Definition: RigidBody.h:48
static constexpr Type ContinuousDetection
Enable continuous collision detection on the body using a linear shape cast. (incompatible with Trigg...
Definition: RigidBody.h:54
static constexpr Type Trigger
Disables the collision response for the body and raises trigger events instead of collision events.
Definition: RigidBody.h:51
static constexpr Type IgnoreTransformScaling
Scale the body's shape using the associated Transform's scale.
Definition: RigidBody.h:62
static constexpr Type DisableSleeping
Force RigidBody to always be in an awake state (incompatible with BodyType::Static).
Definition: RigidBody.h:65
Properties for initializing a RigidBody.
Definition: RigidBody.h:78
BodyType type
set type of body (on a static Entity, this will be overwritten to BodyType::Static)
Definition: RigidBody.h:85
float friction
friction of the body [0, 1]
Definition: RigidBody.h:80
float angularDamping
angular motion damping [0, 1]
Definition: RigidBody.h:83
RigidBodyFlags::Type flags
set flags for the body
Definition: RigidBody.h:87
DegreeOfFreedom::Type freedom
set degrees of freedom for the body
Definition: RigidBody.h:86
float restitution
elasticity of collision response [0, 1]
Definition: RigidBody.h:81
float gravityMultiplier
amount of gravity applied to the body [0, maxGravityMultiplier]
Definition: RigidBody.h:84
float mass
mass of the body in kg [0.1, 100000]
Definition: RigidBody.h:79
float linearDamping
linear motion damping [0, 1]
Definition: RigidBody.h:82
Describes collision geometry for physics types.
Definition: Shape.h:31
static constexpr auto MakeBox(const Vector3 &extents=Vector3::Splat(1.0f)) -> Shape
Make a primitive box shape.
Definition: Shape.h:33
Provide a specialization to customize storage options and behavior for a user-defined type.
Definition: Component.h:88
A three component vector.
Definition: Vector.h:29
Initialization info for a Vehicle.
Definition: Vehicle.h:147