Bullet Collision Detection & Physics Library
btDiscreteDynamicsWorldMt.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_DISCRETE_DYNAMICS_WORLD_MT_H
17#define BT_DISCRETE_DYNAMICS_WORLD_MT_H
18
22
33{
34public:
35 // create the solvers for me
36 explicit btConstraintSolverPoolMt(int numSolvers);
37
38 // pass in fully constructed solvers (destructor will delete them)
39 btConstraintSolverPoolMt(btConstraintSolver** solvers, int numSolvers);
40
42
44 virtual btScalar solveGroup(btCollisionObject** bodies,
45 int numBodies,
46 btPersistentManifold** manifolds,
47 int numManifolds,
48 btTypedConstraint** constraints,
49 int numConstraints,
50 const btContactSolverInfo& info,
51 btIDebugDraw* debugDrawer,
52 btDispatcher* dispatcher) BT_OVERRIDE;
53
54 virtual void reset() BT_OVERRIDE;
56
57private:
58 const static size_t kCacheLineSize = 128;
60 {
63 char _cachelinePadding[kCacheLineSize - sizeof(btSpinMutex) - sizeof(void*)]; // keep mutexes from sharing a cache line
64 };
67
69 void init(btConstraintSolver** solvers, int numSolvers);
70};
71
84{
85protected:
87
88 virtual void solveConstraints(btContactSolverInfo & solverInfo) BT_OVERRIDE;
89
90 virtual void predictUnconstraintMotion(btScalar timeStep) BT_OVERRIDE;
91
93 {
97
98 void forLoop(int iBegin, int iEnd) const BT_OVERRIDE
99 {
100 world->createPredictiveContactsInternal(&rigidBodies[iBegin], iEnd - iBegin, timeStep);
101 }
102 };
103 virtual void createPredictiveContacts(btScalar timeStep) BT_OVERRIDE;
104
106 {
110
111 void forLoop(int iBegin, int iEnd) const BT_OVERRIDE
112 {
113 world->integrateTransformsInternal(&rigidBodies[iBegin], iEnd - iBegin, timeStep);
114 }
115 };
116 virtual void integrateTransforms(btScalar timeStep) BT_OVERRIDE;
117
118public:
120
122 btBroadphaseInterface * pairCache,
123 btConstraintSolverPoolMt * solverPool, // Note this should be a solver-pool for multi-threading
124 btConstraintSolver * constraintSolverMt, // single multi-threaded solver for large islands (or NULL)
125 btCollisionConfiguration * collisionConfiguration);
127
128 virtual int stepSimulation(btScalar timeStep, int maxSubSteps, btScalar fixedTimeStep) BT_OVERRIDE;
129};
130
131#endif //BT_DISCRETE_DYNAMICS_WORLD_H
btConstraintSolverType
btConstraintSolver provides solver interface
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:99
#define BT_OVERRIDE
Definition: btThreads.h:26
The btAlignedObjectArray template class uses a subset of the stl::vector interface for its methods It...
The btBroadphaseInterface class provides an interface to detect aabb-overlapping object pairs.
btCollisionConfiguration allows to configure Bullet collision detection stack allocator size,...
btCollisionObject can be used to manage collision detection objects.
btConstraintSolverPoolMt - masquerades as a constraint solver, but really it is a threadsafe pool of ...
ThreadSolver * getAndLockThreadSolver()
btConstraintSolverPoolMt
virtual void reset() BT_OVERRIDE
clear internal cached data and reset random seed
btConstraintSolverType m_solverType
void init(btConstraintSolver **solvers, int numSolvers)
virtual btConstraintSolverType getSolverType() const BT_OVERRIDE
virtual btScalar solveGroup(btCollisionObject **bodies, int numBodies, btPersistentManifold **manifolds, int numManifolds, btTypedConstraint **constraints, int numConstraints, const btContactSolverInfo &info, btIDebugDraw *debugDrawer, btDispatcher *dispatcher) BT_OVERRIDE
solve a group of constraints
btAlignedObjectArray< ThreadSolver > m_solvers
btDiscreteDynamicsWorldMt – a version of DiscreteDynamicsWorld with some minor changes to support sol...
btConstraintSolver * m_constraintSolverMt
btDiscreteDynamicsWorld provides discrete rigid body simulation those classes replace the obsolete Cc...
void integrateTransformsInternal(btRigidBody **bodies, int numBodies, btScalar timeStep)
void createPredictiveContactsInternal(btRigidBody **bodies, int numBodies, btScalar timeStep)
The btDispatcher interface class can be used in combination with broadphase to dispatch calculations ...
Definition: btDispatcher.h:77
The btIDebugDraw interface class allows hooking up a debug renderer to visually debug simulations.
Definition: btIDebugDraw.h:27
btPersistentManifold is a contact point cache, it stays persistent as long as objects are overlapping...
The btRigidBody is the main class for rigid body objects.
Definition: btRigidBody.h:60
btSpinMutex – lightweight spin-mutex implemented with atomic ops, never puts a thread to sleep becaus...
Definition: btThreads.h:46
TypedConstraint is the baseclass for Bullet constraints and vehicles.
char _cachelinePadding[kCacheLineSize - sizeof(btSpinMutex) - sizeof(void *)]
void forLoop(int iBegin, int iEnd) const BT_OVERRIDE