]> git.mxchange.org Git - flightgear.git/blobdiff - src/Model/modelmgr.hxx
Positioned/Cache tweaks to support PoIs.
[flightgear.git] / src / Model / modelmgr.hxx
index 073598fb147bd2a7c8e10922cbda9d5f0016cfb3..0b1cf53435248d91511b2181c75682fd5962b229 100644 (file)
 #include <simgear/compiler.h>  // for SG_USING_STD
 #include <simgear/structure/subsystem_mgr.hxx>
 
-SG_USING_STD(vector);
+using std::vector;
 
 // Don't pull in headers, since we don't need them here.
-class ssgSelector;
 class SGPropertyNode;
 class SGModelPlacement;
 
@@ -48,12 +47,14 @@ public:
     Instance ();
     virtual ~Instance ();
     SGModelPlacement * model;
+    SGPropertyNode_ptr node;
     SGPropertyNode_ptr lon_deg_node;
     SGPropertyNode_ptr lat_deg_node;
     SGPropertyNode_ptr elev_ft_node;
     SGPropertyNode_ptr roll_deg_node;
     SGPropertyNode_ptr pitch_deg_node;
     SGPropertyNode_ptr heading_deg_node;
+    bool shadow;
   };
 
   FGModelMgr ();
@@ -86,13 +87,26 @@ public:
    */
   virtual void remove_instance (Instance * instance);
 
-  virtual void draw ();
 
 private:
+  /**
+   * Listener class that adds models at runtime.
+   */
+  class Listener : public SGPropertyChangeListener
+  {
+  public:
+    Listener(FGModelMgr *mgr) : _mgr(mgr) {}
+    virtual void childAdded (SGPropertyNode * parent, SGPropertyNode * child);
+    virtual void childRemoved (SGPropertyNode * parent, SGPropertyNode * child);
 
-  vector<Instance *> _instances;
+  private:
+    FGModelMgr * _mgr;
+  };
+
+  SGPropertyNode_ptr _models;
+  Listener * _listener;
 
-  ssgSharedPtr<ssgSelector> _selector;
+  vector<Instance *> _instances;
 
 };