[dali_2.3.21] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-physics / third-party / bullet3 / src / BulletDynamics / MLCPSolvers / btMLCPSolver.h
1 /*
2 Bullet Continuous Collision Detection and Physics Library
3 Copyright (c) 2003-2013 Erwin Coumans  http://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 ///original version written by Erwin Coumans, October 2013
16
17 #ifndef BT_MLCP_SOLVER_H
18 #define BT_MLCP_SOLVER_H
19
20 #include "BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h"
21 #include "LinearMath/btMatrixX.h"
22 #include "BulletDynamics/MLCPSolvers/btMLCPSolverInterface.h"
23
24 class btMLCPSolver : public btSequentialImpulseConstraintSolver
25 {
26 protected:
27         btMatrixXu m_A;
28         btVectorXu m_b;
29         btVectorXu m_x;
30         btVectorXu m_lo;
31         btVectorXu m_hi;
32
33         ///when using 'split impulse' we solve two separate (M)LCPs
34         btVectorXu m_bSplit;
35         btVectorXu m_xSplit;
36         btVectorXu m_bSplit1;
37         btVectorXu m_xSplit2;
38
39         btAlignedObjectArray<int> m_limitDependencies;
40         btAlignedObjectArray<btSolverConstraint*> m_allConstraintPtrArray;
41         btMLCPSolverInterface* m_solver;
42         int m_fallback;
43
44         /// The following scratch variables are not stateful -- contents are cleared prior to each use.
45         /// They are only cached here to avoid extra memory allocations and deallocations and to ensure
46         /// that multiple instances of the solver can be run in parallel.
47         btMatrixXu m_scratchJ3;
48         btMatrixXu m_scratchJInvM3;
49         btAlignedObjectArray<int> m_scratchOfs;
50         btMatrixXu m_scratchMInv;
51         btMatrixXu m_scratchJ;
52         btMatrixXu m_scratchJTranspose;
53         btMatrixXu m_scratchTmp;
54
55         virtual btScalar solveGroupCacheFriendlySetup(btCollisionObject** bodies, int numBodies, btPersistentManifold** manifoldPtr, int numManifolds, btTypedConstraint** constraints, int numConstraints, const btContactSolverInfo& infoGlobal, btIDebugDraw* debugDrawer);
56         virtual btScalar solveGroupCacheFriendlyIterations(btCollisionObject** bodies, int numBodies, btPersistentManifold** manifoldPtr, int numManifolds, btTypedConstraint** constraints, int numConstraints, const btContactSolverInfo& infoGlobal, btIDebugDraw* debugDrawer);
57
58         virtual void createMLCP(const btContactSolverInfo& infoGlobal);
59         virtual void createMLCPFast(const btContactSolverInfo& infoGlobal);
60
61         //return true is it solves the problem successfully
62         virtual bool solveMLCP(const btContactSolverInfo& infoGlobal);
63
64 public:
65         btMLCPSolver(btMLCPSolverInterface* solver);
66         virtual ~btMLCPSolver();
67
68         void setMLCPSolver(btMLCPSolverInterface* solver)
69         {
70                 m_solver = solver;
71         }
72
73         int getNumFallbacks() const
74         {
75                 return m_fallback;
76         }
77         void setNumFallbacks(int num)
78         {
79                 m_fallback = num;
80         }
81
82         virtual btConstraintSolverType getSolverType() const
83         {
84                 return BT_MLCP_SOLVER;
85         }
86 };
87
88 #endif  //BT_MLCP_SOLVER_H