joints.cc
Go to the documentation of this file.
1 /******************************************************************************
2 Copyright (c) 2017, Alexander W. Winkler. All rights reserved.
3 
4 Redistribution and use in source and binary forms, with or without
5 modification, are permitted provided that the following conditions are met:
6 
7 * Redistributions of source code must retain the above copyright notice, this
8  list of conditions and the following disclaimer.
9 
10 * Redistributions in binary form must reproduce the above copyright notice,
11  this list of conditions and the following disclaimer in the documentation
12  and/or other materials provided with the distribution.
13 
14 * Neither the name of the copyright holder nor the names of its
15  contributors may be used to endorse or promote products derived from
16  this software without specific prior written permission.
17 
18 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 ******************************************************************************/
29 
30 #include <xpp_states/joints.h>
31 
32 namespace xpp {
33 
34 
35 Joints::Joints (int n_ee, int n_joints_per_leg, double value)
36  : Base(n_ee)
37 {
38  n_joints_per_leg_ = n_joints_per_leg;
39  n_joints_ = n_ee * n_joints_per_leg;
40 
41  SetAll(VectorXd::Constant(n_joints_per_leg, value));
42 }
43 
44 Joints::Joints (const std::vector<VectorXd>& q_vec)
45  : Joints(q_vec.size(), q_vec.front().rows())
46 {
47  for (auto ee : GetEEsOrdered())
48  at(ee) = q_vec.at(ee);
49 }
50 
51 int
53 {
54  return n_joints_;
55 }
56 
57 int
59 {
60  return n_joints_per_leg_;
61 }
62 
64 Joints::ToVec (const EEOrder& ee_order) const
65 {
66  VectorXd q_combined(n_joints_);
67  int j = 0;
68 
69  for (auto ee : ee_order) {
70  q_combined.middleRows(j, n_joints_per_leg_) = at(ee);
71  j += n_joints_per_leg_;
72  }
73 
74  return q_combined;
75 }
76 
77 void
78 Joints::SetFromVec (const VectorXd& xpp, const EEOrder& ee_order)
79 {
80  int j = 0;
81 
82  for (auto ee : ee_order) {
83  at(ee) = xpp.middleRows(j, n_joints_per_leg_);
84  j += n_joints_per_leg_;
85  }
86 }
87 
89 Joints::ToVec () const
90 {
91  return ToVec(GetEEsOrdered());
92 }
93 
94 void
96 {
98 }
99 
100 double&
102 {
103  div_t result = std::div(joint, n_joints_per_leg_);
104  EndeffectorID ee = result.quot;
105  return at(ee)[result.rem];
106 }
107 
108 double
110 {
111  return ToVec()[joint];
112 }
113 
114 } /* namespace xpp */
void SetAll(const VectorXd &value)
Sets each endeffector to the same value.
std::vector< EndeffectorID > EEOrder
Definition: joints.h:53
int GetNumJointsPerEE() const
Definition: joints.cc:58
VectorXd & at(EndeffectorID ee)
Read/write access to the endeffector stored at index ee.
uint JointID
Definition: joints.h:54
int GetNumJoints() const
Definition: joints.cc:52
VectorXd ToVec() const
Converts joint values to Eigen vector.
Definition: joints.cc:89
double & GetJoint(JointID joint)
Definition: joints.cc:101
void SetFromVec(const VectorXd &q)
Sets joints values from Eigen vector.
Definition: joints.cc:95
Joints(int n_ee, int n_joints_per_ee, double value=0.0)
Constructs joint values all set to value.
Definition: joints.cc:35
Container to access joint values of each endeffectors.
Definition: joints.h:48
int n_joints_
Definition: joints.h:124
uint EndeffectorID
Definition: endeffectors.h:41
int n_joints_per_leg_
Definition: joints.h:123
std::vector< EndeffectorID > GetEEsOrdered() const
Eigen::VectorXd VectorXd
Definition: state.h:50


xpp_states
Author(s): Alexander W. Winkler
autogenerated on Tue Dec 8 2020 03:10:29