Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #include <towr/initialization/monoped_gait_generator.h>
00031
00032 #include <cassert>
00033 #include <iostream>
00034
00035 namespace towr {
00036
00037 void
00038 MonopedGaitGenerator::SetCombo (Combos combo)
00039 {
00040 switch (combo) {
00041 case C0: SetGaits({Stand, Hop1, Hop1, Hop1, Hop1, Stand}); break;
00042 case C1: SetGaits({Stand, Hop1, Hop1, Hop1, Stand}); break;
00043 case C2: SetGaits({Stand, Hop1, Hop1, Hop1, Hop1, Stand}); break;
00044 case C3: SetGaits({Stand, Hop2, Hop2, Hop2, Stand}); break;
00045 case C4: SetGaits({Stand, Hop2, Hop2, Hop2, Hop2, Hop2, Stand}); break;
00046 default: assert(false); std::cout << "Gait not defined\n"; break;
00047 }
00048 }
00049
00050 MonopedGaitGenerator::GaitInfo
00051 MonopedGaitGenerator::GetGait (Gaits gait) const
00052 {
00053 switch (gait) {
00054 case Stand: return GetStrideStand();
00055 case Flight: return GetStrideFlight();
00056 case Hop1: return GetStrideHop();
00057 case Hop2: return GetStrideHopLong();
00058 default: assert(false);
00059 }
00060 }
00061
00062 MonopedGaitGenerator::GaitInfo
00063 MonopedGaitGenerator::GetStrideStand () const
00064 {
00065 auto times =
00066 {
00067 0.5,
00068 };
00069 auto contacts =
00070 {
00071 o_,
00072 };
00073
00074 return std::make_pair(times, contacts);
00075 }
00076
00077 MonopedGaitGenerator::GaitInfo
00078 MonopedGaitGenerator::GetStrideFlight () const
00079 {
00080 auto times =
00081 {
00082 0.5,
00083 };
00084 auto contacts =
00085 {
00086 x_,
00087 };
00088
00089 return std::make_pair(times, contacts);
00090 }
00091
00092 MonopedGaitGenerator::GaitInfo
00093 MonopedGaitGenerator::GetStrideHop () const
00094 {
00095 auto times =
00096 {
00097 0.3, 0.3,
00098 };
00099 auto contacts =
00100 {
00101 o_, x_,
00102 };
00103
00104 return std::make_pair(times, contacts);
00105 }
00106
00107 MonopedGaitGenerator::GaitInfo
00108 MonopedGaitGenerator::GetStrideHopLong () const
00109 {
00110 auto times =
00111 {
00112 0.2, 0.3,
00113 };
00114 auto contacts =
00115 {
00116 o_, x_,
00117 };
00118
00119 return std::make_pair(times, contacts);
00120 }
00121
00122 }