NcEngine
RigidBody.h
Go to the documentation of this file.
1
5#pragma once
6
12
13namespace nc
14{
15namespace physics
16{
17struct ComponentContext;
18} // namespace physics
19
21using BodyHandle = void*;
22
28{
29 using Type = uint8_t;
30
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;
40};
41
44{
45 using Type = uint8_t;
46
48 static constexpr Type None = 0x0;
49
51 static constexpr Type Trigger = 0x1;
52
54 static constexpr Type ContinuousDetection = 0x2;
55
62 static constexpr Type IgnoreTransformScaling = 0x4;
63
65 static constexpr Type DisableSleeping = 0x8;
66};
67
69enum class BodyType : uint8_t
70{
71 Dynamic,
72 Kinematic,
73 Static
74};
75
78{
79 float mass = 1000.0f;
80 float friction = 0.4f;
81 float restitution = 0.0f;
82 float linearDamping = 0.0f;
83 float angularDamping = 0.0f;
84 float gravityMultiplier = 1.0f;
85 BodyType type = BodyType::Dynamic;
86 DegreeOfFreedom::Type freedom = DegreeOfFreedom::All;
87 RigidBodyFlags::Type flags = RigidBodyFlags::None;
88};
89
92{
93 public:
95 RigidBody(Entity self,
96 const Shape& shape = Shape::MakeBox(),
97 const RigidBodyInfo& info = RigidBodyInfo{})
98 : m_self{self},
99 m_shape{shape},
100 m_info{info}
101 {
102 if (self.IsStatic())
103 {
104 m_info.type = BodyType::Static;
105 }
106
107 constexpr auto exclusiveFlags = RigidBodyFlags::Trigger | RigidBodyFlags::ContinuousDetection;
108 if ((m_info.flags & exclusiveFlags) == exclusiveFlags)
109 {
110 m_info.flags &= ~RigidBodyFlags::ContinuousDetection;
111 }
112
113 VerifyShapeSettings();
114 }
115
116 RigidBody(RigidBody&& other) noexcept
117 : m_self{std::exchange(other.m_self, Entity::Null())},
118 m_handle{std::exchange(other.m_handle, nullptr)},
119 m_shape{other.m_shape},
120 m_info{other.m_info}
121 {
122 }
123
124 RigidBody& operator=(RigidBody&& other) noexcept
125 {
126 if (this != &other)
127 {
128 m_self = std::exchange(other.m_self, Entity::Null());
129 m_handle = std::exchange(other.m_handle, nullptr);
130 m_shape = other.m_shape;
131 m_info = other.m_info;
132 }
133
134 return *this;
135 }
136
137 RigidBody(RigidBody&) = delete;
138 RigidBody& operator=(RigidBody&) = delete;
139
141 auto GetEntity() const -> Entity { return m_self; }
142 auto GetInfo() const -> const RigidBodyInfo& { return m_info; }
143
148 auto GetBodyType() const -> BodyType { return m_info.type; }
149 void SetBodyType(BodyType type, bool wake = true);
150
155 auto GetDegreesOfFreedom() const -> DegreeOfFreedom::Type { return m_info.freedom; }
156 void SetDegreesOfFreedom(DegreeOfFreedom::Type dof);
157
159 auto GetShape() const -> const Shape& { return m_shape; }
160 void SetShape(const Shape& shape, const Vector3& transformScale, bool wake = true);
161
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);
169 auto GetGravityMultiplier() const -> float { return m_info.gravityMultiplier; }
170 void SetGravityMultiplier(float factor);
171
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);
182
184 auto IsTrigger() const -> bool { return m_info.flags & RigidBodyFlags::Trigger; }
185 void SetTrigger(bool value);
186 auto UseContinuousDetection() const -> bool { return m_info.flags & RigidBodyFlags::ContinuousDetection; }
187 void UseContinuousDetection(bool value);
188 auto ScalesWithTransform() const -> bool { return !IgnoreTransformScaling(); }
189 auto IgnoreTransformScaling() const -> bool { return m_info.flags & RigidBodyFlags::IgnoreTransformScaling; }
190 void IgnoreTransformScaling(bool value);
191 auto DisableSleeping() const -> bool { return m_info.flags & RigidBodyFlags::DisableSleeping; }
192 void DisableSleeping(bool value);
193
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);
205
210 void AddForce(const Vector3& force);
211 void AddForceAt(const Vector3& force, const Vector3& point);
212 void AddTorque(const Vector3& torque);
213 void AddImpulse(const Vector3& impulse);
214 void AddImpulseAt(const Vector3& impulse, const Vector3& point);
215 void AddAngularImpulse(const Vector3& impulse);
216
219 auto AddConstraint(const ConstraintInfo& createInfo, const RigidBody& otherBody) -> Constraint&;
220
222 auto AddConstraint(const ConstraintInfo& createInfo) -> Constraint&;
223
225 void RemoveConstraint(ConstraintId constraintId);
226
228 auto GetConstraints() -> std::span<Constraint>;
229 auto GetConstraints() const -> std::span<const Constraint>;
230
235 auto AddVehicle(VehicleInfo createInfo) -> Vehicle&;
236 void RemoveVehicle();
237 auto GetVehicle() -> Vehicle*;
238 auto GetVehicle() const -> const Vehicle*;
239
250 void SetSimulatedBodyPosition(Transform& transform, const Vector3& position, bool wake = true);
251
253 void SetSimulatedBodyRotation(Transform& transform, const Quaternion& rotation, bool wake = true);
254
261 auto SetSimulatedBodyScale(Transform& transform, const Vector3& scale, bool wake = true) -> Vector3; // End Simulated Body Functions
263
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; }
271 private:
272 inline static physics::ComponentContext* s_ctx = nullptr;
273
274 Entity m_self;
275 BodyHandle m_handle = nullptr;
276 Shape m_shape;
277 RigidBodyInfo m_info;
278
279 void VerifyShapeSettings();
280};
281
282template<>
284{
285 static constexpr bool EnableOnAddCallbacks = true;
286 static constexpr bool EnableOnCommitCallbacks = false;
287 static constexpr bool EnableOnRemoveCallbacks = true;
288};
289} // namespace nc
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.
Component with translation, rotation, and scale properties.
Definition: Transform.h:33
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