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
52 Joints::GetNumJoints () const
53 {
54  return n_joints_;
55 }
56 
57 int
58 Joints::GetNumJointsPerEE () const
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
95 Joints::SetFromVec (const VectorXd& q)
96 {
97  SetFromVec(q, GetEEsOrdered());
98 }
99 
100 double&
101 Joints::GetJoint (JointID joint)
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
109 Joints::GetJoint (JointID joint) const
110 {
111  return ToVec()[joint];
112 }
113 
114 } /* namespace xpp */
xpp::VectorXd
Eigen::VectorXd VectorXd
Definition: state.h:77
xpp::Joints::Joints
Joints(int n_ee, int n_joints_per_ee, double value=0.0)
Constructs joint values all set to value.
Definition: joints.cc:62
xpp::Joints::EEOrder
std::vector< EndeffectorID > EEOrder
Definition: joints.h:107
joints.h
xpp
Definition: cartesian_declarations.h:41
xpp::EndeffectorID
uint EndeffectorID
Definition: endeffectors.h:68


xpp_states
Author(s): Alexander W. Winkler
autogenerated on Wed Mar 2 2022 01:14:14