Jolt Physics
A multi core friendly Game Physics Engine
Loading...
Searching...
No Matches
SoftBodyMotionProperties.h
Go to the documentation of this file.
1// Jolt Physics Library (https://github.com/jrouwe/JoltPhysics)
2// SPDX-FileCopyrightText: 2023 Jorrit Rouwe
3// SPDX-License-Identifier: MIT
4
5#pragma once
6
13
15
16class PhysicsSystem;
17class BodyInterface;
19struct PhysicsSettings;
20class Body;
21class Shape;
23class TempAllocator;
24#ifdef JPH_DEBUG_RENDERER
25class DebugRenderer;
27#endif // JPH_DEBUG_RENDERER
28
30//
31// Based on: XPBD, Extended Position Based Dynamics, Matthias Muller, Ten Minute Physics
32// See: https://matthias-research.github.io/pages/tenMinutePhysics/09-xpbd.pdf
34{
35public:
45
47 void Initialize(const SoftBodyCreationSettings &inSettings);
48
50 const SoftBodySharedSettings * GetSettings() const { return mSettings; }
51
53 const Array<Vertex> & GetVertices() const { return mVertices; }
54 Array<Vertex> & GetVertices() { return mVertices; }
55
57 const Vertex & GetVertex(uint inIndex) const { return mVertices[inIndex]; }
58 Vertex & GetVertex(uint inIndex) { return mVertices[inIndex]; }
59
61 const PhysicsMaterialList & GetMaterials() const { return mSettings->mMaterials; }
62
64 const Array<Face> & GetFaces() const { return mSettings->mFaces; }
65
67 const Face & GetFace(uint inIndex) const { return mSettings->mFaces[inIndex]; }
68
70 uint32 GetNumIterations() const { return mNumIterations; }
71 void SetNumIterations(uint32 inNumIterations) { mNumIterations = inNumIterations; }
72
74 float GetPressure() const { return mPressure; }
75 void SetPressure(float inPressure) { mPressure = inPressure; }
76
78 bool GetUpdatePosition() const { return mUpdatePosition; }
79 void SetUpdatePosition(bool inUpdatePosition) { mUpdatePosition = inUpdatePosition; }
80
82 bool GetEnableSkinConstraints() const { return mEnableSkinConstraints; }
83 void SetEnableSkinConstraints(bool inEnableSkinConstraints) { mEnableSkinConstraints = inEnableSkinConstraints; }
84
86 float GetSkinnedMaxDistanceMultiplier() const { return mSkinnedMaxDistanceMultiplier; }
87 void SetSkinnedMaxDistanceMultiplier(float inSkinnedMaxDistanceMultiplier) { mSkinnedMaxDistanceMultiplier = inSkinnedMaxDistanceMultiplier; }
88
90 const AABox & GetLocalBounds() const { return mLocalBounds; }
91
93 float GetVolume() const { return GetVolumeTimesSix() / 6.0f; }
94
97
98#ifdef JPH_DEBUG_RENDERER
100 void DrawVertices(DebugRenderer *inRenderer, RMat44Arg inCenterOfMassTransform) const;
101 void DrawVertexVelocities(DebugRenderer *inRenderer, RMat44Arg inCenterOfMassTransform) const;
102 void DrawEdgeConstraints(DebugRenderer *inRenderer, RMat44Arg inCenterOfMassTransform, ESoftBodyConstraintColor inConstraintColor) const;
103 void DrawBendConstraints(DebugRenderer *inRenderer, RMat44Arg inCenterOfMassTransform, ESoftBodyConstraintColor inConstraintColor) const;
104 void DrawVolumeConstraints(DebugRenderer *inRenderer, RMat44Arg inCenterOfMassTransform, ESoftBodyConstraintColor inConstraintColor) const;
105 void DrawSkinConstraints(DebugRenderer *inRenderer, RMat44Arg inCenterOfMassTransform, ESoftBodyConstraintColor inConstraintColor) const;
106 void DrawLRAConstraints(DebugRenderer *inRenderer, RMat44Arg inCenterOfMassTransform, ESoftBodyConstraintColor inConstraintColor) const;
107 void DrawPredictedBounds(DebugRenderer *inRenderer, RMat44Arg inCenterOfMassTransform) const;
108#endif // JPH_DEBUG_RENDERER
109
111 void SaveState(StateRecorder &inStream) const;
112
114 void RestoreState(StateRecorder &inStream);
115
122 void SkinVertices(RMat44Arg inCenterOfMassTransform, const Mat44 *inJointMatrices, uint inNumJoints, bool inHardSkinAll, TempAllocator &ioTempAllocator);
123
135 void CustomUpdate(float inDeltaTime, Body &ioSoftBody, PhysicsSystem &inSystem);
136
138 // FUNCTIONS BELOW THIS LINE ARE FOR INTERNAL USE ONLY
140
142 void InitializeUpdateContext(float inDeltaTime, Body &inSoftBody, const PhysicsSystem &inSystem, SoftBodyUpdateContext &ioContext);
143
145 void DetermineCollidingShapes(const SoftBodyUpdateContext &inContext, const PhysicsSystem &inSystem, const BodyLockInterface &inBodyLockInterface);
146
148 enum class EStatus
149 {
150 NoWork = 1 << 0,
151 DidWork = 1 << 1,
152 Done = 1 << 2,
153 };
154
156 EStatus ParallelUpdate(SoftBodyUpdateContext &ioContext, const PhysicsSettings &inPhysicsSettings);
157
159 void UpdateRigidBodyVelocities(const SoftBodyUpdateContext &inContext, BodyInterface &inBodyInterface);
160
161private:
162 // SoftBodyManifold needs to have access to CollidingShape
163 friend class SoftBodyManifold;
164
165 // Collect information about the colliding bodies
166 struct CollidingShape
167 {
169 Vec3 GetPointVelocity(Vec3Arg inPointRelativeToCOM) const
170 {
171 return mLinearVelocity + mAngularVelocity.Cross(inPointRelativeToCOM);
172 }
173
174 Mat44 mCenterOfMassTransform;
175 RefConst<Shape> mShape;
176 BodyID mBodyID;
177 EMotionType mMotionType;
178 bool mIsSensor;
179 float mInvMass;
180 float mFriction;
181 float mRestitution;
182 float mSoftBodyInvMassScale;
183 bool mUpdateVelocities;
184 Mat44 mInvInertia;
185 Vec3 mLinearVelocity;
186 Vec3 mAngularVelocity;
187 Vec3 mOriginalLinearVelocity;
188 Vec3 mOriginalAngularVelocity;
189 };
190
191 // Information about the state of all skinned vertices
192 struct SkinState
193 {
194 Vec3 mPreviousPosition = Vec3::sZero();
195 Vec3 mPosition = Vec3::sNaN();
196 Vec3 mNormal = Vec3::sNaN();
197 };
198
200 void DetermineCollisionPlanes(const SoftBodyUpdateContext &inContext, uint inVertexStart, uint inNumVertices);
201
203 void ApplyPressure(const SoftBodyUpdateContext &inContext);
204
206 void IntegratePositions(const SoftBodyUpdateContext &inContext);
207
209 void ApplyDihedralBendConstraints(const SoftBodyUpdateContext &inContext, uint inStartIndex, uint inEndIndex);
210
212 void ApplyVolumeConstraints(const SoftBodyUpdateContext &inContext, uint inStartIndex, uint inEndIndex);
213
215 void ApplySkinConstraints(const SoftBodyUpdateContext &inContext, uint inStartIndex, uint inEndIndex);
216
218 void ApplyEdgeConstraints(const SoftBodyUpdateContext &inContext, uint inStartIndex, uint inEndIndex);
219
221 void ApplyLRAConstraints(uint inStartIndex, uint inEndIndex);
222
224 void ApplyCollisionConstraintsAndUpdateVelocities(const SoftBodyUpdateContext &inContext);
225
227 void UpdateSoftBodyState(SoftBodyUpdateContext &ioContext, const PhysicsSettings &inPhysicsSettings);
228
230 void StartNextIteration(const SoftBodyUpdateContext &ioContext);
231
233 EStatus ParallelDetermineCollisionPlanes(SoftBodyUpdateContext &ioContext);
234
236 EStatus ParallelApplyConstraints(SoftBodyUpdateContext &ioContext, const PhysicsSettings &inPhysicsSettings);
237
239 void ProcessGroup(const SoftBodyUpdateContext &ioContext, uint inGroupIndex);
240
242 float GetVolumeTimesSix() const;
243
244#ifdef JPH_DEBUG_RENDERER
246 template <typename GetEndIndex, typename DrawConstraint>
247 inline void DrawConstraints(ESoftBodyConstraintColor inConstraintColor, const GetEndIndex &inGetEndIndex, const DrawConstraint &inDrawConstraint, ColorArg inBaseColor) const;
248
249 RMat44 mSkinStateTransform = RMat44::sIdentity();
250#endif // JPH_DEBUG_RENDERER
251
253 Array<Vertex> mVertices;
254 Array<CollidingShape> mCollidingShapes;
255 Array<SkinState> mSkinState;
256 AABox mLocalBounds;
257 AABox mLocalPredictedBounds;
258 uint32 mNumIterations;
259 float mPressure;
260 float mSkinnedMaxDistanceMultiplier = 1.0f;
261 bool mUpdatePosition;
262 bool mHasContact = false;
263 bool mEnableSkinConstraints = true;
264 bool mSkinStatePreviousPositionValid = false;
265};
266
@ CalculateMassAndInertia
Tells the system to calculate the mass and inertia based on density.
ESoftBodyConstraintColor
Defines how to color soft body constraints.
Definition BodyManager.h:28
#define JPH_EXPORT
Definition Core.h:236
unsigned int uint
Definition Core.h:448
#define JPH_NAMESPACE_END
Definition Core.h:377
std::uint32_t uint32
Definition Core.h:451
#define JPH_NAMESPACE_BEGIN
Definition Core.h:371
EMotionType
Motion type of a physics body.
Definition MotionType.h:11
Axis aligned box.
Definition AABox.h:16
Definition Array.h:36
Definition Body.h:35
ID of a body. This is a way of reasoning about bodies in a multithreaded simulation while avoiding ra...
Definition BodyID.h:13
Definition BodyInterface.h:35
Base class interface for locking a body. Usually you will use BodyLockRead / BodyLockWrite / BodyLock...
Definition BodyLockInterface.h:17
Class that holds an RGBA color with 8-bits per component.
Definition Color.h:16
Definition DebugRenderer.h:47
Holds a 4x4 matrix of floats, but supports also operations on the 3x3 upper left part of the matrix.
Definition Mat44.h:13
static JPH_INLINE Mat44 sIdentity()
Identity matrix.
Definition Mat44.inl:35
The Body class only keeps track of state for static bodies, the MotionProperties class keeps the addi...
Definition MotionProperties.h:29
void RestoreState(StateRecorder &inStream)
Restoring state for replay.
Definition MotionProperties.cpp:76
void SaveState(StateRecorder &inStream) const
Saving state for replay.
Definition MotionProperties.cpp:61
Definition PhysicsSystem.h:29
Definition Reference.h:151
Base class for all shapes (collision volume of a body). Defines a virtual interface for collision det...
Definition Shape.h:178
Definition SoftBodyCreationSettings.h:18
An interface to query which vertices of a soft body are colliding with other bodies.
Definition SoftBodyManifold.h:13
This class contains the runtime information of a soft body.
Definition SoftBodyMotionProperties.h:34
bool GetEnableSkinConstraints() const
Global setting to turn on/off skin constraints.
Definition SoftBodyMotionProperties.h:82
Vertex & GetVertex(uint inIndex)
Definition SoftBodyMotionProperties.h:58
EStatus
Return code for ParallelUpdate.
Definition SoftBodyMotionProperties.h:149
Array< Vertex > & GetVertices()
Definition SoftBodyMotionProperties.h:54
void SetSkinnedMaxDistanceMultiplier(float inSkinnedMaxDistanceMultiplier)
Definition SoftBodyMotionProperties.h:87
const PhysicsMaterialList & GetMaterials() const
Get the materials of the soft body.
Definition SoftBodyMotionProperties.h:61
const Array< Vertex > & GetVertices() const
Get the vertices of the soft body.
Definition SoftBodyMotionProperties.h:53
void SetUpdatePosition(bool inUpdatePosition)
Definition SoftBodyMotionProperties.h:79
float GetSkinnedMaxDistanceMultiplier() const
Multiplier applied to Skinned::mMaxDistance to allow tightening or loosening of the skin constraints....
Definition SoftBodyMotionProperties.h:86
void SetPressure(float inPressure)
Definition SoftBodyMotionProperties.h:75
const Array< Face > & GetFaces() const
Get the faces of the soft body.
Definition SoftBodyMotionProperties.h:64
const AABox & GetLocalBounds() const
Get local bounding box.
Definition SoftBodyMotionProperties.h:90
const Vertex & GetVertex(uint inIndex) const
Access an individual vertex.
Definition SoftBodyMotionProperties.h:57
void SetNumIterations(uint32 inNumIterations)
Definition SoftBodyMotionProperties.h:71
bool GetUpdatePosition() const
Update the position of the body while simulating (set to false for something that is attached to the ...
Definition SoftBodyMotionProperties.h:78
float GetVolume() const
Get the volume of the soft body. Note can become negative if the shape is inside out!
Definition SoftBodyMotionProperties.h:93
uint32 GetNumIterations() const
Get the number of solver iterations.
Definition SoftBodyMotionProperties.h:70
float GetPressure() const
Get the pressure of the soft body.
Definition SoftBodyMotionProperties.h:74
void SetEnableSkinConstraints(bool inEnableSkinConstraints)
Definition SoftBodyMotionProperties.h:83
const SoftBodySharedSettings * GetSettings() const
Get the shared settings of the soft body.
Definition SoftBodyMotionProperties.h:50
const Face & GetFace(uint inIndex) const
Access to an individual face.
Definition SoftBodyMotionProperties.h:67
An inverse bind matrix take a skinned vertex from its bind pose into joint local space.
Definition SoftBodySharedSettings.h:214
Definition SoftBodySharedSettings.h:278
A joint and its skin weight.
Definition SoftBodySharedSettings.h:228
A constraint that skins a vertex to joints and limits the distance that the simulated vertex can trav...
Definition SoftBodySharedSettings.h:242
Definition SoftBodySharedSettings.h:16
Temporary data used by the update of a soft body.
Definition SoftBodyUpdateContext.h:18
Definition SoftBodyVertex.h:16
Definition StateRecorder.h:48
Definition TempAllocator.h:16
Definition Vec3.h:17
JPH_INLINE Vec3 Cross(Vec3Arg inV2) const
Cross product.
Definition Vec3.inl:590
static JPH_INLINE Vec3 sZero()
Vector with all zeros.
Definition Vec3.inl:107
static JPH_INLINE Vec3 sNaN()
Vector with all NaN's.
Definition Vec3.inl:129
Definition PhysicsSettings.h:28
Definition SoftBodySharedSettings.h:180
An edge keeps two vertices at a constant distance using a spring: |x1 - x2| = rest length.
Definition SoftBodySharedSettings.h:146
A face defines the surface of the body.
Definition SoftBodySharedSettings.h:130
Volume constraint, keeps the volume of a tetrahedron constant.
Definition SoftBodySharedSettings.h:197