DART  6.6.2
Group.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011-2018, The DART development contributors
3  * All rights reserved.
4  *
5  * The list of contributors can be found at:
6  * https://github.com/dartsim/dart/blob/master/LICENSE
7  *
8  * This file is provided under the following "BSD-style" License:
9  * Redistribution and use in source and binary forms, with or
10  * without modification, are permitted provided that the following
11  * conditions are met:
12  * * Redistributions of source code must retain the above copyright
13  * notice, this list of conditions and the following disclaimer.
14  * * Redistributions in binary form must reproduce the above
15  * copyright notice, this list of conditions and the following
16  * disclaimer in the documentation and/or other materials provided
17  * with the distribution.
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
19  * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
20  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
23  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
26  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
27  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
29  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  */
32 
34 
35 #ifndef DART_DYNAMICS_GROUP_HPP_
36 #define DART_DYNAMICS_GROUP_HPP_
37 
38 namespace dart {
39 namespace dynamics {
40 
41 class Group : public ReferentialSkeleton
42 {
43 public:
44 
49  static GroupPtr create(
50  const std::string& _name = "Group",
51  const std::vector<BodyNode*>& _bodyNodes = std::vector<BodyNode*>(),
52  bool _includeJoints = true,
53  bool _includeDofs = true);
54 
59  static GroupPtr create(
60  const std::string& _name,
61  const std::vector<DegreeOfFreedom*>& _dofs,
62  bool _includeBodyNodes = true,
63  bool _includeJoints = true);
64 
66  static GroupPtr create(
67  const std::string& _name,
68  const MetaSkeletonPtr& _metaSkeleton);
69 
71  virtual ~Group() = default;
72 
74  void swapBodyNodeIndices(std::size_t _index1, std::size_t _index2);
75 
77  void swapDofIndices(std::size_t _index1, std::size_t _index2);
78 
85  bool addComponent(BodyNode* _bn, bool _warning=true);
86 
93  bool addComponents(const std::vector<BodyNode*>& _bodyNodes,
94  bool _warning=true);
95 
102  bool removeComponent(BodyNode* _bn, bool _warning=true);
103 
110  bool removeComponents(const std::vector<BodyNode*>& _bodyNodes,
111  bool _warning=true);
112 
118  bool addBodyNode(BodyNode* _bn, bool _warning=true);
119 
126  bool addBodyNodes(const std::vector<BodyNode*>& _bodyNodes,
127  bool _warning=true);
128 
134  bool removeBodyNode(BodyNode* _bn, bool _warning=true);
135 
141  bool removeBodyNodes(const std::vector<BodyNode*>& _bodyNodes,
142  bool _warning=true);
143 
151  bool addJoint(Joint* _joint, bool _addDofs=true, bool _warning=true);
152 
161  bool addJoints(const std::vector<Joint*>& _joints, bool _addDofs=true,
162  bool _warning=true);
163 
172  bool removeJoint(Joint* _joint, bool _removeDofs=true, bool _warning=true);
173 
182  bool removeJoints(const std::vector<Joint*>& _joints, bool _removeDofs=true,
183  bool _warning=true);
184 
192  bool addDof(DegreeOfFreedom* _dof, bool _addJoint=true, bool _warning=true);
193 
201  bool addDofs(const std::vector<DegreeOfFreedom*>& _dofs,
202  bool _addJoint = true, bool _warning=true);
203 
212  bool removeDof(DegreeOfFreedom* _dof, bool _cleanupJoint=true,
213  bool _warning=true);
214 
223  bool removeDofs(const std::vector<DegreeOfFreedom*>& _dofs,
224  bool _cleanupJoint=true, bool _warning=true);
225 
226 protected:
228  Group(const std::string& _name,
229  const std::vector<BodyNode*>& _bodyNodes,
230  bool _includeJoints,
231  bool _includeDofs);
232 
234  Group(const std::string& _name,
235  const std::vector<DegreeOfFreedom*>& _dofs,
236  bool _includeBodyNodes,
237  bool _includeJoints);
238 
240  Group(const std::string& _name,
241  const MetaSkeletonPtr& _metaSkeleton);
242 };
243 
244 } // dynamics
245 } // dart
246 
247 #endif // DART_DYNAMICS_GROUP_HPP_
BodyNode class represents a single node of the skeleton.
Definition: BodyNode.hpp:78
DegreeOfFreedom class is a proxy class for accessing single degrees of freedom (aka generalized coord...
Definition: DegreeOfFreedom.hpp:53
Definition: Group.hpp:42
bool removeBodyNodes(const std::vector< BodyNode * > &_bodyNodes, bool _warning=true)
Remove a set of BodyNodes from this Group.
Definition: Group.cpp:341
bool removeBodyNode(BodyNode *_bn, bool _warning=true)
Remove a BodyNode from this Group.
Definition: Group.cpp:308
bool removeComponents(const std::vector< BodyNode * > &_bodyNodes, bool _warning=true)
Remove a set of BodyNodes and their parent DegreesOfFreedom from this Group.
Definition: Group.cpp:254
void swapDofIndices(std::size_t _index1, std::size_t _index2)
Swap the index of DegreeOfFreedom _index1 with _index2.
Definition: Group.cpp:122
bool removeDof(DegreeOfFreedom *_dof, bool _cleanupJoint=true, bool _warning=true)
Remove a DegreeOfFreedom from this Group.
Definition: Group.cpp:521
bool addBodyNode(BodyNode *_bn, bool _warning=true)
Add a BodyNode to this Group.
Definition: Group.cpp:265
bool removeComponent(BodyNode *_bn, bool _warning=true)
Remove a BodyNode and its parent DegreesOfFreedom from this Group.
Definition: Group.cpp:220
bool addDofs(const std::vector< DegreeOfFreedom * > &_dofs, bool _addJoint=true, bool _warning=true)
Add a set of DegreesOfFreedom to this Group.
Definition: Group.cpp:510
bool removeJoints(const std::vector< Joint * > &_joints, bool _removeDofs=true, bool _warning=true)
Remove a set of Joints from this Group.
bool addComponents(const std::vector< BodyNode * > &_bodyNodes, bool _warning=true)
Add set of BodyNodes and their parent DegreesOfFreedom to this Group.
Definition: Group.cpp:209
static GroupPtr create(const std::string &_name="Group", const std::vector< BodyNode * > &_bodyNodes=std::vector< BodyNode * >(), bool _includeJoints=true, bool _includeDofs=true)
Create a Group out of a set of BodyNodes.
Definition: Group.cpp:43
bool addComponent(BodyNode *_bn, bool _warning=true)
Add a BodyNode and its parent DegreesOfFreedom to this Group.
Definition: Group.cpp:176
bool addBodyNodes(const std::vector< BodyNode * > &_bodyNodes, bool _warning=true)
Add a set of BodyNodes to this Group.
Definition: Group.cpp:297
bool removeDofs(const std::vector< DegreeOfFreedom * > &_dofs, bool _cleanupJoint=true, bool _warning=true)
Remove a set of DegreesOfFreedom from this Group.
Definition: Group.cpp:588
bool addJoint(Joint *_joint, bool _addDofs=true, bool _warning=true)
Add a Joint to this Group.
Definition: Group.cpp:352
void swapBodyNodeIndices(std::size_t _index1, std::size_t _index2)
Swap the index of BodyNode _index1 with _index2.
Definition: Group.cpp:72
Group(const std::string &_name, const std::vector< BodyNode * > &_bodyNodes, bool _includeJoints, bool _includeDofs)
Default constructor.
Definition: Group.cpp:599
bool removeJoint(Joint *_joint, bool _removeDofs=true, bool _warning=true)
Remove a Joint from this Group.
Definition: Group.cpp:412
bool addJoints(const std::vector< Joint * > &_joints, bool _addDofs=true, bool _warning=true)
Add a set of Joints to this Group.
Definition: Group.cpp:401
virtual ~Group()=default
Destructor.
bool addDof(DegreeOfFreedom *_dof, bool _addJoint=true, bool _warning=true)
Add a DegreeOfFreedom to this Group.
Definition: Group.cpp:464
class Joint
Definition: Joint.hpp:59
ReferentialSkeleton is a base class used to implement Linkage, Group, and other classes that are used...
Definition: ReferentialSkeleton.hpp:48
std::shared_ptr< MetaSkeleton > MetaSkeletonPtr
Definition: SmartPointer.hpp:68
std::shared_ptr< Group > GroupPtr
Definition: SmartPointer.hpp:73
Definition: BulletCollisionDetector.cpp:63