]> git.mxchange.org Git - flightgear.git/blobdiff - src/Environment/fgclouds.hxx
Don't restore initial screen geometry because there is nothing in fg_os* to resize...
[flightgear.git] / src / Environment / fgclouds.hxx
index dee821c1dea47ef911524c44760541bbe243c732..fd2a45a9cd25a65a7dad3ecf2087a244eecea9a6 100644 (file)
@@ -16,7 +16,7 @@
 //
 // You should have received a copy of the GNU General Public License
 // along with this program; if not, write to the Free Software
-// Foundation, 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 //
 //
 #ifndef _FGCLOUDS_HXX
@@ -37,30 +37,33 @@ SG_USING_STD(string);
 class SGNewCloud;
 class SGCloudField;
 class FGMetar;
+class FGEnvironmentCtrl;
 
 class FGClouds {
 
 private:
-       SGNewCloud *buildCloud(SGPropertyNode *cloud_def_root, string name);
-       void buildLayer(SGCloudField *layer, string name, double alt, double coverage);
+       SGNewCloud *buildCloud(SGPropertyNode *cloud_def_root, const string& name);
+       void buildLayer(SGCloudField *layer, const string& name, double alt, double coverage);
 
        void buildMETAR(void);
 
-       void buildScenario( string scenario );
+       void buildScenario( const string& scenario );
 
-       void setLayer( int iLayer, float alt_m, string coverage, string layer_type );
+       void setLayer( int iLayer, float alt_m, const string& coverage, const string& layer_type );
 
-       void update_metar_properties( FGMetar *m );
+       void update_metar_properties( const FGMetar *m );
 
-       void FGClouds::update_env_config ();
+       void update_env_config ();
 
        int update_event;
        SGSoundSample *snd_lightning;
-
+       FGEnvironmentCtrl * _controller;
        float station_elevation_ft;
+    string last_scenario;
+    SGPropertyNode *last_env_config, *last_env_clouds;
 
 public:
-       FGClouds();
+       FGClouds(FGEnvironmentCtrl * controller);
        ~FGClouds();
 
        void build(void);
@@ -72,4 +75,4 @@ public:
 
 };
 
-#endif // _FGCLOUDS_HXX
\ No newline at end of file
+#endif // _FGCLOUDS_HXX