00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef __PATH_H__
00013 #define __PATH_H__
00014
00015 #include <deque>
00016 #include <iostream>
00017
00018 #include <art/epsilon.h>
00019 #include <art/conversions.h>
00020 #include <art_map/zones.h>
00021
00022 class Path
00023 {
00024 public:
00025 Path()
00026 {
00027 path.clear();
00028 };
00029
00030 ~Path()
00031 {
00032
00033 path.clear();
00034 };
00035
00036
00037
00038
00039
00040
00041 WayPointEdge at(unsigned index) const
00042 {
00043 if (path.size() > index)
00044 return path.at(index);
00045 else if (path.size() > 0)
00046 return last();
00047 else
00048 return WayPointEdge();
00049 }
00050
00051 void clear(void)
00052 {
00053 path.clear();
00054 }
00055
00056
00057 WayPointEdge last(void) const
00058 {
00059 if (path.empty())
00060 return WayPointEdge();
00061 return path.at(path.size()-1);
00062 }
00063
00064 void pop_front(void)
00065 {
00066 if (path.size() > 1)
00067 path.pop_front();
00068 }
00069
00070 void new_path(waypt_index_t startid,
00071 waypt_index_t endid,
00072 const WayPointEdgeList& edges)
00073 {
00074 path.clear();
00075
00076 append_path(startid, endid, edges);
00077
00078 }
00079
00080
00081 void append_path(waypt_index_t startid,
00082 waypt_index_t endid,
00083 const WayPointEdgeList& edges)
00084 {
00085
00086 if (edges.empty())
00087 {
00088 WayPointEdge new_edge;
00089 new_edge.startnode_index=startid;
00090 new_edge.endnode_index=endid;
00091 new_edge.speed_min=0;
00092 new_edge.distance=0.0;
00093 new_edge.speed_max=DEFAULT_ZONE_SPEED;
00094 path.push_back(new_edge);
00095 return;
00096 }
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112 for (uint i=0; i < edges.size(); i++)
00113 {
00114 path.push_back(edges[i]);
00115
00116 }
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133 }
00134
00135
00136
00137
00138 unsigned size(void) const
00139 {
00140 return path.size();
00141 }
00142
00143
00144 bool empty(void) const
00145 {
00146 return path.empty();
00147 }
00148
00149 void print(const Graph& graph)
00150 {
00151 ROS_INFO("===============");
00152 for (unsigned i = 0; i < path.size(); i++)
00153 {
00154 if (i==0)
00155 ROS_INFO_STREAM("route [" << i << "] is "
00156 << graph.get_node_by_index(path.at(i).startnode_index)->id.name().str);
00157
00158 ROS_INFO_STREAM("route [" << i+1 << "] is "
00159 << graph.get_node_by_index(path.at(i).endnode_index)->id.name().str);
00160 }
00161 ROS_INFO("================");
00162 }
00163
00164
00165 private:
00166
00167 std::deque<WayPointEdge> path;
00168
00169 };
00170
00171 #endif // __PATH_H__