[dali_2.3.21] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-physics / third-party / bullet3 / src / BulletDynamics / Featherstone / btMultiBodySolverConstraint.h
1 /*
2 Bullet Continuous Collision Detection and Physics Library
3 Copyright (c) 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
16 #ifndef BT_MULTIBODY_SOLVER_CONSTRAINT_H
17 #define BT_MULTIBODY_SOLVER_CONSTRAINT_H
18
19 #include "LinearMath/btVector3.h"
20 #include "LinearMath/btAlignedObjectArray.h"
21
22 class btMultiBody;
23 class btMultiBodyConstraint;
24 #include "BulletDynamics/ConstraintSolver/btSolverBody.h"
25 #include "BulletDynamics/ConstraintSolver/btContactSolverInfo.h"
26
27 ///1D constraint along a normal axis between bodyA and bodyB. It can be combined to solve contact and friction constraints.
28 ATTRIBUTE_ALIGNED16(struct)
29 btMultiBodySolverConstraint
30 {
31         BT_DECLARE_ALIGNED_ALLOCATOR();
32
33         btMultiBodySolverConstraint() : m_solverBodyIdA(-1), m_multiBodyA(0), m_linkA(-1), m_solverBodyIdB(-1), m_multiBodyB(0), m_linkB(-1), m_orgConstraint(0), m_orgDofIndex(-1)
34         {
35         }
36
37         int m_deltaVelAindex;  //more generic version of m_relpos1CrossNormal/m_contactNormal1
38         int m_jacAindex;
39         int m_deltaVelBindex;
40         int m_jacBindex;
41
42         btVector3 m_relpos1CrossNormal;
43         btVector3 m_contactNormal1;
44         btVector3 m_relpos2CrossNormal;
45         btVector3 m_contactNormal2;  //usually m_contactNormal2 == -m_contactNormal1, but not always
46
47         btVector3 m_angularComponentA;
48         btVector3 m_angularComponentB;
49
50         mutable btSimdScalar m_appliedPushImpulse;
51         mutable btSimdScalar m_appliedImpulse;
52
53         btScalar m_friction;
54         btScalar m_jacDiagABInv;
55         btScalar m_rhs;
56         btScalar m_cfm;
57
58         btScalar m_lowerLimit;
59         btScalar m_upperLimit;
60         btScalar m_rhsPenetration;
61         union {
62                 void* m_originalContactPoint;
63                 btScalar m_unusedPadding4;
64         };
65
66         int m_overrideNumSolverIterations;
67         int m_frictionIndex;
68
69         int m_solverBodyIdA;
70         btMultiBody* m_multiBodyA;
71         int m_linkA;
72
73         int m_solverBodyIdB;
74         btMultiBody* m_multiBodyB;
75         int m_linkB;
76
77         //for writing back applied impulses
78         btMultiBodyConstraint* m_orgConstraint;
79         int m_orgDofIndex;
80
81         enum btSolverConstraintType
82         {
83                 BT_SOLVER_CONTACT_1D = 0,
84                 BT_SOLVER_FRICTION_1D
85         };
86 };
87
88 typedef btAlignedObjectArray<btMultiBodySolverConstraint> btMultiBodyConstraintArray;
89
90 #endif  //BT_MULTIBODY_SOLVER_CONSTRAINT_H