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
00031
00032
00033
00034
00035
00036
00037 #ifndef HLCOMBINE_HPP_
00038 #define HLCOMBINE_HPP_
00039 #include <auv_msgs/BodyVelocityReq.h>
00040
00041 #include <boost/array.hpp>
00042
00043 #include <string>
00044 #include <set>
00045
00046 struct ControllerInfo
00047 {
00048 std::string name;
00049 std::vector<std::string> requiredSubControllers;
00050 std::vector<int> requiredDOF;
00051 };
00052
00053
00054
00055 struct HLCombine
00056 {
00057 HLCombine()
00058 {
00059
00060 for (int i=0; i<nuVals.size(); ++i) nuVals[i]="";
00061 }
00062
00063 typedef std::set<std::string> ControllerCollection;
00064
00065 void setControllers(const std::vector<ControllerInfo>& controllers)
00066 {
00067 std::vector<std::string> disableControllers;
00068 std::vector<std::string> enableControllers;
00069
00070
00071 std::vector<ControllerInfo> subcon;
00072 for (int j=0; j<controller.requiredSubControllers.size(); ++j)
00073 {
00074
00075 subcon.push_back(regControllers[controller.requredSubControllers[j]]);
00076 }
00077
00078 setControllers(subcon);
00079
00080
00081 for (int i=0; i< controllers.size(); ++i)
00082 {
00083 ControllerInfo& controller = controllers[i];
00084 for(int j=0; j<controller.requiredDOF.size(); ++j)
00085 {
00086 int reqDOF = controller.requiredDOF[j];
00087 if (nuVals[reqDOF] != "")
00088 {
00089 disableControllers.push_back(nuVals[reqDOF]);
00090
00091 disableControllers.insert(disableControllers.end(),
00092 regControllers[nuVals[reqDOF]].requiredSubControllers.begin(),
00093 regControllers[nuVals[reqDOF]].requiredSubControllers.end());
00094 }
00095 nuVals[reqDOF] = controller.name;
00096 }
00097
00098 enableControllers.push_back(controller.name);
00099 }
00100 }
00101
00102 void step(const std::map<std::string, boost::array<double,6> >& results, boost::array<double,6>& nuRef)
00103 {
00104 for (size_t i=0; i<6;++i)
00105 {
00106 nuRef[0] = results[nuVals[0]][0];
00107 }
00108 }
00109
00110 const std::map<std::string, ControllerInfo> regControllers;
00111 boost::array<std::string,6> nuVals;
00112 };
00113
00114 #endif
00115
00116
00117