10 TrigRoads::TrigRoads(
const int pol,
const int top_bot)
20 if (idx < 0 || idx > (
int)m_roads.size())
return 0;
26 auto it = m_idx_map.find(road_id);
27 if (it != m_idx_map.end())
return &m_roads[it->second];
36 m_file_name = file_name;
37 ifstream ifs(file_name);
43 while (getline(ifs, buffer)) {
44 if (buffer[0] ==
'#' || buffer[0] ==
'r')
continue;
50 >> road.
H1X >> road.
H2X >> road.
H3X >> road.
H4X))
continue;
51 if (road.
road_id * m_top_bot <= 0)
continue;
52 if (road.
charge * m_pol <= 0)
continue;
53 m_roads.push_back(road);
54 m_idx_map[road.
road_id] = idx++;
63 oss << (m_pol > 0 ?
'+' :
'-') << (m_top_bot > 0 ?
'T' :
'B');
64 if (level > 0) oss <<
"[" << m_roads.size() <<
"]";
66 for (
auto it = m_roads.begin(); it != m_roads.end(); it++) oss <<
" " << it->str(level - 2);
int LoadConfig(const std::string file_name)
TrigRoad * FindRoad(const int road_id)
std::string str(const int level=0) const
TrigRoad * GetRoad(const int idx)