]> git.mxchange.org Git - flightgear.git/blob - src/Environment/environment_mgr.hxx
Added a property output feature to ControlMap that allows arbitrary binding
[flightgear.git] / src / Environment / environment_mgr.hxx
1 // environment-mgr.hxx -- manager for natural environment information.
2 //
3 // Written by David Megginson, started February 2002.
4 //
5 // Copyright (C) 2002  David Megginson - david@megginson.com
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22
23 #ifndef _ENVIRONMENT_MGR_HXX
24 #define _ENVIRONMENT_MGR_HXX
25
26 #include <simgear/compiler.h>
27
28 #include <Main/fgfs.hxx>
29
30 #ifdef SG_HAVE_STD_INCLUDES
31 #  include <cmath>
32 #else
33 #  include <math.h>
34 #endif
35
36 #include "environment.hxx"
37
38
39 /**
40  * Manage environment information.
41  */
42 class FGEnvironmentMgr : public FGSubsystem
43 {
44
45 public:
46
47   FGEnvironmentMgr ();
48   virtual ~FGEnvironmentMgr ();
49
50   virtual void init ();
51   virtual void bind ();
52   virtual void unbind ();
53   virtual void update (int dt);
54
55   /**
56    * Get the environment information for the plane's current position.
57    */
58   virtual const FGEnvironment * getEnvironment () const;
59
60
61   /**
62    * Get the environment information for another location.
63    */
64   virtual const FGEnvironment * getEnvironment (double lat, double lon,
65                                                 double alt) const;
66
67 private:
68
69   FGEnvironment * _environment; // always the same, for now
70
71 };
72
73 #endif // _ENVIRONMENT_MGR_HXX