2 Bullet Continuous Collision Detection and Physics Library
3 Copyright (c) 2003-2006 Erwin Coumans http://continuousphysics.com/Bullet/
5 This software is provided 'as-is', without any express or implied warranty.
6 In no event will the authors be held liable for any damages arising from the use of this software.
7 Permission is granted to anyone to use this software for any purpose,
8 including commercial applications, and to alter it and redistribute it freely,
9 subject to the following restrictions:
11 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.
12 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
13 3. This notice may not be removed or altered from any source distribution.
17 #include "btSoftRigidDynamicsWorld.h"
18 #include "LinearMath/btQuickprof.h"
21 #include "btSoftBody.h"
22 #include "btSoftBodyHelpers.h"
24 btSoftRigidDynamicsWorld::btSoftRigidDynamicsWorld(btDispatcher* dispatcher,btBroadphaseInterface* pairCache,btConstraintSolver* constraintSolver,btCollisionConfiguration* collisionConfiguration)
25 :btDiscreteDynamicsWorld(dispatcher,pairCache,constraintSolver,collisionConfiguration)
27 m_drawFlags = fDrawFlags::Std;
28 m_drawNodeTree = true;
29 m_drawFaceTree = false;
30 m_drawClusterTree = false;
33 btSoftRigidDynamicsWorld::~btSoftRigidDynamicsWorld()
38 void btSoftRigidDynamicsWorld::predictUnconstraintMotion(btScalar timeStep)
40 btDiscreteDynamicsWorld::predictUnconstraintMotion( timeStep);
42 for ( int i=0;i<m_softBodies.size();++i)
44 btSoftBody* psb= m_softBodies[i];
46 psb->predictMotion(timeStep);
50 void btSoftRigidDynamicsWorld::internalSingleStepSimulation( btScalar timeStep)
52 btDiscreteDynamicsWorld::internalSingleStepSimulation( timeStep );
54 ///solve soft bodies constraints
55 solveSoftBodiesConstraints();
62 void btSoftRigidDynamicsWorld::updateSoftBodies()
64 BT_PROFILE("updateSoftBodies");
66 for ( int i=0;i<m_softBodies.size();i++)
68 btSoftBody* psb=(btSoftBody*)m_softBodies[i];
69 psb->integrateMotion();
73 void btSoftRigidDynamicsWorld::solveSoftBodiesConstraints()
75 BT_PROFILE("solveSoftConstraints");
77 if(m_softBodies.size())
79 btSoftBody::solveClusters(m_softBodies);
82 for(int i=0;i<m_softBodies.size();++i)
84 btSoftBody* psb=(btSoftBody*)m_softBodies[i];
85 psb->solveConstraints();
89 void btSoftRigidDynamicsWorld::addSoftBody(btSoftBody* body)
91 m_softBodies.push_back(body);
93 btCollisionWorld::addCollisionObject(body,
94 btBroadphaseProxy::DefaultFilter,
95 btBroadphaseProxy::AllFilter);
99 void btSoftRigidDynamicsWorld::removeSoftBody(btSoftBody* body)
101 m_softBodies.remove(body);
103 btCollisionWorld::removeCollisionObject(body);
106 void btSoftRigidDynamicsWorld::debugDrawWorld()
108 btDiscreteDynamicsWorld::debugDrawWorld();
110 if (getDebugDrawer())
113 for ( i=0;i<this->m_softBodies.size();i++)
115 btSoftBody* psb=(btSoftBody*)this->m_softBodies[i];
116 btSoftBodyHelpers::DrawFrame(psb,m_debugDrawer);
117 btSoftBodyHelpers::Draw(psb,m_debugDrawer,m_drawFlags);
118 if (m_debugDrawer && (m_debugDrawer->getDebugMode() & btIDebugDraw::DBG_DrawAabb))
120 if(m_drawNodeTree) btSoftBodyHelpers::DrawNodeTree(psb,m_debugDrawer);
121 if(m_drawFaceTree) btSoftBodyHelpers::DrawFaceTree(psb,m_debugDrawer);
122 if(m_drawClusterTree) btSoftBodyHelpers::DrawClusterTree(psb,m_debugDrawer);