Blender  V3.3
btBatchedConstraints.h
Go to the documentation of this file.
1 /*
2 Bullet Continuous Collision Detection and Physics Library
3 Copyright (c) 2003-2006 Erwin Coumans http://continuousphysics.com/Bullet/
4 
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:
10 
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.
14 */
15 
16 #ifndef BT_BATCHED_CONSTRAINTS_H
17 #define BT_BATCHED_CONSTRAINTS_H
18 
19 #include "LinearMath/btThreads.h"
23 
24 class btIDebugDraw;
25 
27 {
29  {
33  };
34  struct Range
35  {
36  int begin;
37  int end;
38 
39  Range() : begin(0), end(0) {}
40  Range(int _beg, int _end) : begin(_beg), end(_end) {}
41  };
42 
44  btAlignedObjectArray<Range> m_batches; // each batch is a range of indices in the m_constraintIndices array
45  btAlignedObjectArray<Range> m_phases; // each phase is range of indices in the m_batches array
46  btAlignedObjectArray<char> m_phaseGrainSize; // max grain size for each phase
47  btAlignedObjectArray<int> m_phaseOrder; // phases can be done in any order, so we can randomize the order here
49 
50  static bool s_debugDrawBatches;
51 
55  BatchingMethod batchingMethod,
56  int minBatchSize,
57  int maxBatchSize,
58  btAlignedObjectArray<char>* scratchMemory);
60 };
61 
62 #endif // BT_BATCHED_CONSTRAINTS_H
btSequentialImpulseConstraintSolverMt int btPersistentManifold int btTypedConstraint ** constraints
bool validate(btConstraintArray *constraints, const btAlignedObjectArray< btSolverBody > &bodies) const
btAlignedObjectArray< Range > m_batches
btAlignedObjectArray< int > m_constraintIndices
void setup(btConstraintArray *constraints, const btAlignedObjectArray< btSolverBody > &bodies, BatchingMethod batchingMethod, int minBatchSize, int maxBatchSize, btAlignedObjectArray< char > *scratchMemory)
btAlignedObjectArray< char > m_phaseGrainSize
btAlignedObjectArray< int > m_phaseOrder
btAlignedObjectArray< Range > m_phases
btIDebugDraw * m_debugDrawer