]> git.mxchange.org Git - flightgear.git/blob - src/Main/viewmgr.hxx
fec031cf574d1080e8a18a2bdccfd2b7fd5a525c
[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 (int 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         return views[current];
97     }
98     inline FGViewer *prev_view() {
99         --current;
100         if ( current < 0 ) {
101             current = views.size() - 1;
102         }
103         return views[current];
104     }
105
106     // setters
107     inline void clear() { views.clear(); }
108     inline void set_view( const int v ) { current = v; }
109     inline void add_view( FGViewer * v, int type ) {
110         views.push_back(v);
111         v->setType(type);
112         v->init();
113     }
114
115 private:
116
117     double axis_long;
118     double axis_lat;
119
120     void do_axes ();
121
122     double getViewOffset_deg () const;
123     void setViewOffset_deg (double offset);
124     double getGoalViewOffset_deg () const;
125     void setGoalViewOffset_deg (double offset);
126     double getViewTilt_deg () const;
127     void setViewTilt_deg (double tilt);
128     double getGoalViewTilt_deg () const;
129     void setGoalViewTilt_deg (double tilt);
130     double getPilotXOffset_m () const;
131     void setPilotXOffset_m (double x);
132     double getPilotYOffset_m () const;
133     void setPilotYOffset_m (double y);
134     double getPilotZOffset_m () const;
135     void setPilotZOffset_m (double z);
136     double getFOV_deg () const;
137     void setFOV_deg (double fov);
138     void setViewAxisLong (double axis);
139     void setViewAxisLat (double axis);
140
141     typedef vector < FGViewer * > viewer_list;
142     viewer_list views;
143
144     int current;
145
146 };
147
148
149 #endif // _VIEWMGR_HXX
150
151
152
153