SVHControlCommand.h
Go to the documentation of this file.
1 //
3 // © Copyright 2022 SCHUNK Mobile Greifsysteme GmbH, Lauffen/Neckar Germany
4 // © Copyright 2022 FZI Forschungszentrum Informatik, Karlsruhe, Germany
5 //
6 // This file is part of the Schunk SVH Library.
7 //
8 // The Schunk SVH Library is free software: you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation, either version 3 of the License, or (at your
11 // option) any later version.
12 //
13 // The Schunk SVH Library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
16 // Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License along with
19 // the Schunk SVH Library. If not, see <https://www.gnu.org/licenses/>.
20 //
22 
23 //----------------------------------------------------------------------
33 //----------------------------------------------------------------------
34 #ifndef SVHCONTROLCOMMAND_H
35 #define SVHCONTROLCOMMAND_H
36 
38 
39 namespace driver_svh {
40 
47 {
49  int32_t position;
50 
55  SVHControlCommand(const int32_t& position = 0)
56  : position(position)
57  {
58  }
59 
61  bool operator==(const SVHControlCommand& other) const { return (position == other.position); }
62 };
63 
69 {
71  std::vector<SVHControlCommand> commands;
72 
85  SVHControlCommandAllChannels(const int32_t& position0,
86  const int32_t& position1,
87  const int32_t& position2,
88  const int32_t& position3,
89  const int32_t& position4,
90  const int32_t& position5,
91  const int32_t& position6,
92  const int32_t& position7,
93  const int32_t& position8)
94  {
95  commands.push_back(SVHControlCommand(position0));
96  commands.push_back(SVHControlCommand(position1));
97  commands.push_back(SVHControlCommand(position2));
98  commands.push_back(SVHControlCommand(position3));
99  commands.push_back(SVHControlCommand(position4));
100  commands.push_back(SVHControlCommand(position5));
101  commands.push_back(SVHControlCommand(position6));
102  commands.push_back(SVHControlCommand(position7));
103  commands.push_back(SVHControlCommand(position8));
104  }
105 
110  SVHControlCommandAllChannels(const std::vector<int32_t>& positions)
111  {
112  commands.insert(commands.begin(), positions.begin(), positions.begin() + 9);
113  }
114 
120  : commands(9, SVHControlCommand())
121  {
122  }
123 
125  bool operator==(const SVHControlCommandAllChannels& other) const
126  {
127  return (commands == other.commands);
128  }
129 };
130 
131 
135  const SVHControlCommand& data)
136 {
137  ab << data.position;
138  return ab;
139 }
140 
141 
144 {
145  ab >> data.position;
146  return ab;
147 }
148 
150 inline std::ostream& operator<<(std::ostream& o, const SVHControlCommand& cc)
151 {
152  o << "Pos: " << cc.position << std::endl;
153  return o;
154 }
155 
158  const SVHControlCommandAllChannels& data)
159 {
160  // We could also just give the whole vector in ...
161  for (std::vector<SVHControlCommand>::const_iterator it = data.commands.begin();
162  it != data.commands.end();
163  ++it)
164  {
165  ab << *it;
166  }
167  return ab;
168 }
169 
170 
174 {
175  for (std::vector<SVHControlCommand>::iterator it = data.commands.begin();
176  it != data.commands.end();
177  ++it)
178  {
179  ab >> *it;
180  }
181  return ab;
182 }
183 
184 
186 inline std::ostream& operator<<(std::ostream& o, const SVHControlCommandAllChannels& cc)
187 {
188  o << "Commands: ";
189  unsigned int i = 0;
190  for (std::vector<SVHControlCommand>::const_iterator it = cc.commands.begin();
191  it != cc.commands.end();
192  ++it)
193  {
194  o << "Chan " << i << " : " << *it;
195  ++i;
196  }
197  o << std::endl;
198  return o;
199 }
200 } // namespace driver_svh
201 
202 #endif // SVHCONTROLCOMMAND_H
Structure for transmitting all controllcommands at once.
bool operator==(const SVHControlCommand &other) const
Compares two SVHControlCommand objects.
int32_t position
Returned position value of the motor [Ticks].
driver_svh::ArrayBuilder & operator<<(driver_svh::ArrayBuilder &ab, const SVHControlCommand &data)
SVHControlCommandAllChannels()
Constructs an empty SVHControlCommandAllChannels structure pre filled with 9 empty SVHControlCommands...
ControlCommands are given as a single target position for the position controller (given in ticks) ...
driver_svh::ArrayBuilder & operator>>(driver_svh::ArrayBuilder &ab, SVHControlCommand &data)
overload stream operator to easily deserialize control commands for one channel
SVHControlCommand(const int32_t &position=0)
Constructs a new control command to comandeer the position of the fingers.
SVHControlCommandAllChannels(const int32_t &position0, const int32_t &position1, const int32_t &position2, const int32_t &position3, const int32_t &position4, const int32_t &position5, const int32_t &position6, const int32_t &position7, const int32_t &position8)
Constructs a controllcommand adressing all channels at once All.
SVHControlCommandAllChannels(const std::vector< int32_t > &positions)
Construct a control command for all channels from a vector. Only the first 9 Values are used...
bool operator==(const SVHControlCommandAllChannels &other) const
Compares two SVHControlCommand objects.
std::vector< SVHControlCommand > commands
Multiple controllcommands that shall be send at once.


schunk_svh_library
Author(s): Georg Heppner, Lars Pfotzer, Felix Exner, Johannes Mangler, Stefan Scherzinger, Pascal Becker
autogenerated on Fri Apr 14 2023 02:26:23