DARTJoint.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2014-2016 Open Source Robotics Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16 */
17 
18 #ifndef _GAZEBO_DARTJOINT_HH_
19 #define _GAZEBO_DARTJOINT_HH_
20 
21 #include <boost/any.hpp>
22 #include <string>
23 
25 #include "gazebo/physics/Joint.hh"
28 #include "gazebo/util/system.hh"
29 
30 namespace gazebo
31 {
32  namespace physics
33  {
35  class DARTJointPrivate;
36 
39 
41  class GZ_PHYSICS_VISIBLE DARTJoint : public Joint
42  {
45  public: DARTJoint(BasePtr _parent);
46 
48  public: virtual ~DARTJoint();
49 
50  // Documentation inherited.
51  public: virtual void Load(sdf::ElementPtr _sdf);
52 
54  public: virtual void Init();
55 
56  // Documentation inherited.
57  public: virtual void Reset();
58 
59  // Documentation inherited.
60  public: virtual LinkPtr GetJointLink(unsigned int _index) const;
61 
62  // Documentation inherited.
63  public: virtual bool AreConnected(LinkPtr _one, LinkPtr _two) const;
64 
65  // Documentation inherited.
66  public: virtual void Attach(LinkPtr _parent, LinkPtr _child);
67 
68  // Documentation inherited.
69  public: virtual void CacheForceTorque();
70 
71  // Documentation inherited.
72  public: virtual void Detach();
73 
75  public: virtual void SetAnchor(unsigned int /*_index*/,
76  const gazebo::math::Vector3 &/*_anchor*/);
77 
78  // Documentation inherited
79  public: virtual void SetDamping(unsigned int _index, double _damping);
80 
81  // Documentation inherited.
82  public: virtual void SetStiffness(unsigned int _index,
83  const double _stiffness);
84 
85  // Documentation inherited.
86  public: virtual void SetStiffnessDamping(unsigned int _index,
87  double _stiffness, double _damping, double _reference = 0);
88 
89  // Documentation inherited.
90  public: virtual bool SetHighStop(unsigned int _index,
91  const math::Angle &_angle);
92 
93  // Documentation inherited.
94  public: virtual bool SetLowStop(unsigned int _index,
95  const math::Angle &_angle);
96 
97  // Documentation inherited.
98  public: virtual math::Angle GetHighStop(unsigned int _index);
99 
100  // Documentation inherited.
101  public: virtual math::Angle GetLowStop(unsigned int _index);
102 
103  // Documentation inherited.
104  public: virtual math::Vector3 GetLinkForce(unsigned int _index) const;
105 
106  // Documentation inherited.
107  public: virtual math::Vector3 GetLinkTorque(unsigned int _index) const;
108 
109  // Documentation inherited.
110  public: virtual bool SetParam(const std::string &_key,
111  unsigned int _index,
112  const boost::any &_value);
113 
114  // Documentation inherited.
115  public: virtual double GetParam(const std::string &_key,
116  unsigned int _index);
117 
118  // Documentation inherited.
119  public: virtual JointWrench GetForceTorque(unsigned int _index);
120 
121  // Documentation inherited.
122  public: virtual void SetForce(unsigned int _index, double _force);
123 
124  // Documentation inherited.
125  public: virtual double GetForce(unsigned int _index);
126 
127  // Documentation inherited.
128  public: virtual unsigned int GetAngleCount() const;
129 
130  // Documentation inherited.
131  public: virtual void ApplyDamping();
132 
141  protected: virtual void SetForceImpl(unsigned int _index,
142  double _force) = 0;
143 
147  private: void SaveForce(unsigned int _index, double _force);
148 
151  public: DARTModelPtr GetDARTModel() const;
152 
155  public: dart::dynamics::Joint *GetDARTJoint();
156 
159  protected: DARTJointPrivate *dataPtr;
160  };
162  }
163 }
164 #endif
boost::shared_ptr< Link > LinkPtr
Definition: PhysicsTypes.hh:109
The Vector3 class represents the generic vector containing 3 elements.
Definition: Vector3.hh:39
boost::shared_ptr< DARTModel > DARTModelPtr
Definition: DARTTypes.hh:44
Base class for all joints.
Definition: Joint.hh:50
Wrench information from a joint.
Definition: JointWrench.hh:39
GAZEBO_VISIBLE void Init(google::protobuf::Message &_message, const std::string &_id="")
Initialize a message.
DART joint interface.
Definition: DARTJoint.hh:41
An angle and related functions.
Definition: Angle.hh:53
boost::shared_ptr< Base > BasePtr
Definition: PhysicsTypes.hh:77
DARTJointPrivate * dataPtr
Definition: DARTJoint.hh:159