]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/viewmgr.hxx
Added static port system and a new altimeter model connected to it.
[flightgear.git] / src / Main / viewmgr.hxx
index 80928abf0debb025583203b98943532526346b80..9cccf8c5f555e27c119eabe883121e7780275e94 100644 (file)
 
 #include <vector>
 
-#include "viewer_lookat.hxx"
-#include "viewer_rph.hxx"
+#include "fgfs.hxx"
+#include "viewer.hxx"
 
-FG_USING_STD(vector);
+SG_USING_STD(vector);
 
 
 // Define a structure containing view information
-class FGViewMgr {
-
-private:
-
-    typedef vector < FGViewer * > viewer_list;
-    viewer_list views;
-
-    int current;
+class FGViewMgr : public FGSubsystem
+{
 
 public:
 
@@ -62,21 +56,44 @@ public:
     // Destructor
     ~FGViewMgr( void );
 
+    virtual void init ();
+    virtual void bind ();
+    virtual void unbind ();
+    virtual void update (double dt);
+
     // getters
     inline int size() const { return views.size(); }
-    inline FGViewer *get_view() {
-       return views[current];
+    inline int get_current() const { return current; }
+    inline FGViewer *get_current_view() {
+       if ( current < (int)views.size() ) {
+           return views[current];
+       } else {
+           return NULL;
+       }
+    }
+    inline const FGViewer *get_current_view() const {
+       if ( current < (int)views.size() ) {
+           return views[current];
+       } else {
+           return NULL;
+       }
     }
     inline FGViewer *get_view( int i ) {
        if ( i < 0 ) { i = 0; }
        if ( i >= (int)views.size() ) { i = views.size() - 1; }
        return views[i];
     }
+    inline const FGViewer *get_view( int i ) const {
+       if ( i < 0 ) { i = 0; }
+       if ( i >= (int)views.size() ) { i = views.size() - 1; }
+       return views[i];
+    }
     inline FGViewer *next_view() {
        ++current;
        if ( current >= (int)views.size() ) {
            current = 0;
        }
+        copyToCurrent();
        return views[current];
     }
     inline FGViewer *prev_view() {
@@ -89,10 +106,47 @@ public:
 
     // setters
     inline void clear() { views.clear(); }
+    inline void set_view( const int v ) { current = v; }
     inline void add_view( FGViewer * v ) {
        views.push_back(v);
-       current = views.size() - 1;
+        v->init();
     }
+    // copies current offset settings to current-view path...
+    void copyToCurrent ();
+
+private:
+
+    double axis_long;
+    double axis_lat;
+
+    void do_axes ();
+
+    double getViewOffset_deg () const;
+    void setViewOffset_deg (double offset);
+    double getGoalViewOffset_deg () const;
+    void setGoalViewOffset_deg (double offset);
+    double getViewTilt_deg () const;
+    void setViewTilt_deg (double tilt);
+    double getGoalViewTilt_deg () const;
+    void setGoalViewTilt_deg (double tilt);
+    double getPilotXOffset_m () const;
+    void setPilotXOffset_m (double x);
+    double getPilotYOffset_m () const;
+    void setPilotYOffset_m (double y);
+    double getPilotZOffset_m () const;
+    void setPilotZOffset_m (double z);
+    double getFOV_deg () const;
+    void setFOV_deg (double fov);
+    double getNear_m () const;
+    void setNear_m (double near_m);
+    void setViewAxisLong (double axis);
+    void setViewAxisLat (double axis);
+
+    typedef vector < FGViewer * > viewer_list;
+    viewer_list views;
+
+    int current;
+
 };