]> git.mxchange.org Git - flightgear.git/blob - src/Environment/environment_mgr.hxx
Pull Sound-manager out of FGGlobals
[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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21
22 #ifndef _ENVIRONMENT_MGR_HXX
23 #define _ENVIRONMENT_MGR_HXX
24
25 #include <simgear/compiler.h>
26 #include <simgear/structure/subsystem_mgr.hxx>
27 #include <simgear/props/tiedpropertylist.hxx>
28
29 #include <cmath>
30
31 class FGEnvironment;
32 class FGClouds;
33 class FGPrecipitationMgr;
34 class SGSky;
35
36 /**
37  * Manage environment information.
38  */
39 class FGEnvironmentMgr : public SGSubsystemGroup
40 {
41
42 public:
43
44   enum {
45     MAX_CLOUD_LAYERS = 5
46   };
47
48   FGEnvironmentMgr ();
49   virtual ~FGEnvironmentMgr ();
50
51   virtual InitStatus incrementalInit ();
52   virtual void reinit ();
53   virtual void shutdown ();
54   virtual void bind ();
55   virtual void unbind ();
56   virtual void update (double dt);
57
58   /**
59    * Get the environment information for the plane's current position.
60    */
61   virtual FGEnvironment getEnvironment () const;
62
63
64   /**
65    * Get the environment information for another location.
66    */
67   virtual FGEnvironment getEnvironment (double lat, double lon,
68                                         double alt) const;
69
70   virtual FGEnvironment getEnvironment(const SGGeod& aPos) const;
71 private:
72   void updateClosestAirport();
73   
74   double get_cloud_layer_span_m (int index) const;
75   void set_cloud_layer_span_m (int index, double span_m);
76   double get_cloud_layer_elevation_ft (int index) const;
77   void set_cloud_layer_elevation_ft (int index, double elevation_ft);
78   double get_cloud_layer_thickness_ft (int index) const;
79   void set_cloud_layer_thickness_ft (int index, double thickness_ft);
80   double get_cloud_layer_transition_ft (int index) const;
81   void set_cloud_layer_transition_ft (int index, double transition_ft);
82   const char * get_cloud_layer_coverage (int index) const;
83   void set_cloud_layer_coverage (int index, const char * coverage);
84   int get_cloud_layer_coverage_type (int index) const;
85   void set_cloud_layer_coverage_type (int index, int type );
86   double get_cloud_layer_visibility_m (int index) const;
87   void set_cloud_layer_visibility_m (int index, double visibility_m);
88   double get_cloud_layer_maxalpha (int index ) const;
89   void set_cloud_layer_maxalpha (int index, double maxalpha);
90
91   FGEnvironment * _environment; // always the same, for now
92   FGClouds *fgClouds;
93   bool _cloudLayersDirty;
94   simgear::TiedPropertyList _tiedProperties;
95   SGPropertyChangeListener * _3dCloudsEnableListener;
96   SGSky* _sky;
97 };
98
99 #endif // _ENVIRONMENT_MGR_HXX