ActionMultiplePinchTight.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2020 IIT-HHCM
3  * Author: Davide Torielli
4  * email: davide.torielli@iit.it
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18 
19 #ifndef __ROSEE_ACTIONMULTIPLEPINCHTIGHT_H
20 #define __ROSEE_ACTIONMULTIPLEPINCHTIGHT_H
21 
24 #include <yaml-cpp/yaml.h>
25 #include <iostream>
26 
27 namespace ROSEE {
28 
49 {
50 
51 public:
52 
53  typedef std::map < std::set<std::string>, ActionMultiplePinchTight > Map;
54 
56  typedef std::pair <JointPos, double> StateWithDepth;
57 
60  ActionMultiplePinchTight (std::set <std::string>, JointPos, double depthSum );
61 
62  JointPos getJointPos () const override;
63  JointPos getJointPos (unsigned int index) const;
64 
65  std::vector < ROSEE::JointPos > getAllJointPos () const override;
66 
71  std::vector < ROSEE::ActionMultiplePinchTight::StateWithDepth > getActionStates() const;
72 
83  bool insertActionState (JointPos, double depthSum);
84 
85  void print () const override;
86  void emitYaml ( YAML::Emitter& ) const override;
87  bool fillFromYaml( YAML::const_iterator yamlIt ) override;
88 
89 private:
90 
95  struct depthComp {
96  bool operator() (const StateWithDepth& a, const StateWithDepth& b) const
97  {return (std::abs(a.second) < std::abs(b.second) );}
98  };
99 
105  std::set < StateWithDepth, depthComp > actionStates;
106 
107 };
108 
109 }
110 
111 #endif // __ROSEE_ACTIONMULTIPLEPINCHTIGHT_H
bool operator()(const StateWithDepth &a, const StateWithDepth &b) const
std::map< std::string, std::vector< double > > JointPos
The map to describe the position of all actuated joints. The key is the name of the string...
Definition: Action.h:40
std::vector< ROSEE::ActionMultiplePinchTight::StateWithDepth > getActionStates() const
Specific get for the ActionMultiplePinchTight to return the state with the paired depthSum...
A base virtual class for the PinchTight and PinchLoose classes. It includes member and method that ar...
Class to describe the action of "pinching" with more than 2 tips (with 2 tips there is the ActionPinc...
std::pair< JointPos, double > StateWithDepth
A pair to "link" the JointPos with the depthSum info to order the StateWithDepth in the actionState s...
void print() const override
Overridable functions, if we want to make them more action-specific.
std::set< StateWithDepth, depthComp > actionStates
For each multiple pinch possible, we want a set of action because we want to store (in general) more ...
struct to put in order the actionStates. with "<" we put as best the position that has less sumDepth...
void emitYaml(YAML::Emitter &) const override
Function to fill the argument passed with info about the action. Pure virtual because each derived cl...
bool insertActionState(JointPos, double depthSum)
function to insert a single action in the actionStates set of possible action. If the action is not s...
JointPos getJointPos() const override
Get the position related to this action. Pure Virtual function: the derived class store this info dif...
const unsigned int maxStoredActionStates
std::map< std::set< std::string >, ActionMultiplePinchTight > Map
bool fillFromYaml(YAML::const_iterator yamlIt) override
function to fill members of the Action with infos taken from yaml files
std::vector< ROSEE::JointPos > getAllJointPos() const override
Return all the joint position stored. If the concrete (derived from Action) has only one joint positi...


end-effector
Author(s): Luca Muratore , Davide Torielli , Liana Bertoni
autogenerated on Tue Apr 5 2022 02:57:52