]> git.mxchange.org Git - flightgear.git/blob - src/Main/util.hxx
Depreciate NetworkOLK. A big thanks goes to Oliver Delise for implementing it in...
[flightgear.git] / src / Main / util.hxx
1 // util.hxx - general-purpose utility functions.
2 // Copyright (C) 2002  Curtis L. Olson  - curt@me.umn.edu
3 //
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License as
6 // published by the Free Software Foundation; either version 2 of the
7 // License, or (at your option) any later version.
8 //
9 // This program is distributed in the hope that it will be useful, but
10 // WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 // General Public License for more details.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 //
18 // $Id$
19
20
21 #ifndef __UTIL_HXX
22 #define __UTIL_HXX 1
23
24 #ifndef __cplusplus
25 # error This library requires C++
26 #endif
27
28
29 /**
30  * Initialize a single value through all existing weather levels.
31  *
32  * This function is useful mainly from the command-line.
33  *
34  * @param propname The name of the subproperty to initialized.
35  * @param value The initial value.
36  */
37 extern void fgDefaultWeatherValue (const char * propname, double value);
38
39
40 /**
41  * Clean up and exit FlightGear.
42  *
43  * This function makes sure that network connections and I/O streams
44  * are cleaned up.
45  *
46  * @param status The exit status to pass to the operating system.
47  */
48 extern void fgExit (int status = 0);
49
50
51 /**
52  * Move a value towards a target.
53  *
54  * This function was originally written by Alex Perry.
55  *
56  * @param current The current value.
57  * @param target The target value.
58  * @param timeratio The percentage of smoothing time that has passed 
59  *        (elapsed time/smoothing time)
60  * @return The new value.
61  */
62 extern double fgGetLowPass (double current, double target, double timeratio);
63
64
65 #endif // __UTIL_HXX