2002-09-27 22:01:33 +00:00
|
|
|
// util.hxx - general-purpose utility functions.
|
2004-11-19 22:10:41 +00:00
|
|
|
// Copyright (C) 2002 Curtis L. Olson - http://www.flightgear.org/~curt
|
2002-09-27 22:01:33 +00:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
2006-02-21 01:16:04 +00:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2002-09-27 22:01:33 +00:00
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
#ifndef __UTIL_HXX
|
|
|
|
#define __UTIL_HXX 1
|
|
|
|
|
2013-10-14 23:02:05 +00:00
|
|
|
#include <string>
|
2015-03-13 18:07:24 +00:00
|
|
|
#include <simgear/misc/sg_path.hxx>
|
2002-09-27 22:01:33 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Move a value towards a target.
|
|
|
|
*
|
|
|
|
* This function was originally written by Alex Perry.
|
|
|
|
*
|
|
|
|
* @param current The current value.
|
|
|
|
* @param target The target value.
|
|
|
|
* @param timeratio The percentage of smoothing time that has passed
|
|
|
|
* (elapsed time/smoothing time)
|
|
|
|
* @return The new value.
|
|
|
|
*/
|
2013-10-14 23:02:05 +00:00
|
|
|
double fgGetLowPass (double current, double target, double timeratio);
|
2002-09-27 22:01:33 +00:00
|
|
|
|
2008-07-11 16:36:54 +00:00
|
|
|
/**
|
2015-03-13 17:54:44 +00:00
|
|
|
* File access control, used by Nasal and fgcommands.
|
2008-07-11 16:36:54 +00:00
|
|
|
* @param path Path to be validated
|
|
|
|
* @param write True for write operations and false for read operations.
|
2015-11-22 11:03:00 +00:00
|
|
|
* @return The validated path on success or empty if access denied.
|
|
|
|
*
|
|
|
|
* Warning: because this always (not just on Windows) treats both \ and /
|
|
|
|
* as path separators, and accepts relative paths (check-to-use race if
|
|
|
|
* the current directory changes),
|
|
|
|
* always use the returned path not the original one
|
2008-07-11 16:36:54 +00:00
|
|
|
*/
|
2016-07-03 22:59:40 +00:00
|
|
|
SGPath fgValidatePath(const SGPath& path, bool write);
|
2008-07-11 16:36:54 +00:00
|
|
|
|
2015-03-13 17:54:44 +00:00
|
|
|
/**
|
|
|
|
* Set allowed paths for fgValidatePath
|
|
|
|
*/
|
|
|
|
void fgInitAllowedPaths();
|
|
|
|
|
2002-09-27 22:01:33 +00:00
|
|
|
#endif // __UTIL_HXX
|