]> git.mxchange.org Git - flightgear.git/blob - src/Main/util.hxx
Merge branch 'next' of D:\Git_New\flightgear into next
[flightgear.git] / src / Main / util.hxx
1 // util.hxx - general-purpose utility functions.
2 // Copyright (C) 2002  Curtis L. Olson  - http://www.flightgear.org/~curt
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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, 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  * Set up a plausible wind layout, boundary and aloft,
42  * based on just a few parameters.
43  *
44  * @param min_hdg Minimal wind heading
45  * @param max_hdg Maximal wind heading
46  * @param speed Windspeed in knots
47  * @param gust Wind gust variation in knots
48  */
49 extern void fgSetupWind (double min_hdg, double max_hdg,
50                          double speed, double gust);
51
52 /**
53  * Move a value towards a target.
54  *
55  * This function was originally written by Alex Perry.
56  *
57  * @param current The current value.
58  * @param target The target value.
59  * @param timeratio The percentage of smoothing time that has passed 
60  *        (elapsed time/smoothing time)
61  * @return The new value.
62  */
63 extern double fgGetLowPass (double current, double target, double timeratio);
64
65
66 /**
67  * Unescape string.
68  *
69  * @param str String possibly containing escaped characters.
70  * @return string with escaped characters replaced by single character values.
71  */
72 extern std::string fgUnescape (const char *str);
73
74
75 /**
76  * Validation listener interface for io.nas, used by fgcommands.
77  * @param path Path to be validated
78  * @param write True for write operations and false for read operations.
79  * @return The validated path on success or 0 if access denied.
80  */
81 extern const char *fgValidatePath (const char *path, bool write);
82
83 #endif // __UTIL_HXX