2017-08-01 14:30:58 +02:00
|
|
|
/*
|
|
|
|
Bullet Continuous Collision Detection and Physics Library
|
|
|
|
Copyright (c) 2003-2009 Erwin Coumans http://bulletphysics.org
|
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied warranty.
|
|
|
|
In no event will the authors be held liable for any damages arising from the use of this software.
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it freely,
|
|
|
|
subject to the following restrictions:
|
|
|
|
|
|
|
|
1. 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.
|
|
|
|
2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
|
|
|
|
3. This notice may not be removed or altered from any source distribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "btConvexInternalShape.h"
|
|
|
|
|
|
|
|
btConvexInternalShape::btConvexInternalShape()
|
2019-01-03 14:26:51 +01:00
|
|
|
: m_localScaling(btScalar(1.), btScalar(1.), btScalar(1.)),
|
|
|
|
m_collisionMargin(CONVEX_DISTANCE_MARGIN)
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
void btConvexInternalShape::setLocalScaling(const btVector3& scaling)
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
|
|
|
m_localScaling = scaling.absolute();
|
|
|
|
}
|
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
void btConvexInternalShape::getAabbSlow(const btTransform& trans, btVector3& minAabb, btVector3& maxAabb) const
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
|
|
|
#ifndef __SPU__
|
|
|
|
//use localGetSupportingVertexWithoutMargin?
|
|
|
|
btScalar margin = getMargin();
|
2019-01-03 14:26:51 +01:00
|
|
|
for (int i = 0; i < 3; i++)
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
2019-01-03 14:26:51 +01:00
|
|
|
btVector3 vec(btScalar(0.), btScalar(0.), btScalar(0.));
|
2017-08-01 14:30:58 +02:00
|
|
|
vec[i] = btScalar(1.);
|
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
btVector3 sv = localGetSupportingVertex(vec * trans.getBasis());
|
2017-08-01 14:30:58 +02:00
|
|
|
|
|
|
|
btVector3 tmp = trans(sv);
|
2019-01-03 14:26:51 +01:00
|
|
|
maxAabb[i] = tmp[i] + margin;
|
2017-08-01 14:30:58 +02:00
|
|
|
vec[i] = btScalar(-1.);
|
2019-01-03 14:26:51 +01:00
|
|
|
tmp = trans(localGetSupportingVertex(vec * trans.getBasis()));
|
|
|
|
minAabb[i] = tmp[i] - margin;
|
2017-08-01 14:30:58 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
btVector3 btConvexInternalShape::localGetSupportingVertex(const btVector3& vec) const
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
|
|
|
#ifndef __SPU__
|
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
btVector3 supVertex = localGetSupportingVertexWithoutMargin(vec);
|
2017-08-01 14:30:58 +02:00
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
if (getMargin() != btScalar(0.))
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
|
|
|
btVector3 vecnorm = vec;
|
2019-01-03 14:26:51 +01:00
|
|
|
if (vecnorm.length2() < (SIMD_EPSILON * SIMD_EPSILON))
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
2019-01-03 14:26:51 +01:00
|
|
|
vecnorm.setValue(btScalar(-1.), btScalar(-1.), btScalar(-1.));
|
|
|
|
}
|
2017-08-01 14:30:58 +02:00
|
|
|
vecnorm.normalize();
|
2019-01-03 14:26:51 +01:00
|
|
|
supVertex += getMargin() * vecnorm;
|
2017-08-01 14:30:58 +02:00
|
|
|
}
|
|
|
|
return supVertex;
|
|
|
|
|
|
|
|
#else
|
|
|
|
btAssert(0);
|
2019-01-03 14:26:51 +01:00
|
|
|
return btVector3(0, 0, 0);
|
|
|
|
#endif //__SPU__
|
|
|
|
}
|
2017-08-01 14:30:58 +02:00
|
|
|
|
|
|
|
btConvexInternalAabbCachingShape::btConvexInternalAabbCachingShape()
|
2019-01-03 14:26:51 +01:00
|
|
|
: btConvexInternalShape(),
|
|
|
|
m_localAabbMin(1, 1, 1),
|
|
|
|
m_localAabbMax(-1, -1, -1),
|
|
|
|
m_isLocalAabbValid(false)
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
void btConvexInternalAabbCachingShape::getAabb(const btTransform& trans, btVector3& aabbMin, btVector3& aabbMax) const
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
2019-01-03 14:26:51 +01:00
|
|
|
getNonvirtualAabb(trans, aabbMin, aabbMax, getMargin());
|
2017-08-01 14:30:58 +02:00
|
|
|
}
|
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
void btConvexInternalAabbCachingShape::setLocalScaling(const btVector3& scaling)
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
|
|
|
btConvexInternalShape::setLocalScaling(scaling);
|
|
|
|
recalcLocalAabb();
|
|
|
|
}
|
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
void btConvexInternalAabbCachingShape::recalcLocalAabb()
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
|
|
|
m_isLocalAabbValid = true;
|
2019-01-03 14:26:51 +01:00
|
|
|
|
|
|
|
#if 1
|
2017-08-01 14:30:58 +02:00
|
|
|
static const btVector3 _directions[] =
|
2019-01-03 14:26:51 +01:00
|
|
|
{
|
|
|
|
btVector3(1., 0., 0.),
|
|
|
|
btVector3(0., 1., 0.),
|
|
|
|
btVector3(0., 0., 1.),
|
|
|
|
btVector3(-1., 0., 0.),
|
|
|
|
btVector3(0., -1., 0.),
|
|
|
|
btVector3(0., 0., -1.)};
|
|
|
|
|
2017-08-01 14:30:58 +02:00
|
|
|
btVector3 _supporting[] =
|
2019-01-03 14:26:51 +01:00
|
|
|
{
|
|
|
|
btVector3(0., 0., 0.),
|
|
|
|
btVector3(0., 0., 0.),
|
|
|
|
btVector3(0., 0., 0.),
|
|
|
|
btVector3(0., 0., 0.),
|
|
|
|
btVector3(0., 0., 0.),
|
|
|
|
btVector3(0., 0., 0.)};
|
|
|
|
|
2017-08-01 14:30:58 +02:00
|
|
|
batchedUnitVectorGetSupportingVertexWithoutMargin(_directions, _supporting, 6);
|
2019-01-03 14:26:51 +01:00
|
|
|
|
|
|
|
for (int i = 0; i < 3; ++i)
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
|
|
|
m_localAabbMax[i] = _supporting[i][i] + m_collisionMargin;
|
|
|
|
m_localAabbMin[i] = _supporting[i + 3][i] - m_collisionMargin;
|
|
|
|
}
|
|
|
|
|
2019-01-03 14:26:51 +01:00
|
|
|
#else
|
|
|
|
|
|
|
|
for (int i = 0; i < 3; i++)
|
2017-08-01 14:30:58 +02:00
|
|
|
{
|
2019-01-03 14:26:51 +01:00
|
|
|
btVector3 vec(btScalar(0.), btScalar(0.), btScalar(0.));
|
2017-08-01 14:30:58 +02:00
|
|
|
vec[i] = btScalar(1.);
|
|
|
|
btVector3 tmp = localGetSupportingVertex(vec);
|
2019-01-03 14:26:51 +01:00
|
|
|
m_localAabbMax[i] = tmp[i] + m_collisionMargin;
|
2017-08-01 14:30:58 +02:00
|
|
|
vec[i] = btScalar(-1.);
|
|
|
|
tmp = localGetSupportingVertex(vec);
|
2019-01-03 14:26:51 +01:00
|
|
|
m_localAabbMin[i] = tmp[i] - m_collisionMargin;
|
2017-08-01 14:30:58 +02:00
|
|
|
}
|
2019-01-03 14:26:51 +01:00
|
|
|
#endif
|
2017-08-01 14:30:58 +02:00
|
|
|
}
|