]> git.mxchange.org Git - flightgear.git/blobdiff - src/AIModel/AIBase.cxx
Durk Talsma:
[flightgear.git] / src / AIModel / AIBase.cxx
index d66de0300d9ef08bec26c5719f66012ea7496798..e816b232b70d6c5561c472dd1c688ec34362a66f 100644 (file)
@@ -30,6 +30,7 @@
 #include <plib/ssg.h>
 
 #include <simgear/math/point3d.hxx>
+#include <simgear/math/sg_geodesy.hxx>
 #include <simgear/misc/sg_path.hxx>
 #include <simgear/scene/model/location.hxx>
 #include <simgear/scene/model/model.hxx>
@@ -49,12 +50,14 @@ const double FGAIBase::lbs_to_slugs = 0.031080950172;   //conversion factor
 
 
 FGAIBase::FGAIBase()
 fp( NULL ),
 : fp( NULL ),
     model( NULL ),
     props( NULL ),
-    manager( NULL )
+    manager( NULL ),
+    _refID( _newAIModelID() )
 {
     _type_str = "model";
+    tgt_heading = tgt_altitude = tgt_speed = 0.0;
     tgt_roll = roll = tgt_pitch = tgt_yaw = tgt_vs = vs = pitch = 0.0;
     bearing = elevation = range = rdot = 0.0;
     x_shift = y_shift = rotation = 0.0;
@@ -70,14 +73,17 @@ FGAIBase::FGAIBase()
 
 FGAIBase::~FGAIBase() {
     // Unregister that one at the scenery manager
-    globals->get_scenery()->unregister_placement_transform(aip.getTransform());
-  
-    globals->get_scenery()->get_scene_graph()->removeKid(aip.getSceneGraph());
+    if (globals->get_scenery()) {
+        globals->get_scenery()->unregister_placement_transform(aip.getTransform());
+        globals->get_scenery()->get_scene_graph()->removeKid(aip.getSceneGraph());
+    }
     // unbind();
     SGPropertyNode *root = globals->get_props()->getNode("ai/models", true);
     root->removeChild(_type_str.c_str(), index);
-    if (fp) delete fp;
+    delete fp;
     fp = NULL;
+    ssgDeRefDelete(model);
+    model = 0;
 }
 
 void FGAIBase::update(double dt) {
@@ -96,7 +102,7 @@ void FGAIBase::Transform() {
       } else {
          aip.setOrientation(roll, pitch, hdg);
       }
-      aip.update( globals->get_scenery()->get_center() );    
+      aip.update();    
     }
 }
 
@@ -109,10 +115,14 @@ bool FGAIBase::init() {
    props = root->getNode(_type_str.c_str(), index, true);
 
    if (model_path != "") {
+    try {
       model = load3DModel( globals->get_fg_root(),
                             SGPath(model_path).c_str(),
                              props,
                             globals->get_sim_time_sec() );
+    } catch (const sg_exception &e) {
+       model = NULL;
+    }
    }
    if (model) {
      aip.init( model );
@@ -123,7 +133,7 @@ bool FGAIBase::init() {
      globals->get_scenery()->register_placement_transform(aip.getTransform());
    } else {
      if (model_path != "") { 
-       SG_LOG(SG_INPUT, SG_WARN, "AIBase: Could not load model.");
+       SG_LOG(SG_INPUT, SG_WARN, "AIBase: Could not load model " << model_path);
      }
    } 
 
@@ -150,7 +160,6 @@ ssgBranch * FGAIBase::load3DModel(const string& fg_root,
                            prop_root,
                            sim_time_sec);
       manager->setModel(path, model);
-      model->ref();
     }
   //else
   //  {
@@ -159,6 +168,10 @@ ssgBranch * FGAIBase::load3DModel(const string& fg_root,
   //    aip.setVisible(false);
   //    globals->get_scenery()->get_scene_graph()->addKid(aip.getSceneGraph());
   // do some setModel stuff.
+  
+  if (model)
+    model->ref();
+
   return model;
 }
 
@@ -170,7 +183,7 @@ bool FGAIBase::isa( object_type otype ) {
 
 void FGAIBase::bind() {
    props->tie("id", SGRawValueMethods<FGAIBase,int>(*this,
-                                         &FGAIBase::_getID));
+                                         &FGAIBase::getID));
    props->tie("velocities/true-airspeed-kt",  SGRawValuePointer<double>(&speed));
    props->tie("velocities/vertical-speed-fps",
                SGRawValueMethods<FGAIBase,double>(*this,
@@ -322,6 +335,36 @@ double FGAIBase::UpdateRadar(FGAIManager* manager)
    return range_ft2;
 }
 
+Point3D
+FGAIBase::getCartPosAt(const Point3D& off) const
+{
+  // The offset converted to the usual body fixed coordinate system.
+  sgdVec3 sgdOff;
+  sgdSetVec3(sgdOff, -off.x(), off.z(), -off.y());
+
+  // Transform that one to the horizontal local coordinate system.
+  sgdMat4 hlTrans;
+  sgdMakeRotMat4(hlTrans, hdg, pitch, roll);
+  sgdXformPnt3(sgdOff, hlTrans);
+
+  // Now transform to the wgs84 earth centeres system.
+  Point3D pos2(pos.lon()* SGD_DEGREES_TO_RADIANS,
+               pos.lat() * SGD_DEGREES_TO_RADIANS,
+               pos.elev());
+  Point3D cartPos3D = sgGeodToCart(pos2);
+  sgdMat4 ecTrans;
+  sgdMakeCoordMat4(ecTrans, cartPos3D.x(), cartPos3D.y(), cartPos3D.z(),
+                   pos.lon(), 0, - 90 - pos.lat());
+  sgdXformPnt3(sgdOff, ecTrans);
+
+  return Point3D(sgdOff[0], sgdOff[1], sgdOff[2]);
+}
+
+Point3D
+FGAIBase::getGeocPosAt(const Point3D& off) const
+{
+  return sgCartToGeod(getCartPosAt(off));
+}
 
 /*
  * getters and Setters
@@ -360,8 +403,8 @@ bool FGAIBase::_isNight() {
     return (fgGetFloat("/sim/time/sun-angle-rad") > 1.57);
 }
 
-int FGAIBase::_getID() const {
-    return (int)(this);
+int FGAIBase::getID() const {
+    return  _refID;
 }
 
 void FGAIBase::CalculateMach() {
@@ -399,3 +442,9 @@ void FGAIBase::CalculateMach() {
  //    cout  << "Speed(ft/s) "<< speed <<" Altitude(ft) "<< altitude << " Mach " << Mach;
 }
 
+int FGAIBase::_newAIModelID() {
+   static int id = 0;
+   if (!++id) id++;    // id = 0 is not allowed.
+   return id;
+}
+