1 // This program is free software; you can redistribute it and/or
2 // modify it under the terms of the GNU General Public License as
3 // published by the Free Software Foundation; either version 2 of the
4 // License, or (at your option) any later version.
6 // This program is distributed in the hope that it will be useful, but
7 // WITHOUT ANY WARRANTY; without even the implied warranty of
8 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
9 // General Public License for more details.
11 // You should have received a copy of the GNU General Public License
12 // along with this program; if not, write to the Free Software
13 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 #include <simgear/compiler.h>
23 #include <simgear/math/sg_geodesy.hxx>
26 typedef std::vector<FGTaxiSegment*> FGTaxiSegmentVector;
27 typedef FGTaxiSegmentVector::iterator FGTaxiSegmentVectorIterator;
29 bool sortByHeadingDiff(FGTaxiSegment *a, FGTaxiSegment *b);
30 bool sortByLength (FGTaxiSegment *a, FGTaxiSegment *b);
40 FGTaxiSegmentVector next; // a vector of pointers to all the segments leaving from this node
42 // used in way finding
44 FGTaxiNode* previousNode;
45 FGTaxiSegment* previousSeg;
58 FGTaxiNode(const FGTaxiNode &other) :
61 isOnRunway(other.isOnRunway),
62 holdType(other.holdType),
64 pathScore(other.pathScore),
65 previousNode(other.previousNode),
66 previousSeg(other.previousSeg)
70 FGTaxiNode &operator =(const FGTaxiNode &other)
74 isOnRunway = other.isOnRunway;
75 holdType = other.holdType;
77 pathScore = other.pathScore;
78 previousNode = other.previousNode;
79 previousSeg = other.previousSeg;
83 void setIndex(int idx) { index = idx; };
84 void setLatitude (double val);
85 void setLongitude(double val);
86 void setLatitude (const std::string& val);
87 void setLongitude(const std::string& val);
88 void addSegment(FGTaxiSegment *segment) { next.push_back(segment); };
89 void setHoldPointType(int val) { holdType = val; };
90 void setOnRunway(bool val) { isOnRunway = val; };
92 void setPathScore (double val) { pathScore = val; };
93 void setPreviousNode(FGTaxiNode *val) { previousNode = val; };
94 void setPreviousSeg (FGTaxiSegment *val) { previousSeg = val; };
96 FGTaxiNode *getPreviousNode() { return previousNode; };
97 FGTaxiSegment *getPreviousSegment() { return previousSeg; };
99 double getPathScore() { return pathScore; };
100 double getLatitude() { return geod.getLatitudeDeg();};
101 double getLongitude(){ return geod.getLongitudeDeg();};
103 const SGGeod& getGeod() const { return geod; }
105 int getIndex() { return index; };
106 int getHoldPointType() { return holdType; };
107 bool getIsOnRunway() { return isOnRunway; };
109 FGTaxiNode *getAddress() { return this;};
110 FGTaxiSegmentVectorIterator getBeginRoute() { return next.begin(); };
111 FGTaxiSegmentVectorIterator getEndRoute() { return next.end(); };
112 bool operator<(const FGTaxiNode &other) const { return index < other.index; };
114 void sortEndSegments(bool);
118 typedef std::vector<FGTaxiNode*> FGTaxiNodeVector;
119 typedef FGTaxiNodeVector::iterator FGTaxiNodeVectorIterator;