]> git.mxchange.org Git - flightgear.git/blobdiff - src/Model/modelmgr.cxx
I have added Aaron Wilson's virtual 3d runway projection to the HUD.
[flightgear.git] / src / Model / modelmgr.cxx
index 29693ecf1e11ef2218fa28c2966cbcf99242733e..4175f65bf9de7bd0275bbe635ea6882c51fe9421 100644 (file)
@@ -3,13 +3,26 @@
 //
 // This file is in the Public Domain, and comes with no warranty.
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+#include <simgear/compiler.h>
+
+#include <vector>
+
 #include <plib/ssg.h>
 
+#include <simgear/scene/model/placement.hxx>
+#include <simgear/scene/model/model.hxx>
+
 #include <Main/fg_props.hxx>
 #include <Scenery/scenery.hxx>
 
+
 #include "modelmgr.hxx"
-#include "model.hxx"
+
+SG_USING_STD(vector);
 
 
 FGModelMgr::FGModelMgr ()
@@ -36,9 +49,15 @@ FGModelMgr::init ()
     SG_LOG(SG_GENERAL, SG_INFO,
           "Adding model " << node->getStringValue("name", "[unnamed]"));
     Instance * instance = new Instance;
-    FGModelPlacement * model = new FGModelPlacement;
+    SGModelPlacement *model = new SGModelPlacement;
     instance->model = model;
-    model->init(node->getStringValue("path", "Models/Geometry/glider.ac"));
+    ssgBranch *object
+        = sgLoad3DModel( globals->get_fg_root(),
+                         node->getStringValue("path",
+                                              "Models/Geometry/glider.ac"),
+                         globals->get_props(),
+                         globals->get_sim_time_sec() );
+    model->init( object );
 
                                // Set position and orientation either
                                // indirectly through property refs
@@ -102,7 +121,7 @@ FGModelMgr::update (double dt)
 {
   for (unsigned int i = 0; i < _instances.size(); i++) {
     Instance * instance = _instances[i];
-    FGModelPlacement * model = instance->model;
+    SGModelPlacement * model = instance->model;
 
                                // Optionally set position from properties
     if (instance->lon_deg_node != 0)
@@ -120,7 +139,7 @@ FGModelMgr::update (double dt)
     if (instance->heading_deg_node != 0)
       model->setHeadingDeg(instance->heading_deg_node->getDoubleValue());
 
-    instance->model->update();
+    instance->model->update( globals->get_scenery()->get_center() );
   }
 }