Blender V4.3
btCompoundShape.h
Go to the documentation of this file.
1/*
2Bullet Continuous Collision Detection and Physics Library
3Copyright (c) 2003-2009 Erwin Coumans http://bulletphysics.org
4
5This software is provided 'as-is', without any express or implied warranty.
6In no event will the authors be held liable for any damages arising from the use of this software.
7Permission is granted to anyone to use this software for any purpose,
8including commercial applications, and to alter it and redistribute it freely,
9subject to the following restrictions:
10
111. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
122. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
133. This notice may not be removed or altered from any source distribution.
14*/
15
16#ifndef BT_COMPOUND_SHAPE_H
17#define BT_COMPOUND_SHAPE_H
18
19#include "btCollisionShape.h"
20
24#include "btCollisionMargin.h"
26
27//class btOptimizedBvh;
28struct btDbvt;
29
32{
34
40};
41
43{
44 return (c1.m_transform == c2.m_transform &&
45 c1.m_childShape == c2.m_childShape &&
46 c1.m_childShapeType == c2.m_childShapeType &&
47 c1.m_childMargin == c2.m_childMargin);
48}
49
57{
58protected:
60 btVector3 m_localAabbMin;
61 btVector3 m_localAabbMax;
62
64
67
69
70 btVector3 m_localScaling;
71
72public:
74
75 explicit btCompoundShape(bool enableDynamicAabbTree = true, const int initialChildCapacity = 0);
76
77 virtual ~btCompoundShape();
78
79 void addChildShape(const btTransform& localTransform, btCollisionShape* shape);
80
82 virtual void removeChildShape(btCollisionShape * shape);
83
84 void removeChildShapeByIndex(int childShapeindex);
85
87 {
88 return int(m_children.size());
89 }
90
92 {
93 return m_children[index].m_childShape;
94 }
95 const btCollisionShape* getChildShape(int index) const
96 {
97 return m_children[index].m_childShape;
98 }
99
101 {
102 return m_children[index].m_transform;
103 }
104 const btTransform& getChildTransform(int index) const
105 {
106 return m_children[index].m_transform;
107 }
108
110 void updateChildTransform(int childIndex, const btTransform& newChildTransform, bool shouldRecalculateLocalAabb = true);
111
113 {
114 return &m_children[0];
115 }
116
118 virtual void getAabb(const btTransform& t, btVector3& aabbMin, btVector3& aabbMax) const;
119
122 virtual void recalculateLocalAabb();
123
124 virtual void setLocalScaling(const btVector3& scaling);
125
126 virtual const btVector3& getLocalScaling() const
127 {
128 return m_localScaling;
129 }
130
131 virtual void calculateLocalInertia(btScalar mass, btVector3 & inertia) const;
132
133 virtual void setMargin(btScalar margin)
134 {
135 m_collisionMargin = margin;
136 }
137 virtual btScalar getMargin() const
138 {
139 return m_collisionMargin;
140 }
141 virtual const char* getName() const
142 {
143 return "Compound";
144 }
145
147 {
148 return m_dynamicAabbTree;
149 }
150
152 {
153 return m_dynamicAabbTree;
154 }
155
157
163 void calculatePrincipalAxisTransform(const btScalar* masses, btTransform& principal, btVector3& inertia) const;
164
166 {
167 return m_updateRevision;
168 }
169
170 virtual int calculateSerializeBufferSize() const;
171
173 virtual const char* serialize(void* dataBuffer, btSerializer* serializer) const;
174};
175
176// clang-format off
177
186
199
200// clang-format on
201
202SIMD_FORCE_INLINE int btCompoundShape::calculateSerializeBufferSize() const
203{
204 return sizeof(btCompoundShapeData);
205}
206
207#endif //BT_COMPOUND_SHAPE_H
btCollisionShape
The btCollisionShape class provides an interface for collision shapes that can be shared among btColl...
virtual void setLocalScaling(const btVector3 &scaling)
btCompoundShapeChild * getChildList()
BT_DECLARE_ALIGNED_ALLOCATOR()
btVector3 m_localAabbMin
btCompoundShape(bool enableDynamicAabbTree=true, const int initialChildCapacity=0)
virtual btScalar getMargin() const
int getNumChildShapes() const
btTransform & getChildTransform(int index)
virtual int calculateSerializeBufferSize() const
virtual void setMargin(btScalar margin)
int getUpdateRevision() const
btCompoundShapeChild
void calculatePrincipalAxisTransform(const btScalar *masses, btTransform &principal, btVector3 &inertia) const
virtual const char * getName() const
btCollisionShape * m_childShape
void createAabbTreeFromChildren()
virtual void calculateLocalInertia(btScalar mass, btVector3 &inertia) const
CollisionShape Interface.
Definition btConeShape.h:54
void updateChildTransform(int childIndex, const btTransform &newChildTransform, bool shouldRecalculateLocalAabb=true)
set a new transform for a child, and update internal data structures (local aabb and dynamic tree)
btScalar m_childMargin
virtual ~btCompoundShape()
virtual void removeChildShape(btCollisionShape *shape)
Remove all children shapes that contain the specified shape.
struct btDbvtNode * m_node
int m_childShapeType
void removeChildShapeByIndex(int childShapeindex)
virtual void getAabb(const btTransform &t, btVector3 &aabbMin, btVector3 &aabbMax) const
getAabb's default implementation is brute force, expected derived classes to implement a fast dedicat...
btScalar m_collisionMargin
btVector3 m_localAabbMax
virtual const btVector3 & getLocalScaling() const
btTransform m_transform
btDbvt * m_dynamicAabbTree
virtual const char * serialize(void *dataBuffer, btSerializer *serializer) const
fills the dataBuffer and returns the struct name (and 0 on failure)
virtual void recalculateLocalAabb()
const btDbvt * getDynamicAabbTree() const
SIMD_FORCE_INLINE bool operator==(const btCompoundShapeChild &c1, const btCompoundShapeChild &c2)
btVector3 m_localScaling
int m_updateRevision
increment m_updateRevision when adding/removing/replacing child shapes, so that some caches can be up...
void addChildShape(const btTransform &localTransform, btCollisionShape *shape)
btConvexShape * getChildShape()
float btScalar
The btScalar type abstracts floating point numbers, to easily switch between double and single floati...
Definition btScalar.h:314
#define ATTRIBUTE_ALIGNED16(a)
Definition btScalar.h:285
#define SIMD_FORCE_INLINE
Definition btScalar.h:280
btTransform
The btTransform class supports rigid transforms with only translation and rotation and no scaling/she...
Definition btTransform.h:30
SIMD_FORCE_INLINE int size() const
return the number of elements in the array
draw_view push_constant(Type::INT, "radiance_src") .push_constant(Type capture_info_buf storage_buf(1, Qualifier::READ, "ObjectBounds", "bounds_buf[]") .push_constant(Type draw_view int
do not change those serialization structures, it requires an updated sBulletDNAstr/sBulletDNAstr64
do not change those serialization structures, it requires an updated sBulletDNAstr/sBulletDNAstr64
btTransformFloatData m_transform
btCollisionShapeData * m_childShape
do not change those serialization structures, it requires an updated sBulletDNAstr/sBulletDNAstr64
btCompoundShapeChildData * m_childShapePtr
btCollisionShapeData m_collisionShapeData
for serialization