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
|
|
|
//
|
|
|
|
//
|
|
|
|
|
2006-02-18 13:58:09 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2010-07-27 08:31:10 +01:00
|
|
|
#include <cstring>
|
2005-05-15 09:26:17 +00:00
|
|
|
#include <Main/fg_props.hxx>
|
|
|
|
|
|
|
|
#include <simgear/constants.h>
|
|
|
|
#include <simgear/sound/soundmgr_openal.hxx>
|
|
|
|
#include <simgear/scene/sky/sky.hxx>
|
2011-05-06 14:12:17 +02:00
|
|
|
//#include <simgear/environment/visual_enviro.hxx>
|
2005-05-15 09:26:17 +00:00
|
|
|
#include <simgear/scene/sky/cloudfield.hxx>
|
|
|
|
#include <simgear/scene/sky/newcloud.hxx>
|
2011-04-21 20:43:05 +01:00
|
|
|
#include <simgear/structure/commands.hxx>
|
2005-05-15 09:26:17 +00:00
|
|
|
#include <simgear/math/sg_random.h>
|
2008-07-31 12:04:32 +00:00
|
|
|
#include <simgear/props/props_io.hxx>
|
|
|
|
|
2005-05-15 09:26:17 +00:00
|
|
|
#include <Main/globals.hxx>
|
|
|
|
#include <Main/util.hxx>
|
2012-04-25 23:28:00 +02:00
|
|
|
#include <Viewer/renderer.hxx>
|
|
|
|
#include <Airports/simple.hxx>
|
2005-05-15 09:26:17 +00:00
|
|
|
|
|
|
|
#include "fgclouds.hxx"
|
|
|
|
|
2011-05-31 10:35:42 +02:00
|
|
|
static bool do_delete_3Dcloud (const SGPropertyNode *arg);
|
|
|
|
static bool do_move_3Dcloud (const SGPropertyNode *arg);
|
|
|
|
static bool do_add_3Dcloud (const SGPropertyNode *arg);
|
2005-05-15 09:26:17 +00:00
|
|
|
|
2009-05-29 10:26:35 +00:00
|
|
|
FGClouds::FGClouds() :
|
2011-05-06 14:12:17 +02:00
|
|
|
#if 0
|
2009-05-12 20:51:02 +00:00
|
|
|
snd_lightning(0),
|
2011-05-06 14:12:17 +02:00
|
|
|
#endif
|
2011-04-21 20:43:05 +01:00
|
|
|
clouds_3d_enabled(false),
|
|
|
|
index(0)
|
2005-05-15 09:26:17 +00:00
|
|
|
{
|
|
|
|
update_event = 0;
|
|
|
|
}
|
2009-05-07 10:27:16 +00:00
|
|
|
|
2011-04-21 20:43:05 +01:00
|
|
|
FGClouds::~FGClouds()
|
2010-12-18 11:30:03 +01:00
|
|
|
{
|
2005-05-15 09:26:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int FGClouds::get_update_event(void) const {
|
|
|
|
return update_event;
|
|
|
|
}
|
2009-05-07 10:27:16 +00:00
|
|
|
|
2005-05-15 09:26:17 +00:00
|
|
|
void FGClouds::set_update_event(int count) {
|
|
|
|
update_event = count;
|
2008-12-21 15:52:29 +00:00
|
|
|
buildCloudLayers();
|
2005-05-15 09:26:17 +00:00
|
|
|
}
|
|
|
|
|
2011-04-21 20:43:05 +01:00
|
|
|
void FGClouds::Init(void) {
|
2011-05-06 14:12:17 +02:00
|
|
|
#if 0
|
2005-05-15 09:26:17 +00:00
|
|
|
if( snd_lightning == NULL ) {
|
2010-09-06 09:28:28 +01:00
|
|
|
snd_lightning = new SGSoundSample("Sounds/thunder.wav", SGPath());
|
2005-05-15 09:26:17 +00:00
|
|
|
snd_lightning->set_max_dist(7000.0f);
|
|
|
|
snd_lightning->set_reference_dist(3000.0f);
|
2009-10-24 08:31:37 +00:00
|
|
|
SGSoundMgr *smgr = globals->get_soundmgr();
|
2009-10-04 13:52:53 +00:00
|
|
|
SGSampleGroup *sgr = smgr->find("weather", true);
|
|
|
|
sgr->add( snd_lightning, "thunder" );
|
2005-05-15 09:26:17 +00:00
|
|
|
}
|
2011-05-06 14:12:17 +02:00
|
|
|
#endif
|
2011-04-21 20:43:05 +01:00
|
|
|
|
|
|
|
globals->get_commands()->addCommand("add-cloud", do_add_3Dcloud);
|
|
|
|
globals->get_commands()->addCommand("del-cloud", do_delete_3Dcloud);
|
|
|
|
globals->get_commands()->addCommand("move-cloud", do_move_3Dcloud);
|
2005-05-15 09:26:17 +00:00
|
|
|
}
|
|
|
|
|
2009-10-02 05:44:56 +00:00
|
|
|
// Build an invidual cloud. Returns the extents of the cloud for coverage calculations
|
|
|
|
double FGClouds::buildCloud(SGPropertyNode *cloud_def_root, SGPropertyNode *box_def_root, const string& name, double grid_z_rand, SGCloudField *layer) {
|
2008-10-26 09:38:21 +00:00
|
|
|
SGPropertyNode *box_def=NULL;
|
2009-05-29 10:26:35 +00:00
|
|
|
SGPropertyNode *cld_def=NULL;
|
2009-10-02 05:44:56 +00:00
|
|
|
double extent = 0.0;
|
2009-05-29 10:26:35 +00:00
|
|
|
|
|
|
|
SGPath texture_root = globals->get_fg_root();
|
|
|
|
texture_root.append("Textures");
|
|
|
|
texture_root.append("Sky");
|
2008-10-26 09:38:21 +00:00
|
|
|
|
|
|
|
box_def = box_def_root->getChild(name.c_str());
|
2010-12-18 11:30:03 +01:00
|
|
|
|
2005-05-15 09:26:17 +00:00
|
|
|
string base_name = name.substr(0,2);
|
2008-10-26 09:38:21 +00:00
|
|
|
if( !box_def ) {
|
2005-05-15 09:26:17 +00:00
|
|
|
if( name[2] == '-' ) {
|
2008-10-26 09:38:21 +00:00
|
|
|
box_def = box_def_root->getChild(base_name.c_str());
|
2005-05-15 09:26:17 +00:00
|
|
|
}
|
2008-10-26 09:38:21 +00:00
|
|
|
if( !box_def )
|
2009-10-02 05:44:56 +00:00
|
|
|
return 0.0;
|
2005-05-15 09:26:17 +00:00
|
|
|
}
|
2009-10-02 05:44:56 +00:00
|
|
|
|
|
|
|
double x = sg_random() * SGCloudField::fieldSize - (SGCloudField::fieldSize / 2.0);
|
|
|
|
double y = sg_random() * SGCloudField::fieldSize - (SGCloudField::fieldSize / 2.0);
|
|
|
|
double z = grid_z_rand * (sg_random() - 0.5);
|
2011-04-21 20:43:05 +01:00
|
|
|
|
|
|
|
float lon = fgGetNode("/position/longitude-deg", false)->getFloatValue();
|
|
|
|
float lat = fgGetNode("/position/latitude-deg", false)->getFloatValue();
|
|
|
|
|
2010-07-23 09:41:37 +01:00
|
|
|
SGVec3f pos(x,y,z);
|
2010-12-18 11:30:03 +01:00
|
|
|
|
2008-10-26 09:38:21 +00:00
|
|
|
for(int i = 0; i < box_def->nChildren() ; i++) {
|
|
|
|
SGPropertyNode *abox = box_def->getChild(i);
|
2005-05-15 09:26:17 +00:00
|
|
|
if( strcmp(abox->getName(), "box") == 0) {
|
2009-10-02 05:44:56 +00:00
|
|
|
|
2009-05-29 10:26:35 +00:00
|
|
|
string type = abox->getStringValue("type", "cu-small");
|
|
|
|
cld_def = cloud_def_root->getChild(type.c_str());
|
2009-10-02 05:44:56 +00:00
|
|
|
if ( !cld_def ) return 0.0;
|
2011-04-21 20:43:05 +01:00
|
|
|
|
2009-10-02 05:44:56 +00:00
|
|
|
double w = abox->getDoubleValue("width", 1000.0);
|
|
|
|
double h = abox->getDoubleValue("height", 1000.0);
|
|
|
|
int hdist = abox->getIntValue("hdist", 1);
|
|
|
|
int vdist = abox->getIntValue("vdist", 1);
|
|
|
|
|
|
|
|
double c = abox->getDoubleValue("count", 5);
|
|
|
|
int count = (int) (c + (sg_random() - 0.5) * c);
|
|
|
|
|
2011-10-17 17:41:59 +01:00
|
|
|
extent = std::max(w*w, extent);
|
2009-10-02 05:44:56 +00:00
|
|
|
|
|
|
|
for (int j = 0; j < count; j++) {
|
|
|
|
|
|
|
|
// Locate the clouds randomly in the defined space. The hdist and
|
|
|
|
// vdist values control the horizontal and vertical distribution
|
|
|
|
// by simply summing random components.
|
|
|
|
double x = 0.0;
|
|
|
|
double y = 0.0;
|
|
|
|
double z = 0.0;
|
|
|
|
|
|
|
|
for (int k = 0; k < hdist; k++)
|
|
|
|
{
|
|
|
|
x += (sg_random() / hdist);
|
|
|
|
y += (sg_random() / hdist);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int k = 0; k < vdist; k++)
|
|
|
|
{
|
|
|
|
z += (sg_random() / vdist);
|
|
|
|
}
|
|
|
|
|
|
|
|
x = w * (x - 0.5) + pos[0]; // N/S
|
|
|
|
y = w * (y - 0.5) + pos[1]; // E/W
|
|
|
|
z = h * z + pos[2]; // Up/Down. pos[2] is the cloudbase
|
|
|
|
|
2011-05-31 20:58:22 +02:00
|
|
|
//SGVec3f newpos = SGVec3f(x, y, z);
|
2012-03-25 13:47:43 +02:00
|
|
|
SGNewCloud cld(texture_root, cld_def);
|
2009-10-02 05:44:56 +00:00
|
|
|
|
2011-04-21 20:43:05 +01:00
|
|
|
//layer->addCloud(newpos, cld.genCloud());
|
|
|
|
layer->addCloud(lon, lat, z, x, y, index++, cld.genCloud());
|
2009-10-02 05:44:56 +00:00
|
|
|
}
|
2005-05-15 09:26:17 +00:00
|
|
|
}
|
|
|
|
}
|
2009-10-02 05:44:56 +00:00
|
|
|
|
|
|
|
// Return the maximum extent of the cloud
|
|
|
|
return extent;
|
2005-05-15 09:26:17 +00:00
|
|
|
}
|
|
|
|
|
2010-12-18 11:30:03 +01:00
|
|
|
void FGClouds::buildLayer(int iLayer, const string& name, double coverage) {
|
2005-05-15 09:26:17 +00:00
|
|
|
struct {
|
|
|
|
string name;
|
|
|
|
double count;
|
|
|
|
} tCloudVariety[20];
|
|
|
|
int CloudVarietyCount = 0;
|
|
|
|
double totalCount = 0.0;
|
2010-12-18 11:30:03 +01:00
|
|
|
|
2011-11-05 13:18:36 +00:00
|
|
|
SGSky* thesky = globals->get_renderer()->getSky();
|
|
|
|
|
2005-07-31 09:04:18 +00:00
|
|
|
SGPropertyNode *cloud_def_root = fgGetNode("/environment/cloudlayers/clouds", false);
|
2008-10-26 09:38:21 +00:00
|
|
|
SGPropertyNode *box_def_root = fgGetNode("/environment/cloudlayers/boxes", false);
|
2005-07-31 09:04:18 +00:00
|
|
|
SGPropertyNode *layer_def_root = fgGetNode("/environment/cloudlayers/layers", false);
|
2010-12-18 11:30:03 +01:00
|
|
|
SGCloudField *layer = thesky->get_cloud_layer(iLayer)->get_layer3D();
|
2005-05-15 09:26:17 +00:00
|
|
|
layer->clear();
|
2010-12-18 11:30:03 +01:00
|
|
|
|
2008-12-21 15:52:29 +00:00
|
|
|
// If we don't have the required properties, then render the cloud in 2D
|
2009-05-29 10:26:35 +00:00
|
|
|
if ((! clouds_3d_enabled) || coverage == 0.0 ||
|
|
|
|
layer_def_root == NULL || cloud_def_root == NULL || box_def_root == NULL) {
|
|
|
|
thesky->get_cloud_layer(iLayer)->set_enable3dClouds(false);
|
|
|
|
return;
|
|
|
|
}
|
2010-12-18 11:30:03 +01:00
|
|
|
|
2009-05-29 10:26:35 +00:00
|
|
|
// If we can't find a definition for this cloud type, then render the cloud in 2D
|
2005-05-15 09:26:17 +00:00
|
|
|
SGPropertyNode *layer_def=NULL;
|
|
|
|
layer_def = layer_def_root->getChild(name.c_str());
|
|
|
|
if( !layer_def ) {
|
|
|
|
if( name[2] == '-' ) {
|
|
|
|
string base_name = name.substr(0,2);
|
|
|
|
layer_def = layer_def_root->getChild(base_name.c_str());
|
|
|
|
}
|
2009-05-29 10:26:35 +00:00
|
|
|
if( !layer_def ) {
|
|
|
|
thesky->get_cloud_layer(iLayer)->set_enable3dClouds(false);
|
|
|
|
return;
|
|
|
|
}
|
2005-05-15 09:26:17 +00:00
|
|
|
}
|
2009-10-02 05:44:56 +00:00
|
|
|
|
2009-05-29 10:26:35 +00:00
|
|
|
// At this point, we know we've got some 3D clouds to generate.
|
|
|
|
thesky->get_cloud_layer(iLayer)->set_enable3dClouds(true);
|
2008-12-21 15:52:29 +00:00
|
|
|
|
2005-05-15 09:26:17 +00:00
|
|
|
double grid_z_rand = layer_def->getDoubleValue("grid-z-rand");
|
|
|
|
|
|
|
|
for(int i = 0; i < layer_def->nChildren() ; i++) {
|
|
|
|
SGPropertyNode *acloud = layer_def->getChild(i);
|
|
|
|
if( strcmp(acloud->getName(), "cloud") == 0) {
|
|
|
|
string cloud_name = acloud->getStringValue("name");
|
|
|
|
tCloudVariety[CloudVarietyCount].name = cloud_name;
|
|
|
|
double count = acloud->getDoubleValue("count", 1.0);
|
|
|
|
tCloudVariety[CloudVarietyCount].count = count;
|
|
|
|
int variety = 0;
|
|
|
|
cloud_name = cloud_name + "-%d";
|
|
|
|
char variety_name[50];
|
|
|
|
do {
|
|
|
|
variety++;
|
2009-05-23 11:13:29 +00:00
|
|
|
snprintf(variety_name, sizeof(variety_name) - 1, cloud_name.c_str(), variety);
|
2008-10-26 09:38:21 +00:00
|
|
|
} while( box_def_root->getChild(variety_name, 0, false) );
|
2005-05-15 09:26:17 +00:00
|
|
|
|
|
|
|
totalCount += count;
|
|
|
|
if( CloudVarietyCount < 20 )
|
|
|
|
CloudVarietyCount++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
totalCount = 1.0 / totalCount;
|
2009-10-02 05:44:56 +00:00
|
|
|
|
2010-12-18 11:30:03 +01:00
|
|
|
// Determine how much cloud coverage we need in m^2.
|
|
|
|
double cov = coverage * SGCloudField::fieldSize * SGCloudField::fieldSize;
|
2009-10-02 05:44:56 +00:00
|
|
|
|
2010-12-18 11:30:03 +01:00
|
|
|
while (cov > 0.0f) {
|
2009-10-02 05:44:56 +00:00
|
|
|
double choice = sg_random();
|
2010-12-18 11:30:03 +01:00
|
|
|
|
2009-10-02 05:44:56 +00:00
|
|
|
for(int i = 0; i < CloudVarietyCount ; i ++) {
|
|
|
|
choice -= tCloudVariety[i].count * totalCount;
|
|
|
|
if( choice <= 0.0 ) {
|
|
|
|
cov -= buildCloud(cloud_def_root,
|
|
|
|
box_def_root,
|
|
|
|
tCloudVariety[i].name,
|
2010-12-18 11:30:03 +01:00
|
|
|
grid_z_rand,
|
2009-10-02 05:44:56 +00:00
|
|
|
layer);
|
|
|
|
break;
|
2009-05-29 10:26:35 +00:00
|
|
|
}
|
2005-05-15 09:26:17 +00:00
|
|
|
}
|
2010-12-18 11:30:03 +01:00
|
|
|
}
|
2005-05-15 09:26:17 +00:00
|
|
|
|
2009-05-29 10:26:35 +00:00
|
|
|
// Now we've built any clouds, enable them and set the density (coverage)
|
|
|
|
//layer->setCoverage(coverage);
|
|
|
|
//layer->applyCoverage();
|
|
|
|
thesky->get_cloud_layer(iLayer)->set_enable3dClouds(clouds_3d_enabled);
|
2005-05-15 09:26:17 +00:00
|
|
|
}
|
|
|
|
|
2008-12-06 23:03:12 +00:00
|
|
|
void FGClouds::buildCloudLayers(void) {
|
2005-05-15 09:26:17 +00:00
|
|
|
SGPropertyNode *metar_root = fgGetNode("/environment", true);
|
2009-05-12 20:51:02 +00:00
|
|
|
|
|
|
|
//double wind_speed_kt = metar_root->getDoubleValue("wind-speed-kt");
|
2005-05-15 09:26:17 +00:00
|
|
|
double temperature_degc = metar_root->getDoubleValue("temperature-sea-level-degc");
|
2010-11-26 19:27:05 +01:00
|
|
|
double dewpoint_degc = metar_root->getDoubleValue("dewpoint-sea-level-degc");
|
|
|
|
double pressure_mb = metar_root->getDoubleValue("pressure-sea-level-inhg") * SG_INHG_TO_PA / 100.0;
|
|
|
|
double rel_humidity = metar_root->getDoubleValue("relative-humidity");
|
2005-05-15 09:26:17 +00:00
|
|
|
|
|
|
|
// formule d'Epsy, base d'un cumulus
|
|
|
|
double cumulus_base = 122.0 * (temperature_degc - dewpoint_degc);
|
|
|
|
double stratus_base = 100.0 * (100.0 - rel_humidity) * SG_FEET_TO_METER;
|
|
|
|
|
2011-11-05 13:18:36 +00:00
|
|
|
SGSky* thesky = globals->get_renderer()->getSky();
|
2005-05-15 09:26:17 +00:00
|
|
|
for(int iLayer = 0 ; iLayer < thesky->get_cloud_layer_count(); iLayer++) {
|
|
|
|
SGPropertyNode *cloud_root = fgGetNode("/environment/clouds/layer", iLayer, true);
|
|
|
|
|
|
|
|
double alt_ft = cloud_root->getDoubleValue("elevation-ft");
|
|
|
|
double alt_m = alt_ft * SG_FEET_TO_METER;
|
2010-11-26 19:27:05 +01:00
|
|
|
string coverage = cloud_root->getStringValue("coverage");
|
2010-12-18 11:30:03 +01:00
|
|
|
|
2005-05-15 09:26:17 +00:00
|
|
|
double coverage_norm = 0.0;
|
|
|
|
if( coverage == "few" )
|
|
|
|
coverage_norm = 2.0/8.0; // <1-2
|
|
|
|
else if( coverage == "scattered" )
|
|
|
|
coverage_norm = 4.0/8.0; // 3-4
|
|
|
|
else if( coverage == "broken" )
|
|
|
|
coverage_norm = 6.0/8.0; // 5-7
|
|
|
|
else if( coverage == "overcast" )
|
|
|
|
coverage_norm = 8.0/8.0; // 8
|
|
|
|
|
|
|
|
string layer_type = "nn";
|
2010-12-18 11:30:03 +01:00
|
|
|
|
2005-05-15 09:26:17 +00:00
|
|
|
if( coverage == "cirrus" ) {
|
|
|
|
layer_type = "ci";
|
|
|
|
} else if( alt_ft > 16500 ) {
|
|
|
|
// layer_type = "ci|cs|cc";
|
|
|
|
layer_type = "ci";
|
|
|
|
} else if( alt_ft > 6500 ) {
|
|
|
|
// layer_type = "as|ac|ns";
|
|
|
|
layer_type = "ac";
|
2008-12-19 07:42:13 +00:00
|
|
|
if( pressure_mb < 1005.0 && coverage_norm >= 0.5 )
|
2005-05-15 09:26:17 +00:00
|
|
|
layer_type = "ns";
|
|
|
|
} else {
|
|
|
|
// layer_type = "st|cu|cb|sc";
|
2009-05-29 10:26:35 +00:00
|
|
|
if( cumulus_base * 0.80 < alt_m && cumulus_base * 1.20 > alt_m ) {
|
|
|
|
// +/- 20% from cumulus probable base
|
|
|
|
layer_type = "cu";
|
|
|
|
} else if( stratus_base * 0.80 < alt_m && stratus_base * 1.40 > alt_m ) {
|
|
|
|
// +/- 20% from stratus probable base
|
|
|
|
layer_type = "st";
|
|
|
|
} else {
|
2005-05-15 09:26:17 +00:00
|
|
|
// above formulae is far from perfect
|
2009-05-29 10:26:35 +00:00
|
|
|
if ( alt_ft < 2000 )
|
2005-05-15 09:26:17 +00:00
|
|
|
layer_type = "st";
|
|
|
|
else if( alt_ft < 4500 )
|
|
|
|
layer_type = "cu";
|
|
|
|
else
|
|
|
|
layer_type = "sc";
|
|
|
|
}
|
|
|
|
}
|
2011-04-21 20:43:05 +01:00
|
|
|
|
2010-11-26 19:27:05 +01:00
|
|
|
cloud_root->setStringValue("layer-type",layer_type);
|
2010-12-18 11:30:03 +01:00
|
|
|
buildLayer(iLayer, layer_type, coverage_norm);
|
2005-05-15 09:26:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-06 21:58:50 +00:00
|
|
|
void FGClouds::set_3dClouds(bool enable)
|
|
|
|
{
|
2010-12-18 11:30:03 +01:00
|
|
|
if (enable != clouds_3d_enabled) {
|
|
|
|
clouds_3d_enabled = enable;
|
|
|
|
buildCloudLayers();
|
|
|
|
}
|
2008-11-06 21:58:50 +00:00
|
|
|
}
|
2008-12-04 20:56:40 +00:00
|
|
|
|
2011-04-21 20:43:05 +01:00
|
|
|
bool FGClouds::get_3dClouds() const
|
2010-12-18 11:30:03 +01:00
|
|
|
{
|
|
|
|
return clouds_3d_enabled;
|
2008-11-06 21:58:50 +00:00
|
|
|
}
|
2010-12-18 11:30:03 +01:00
|
|
|
|
2011-04-21 20:43:05 +01:00
|
|
|
/**
|
|
|
|
* Adds a 3D cloud to a cloud layer.
|
|
|
|
*
|
|
|
|
* Property arguments
|
|
|
|
* layer - the layer index to add this cloud to. (Defaults to 0)
|
|
|
|
* index - the index for this cloud (to be used later)
|
|
|
|
* lon/lat/alt - the position for the cloud
|
|
|
|
* (Various) - cloud definition properties. See README.3DClouds
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static bool
|
|
|
|
do_add_3Dcloud (const SGPropertyNode *arg)
|
|
|
|
{
|
|
|
|
int l = arg->getIntValue("layer", 0);
|
|
|
|
int index = arg->getIntValue("index", 0);
|
|
|
|
|
|
|
|
SGPath texture_root = globals->get_fg_root();
|
|
|
|
texture_root.append("Textures");
|
|
|
|
texture_root.append("Sky");
|
|
|
|
|
|
|
|
float lon = arg->getFloatValue("lon-deg", 0.0f);
|
|
|
|
float lat = arg->getFloatValue("lat-deg", 0.0f);
|
|
|
|
float alt = arg->getFloatValue("alt-ft", 0.0f);
|
2011-04-22 21:06:28 +01:00
|
|
|
float x = arg->getFloatValue("x-offset-m", 0.0f);
|
|
|
|
float y = arg->getFloatValue("y-offset-m", 0.0f);
|
|
|
|
|
2011-11-05 13:18:36 +00:00
|
|
|
SGSky* thesky = globals->get_renderer()->getSky();
|
2011-04-21 20:43:05 +01:00
|
|
|
SGCloudField *layer = thesky->get_cloud_layer(l)->get_layer3D();
|
2012-03-25 13:47:43 +02:00
|
|
|
SGNewCloud cld(texture_root, arg);
|
|
|
|
bool success = layer->addCloud(lon, lat, alt, x, y, index, cld.genCloud());
|
2011-04-22 21:06:28 +01:00
|
|
|
|
|
|
|
// Adding a 3D cloud immediately makes this layer 3D.
|
|
|
|
thesky->get_cloud_layer(l)->set_enable3dClouds(true);
|
|
|
|
|
|
|
|
return success;
|
2011-04-21 20:43:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes a 3D cloud from a cloud layer
|
|
|
|
*
|
|
|
|
* Property arguments
|
|
|
|
*
|
|
|
|
* layer - the layer index to remove this cloud from. (defaults to 0)
|
|
|
|
* index - the cloud index
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static bool
|
|
|
|
do_delete_3Dcloud (const SGPropertyNode *arg)
|
|
|
|
{
|
|
|
|
int l = arg->getIntValue("layer", 0);
|
|
|
|
int i = arg->getIntValue("index", 0);
|
|
|
|
|
2011-11-05 13:18:36 +00:00
|
|
|
SGSky* thesky = globals->get_renderer()->getSky();
|
2011-04-21 20:43:05 +01:00
|
|
|
SGCloudField *layer = thesky->get_cloud_layer(l)->get_layer3D();
|
|
|
|
return layer->deleteCloud(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Move a cloud within a 3D layer
|
|
|
|
*
|
|
|
|
* Property arguments
|
|
|
|
* layer - the layer index to add this cloud to. (Defaults to 0)
|
|
|
|
* index - the cloud index to move.
|
|
|
|
* lon/lat/alt - the position for the cloud
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static bool
|
|
|
|
do_move_3Dcloud (const SGPropertyNode *arg)
|
|
|
|
{
|
|
|
|
int l = arg->getIntValue("layer", 0);
|
|
|
|
int i = arg->getIntValue("index", 0);
|
2011-11-05 13:18:36 +00:00
|
|
|
SGSky* thesky = globals->get_renderer()->getSky();
|
|
|
|
|
2011-04-21 20:43:05 +01:00
|
|
|
float lon = arg->getFloatValue("lon-deg", 0.0f);
|
|
|
|
float lat = arg->getFloatValue("lat-deg", 0.0f);
|
|
|
|
float alt = arg->getFloatValue("alt-ft", 0.0f);
|
2011-04-24 20:48:18 +01:00
|
|
|
float x = arg->getFloatValue("x-offset-m", 0.0f);
|
|
|
|
float y = arg->getFloatValue("y-offset-m", 0.0f);
|
2011-04-21 20:43:05 +01:00
|
|
|
|
|
|
|
SGCloudField *layer = thesky->get_cloud_layer(l)->get_layer3D();
|
2011-04-24 20:48:18 +01:00
|
|
|
return layer->repositionCloud(i, lon, lat, alt, x, y);
|
2011-04-21 20:43:05 +01:00
|
|
|
}
|