]> git.mxchange.org Git - flightgear.git/blob - src/Include/general.hxx
Small tweaks to initialization sequence and logic so we can default to
[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  - curt@infoplane.com
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., 675 Mass Ave, Cambridge, MA 02139, 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
35 // #define FANCY_FRAME_COUNTER
36 #ifdef FANCY_FRAME_COUNTER
37 #define FG_FRAME_RATE_HISTORY 10
38 #endif
39
40
41 // the general house keeping structure definition
42 class FGGeneral {
43     // Info about OpenGL
44     char *glVendor;
45     char *glRenderer;
46     char *glVersion;
47     int glMaxTexSize;
48     int glDepthBits;
49
50     // Last frame rate measurement
51     int frame_rate;
52 #ifdef FANCY_FRAME_COUNTER
53     double frames[FG_FRAME_RATE_HISTORY];
54 #endif
55
56 public:
57
58     inline void set_glVendor( char *str ) { glVendor = str; }
59     inline char* get_glRenderer() const { return glRenderer; }
60     inline void set_glRenderer( char *str ) { glRenderer = str; }
61     inline void set_glVersion( char *str ) { glVersion = str; }
62     inline void set_glMaxTexSize( int i ) { glMaxTexSize = i; }
63     inline int get_glMaxTexSize() const { return glMaxTexSize; }
64     inline void set_glDepthBits( int d ) { glDepthBits = d; }
65     inline int get_glDepthBits() const { return glDepthBits; }
66     inline double get_frame_rate() const { return frame_rate; }
67 #ifdef FANCY_FRAME_COUNTER
68     inline double get_frame(int idx) const { return frames[idx]; }
69     inline void set_frame( int idx, double value ) { frames[idx] = value; }
70     inline void set_frame_rate( double rate ) { frame_rate = rate; }
71 #else
72     inline void set_frame_rate( int rate ) { frame_rate = rate; }
73 #endif
74 };
75
76 // general contains all the general house keeping parameters.
77 extern FGGeneral general;
78
79
80 #endif // _GENERAL_HXX
81
82