]> git.mxchange.org Git - flightgear.git/blob - src/Include/general.hxx
Merge branch 'torsten/js64' into next
[flightgear.git] / src / Include / general.hxx
1 // general.hxx -- a general house keeping data structure definition for 
2 //                various info that might need to be accessible from all 
3 //                parts of the sim.
4 //
5 // Written by Curtis Olson, started July 1997.
6 //
7 // Copyright (C) 1997  Curtis L. Olson  - http://www.flightgear.org/~curt
8 //
9 // This program is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU General Public License as
11 // published by the Free Software Foundation; either version 2 of the
12 // License, or (at your option) any later version.
13 //
14 // This program is distributed in the hope that it will be useful, but
15 // WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 // General Public License for more details.
18 //
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
22 //
23 // $Id$
24
25
26 #ifndef _GENERAL_HXX
27 #define _GENERAL_HXX
28
29
30 #ifndef __cplusplus                                                          
31 # error This library requires C++
32 #endif                                   
33
34 #include <simgear/structure/OSGVersion.hxx>
35 #define FG_OSG_VERSION SG_OSG_VERSION
36
37 // #define FANCY_FRAME_COUNTER
38 #ifdef FANCY_FRAME_COUNTER
39 #define FG_FRAME_RATE_HISTORY 10
40 #endif
41
42
43 // the general house keeping structure definition
44 class FGGeneral {
45     // Info about OpenGL
46     char *glVendor;
47     char *glRenderer;
48     char *glVersion;
49     int glMaxTexSize;
50     int glDepthBits;
51
52     // Last frame rate measurement
53     int frame_rate;
54 #ifdef FANCY_FRAME_COUNTER
55     double frames[FG_FRAME_RATE_HISTORY];
56 #endif
57
58 public:
59
60     inline void set_glVendor( char *str ) { glVendor = str; }
61     inline char* get_glRenderer() const { return glRenderer; }
62     inline void set_glRenderer( char *str ) { glRenderer = str; }
63     inline void set_glVersion( char *str ) { glVersion = str; }
64     inline void set_glMaxTexSize( int i ) { glMaxTexSize = i; }
65     inline int get_glMaxTexSize() const { return glMaxTexSize; }
66     inline void set_glDepthBits( int d ) { glDepthBits = d; }
67     inline int get_glDepthBits() const { return glDepthBits; }
68     inline double get_frame_rate() const { return frame_rate; }
69 #ifdef FANCY_FRAME_COUNTER
70     inline double get_frame(int idx) const { return frames[idx]; }
71     inline void set_frame( int idx, double value ) { frames[idx] = value; }
72     inline void set_frame_rate( double rate ) { frame_rate = rate; }
73 #else
74     inline void set_frame_rate( int rate ) { frame_rate = rate; }
75 #endif
76 };
77
78 // general contains all the general house keeping parameters.
79 extern FGGeneral general;
80
81
82 #endif // _GENERAL_HXX
83
84