]> git.mxchange.org Git - flightgear.git/blobdiff - src/Airports/gnnode.cxx
toggle fullscreen: also adapt GUI plane when resizing
[flightgear.git] / src / Airports / gnnode.cxx
index 9bde0078037f6ecadf11974326ed50fd436435e7..1f0e13d26077c6cf22632db834f76599083cd5df 100644 (file)
@@ -1,98 +1,56 @@
 #include "gnnode.hxx"
-#include "groundnetwork.hxx"
 
-#include <iostream>
-#include <algorithm>
+#include <boost/foreach.hpp>
+
+#include "groundnetwork.hxx"
 
-#include <osg/Geode>
+#include <Navaids/NavDataCache.hxx>
 #include <Main/globals.hxx>
 #include <Scenery/scenery.hxx>
 
-using std::sort;
-
-/*****************************************************************************
- * Helper function for parsing position string
- ****************************************************************************/
-double processPosition(const string &pos)
-{
-  string prefix;
-  string subs;
-  string degree;
-  string decimal;
-  int sign = 1;
-  double value;
-  subs = pos;
-  prefix= subs.substr(0,1);
-  if (prefix == string("S") || (prefix == string("W")))
-    sign = -1;
-  subs    = subs.substr(1, subs.length());
-  degree  = subs.substr(0, subs.find(" ",0));
-  decimal = subs.substr(subs.find(" ",0), subs.length());
-  
-             
-  //cerr << sign << " "<< degree << " " << decimal << endl;
-  value = sign * (atof(degree.c_str()) + atof(decimal.c_str())/60.0);
-  //cerr << value <<endl;
-  //exit(1);
-  return value;
-}
-
-//bool sortByHeadingDiff(FGTaxiSegment *a, FGTaxiSegment *b) {
-//  return a->hasSmallerHeadingDiff(*b);
-//}
-
-bool sortByLength(FGTaxiSegment *a, FGTaxiSegment *b) {
-  return a->getLength() > b->getLength();
-}
+using namespace flightgear;
 
 /**************************************************************************
  * FGTaxiNode
  *************************************************************************/
-void FGTaxiNode::setElevation(double val)
-{
-    geod.setElevationM(val);
-}
 
-void FGTaxiNode::setLatitude (double val)
+FGTaxiNode::FGTaxiNode(PositionedID aGuid, const SGGeod& pos, bool aOnRunway, int aHoldType) :
+  FGPositioned(aGuid, FGPositioned::PARKING, "", pos),
+  isOnRunway(aOnRunway),
+  holdType(aHoldType)
 {
-  geod.setLatitudeDeg(val);
+  
 }
 
-void FGTaxiNode::setLongitude(double val)
+FGTaxiNode::~FGTaxiNode()
 {
-  geod.setLongitudeDeg(val);
 }
 
-void FGTaxiNode::setLatitude (const string& val)
+void FGTaxiNode::setElevation(double val)
 {
-  geod.setLatitudeDeg(processPosition(val));
+  // ignored for the moment
 }
 
-void FGTaxiNode::setLongitude(const string& val)
+double FGTaxiNode::getElevationFt()
 {
-  geod.setLongitudeDeg(processPosition(val));
-}
-  
-double FGTaxiNode::getElevationFt(double refelev)
-{
-    double elevF = geod.getElevationFt();
-    double elevationEnd = 0;
-    if ((elevF == 0) || (elevF == refelev)) {
-        SGGeod center2 = geod;
-        FGScenery * local_scenery = globals->get_scenery();
-        center2.setElevationM(SG_MAX_ELEVATION_M);
-        if (local_scenery->get_elevation_m( center2, elevationEnd, NULL )) {
-            geod.setElevationM(elevationEnd);
-        }
+  if (mPosition.getElevationFt() == 0.0) {
+    SGGeod center2 = mPosition;
+    FGScenery* local_scenery = globals->get_scenery();
+    center2.setElevationM(SG_MAX_ELEVATION_M);
+    double elevationEnd = -100;
+    if (local_scenery->get_elevation_m( center2, elevationEnd, NULL )) {
+      
+      SGGeod newPos = mPosition;
+      newPos.setElevationM(elevationEnd);
+    // this will call modifyPosition to update mPosition
+      NavDataCache::instance()->updatePosition(guid(), newPos);
     }
-    //cerr << "Returning elevation : " << geod.getElevationM() << ". Ref elev (feet) = " << refelev << endl;
-    return geod.getElevationFt();
+  }
+  
+  return mPosition.getElevationFt();
 }
 
-double FGTaxiNode::getElevationM(double refelev)
+double FGTaxiNode::getElevationM()
 {
-    double refelevFt = refelev * SG_METER_TO_FEET;
-    double retval = getElevationFt(refelevFt);
-    //cerr << "Returning elevation : " << geod.getElevationM() << ". Ref elev (meters) = " << refelev << endl;
-    return geod.getElevationM();
+  return getElevationFt() * SG_FEET_TO_METER;
 }