]> git.mxchange.org Git - flightgear.git/blob - src/Environment/fgclouds.cxx
This provides the following enhancements & bug fixes
[flightgear.git] / src / Environment / fgclouds.cxx
1 // Build a cloud layer based on metar
2 //
3 // Written by Harald JOHNSEN, started April 2005.
4 //
5 // Copyright (C) 2005  Harald JOHNSEN - hjohnsen@evc.net
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
23 #ifdef HAVE_CONFIG_H
24 #  include "config.h"
25 #endif
26
27 #include <Main/fg_props.hxx>
28
29 #include <simgear/constants.h>
30 #include <simgear/sound/soundmgr_openal.hxx>
31 #include <simgear/scene/sky/sky.hxx>
32 #include <simgear/environment/visual_enviro.hxx>
33 #include <simgear/scene/sky/cloudfield.hxx>
34 #include <simgear/scene/sky/newcloud.hxx>
35 #include <simgear/math/sg_random.h>
36 #include <simgear/props/props_io.hxx>
37
38 #include <Main/globals.hxx>
39 #include <Airports/simple.hxx>
40 #include <Main/util.hxx>
41
42 #include "environment_ctrl.hxx"
43 #include "environment_mgr.hxx"
44 #include "fgmetar.hxx"
45 #include "fgclouds.hxx"
46
47 extern SGSky *thesky;
48
49
50 FGClouds::FGClouds(FGEnvironmentCtrl * controller) :
51         station_elevation_ft(0.0),
52         _controller( controller ),
53         snd_lightning(NULL),
54         rebuild_required(true),
55     last_scenario( "none" ),
56     last_env_config( new SGPropertyNode() ),
57     last_env_clouds( new SGPropertyNode() )
58 {
59         update_event = 0;
60         fgSetString("/environment/weather-scenario", last_scenario.c_str());
61 }
62 FGClouds::~FGClouds() {
63 }
64
65 int FGClouds::get_update_event(void) const {
66         return update_event;
67 }
68 void FGClouds::set_update_event(int count) {
69         update_event = count;
70         build();
71 }
72
73 void FGClouds::init(void) {
74         if( snd_lightning == NULL ) {
75                 snd_lightning = new SGSoundSample(globals->get_fg_root().c_str(), "Sounds/thunder.wav");
76                 snd_lightning->set_max_dist(7000.0f);
77                 snd_lightning->set_reference_dist(3000.0f);
78                 SGSoundMgr *soundMgr = globals->get_soundmgr();
79                 soundMgr->add( snd_lightning, "thunder" );
80                 sgEnviro.set_soundMgr( soundMgr );
81         }
82         
83         rebuild_required = true;
84 }
85
86 void FGClouds::buildCloud(SGPropertyNode *cloud_def_root, SGPropertyNode  *box_def_root, const string& name, sgVec3 pos, SGCloudField *layer) {
87         SGPropertyNode *box_def=NULL;
88         SGPropertyNode *cld_def=NULL;
89         
90         SGPath texture_root = globals->get_fg_root();
91         texture_root.append("Textures");
92         texture_root.append("Sky");
93
94         box_def = box_def_root->getChild(name.c_str());
95   
96         string base_name = name.substr(0,2);
97         if( !box_def ) {
98                 if( name[2] == '-' ) {
99                         box_def = box_def_root->getChild(base_name.c_str());
100                 }
101                 if( !box_def )
102                         return;
103         }
104         
105         for(int i = 0; i < box_def->nChildren() ; i++) {
106                 SGPropertyNode *abox = box_def->getChild(i);
107                 if( strcmp(abox->getName(), "box") == 0) {
108                         double x = abox->getDoubleValue("x") + pos[0];
109                         double y = abox->getDoubleValue("y") + pos[1];
110                         double z = abox->getDoubleValue("z") + pos[2];
111                         SGVec3f newpos = SGVec3f(x, z, y);
112                         
113                         string type = abox->getStringValue("type", "cu-small");
114                                
115                         cld_def = cloud_def_root->getChild(type.c_str());
116                         if ( !cld_def ) return;
117                         
118                         double min_width = cld_def->getDoubleValue("min-cloud-width-m", 500.0);
119                         double max_width = cld_def->getDoubleValue("max-cloud-width-m", 1000.0);
120                         double min_height = cld_def->getDoubleValue("min-cloud-height-m", min_width);
121                         double max_height = cld_def->getDoubleValue("max-cloud-height-m", max_width);
122                         double min_sprite_width = cld_def->getDoubleValue("min-sprite-width-m", 200.0);
123                         double max_sprite_width = cld_def->getDoubleValue("max-sprite-width-m", min_sprite_width);
124                         double min_sprite_height = cld_def->getDoubleValue("min-sprite-height-m", min_sprite_width);
125                         double max_sprite_height = cld_def->getDoubleValue("max-sprite-height-m", max_sprite_width);
126                         int num_sprites = cld_def->getIntValue("num-sprites", 20);
127                         int num_textures_x = cld_def->getIntValue("num-textures-x", 1);
128                         int num_textures_y = cld_def->getIntValue("num-textures-y", 1);
129                         double bottom_shade = cld_def->getDoubleValue("bottom-shade", 1.0);
130                         string texture = cld_def->getStringValue("texture", "cl_cumulus.rgb");
131           
132                         SGNewCloud *cld = 
133                                 new SGNewCloud(type,
134                                                texture_root, 
135                                                texture, 
136                                                min_width, 
137                                                max_width, 
138                                                min_height,
139                                                max_height,
140                                                min_sprite_width,
141                                                max_sprite_width,
142                                                min_sprite_height,
143                                                max_sprite_height,
144                                                bottom_shade,
145                                                num_sprites,
146                                                num_textures_x,
147                                                num_textures_y);
148                         layer->addCloud(newpos, cld);
149                 }
150         }
151 }
152
153 void FGClouds::buildLayer(int iLayer, const string& name, double alt, double coverage) {
154         struct {
155                 string name;
156                 double count;
157         } tCloudVariety[20];
158         int CloudVarietyCount = 0;
159         double totalCount = 0.0;
160         
161         if (! clouds_3d_enabled) return;
162         
163         SGPropertyNode *cloud_def_root = fgGetNode("/environment/cloudlayers/clouds", false);
164         SGPropertyNode *box_def_root   = fgGetNode("/environment/cloudlayers/boxes", false);
165         SGPropertyNode *layer_def_root = fgGetNode("/environment/cloudlayers/layers", false);
166         SGCloudField *layer = thesky->get_cloud_layer(iLayer)->get_layer3D();
167
168         layer->clear();
169         
170         // when we don't generate clouds the layer is rendered in 2D
171         if( coverage == 0.0 )
172                 return;
173         if( layer_def_root == NULL || cloud_def_root == NULL || box_def_root == NULL)
174                 return;
175         
176         SGPropertyNode *layer_def=NULL;
177
178         layer_def = layer_def_root->getChild(name.c_str());
179         if( !layer_def ) {
180                 if( name[2] == '-' ) {
181                         string base_name = name.substr(0,2);
182                         layer_def = layer_def_root->getChild(base_name.c_str());
183                 }
184                 if( !layer_def )
185                         return;
186         }
187         
188         double grid_x_size = layer_def->getDoubleValue("grid-x-size", 1000.0);
189         double grid_y_size = layer_def->getDoubleValue("grid-y-size", 1000.0);
190         double grid_x_rand = layer_def->getDoubleValue("grid-x-rand", grid_x_size);
191         double grid_y_rand = layer_def->getDoubleValue("grid-y-rand", grid_y_size);
192         double grid_z_rand = layer_def->getDoubleValue("grid-z-rand");
193
194         for(int i = 0; i < layer_def->nChildren() ; i++) {
195                 SGPropertyNode *acloud = layer_def->getChild(i);
196                 if( strcmp(acloud->getName(), "cloud") == 0) {
197                         string cloud_name = acloud->getStringValue("name");
198                         tCloudVariety[CloudVarietyCount].name = cloud_name;
199                         double count = acloud->getDoubleValue("count", 1.0);
200                         tCloudVariety[CloudVarietyCount].count = count;
201                         int variety = 0;
202                         cloud_name = cloud_name + "-%d";
203                         char variety_name[50];
204                         do {
205                                 variety++;
206                                 snprintf(variety_name, sizeof(variety_name), cloud_name.c_str(), variety);
207                         } while( box_def_root->getChild(variety_name, 0, false) );
208
209                         totalCount += count;
210                         if( CloudVarietyCount < 20 )
211                                 CloudVarietyCount++;
212                 }
213         }
214         totalCount = 1.0 / totalCount;
215
216         for(double px = 0.0; px < SGCloudField::fieldSize; px += grid_x_size) {
217                 for(double py = 0.0; py < SGCloudField::fieldSize; py += grid_y_size) {
218                         double x = px + grid_x_rand * (sg_random() - 0.5) - (SGCloudField::fieldSize / 2.0);
219                         double y = py + grid_y_rand * (sg_random() - 0.5) - (SGCloudField::fieldSize / 2.0);
220                         double z = alt + grid_z_rand * (sg_random() - 0.5);
221                         double choice = sg_random();
222
223                         for(int i = 0; i < CloudVarietyCount ; i ++) {
224                                 choice -= tCloudVariety[i].count * totalCount;
225                                 if( choice <= 0.0 ) {
226                                         sgVec3 pos={x,z,y};
227                                         buildCloud(cloud_def_root, box_def_root, tCloudVariety[i].name, pos, layer);
228                                         break;
229                                 }
230                         }
231                 }
232         }
233
234         // Now we've built any clouds, enable them and set the density (coverage)
235         layer->setCoverage(coverage);
236         layer->applyCoverage();
237         thesky->get_cloud_layer(iLayer)->set_enable3dClouds(clouds_3d_enabled);
238 }
239
240 // TODO:call this after real metar updates
241 void FGClouds::buildMETAR(void) {
242         SGPropertyNode *metar_root = fgGetNode("/environment", true);
243         
244         double wind_speed_kt     = metar_root->getDoubleValue("wind-speed-kt");
245         double temperature_degc  = metar_root->getDoubleValue("temperature-sea-level-degc");
246         double dewpoint_degc     = metar_root->getDoubleValue("dewpoint-sea-level-degc");
247         double pressure_mb              = metar_root->getDoubleValue("pressure-sea-level-inhg") * SG_INHG_TO_PA / 100.0;
248
249         double dewp = pow(10.0, 7.5 * dewpoint_degc / (237.7 + dewpoint_degc));
250         double temp = pow(10.0, 7.5 * temperature_degc / (237.7 + temperature_degc));
251         double rel_humidity = dewp * 100 / temp;
252
253         // formule d'Epsy, base d'un cumulus
254         double cumulus_base = 122.0 * (temperature_degc - dewpoint_degc);
255         double stratus_base = 100.0 * (100.0 - rel_humidity) * SG_FEET_TO_METER;
256
257         bool cu_seen = false;
258
259         for(int iLayer = 0 ; iLayer < thesky->get_cloud_layer_count(); iLayer++) {
260                 SGPropertyNode *cloud_root = fgGetNode("/environment/clouds/layer", iLayer, true);
261
262                 double alt_ft = cloud_root->getDoubleValue("elevation-ft");
263                 double alt_m = alt_ft * SG_FEET_TO_METER;
264                 printf("Alt m: %.0f\n", alt_m);
265                 string coverage = cloud_root->getStringValue("coverage");
266                 double coverage_norm = 0.0;
267                 if( coverage == "few" )
268                         coverage_norm = 2.0/8.0;        // <1-2
269                 else if( coverage == "scattered" )
270                         coverage_norm = 4.0/8.0;        // 3-4
271                 else if( coverage == "broken" )
272                         coverage_norm = 6.0/8.0;        // 5-7
273                 else if( coverage == "overcast" )
274                         coverage_norm = 8.0/8.0;        // 8
275
276                 string layer_type = "nn";
277                 if( coverage == "cirrus" ) {
278                         layer_type = "ci";
279                 } else if( alt_ft > 16500 ) {
280 //                      layer_type = "ci|cs|cc";
281                         layer_type = "ci";
282                 } else if( alt_ft > 6500 ) {
283 //                      layer_type = "as|ac|ns";
284                         layer_type = "ac";
285                         if( pressure_mb < 1005.0 && coverage_norm >= 5.5 )
286                                 layer_type = "ns";
287                 } else {
288 //                      layer_type = "st|cu|cb|sc";
289                         if( cumulus_base * 0.80 < alt_m && cumulus_base * 1.20 > alt_m ) {
290                                 // +/- 20% from cumulus probable base
291                                 layer_type = "cu";
292                         } else if( stratus_base * 0.80 < alt_m && stratus_base * 1.40 > alt_m ) {
293                                 // +/- 20% from stratus probable base
294                                 layer_type = "st";
295                         } else {
296                                 // above formulae is far from perfect
297                                 if ( alt_ft < 2000 )
298                                         layer_type = "st";
299                                 else if( alt_ft < 4500 )
300                                         layer_type = "cu";
301                                 else
302                                         layer_type = "sc";
303                         }
304                 }
305
306                 buildLayer(iLayer, layer_type, alt_m, coverage_norm);
307         }
308 }
309
310 // copy from FGMetarEnvironmentCtrl until better
311 void
312 FGClouds::update_metar_properties( const FGMetar *m )
313 {
314     int i;
315     double d;
316     char s[128];
317
318     fgSetString("/environment/metar/station-id", m->getId());
319     fgSetDouble("/environment/metar/min-visibility-m",
320                 m->getMinVisibility().getVisibility_m() );
321     fgSetDouble("/environment/metar/max-visibility-m",
322                 m->getMaxVisibility().getVisibility_m() );
323
324     const SGMetarVisibility *dirvis = m->getDirVisibility();
325     for (i = 0; i < 8; i++, dirvis++) {
326         const char *min = "/environment/metar/visibility[%d]/min-m";
327         const char *max = "/environment/metar/visibility[%d]/max-m";
328
329         d = dirvis->getVisibility_m();
330
331         snprintf(s, 128, min, i);
332         fgSetDouble(s, d);
333         snprintf(s, 128, max, i);
334         fgSetDouble(s, d);
335     }
336
337     fgSetInt("/environment/metar/base-wind-range-from",
338              m->getWindRangeFrom() );
339     fgSetInt("/environment/metar/base-wind-range-to",
340              m->getWindRangeTo() );
341     fgSetDouble("/environment/metar/base-wind-speed-kt",
342                 m->getWindSpeed_kt() );
343     fgSetDouble("/environment/metar/gust-wind-speed-kt",
344                 m->getGustSpeed_kt() );
345     fgSetDouble("/environment/metar/temperature-degc",
346                 m->getTemperature_C() );
347     fgSetDouble("/environment/metar/dewpoint-degc",
348                 m->getDewpoint_C() );
349     fgSetDouble("/environment/metar/rel-humidity-norm",
350                 m->getRelHumidity() );
351     fgSetDouble("/environment/metar/pressure-inhg",
352                 m->getPressure_inHg() );
353
354     vector<SGMetarCloud> cv = m->getClouds();
355     vector<SGMetarCloud>::const_iterator cloud;
356
357     const char *cl = "/environment/clouds/layer[%i]";
358     for (i = 0, cloud = cv.begin(); cloud != cv.end(); cloud++, i++) {
359         const char *coverage_string[5] = 
360             { "clear", "few", "scattered", "broken", "overcast" };
361         const double thickness[5] = { 0, 65, 600,750, 1000};
362         int q;
363
364         snprintf(s, 128, cl, i);
365         strncat(s, "/coverage", 128);
366         q = cloud->getCoverage();
367         fgSetString(s, coverage_string[q] );
368
369         snprintf(s, 128, cl, i);
370         strncat(s, "/elevation-ft", 128);
371         fgSetDouble(s, cloud->getAltitude_ft() + station_elevation_ft);
372
373         snprintf(s, 128, cl, i);
374         strncat(s, "/thickness-ft", 128);
375         fgSetDouble(s, thickness[q]);
376
377         snprintf(s, 128, cl, i);
378         strncat(s, "/span-m", 128);
379         fgSetDouble(s, 40000.0);
380     }
381
382     for (; i < FGEnvironmentMgr::MAX_CLOUD_LAYERS; i++) {
383         snprintf(s, 128, cl, i);
384         strncat(s, "/coverage", 128);
385         fgSetString(s, "clear");
386
387         snprintf(s, 128, cl, i);
388         strncat(s, "/elevation-ft", 128);
389         fgSetDouble(s, -9999);
390
391         snprintf(s, 128, cl, i);
392         strncat(s, "/thickness-ft", 128);
393         fgSetDouble(s, 0);
394
395         snprintf(s, 128, cl, i);
396         strncat(s, "/span-m", 128);
397         fgSetDouble(s, 40000.0);
398     }
399
400     fgSetDouble("/environment/metar/rain-norm", m->getRain());
401     fgSetDouble("/environment/metar/hail-norm", m->getHail());
402     fgSetDouble("/environment/metar/snow-norm", m->getSnow());
403     fgSetBool("/environment/metar/snow-cover", m->getSnowCover());
404 }
405
406 void
407 FGClouds::update_env_config ()
408 {
409     fgSetupWind( fgGetDouble("/environment/metar/base-wind-range-from"),
410                  fgGetDouble("/environment/metar/base-wind-range-to"),
411                  fgGetDouble("/environment/metar/base-wind-speed-kt"),
412                  fgGetDouble("/environment/metar/gust-wind-speed-kt") );
413
414     fgDefaultWeatherValue( "visibility-m",
415                            fgGetDouble("/environment/metar/min-visibility-m") );
416 #if 0
417     set_temp_at_altitude( fgGetDouble("/environment/metar/temperature-degc"),
418                           station_elevation_ft );
419     set_dewpoint_at_altitude( fgGetDouble("/environment/metar/dewpoint-degc"),
420                               station_elevation_ft );
421 #endif
422     fgDefaultWeatherValue( "pressure-sea-level-inhg",
423                            fgGetDouble("/environment/metar/pressure-inhg") );
424 }
425
426
427 void FGClouds::setLayer( int iLayer, float alt_ft, const string& coverage, const string& layer_type ) {
428         double coverage_norm = 0.0;
429         if( coverage == "few" )
430                 coverage_norm = 2.0/8.0;        // <1-2
431         else if( coverage == "scattered" )
432                 coverage_norm = 4.0/8.0;        // 3-4
433         else if( coverage == "broken" )
434                 coverage_norm = 6.0/8.0;        // 5-7
435         else if( coverage == "overcast" )
436                 coverage_norm = 8.0/8.0;        // 8
437
438         buildLayer(iLayer, layer_type, station_elevation_ft + alt_ft * SG_FEET_TO_METER, coverage_norm);
439 }
440
441 void FGClouds::buildScenario( const string& scenario ) {
442         string fakeMetar="";
443         string station = fgGetString("/environment/metar/station-id", "XXXX");
444
445         // fetch station elevation if exists
446         if( station == "XXXX" )
447             station_elevation_ft = fgGetDouble("/position/ground-elev-m", 0.0);
448         else {
449             const FGAirport* a = globals->get_airports()->search( station );
450             station_elevation_ft = (a ? a->getElevation() : 0.0);
451         }
452
453         for(int iLayer = 0 ; iLayer < thesky->get_cloud_layer_count(); iLayer++) {
454             thesky->get_cloud_layer(iLayer)
455                 ->setCoverage(SGCloudLayer::SG_CLOUD_CLEAR);
456             thesky->get_cloud_layer(iLayer)->get_layer3D()->clear();
457         }
458
459         station += " 011000Z ";
460         if( scenario == "Fair weather" ) {
461                 fakeMetar = "15003KT 12SM SCT033 FEW200 20/08 Q1015 NOSIG";
462                 setLayer(0, 3300.0, "scattered", "cu");
463         } else if( scenario == "Thunderstorm" ) {
464                 fakeMetar = "15012KT 08SM TSRA SCT040 BKN070 20/12 Q0995";
465                 setLayer(0, 4000.0, "scattered", "cb");
466                 setLayer(1, 7000.0, "scattered", "ns");
467         } else 
468                 return;
469         FGMetar *m = new FGMetar( station + fakeMetar );
470         update_metar_properties( m );
471         update_env_config();
472         // propagate aloft tables
473         _controller->reinit();
474
475         fgSetString("/environment/metar/last-metar", m->getData());
476         // TODO:desactivate real metar updates
477         if( scenario == "Fair weather" ) {
478                 fgSetString("/environment/clouds/layer[1]/coverage", "cirrus");
479         }
480 }
481
482
483 void FGClouds::build() {
484         string scenario = fgGetString("/environment/weather-scenario", "METAR");
485
486         if(!rebuild_required && (scenario == last_scenario))
487             return;
488         
489         if( last_scenario == "none" ) {
490         // save clouds and weather conditions
491             SGPropertyNode *param = fgGetNode("/environment/config", true);
492             copyProperties( param, last_env_config );
493             param = fgGetNode("/environment/clouds", true);
494             copyProperties( param, last_env_clouds );
495         }
496         if( scenario == "METAR" ) {
497             string realMetar = fgGetString("/environment/metar/real-metar", "");
498             if( realMetar != "" ) {
499                 fgSetString("/environment/metar/last-metar", realMetar.c_str());
500                 FGMetar *m = new FGMetar( realMetar );
501                 update_metar_properties( m );
502                 update_env_config();
503                         // propagate aloft tables
504                 _controller->reinit();
505             }
506             buildMETAR();
507         }
508         else if( scenario == "none" ) {
509         // restore clouds and weather conditions
510             SGPropertyNode *param = fgGetNode("/environment/config", true);
511             copyProperties( last_env_config, param );
512             param = fgGetNode("/environment/clouds", true);
513             copyProperties( last_env_clouds, param );
514             fgSetDouble("/environment/metar/rain-norm", 0.0);
515             fgSetDouble("/environment/metar/snow-norm", 0.0);
516 //          update_env_config();
517             // propagate aloft tables
518             _controller->reinit();
519             buildMETAR();
520         }
521         else
522             buildScenario( scenario );
523         
524         last_scenario = scenario;
525         rebuild_required = false;
526
527         // ...
528         if( snd_lightning == NULL )
529             init();
530 }
531
532 void FGClouds::set_3dClouds(bool enable)
533 {
534     if (enable != clouds_3d_enabled) {
535         clouds_3d_enabled = enable;
536
537         for(int iLayer = 0 ; iLayer < thesky->get_cloud_layer_count(); iLayer++) {
538             thesky->get_cloud_layer(iLayer)->set_enable3dClouds(enable);
539
540             if (!enable) {
541                 thesky->get_cloud_layer(iLayer)->get_layer3D()->clear();
542             }
543         }
544
545         if (enable) {
546             rebuild_required = true;
547             build();
548         }
549     }
550 }
551
552 bool FGClouds::get_3dClouds() const {
553     return clouds_3d_enabled;
554 }
555