[dali_2.3.21] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-physics / third-party / bullet3 / src / BulletDynamics / Featherstone / btMultiBodyGearConstraint.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 ///This file was written by Erwin Coumans
17
18 #ifndef BT_MULTIBODY_GEAR_CONSTRAINT_H
19 #define BT_MULTIBODY_GEAR_CONSTRAINT_H
20
21 #include "btMultiBodyConstraint.h"
22
23 class btMultiBodyGearConstraint : public btMultiBodyConstraint
24 {
25 protected:
26         btRigidBody* m_rigidBodyA;
27         btRigidBody* m_rigidBodyB;
28         btVector3 m_pivotInA;
29         btVector3 m_pivotInB;
30         btMatrix3x3 m_frameInA;
31         btMatrix3x3 m_frameInB;
32         btScalar m_gearRatio;
33         int m_gearAuxLink;
34         btScalar m_erp;
35         btScalar m_relativePositionTarget;
36
37 public:
38         //btMultiBodyGearConstraint(btMultiBody* body, int link, btRigidBody* bodyB, const btVector3& pivotInA, const btVector3& pivotInB, const btMatrix3x3& frameInA, const btMatrix3x3& frameInB);
39         btMultiBodyGearConstraint(btMultiBody* bodyA, int linkA, btMultiBody* bodyB, int linkB, const btVector3& pivotInA, const btVector3& pivotInB, const btMatrix3x3& frameInA, const btMatrix3x3& frameInB);
40
41         virtual ~btMultiBodyGearConstraint();
42
43         virtual void finalizeMultiDof();
44
45         virtual int getIslandIdA() const;
46         virtual int getIslandIdB() const;
47
48         virtual void createConstraintRows(btMultiBodyConstraintArray& constraintRows,
49                                                                           btMultiBodyJacobianData& data,
50                                                                           const btContactSolverInfo& infoGlobal);
51
52         const btVector3& getPivotInA() const
53         {
54                 return m_pivotInA;
55         }
56
57         void setPivotInA(const btVector3& pivotInA)
58         {
59                 m_pivotInA = pivotInA;
60         }
61
62         const btVector3& getPivotInB() const
63         {
64                 return m_pivotInB;
65         }
66
67         virtual void setPivotInB(const btVector3& pivotInB)
68         {
69                 m_pivotInB = pivotInB;
70         }
71
72         const btMatrix3x3& getFrameInA() const
73         {
74                 return m_frameInA;
75         }
76
77         void setFrameInA(const btMatrix3x3& frameInA)
78         {
79                 m_frameInA = frameInA;
80         }
81
82         const btMatrix3x3& getFrameInB() const
83         {
84                 return m_frameInB;
85         }
86
87         virtual void setFrameInB(const btMatrix3x3& frameInB)
88         {
89                 m_frameInB = frameInB;
90         }
91
92         virtual void debugDraw(class btIDebugDraw* drawer)
93         {
94                 //todo(erwincoumans)
95         }
96
97         virtual void setGearRatio(btScalar gearRatio)
98         {
99                 m_gearRatio = gearRatio;
100         }
101         virtual void setGearAuxLink(int gearAuxLink)
102         {
103                 m_gearAuxLink = gearAuxLink;
104         }
105         virtual void setRelativePositionTarget(btScalar relPosTarget)
106         {
107                 m_relativePositionTarget = relPosTarget;
108         }
109         virtual void setErp(btScalar erp)
110         {
111                 m_erp = erp;
112         }
113 };
114
115 #endif  //BT_MULTIBODY_GEAR_CONSTRAINT_H