2002-02-22 22:51:34 +00:00
|
|
|
// environment-mgr.hxx -- manager for natural environment information.
|
|
|
|
//
|
|
|
|
// Written by David Megginson, started February 2002.
|
|
|
|
//
|
|
|
|
// Copyright (C) 2002 David Megginson - david@megginson.com
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
#ifndef _ENVIRONMENT_MGR_HXX
|
|
|
|
#define _ENVIRONMENT_MGR_HXX
|
|
|
|
|
|
|
|
#include <simgear/compiler.h>
|
|
|
|
|
|
|
|
#include <Main/fgfs.hxx>
|
|
|
|
|
|
|
|
#ifdef SG_HAVE_STD_INCLUDES
|
|
|
|
# include <cmath>
|
|
|
|
#else
|
|
|
|
# include <math.h>
|
|
|
|
#endif
|
|
|
|
|
2002-05-07 00:03:54 +00:00
|
|
|
class FGEnvironment;
|
|
|
|
class FGEnvironmentCtrl;
|
2002-02-22 22:51:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Manage environment information.
|
|
|
|
*/
|
|
|
|
class FGEnvironmentMgr : public FGSubsystem
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
FGEnvironmentMgr ();
|
|
|
|
virtual ~FGEnvironmentMgr ();
|
|
|
|
|
|
|
|
virtual void init ();
|
|
|
|
virtual void bind ();
|
|
|
|
virtual void unbind ();
|
2002-05-11 16:28:50 +00:00
|
|
|
virtual void update (double dt);
|
2002-02-22 22:51:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the environment information for the plane's current position.
|
|
|
|
*/
|
2002-05-11 23:23:42 +00:00
|
|
|
virtual FGEnvironment getEnvironment () const;
|
2002-02-22 22:51:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the environment information for another location.
|
|
|
|
*/
|
2002-05-11 23:23:42 +00:00
|
|
|
virtual FGEnvironment getEnvironment (double lat, double lon,
|
|
|
|
double alt) const;
|
2002-02-22 22:51:34 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2002-05-15 12:04:25 +00:00
|
|
|
void _update_fdm () const;
|
|
|
|
|
2002-02-22 22:51:34 +00:00
|
|
|
FGEnvironment * _environment; // always the same, for now
|
2002-05-07 00:03:54 +00:00
|
|
|
FGEnvironmentCtrl * _controller; // always the same, for now
|
2002-02-22 22:51:34 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _ENVIRONMENT_MGR_HXX
|