[dali_2.3.21] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-physics / third-party / bullet3 / src / BulletDynamics / ConstraintSolver / btBatchedConstraints.h
1 /*
2 Bullet Continuous Collision Detection and Physics Library
3 Copyright (c) 2003-2006 Erwin Coumans  https://bulletphysics.org
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"
20 #include "LinearMath/btAlignedObjectArray.h"
21 #include "BulletDynamics/ConstraintSolver/btSolverBody.h"
22 #include "BulletDynamics/ConstraintSolver/btSolverConstraint.h"
23
24 class btIDebugDraw;
25
26 struct btBatchedConstraints
27 {
28         enum BatchingMethod
29         {
30                 BATCHING_METHOD_SPATIAL_GRID_2D,
31                 BATCHING_METHOD_SPATIAL_GRID_3D,
32                 BATCHING_METHOD_COUNT
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
43         btAlignedObjectArray<int> m_constraintIndices;
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
48         btIDebugDraw* m_debugDrawer;
49
50         static bool s_debugDrawBatches;
51
52         btBatchedConstraints() { m_debugDrawer = NULL; }
53         void setup(btConstraintArray* constraints,
54                            const btAlignedObjectArray<btSolverBody>& bodies,
55                            BatchingMethod batchingMethod,
56                            int minBatchSize,
57                            int maxBatchSize,
58                            btAlignedObjectArray<char>* scratchMemory);
59         bool validate(btConstraintArray* constraints, const btAlignedObjectArray<btSolverBody>& bodies) const;
60 };
61
62 #endif  // BT_BATCHED_CONSTRAINTS_H