]> git.mxchange.org Git - flightgear.git/blob - src/Main/viewmgr.hxx
Added static port system and a new altimeter model connected to it.
[flightgear.git] / src / Main / viewmgr.hxx
1 // viewmgr.hxx -- class for managing all the views in the flightgear world.
2 //
3 // Written by Curtis Olson, started October 2000.
4 //
5 // Copyright (C) 2000  Curtis L. Olson  - curt@flightgear.org
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22
23
24 #ifndef _VIEWMGR_HXX
25 #define _VIEWMGR_HXX
26
27
28 #ifndef __cplusplus                                                          
29 # error This library requires C++
30 #endif                                   
31
32
33 #include <simgear/compiler.h>
34
35 #ifdef HAVE_CONFIG_H
36 #  include <config.h>
37 #endif
38
39 #include <vector>
40
41 #include "fgfs.hxx"
42 #include "viewer.hxx"
43
44 SG_USING_STD(vector);
45
46
47 // Define a structure containing view information
48 class FGViewMgr : public FGSubsystem
49 {
50
51 public:
52
53     // Constructor
54     FGViewMgr( void );
55
56     // Destructor
57     ~FGViewMgr( void );
58
59     virtual void init ();
60     virtual void bind ();
61     virtual void unbind ();
62     virtual void update (double dt);
63
64     // getters
65     inline int size() const { return views.size(); }
66     inline int get_current() const { return current; }
67     inline FGViewer *get_current_view() {
68         if ( current < (int)views.size() ) {
69             return views[current];
70         } else {
71             return NULL;
72         }
73     }
74     inline const FGViewer *get_current_view() const {
75         if ( current < (int)views.size() ) {
76             return views[current];
77         } else {
78             return NULL;
79         }
80     }
81     inline FGViewer *get_view( int i ) {
82         if ( i < 0 ) { i = 0; }
83         if ( i >= (int)views.size() ) { i = views.size() - 1; }
84         return views[i];
85     }
86     inline const FGViewer *get_view( int i ) const {
87         if ( i < 0 ) { i = 0; }
88         if ( i >= (int)views.size() ) { i = views.size() - 1; }
89         return views[i];
90     }
91     inline FGViewer *next_view() {
92         ++current;
93         if ( current >= (int)views.size() ) {
94             current = 0;
95         }
96         copyToCurrent();
97         return views[current];
98     }
99     inline FGViewer *prev_view() {
100         --current;
101         if ( current < 0 ) {
102             current = views.size() - 1;
103         }
104         return views[current];
105     }
106
107     // setters
108     inline void clear() { views.clear(); }
109     inline void set_view( const int v ) { current = v; }
110     inline void add_view( FGViewer * v ) {
111         views.push_back(v);
112         v->init();
113     }
114     // copies current offset settings to current-view path...
115     void copyToCurrent ();
116
117 private:
118
119     double axis_long;
120     double axis_lat;
121
122     void do_axes ();
123
124     double getViewOffset_deg () const;
125     void setViewOffset_deg (double offset);
126     double getGoalViewOffset_deg () const;
127     void setGoalViewOffset_deg (double offset);
128     double getViewTilt_deg () const;
129     void setViewTilt_deg (double tilt);
130     double getGoalViewTilt_deg () const;
131     void setGoalViewTilt_deg (double tilt);
132     double getPilotXOffset_m () const;
133     void setPilotXOffset_m (double x);
134     double getPilotYOffset_m () const;
135     void setPilotYOffset_m (double y);
136     double getPilotZOffset_m () const;
137     void setPilotZOffset_m (double z);
138     double getFOV_deg () const;
139     void setFOV_deg (double fov);
140     double getNear_m () const;
141     void setNear_m (double near_m);
142     void setViewAxisLong (double axis);
143     void setViewAxisLat (double axis);
144
145     typedef vector < FGViewer * > viewer_list;
146     viewer_list views;
147
148     int current;
149
150 };
151
152
153 #endif // _VIEWMGR_HXX