]> git.mxchange.org Git - flightgear.git/blobdiff - src/Airports/gnnode.hxx
toggle fullscreen: also adapt GUI plane when resizing
[flightgear.git] / src / Airports / gnnode.hxx
index 5902badfbb7cf342df2bab035fa77583983ef6d0..2ade6673d57bc43ff22a184b4131ed022b308098 100644 (file)
 #ifndef _GN_NODE_HXX_
 #define _GN_NODE_HXX_
 
-#include <vector>
-#include <string>
-
 #include <simgear/compiler.h>
 #include <simgear/structure/SGSharedPtr.hxx>
 
 #include <Navaids/positioned.hxx>
 
-class FGTaxiSegment;
-
-typedef std::vector<FGTaxiSegment*>  FGTaxiSegmentVector;
-typedef FGTaxiSegmentVector::iterator FGTaxiSegmentVectorIterator;
-
-bool sortByHeadingDiff(FGTaxiSegment *a, FGTaxiSegment *b);
-bool sortByLength     (FGTaxiSegment *a, FGTaxiSegment *b);
-
 class FGTaxiNode : public FGPositioned
 {
 protected:
-  int index;
-
   bool isOnRunway;
   int  holdType;
-  FGTaxiSegmentVector next; // a vector of pointers to all the segments leaving from this node
-
-  // used in way finding - should really move to a dynamic struct
-  double pathScore;
-  FGTaxiNode* previousNode;
-  FGTaxiSegment* previousSeg;
-
 
 public:    
-  FGTaxiNode(PositionedID aGuid, int index, const SGGeod& pos, bool aOnRunway, int aHoldType);
+  FGTaxiNode(PositionedID aGuid, const SGGeod& pos, bool aOnRunway, int aHoldType);
   virtual ~FGTaxiNode();
   
   void setElevation(double val);
-  void addSegment(FGTaxiSegment *segment) { next.push_back(segment);     };
-
-  void setPathScore   (double val)         { pathScore    = val; };
-  void setPreviousNode(FGTaxiNode *val)    { previousNode = val; };
-  void setPreviousSeg (FGTaxiSegment *val) { previousSeg  = val; };
 
-  FGTaxiNode    *getPreviousNode()    { return previousNode; };
-  FGTaxiSegment *getPreviousSegment() { return previousSeg;  };
-
-  double getPathScore() { return pathScore; };
-
-  double getElevationM (double refelev);
-  double getElevationFt(double refelev);
+  double getElevationM ();
+  double getElevationFt();
   
-  int getIndex() const { return index; };
+  PositionedID getIndex() const { return guid(); };
   int getHoldPointType() const { return holdType; };
   bool getIsOnRunway() const { return isOnRunway; };
-
-  const FGTaxiSegmentVector& arcs() const
-  { return next; }
-  
-  /// find the arg which leads from this node to another.
-  /// returns NULL if no such arc exists.
-  FGTaxiSegment* getArcTo(FGTaxiNode* aEnd) const;
-  
-  bool operator<(const FGTaxiNode &other) const { return index < other.index; };
-
-
 };
 
 typedef SGSharedPtr<FGTaxiNode> FGTaxiNode_ptr;