Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/thirdparty/jolt_physics/Jolt/Physics/Collision/Shape/TaperedCylinderShape.h
9913 views
1
// Jolt Physics Library (https://github.com/jrouwe/JoltPhysics)
2
// SPDX-FileCopyrightText: 2024 Jorrit Rouwe
3
// SPDX-License-Identifier: MIT
4
5
#pragma once
6
7
#include <Jolt/Physics/Collision/Shape/ConvexShape.h>
8
#include <Jolt/Physics/PhysicsSettings.h>
9
10
JPH_NAMESPACE_BEGIN
11
12
/// Class that constructs a TaperedCylinderShape
13
class JPH_EXPORT TaperedCylinderShapeSettings final : public ConvexShapeSettings
14
{
15
JPH_DECLARE_SERIALIZABLE_VIRTUAL(JPH_EXPORT, TaperedCylinderShapeSettings)
16
17
public:
18
/// Default constructor for deserialization
19
TaperedCylinderShapeSettings() = default;
20
21
/// Create a tapered cylinder centered around the origin with bottom at (0, -inHalfHeightOfTaperedCylinder, 0) with radius inBottomRadius and top at (0, inHalfHeightOfTaperedCylinder, 0) with radius inTopRadius
22
TaperedCylinderShapeSettings(float inHalfHeightOfTaperedCylinder, float inTopRadius, float inBottomRadius, float inConvexRadius = cDefaultConvexRadius, const PhysicsMaterial *inMaterial = nullptr);
23
24
// See: ShapeSettings
25
virtual ShapeResult Create() const override;
26
27
float mHalfHeight = 0.0f;
28
float mTopRadius = 0.0f;
29
float mBottomRadius = 0.0f;
30
float mConvexRadius = 0.0f;
31
};
32
33
/// A cylinder with different top and bottom radii
34
class JPH_EXPORT TaperedCylinderShape final : public ConvexShape
35
{
36
public:
37
JPH_OVERRIDE_NEW_DELETE
38
39
/// Constructor
40
TaperedCylinderShape() : ConvexShape(EShapeSubType::TaperedCylinder) { }
41
TaperedCylinderShape(const TaperedCylinderShapeSettings &inSettings, ShapeResult &outResult);
42
43
/// Get top radius of the tapered cylinder
44
inline float GetTopRadius() const { return mTopRadius; }
45
46
/// Get bottom radius of the tapered cylinder
47
inline float GetBottomRadius() const { return mBottomRadius; }
48
49
/// Get convex radius of the tapered cylinder
50
inline float GetConvexRadius() const { return mConvexRadius; }
51
52
/// Get half height of the tapered cylinder
53
inline float GetHalfHeight() const { return 0.5f * (mTop - mBottom); }
54
55
// See Shape::GetCenterOfMass
56
virtual Vec3 GetCenterOfMass() const override { return Vec3(0, -0.5f * (mTop + mBottom), 0); }
57
58
// See Shape::GetLocalBounds
59
virtual AABox GetLocalBounds() const override;
60
61
// See Shape::GetInnerRadius
62
virtual float GetInnerRadius() const override { return min(mTopRadius, mBottomRadius); }
63
64
// See Shape::GetMassProperties
65
virtual MassProperties GetMassProperties() const override;
66
67
// See Shape::GetSurfaceNormal
68
virtual Vec3 GetSurfaceNormal(const SubShapeID &inSubShapeID, Vec3Arg inLocalSurfacePosition) const override;
69
70
// See Shape::GetSupportingFace
71
virtual void GetSupportingFace(const SubShapeID &inSubShapeID, Vec3Arg inDirection, Vec3Arg inScale, Mat44Arg inCenterOfMassTransform, SupportingFace &outVertices) const override;
72
73
// See ConvexShape::GetSupportFunction
74
virtual const Support * GetSupportFunction(ESupportMode inMode, SupportBuffer &inBuffer, Vec3Arg inScale) const override;
75
76
// See: Shape::CollidePoint
77
virtual void CollidePoint(Vec3Arg inPoint, const SubShapeIDCreator &inSubShapeIDCreator, CollidePointCollector &ioCollector, const ShapeFilter &inShapeFilter = { }) const override;
78
79
// See: Shape::CollideSoftBodyVertices
80
virtual void CollideSoftBodyVertices(Mat44Arg inCenterOfMassTransform, Vec3Arg inScale, const CollideSoftBodyVertexIterator &inVertices, uint inNumVertices, int inCollidingShapeIndex) const override;
81
82
// See Shape::GetTrianglesStart
83
virtual void GetTrianglesStart(GetTrianglesContext &ioContext, const AABox &inBox, Vec3Arg inPositionCOM, QuatArg inRotation, Vec3Arg inScale) const override;
84
85
// See Shape::GetTrianglesNext
86
virtual int GetTrianglesNext(GetTrianglesContext &ioContext, int inMaxTrianglesRequested, Float3 *outTriangleVertices, const PhysicsMaterial **outMaterials = nullptr) const override;
87
88
#ifdef JPH_DEBUG_RENDERER
89
// See Shape::Draw
90
virtual void Draw(DebugRenderer *inRenderer, RMat44Arg inCenterOfMassTransform, Vec3Arg inScale, ColorArg inColor, bool inUseMaterialColors, bool inDrawWireframe) const override;
91
#endif // JPH_DEBUG_RENDERER
92
93
// See Shape
94
virtual void SaveBinaryState(StreamOut &inStream) const override;
95
96
// See Shape::GetStats
97
virtual Stats GetStats() const override { return Stats(sizeof(*this), 0); }
98
99
// See Shape::GetVolume
100
virtual float GetVolume() const override;
101
102
// See Shape::IsValidScale
103
virtual bool IsValidScale(Vec3Arg inScale) const override;
104
105
// See Shape::MakeScaleValid
106
virtual Vec3 MakeScaleValid(Vec3Arg inScale) const override;
107
108
// Register shape functions with the registry
109
static void sRegister();
110
111
protected:
112
// See: Shape::RestoreBinaryState
113
virtual void RestoreBinaryState(StreamIn &inStream) override;
114
115
private:
116
// Class for GetSupportFunction
117
class TaperedCylinder;
118
119
// Class for GetTrianglesTart
120
class TCSGetTrianglesContext;
121
122
// Scale the cylinder
123
JPH_INLINE void GetScaled(Vec3Arg inScale, float &outTop, float &outBottom, float &outTopRadius, float &outBottomRadius, float &outConvexRadius) const;
124
125
float mTop = 0.0f;
126
float mBottom = 0.0f;
127
float mTopRadius = 0.0f;
128
float mBottomRadius = 0.0f;
129
float mConvexRadius = 0.0f;
130
};
131
132
JPH_NAMESPACE_END
133
134