1 // general.hxx -- a general house keeping data structure definition for
2 // various info that might need to be accessible from all
5 // Written by Curtis Olson, started July 1997.
7 // Copyright (C) 1997 Curtis L. Olson - http://www.flightgear.org/~curt
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.
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.
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.
31 # error This library requires C++
35 // #define FANCY_FRAME_COUNTER
36 #ifdef FANCY_FRAME_COUNTER
37 #define FG_FRAME_RATE_HISTORY 10
41 // the general house keeping structure definition
50 // Last frame rate measurement
52 #ifdef FANCY_FRAME_COUNTER
53 double frames[FG_FRAME_RATE_HISTORY];
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; }
72 inline void set_frame_rate( int rate ) { frame_rate = rate; }
76 // general contains all the general house keeping parameters.
77 extern FGGeneral general;
80 #endif // _GENERAL_HXX