momentumopt
Definitions.hpp
Go to the documentation of this file.
1 
9 #pragma once
10 
11 #include <yaml_cpp_catkin/yaml_cpp_fwd.hpp>
12 
13 namespace momentumopt {
14 
18  struct Problem
19  {
21  static constexpr int n_endeffs_ = 4;
22 
24  enum class EffId { id_right_foot = 0,
25  id_left_foot = 1,
26  id_right_hand = 2,
27  id_left_hand = 3 };
28 
30  static bool isHand(int eff_id) {
31  if (eff_id == static_cast<int>(EffId::id_left_hand) ||
32  eff_id == static_cast<int>(EffId::id_right_hand))
33  return true;
34  return false;
35  }
36 
38  static std::string idToEndeffectorString(int eff_id) {
39  switch (eff_id) {
40  case static_cast<int>(EffId::id_right_foot): { return std::string("rf"); break; }
41  case static_cast<int>(EffId::id_left_foot ): { return std::string("lf"); break; }
42  case static_cast<int>(EffId::id_right_hand): { return std::string("rh"); break; }
43  case static_cast<int>(EffId::id_left_hand ): { return std::string("lh"); break; }
44  default: { throw std::runtime_error("eff_id not handled in idToEndeffectorString. \n"); }
45  }
46  }
47 
48  };
49 }
static std::string idToEndeffectorString(int eff_id)
Definition: Definitions.hpp:38
Helper structure used to define common functionality and naming conventions.
Definition: Definitions.hpp:18
static bool isHand(int eff_id)
Definition: Definitions.hpp:30
EffId
Definition: Definitions.hpp:24
static constexpr int n_endeffs_
Definition: Definitions.hpp:21