2005-05-15 09:26:17 +00:00
|
|
|
// Build a cloud layer based on metar
|
|
|
|
//
|
|
|
|
// Written by Harald JOHNSEN, started April 2005.
|
|
|
|
//
|
|
|
|
// Copyright (C) 2005 Harald JOHNSEN - hjohnsen@evc.net
|
|
|
|
//
|
|
|
|
// 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.
|
2005-05-15 09:26:17 +00:00
|
|
|
//
|
|
|
|
//
|
|
|
|
#ifndef _FGCLOUDS_HXX
|
|
|
|
#define _FGCLOUDS_HXX
|
|
|
|
|
2008-07-25 18:38:29 +00:00
|
|
|
#include <string>
|
2005-05-15 09:26:17 +00:00
|
|
|
|
2013-03-27 22:48:43 +00:00
|
|
|
// forward decls
|
|
|
|
class SGPropertyNode;
|
2005-05-15 09:26:17 +00:00
|
|
|
class SGCloudField;
|
|
|
|
|
|
|
|
class FGClouds {
|
|
|
|
|
|
|
|
private:
|
2013-03-27 22:48:43 +00:00
|
|
|
double buildCloud(SGPropertyNode *cloud_def_root, SGPropertyNode *box_def_root,
|
|
|
|
const std::string& name, double grid_z_rand, SGCloudField *layer);
|
|
|
|
void buildLayer(int iLayer, const std::string& name, double coverage);
|
2005-05-15 09:26:17 +00:00
|
|
|
|
2008-12-06 23:03:12 +00:00
|
|
|
void buildCloudLayers(void);
|
2005-05-15 09:26:17 +00:00
|
|
|
|
|
|
|
int update_event;
|
2013-03-27 22:48:43 +00:00
|
|
|
|
2010-12-18 11:30:03 +01:00
|
|
|
bool clouds_3d_enabled;
|
2013-03-27 22:48:43 +00:00
|
|
|
int index;
|
2012-11-09 20:29:28 +00:00
|
|
|
|
2017-07-05 01:23:24 +02:00
|
|
|
bool add3DCloud(const SGPropertyNode *arg, SGPropertyNode * root);
|
|
|
|
bool delete3DCloud(const SGPropertyNode *arg, SGPropertyNode * root);
|
|
|
|
bool move3DCloud(const SGPropertyNode *arg, SGPropertyNode * root);
|
2013-03-27 22:48:43 +00:00
|
|
|
|
2005-05-15 09:26:17 +00:00
|
|
|
public:
|
2009-05-29 10:26:35 +00:00
|
|
|
FGClouds();
|
2005-05-15 09:26:17 +00:00
|
|
|
~FGClouds();
|
|
|
|
|
2011-04-21 20:43:05 +01:00
|
|
|
void Init(void);
|
2005-05-15 09:26:17 +00:00
|
|
|
|
|
|
|
int get_update_event(void) const;
|
|
|
|
void set_update_event(int count);
|
2010-12-18 11:30:03 +01:00
|
|
|
bool get_3dClouds() const;
|
|
|
|
void set_3dClouds(bool enable);
|
2011-04-21 20:43:05 +01:00
|
|
|
|
2005-05-15 09:26:17 +00:00
|
|
|
};
|
|
|
|
|
2005-05-22 08:08:22 +00:00
|
|
|
#endif // _FGCLOUDS_HXX
|
2011-04-21 20:43:05 +01:00
|
|
|
|