]> git.mxchange.org Git - simgear.git/blob - simgear/scene/sky/oursun.cxx
Modified Files:
[simgear.git] / simgear / scene / sky / oursun.cxx
1 // oursun.hxx -- model earth's sun
2 //
3 // Written by Durk Talsma. Originally started October 1997, for distribution  
4 // with the FlightGear project. Version 2 was written in August and 
5 // September 1998. This code is based upon algorithms and data kindly 
6 // provided by Mr. Paul Schlyter. (pausch@saaf.se). 
7 //
8 // Separated out rendering pieces and converted to ssg by Curt Olson,
9 // March 2000
10 // This library is free software; you can redistribute it and/or
11 // modify it under the terms of the GNU Library General Public
12 // License as published by the Free Software Foundation; either
13 // version 2 of the License, or (at your option) any later version.
14 //
15 // This library is distributed in the hope that it will be useful,
16 // but WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 // Library General Public License for more details.
19 //
20 // You should have received a copy of the GNU General Public License
21 // along with this program; if not, write to the Free Software
22 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
23 //
24 // $Id$
25
26
27 #ifdef HAVE_CONFIG_H
28 #  include <simgear_config.h>
29 #endif
30
31 #include <simgear/compiler.h>
32
33 #include <osg/AlphaFunc>
34 #include <osg/BlendFunc>
35 #include <osg/Fog>
36 #include <osg/Geode>
37 #include <osg/Geometry>
38 #include <osg/Material>
39 #include <osg/ShadeModel>
40 #include <osg/TexEnv>
41 #include <osg/Texture2D>
42 #include <osgDB/ReadFile>
43
44 #include <simgear/screen/colors.hxx>
45 #include <simgear/scene/model/model.hxx>
46 #include "oursun.hxx"
47
48 // Constructor
49 SGSun::SGSun( void ) {
50     prev_sun_angle = -9999.0;
51     visibility = -9999.0;
52 }
53
54
55 // Destructor
56 SGSun::~SGSun( void ) {
57 }
58
59
60 // initialize the sun object and connect it into our scene graph root
61 osg::Node*
62 SGSun::build( SGPath path, double sun_size, SGPropertyNode *property_tree_Node ) {
63
64     env_node = property_tree_Node;
65
66     SGPath ihalopath = path, ohalopath = path;
67
68     // build the ssg scene graph sub tree for the sky and connected
69     // into the provide scene graph branch
70     sun_transform = new osg::MatrixTransform;
71     osg::StateSet* stateSet = sun_transform->getOrCreateStateSet();
72
73     osg::TexEnv* texEnv = new osg::TexEnv;
74     texEnv->setMode(osg::TexEnv::MODULATE);
75     stateSet->setTextureAttribute(0, texEnv, osg::StateAttribute::ON);
76  
77     osg::Material* material = new osg::Material;
78     material->setColorMode(osg::Material::AMBIENT_AND_DIFFUSE);
79     material->setEmission(osg::Material::FRONT_AND_BACK,
80                           osg::Vec4(0, 0, 0, 1));
81     material->setSpecular(osg::Material::FRONT_AND_BACK,
82                           osg::Vec4(0, 0, 0, 1));
83     stateSet->setAttributeAndModes(material);
84
85     osg::ShadeModel* shadeModel = new osg::ShadeModel;
86     shadeModel->setMode(osg::ShadeModel::FLAT);
87     stateSet->setAttributeAndModes(shadeModel);
88
89     osg::AlphaFunc* alphaFunc = new osg::AlphaFunc;
90     alphaFunc->setFunction(osg::AlphaFunc::GREATER);
91     alphaFunc->setReferenceValue(0.01);
92     stateSet->setAttributeAndModes(alphaFunc);
93
94     osg::BlendFunc* blendFunc = new osg::BlendFunc;
95     blendFunc->setSource(osg::BlendFunc::SRC_ALPHA);
96     blendFunc->setDestination(osg::BlendFunc::ONE_MINUS_SRC_ALPHA);
97     stateSet->setAttributeAndModes(blendFunc);
98
99     stateSet->setMode(GL_FOG, osg::StateAttribute::OFF);
100     stateSet->setMode(GL_LIGHTING, osg::StateAttribute::OFF);
101     stateSet->setMode(GL_CULL_FACE, osg::StateAttribute::OFF);
102     stateSet->setMode(GL_DEPTH_TEST, osg::StateAttribute::OFF);
103
104
105     osg::Geode* geode = new osg::Geode;
106     stateSet = geode->getOrCreateStateSet();
107
108     stateSet->setRenderBinDetails(-8, "RenderBin");
109
110     // set up the sun-state
111     path.append( "sun.rgba" );
112     osg::Texture2D* texture = SGLoadTexture2D(path);
113     stateSet->setTextureAttributeAndModes(0, texture);
114
115     // Build scenegraph
116     sun_cl = new osg::Vec4Array;
117     sun_cl->push_back(osg::Vec4(1, 1, 1, 1));
118
119     osg::Vec3Array* sun_vl = new osg::Vec3Array;
120     sun_vl->push_back(osg::Vec3(-sun_size, 0, -sun_size));
121     sun_vl->push_back(osg::Vec3(sun_size, 0, -sun_size));
122     sun_vl->push_back(osg::Vec3(-sun_size, 0, sun_size));
123     sun_vl->push_back(osg::Vec3(sun_size, 0, sun_size));
124
125     osg::Vec2Array* sun_tl = new osg::Vec2Array;
126     sun_tl->push_back(osg::Vec2(0, 0));
127     sun_tl->push_back(osg::Vec2(1, 0));
128     sun_tl->push_back(osg::Vec2(0, 1));
129     sun_tl->push_back(osg::Vec2(1, 1));
130
131     osg::Geometry* geometry = new osg::Geometry;
132     geometry->setUseDisplayList(false);
133     geometry->setVertexArray(sun_vl);
134     geometry->setColorArray(sun_cl.get());
135     geometry->setColorBinding(osg::Geometry::BIND_OVERALL);
136     geometry->setTexCoordArray(0, sun_tl);
137     geometry->addPrimitiveSet(new osg::DrawArrays(GL_TRIANGLE_STRIP, 0, 4));
138     geode->addDrawable(geometry);
139
140     sun_transform->addChild( geode );
141
142
143     // set up the inner-halo state
144     geode = new osg::Geode;
145     stateSet = geode->getOrCreateStateSet();
146     stateSet->setRenderBinDetails(-7, "RenderBin");
147     
148     ihalopath.append( "inner_halo.rgba" );
149     texture = SGLoadTexture2D(path);
150     stateSet->setTextureAttributeAndModes(0, texture);
151
152     // Build ssg structure
153     ihalo_cl = new osg::Vec4Array;
154     ihalo_cl->push_back(osg::Vec4(1, 1, 1, 1));
155
156     float ihalo_size = sun_size * 2.0;
157     osg::Vec3Array* ihalo_vl = new osg::Vec3Array;
158     ihalo_vl->push_back(osg::Vec3(-ihalo_size, 0, -ihalo_size));
159     ihalo_vl->push_back(osg::Vec3(ihalo_size, 0, -ihalo_size));
160     ihalo_vl->push_back(osg::Vec3(-ihalo_size, 0, ihalo_size));
161     ihalo_vl->push_back(osg::Vec3(ihalo_size, 0, ihalo_size));
162
163     osg::Vec2Array* ihalo_tl = new osg::Vec2Array;
164     ihalo_tl->push_back(osg::Vec2(0, 0));
165     ihalo_tl->push_back(osg::Vec2(1, 0));
166     ihalo_tl->push_back(osg::Vec2(0, 1));
167     ihalo_tl->push_back(osg::Vec2(1, 1));
168
169     geometry = new osg::Geometry;
170     geometry->setUseDisplayList(false);
171     geometry->setVertexArray(ihalo_vl);
172     geometry->setColorArray(ihalo_cl.get());
173     geometry->setColorBinding(osg::Geometry::BIND_OVERALL);
174     geometry->setTexCoordArray(0, ihalo_tl);
175     geometry->addPrimitiveSet(new osg::DrawArrays(GL_TRIANGLE_STRIP, 0, 4));
176     geode->addDrawable(geometry);
177
178     sun_transform->addChild( geode );
179
180     
181     // set up the outer halo state
182     
183     geode = new osg::Geode;
184     stateSet = geode->getOrCreateStateSet();
185     stateSet->setRenderBinDetails(-6, "RenderBin");
186
187     ohalopath.append( "outer_halo.rgba" );
188     texture = SGLoadTexture2D(path);
189     stateSet->setTextureAttributeAndModes(0, texture);
190
191     // Build ssg structure
192     ohalo_cl = new osg::Vec4Array;
193     ohalo_cl->push_back(osg::Vec4(1, 1, 1, 1));
194
195     double ohalo_size = sun_size * 7.0;
196     osg::Vec3Array* ohalo_vl = new osg::Vec3Array;
197     ohalo_vl->push_back(osg::Vec3(-ohalo_size, 0, -ohalo_size));
198     ohalo_vl->push_back(osg::Vec3(ohalo_size, 0, -ohalo_size));
199     ohalo_vl->push_back(osg::Vec3(-ohalo_size, 0, ohalo_size));
200     ohalo_vl->push_back(osg::Vec3(ohalo_size, 0, ohalo_size));
201
202     osg::Vec2Array* ohalo_tl = new osg::Vec2Array;
203     ohalo_tl->push_back(osg::Vec2(0, 0));
204     ohalo_tl->push_back(osg::Vec2(1, 0));
205     ohalo_tl->push_back(osg::Vec2(0, 1));
206     ohalo_tl->push_back(osg::Vec2(1, 1));
207
208     geometry = new osg::Geometry;
209     geometry->setUseDisplayList(false);
210     geometry->setVertexArray(ihalo_vl);
211     geometry->setColorArray(ihalo_cl.get());
212     geometry->setColorBinding(osg::Geometry::BIND_OVERALL);
213     geometry->setTexCoordArray(0, ihalo_tl);
214     geometry->addPrimitiveSet(new osg::DrawArrays(GL_TRIANGLE_STRIP, 0, 4));
215     geode->addDrawable(geometry);
216
217     sun_transform->addChild( geode );
218
219
220     // force a repaint of the sun colors with arbitrary defaults
221     repaint( 0.0, 1.0 );
222
223     return sun_transform.get();
224 }
225
226
227 // repaint the sun colors based on current value of sun_angle in
228 // degrees relative to verticle
229 // 0 degrees = high noon
230 // 90 degrees = sun rise/set
231 // 180 degrees = darkest midnight
232 bool SGSun::repaint( double sun_angle, double new_visibility ) {
233     
234         if ( visibility != new_visibility ) {
235                 visibility = new_visibility;
236
237                 static const double sqrt_m_log01 = sqrt( -log( 0.01 ) );
238                 sun_exp2_punch_through = sqrt_m_log01 / ( visibility * 15 );
239         }
240
241         if ( prev_sun_angle != sun_angle ) {
242                 prev_sun_angle = sun_angle;
243
244                 // determine how much aerosols are in the air (rough guess)
245                 double aerosol_factor;
246                 if ( visibility < 100 ){
247                         aerosol_factor = 8000;
248                 }
249                 else {
250                         aerosol_factor = 80.5 / log( visibility / 100 );
251                 }
252
253                 // get environmental data from property tree or use defaults
254                 double rel_humidity, density_avg;
255
256                 if ( !env_node )
257                 {
258                         rel_humidity = 0.5;
259                         density_avg = 0.7;
260                 }
261                 else
262                 {
263                         rel_humidity = env_node->getFloatValue( "relative-humidity" ); 
264                         density_avg =  env_node->getFloatValue( "atmosphere/density-tropo-avg" );
265                 }
266
267                 // ok, now let's go and generate the sun color
268                 osg::Vec4 i_halo_color, o_halo_color, sun_color;
269
270                 // Some comments: 
271                 // When the sunangle changes, light has to travel a longer distance through the atmosphere.
272                 // So it's scattered more due to raleigh scattering, which affects blue more than green light.
273                 // Red is almost not scattered and effectively only get's touched when the sun is near the horizon.
274                 // Visability also affects suncolor inasmuch as more particles are in the air that cause more scattering.
275                 // We base our calculation on the halo's color, which is most scattered. 
276  
277                 // Red - is almost not scattered        
278                 // Lambda is 700 nm
279                 
280                 double red_scat_f = ( aerosol_factor * path_distance * density_avg ) / 5E+07;
281                 sun_color[0] = 1 - red_scat_f;
282                 i_halo_color[0] = 1 - ( 1.1 * red_scat_f );
283                 o_halo_color[0] = 1 - ( 1.4 * red_scat_f );
284
285                 // Green - 546.1 nm
286                 double green_scat_f = ( aerosol_factor * path_distance * density_avg ) / 8.8938E+06;
287                 sun_color[1] = 1 - green_scat_f;
288                 i_halo_color[1] = 1 - ( 1.1 * green_scat_f );
289                 o_halo_color[1] = 1 - ( 1.4 * green_scat_f );
290  
291                 // Blue - 435.8 nm
292                 double blue_scat_f = ( aerosol_factor * path_distance * density_avg ) / 3.607E+06;
293                 sun_color[2] = 1 - blue_scat_f;
294                 i_halo_color[2] = 1 - ( 1.1 * blue_scat_f );
295                 o_halo_color[2] = 1 - ( 1.4 * blue_scat_f );
296
297                 // Alpha
298                 sun_color[3] = 1;
299                 i_halo_color[3] = 1;
300
301                 o_halo_color[3] = blue_scat_f; 
302                 if ( ( new_visibility < 10000 ) &&  ( blue_scat_f > 1 )){
303                         o_halo_color[3] = 2 - blue_scat_f; 
304                 }
305
306
307                 // Now that we have the color calculated 
308                 // let's consider the saturation which is produced by mie scattering
309                 double saturation = 1 - ( rel_humidity / 200 );
310                 sun_color[1] += (( 1 - saturation ) * ( 1 - sun_color[1] ));
311                 sun_color[2] += (( 1 - saturation ) * ( 1 - sun_color[2] ));
312
313                 i_halo_color[1] += (( 1 - saturation ) * ( 1 - i_halo_color[1] ));
314                 i_halo_color[2] += (( 1 - saturation ) * ( 1 - i_halo_color[2] )); 
315
316                 o_halo_color[1] += (( 1 - saturation ) * ( 1 - o_halo_color[1] )); 
317                 o_halo_color[2] += (( 1 - saturation ) * ( 1 - o_halo_color[2] )); 
318
319                 // just to make sure we're in the limits
320                 if ( sun_color[0] < 0 ) sun_color[0] = 0;
321                 else if ( sun_color[0] > 1) sun_color[0] = 1;
322                 if ( i_halo_color[0] < 0 ) i_halo_color[0] = 0;
323                 else if ( i_halo_color[0] > 1) i_halo_color[0] = 1;
324                 if ( o_halo_color[0] < 0 ) o_halo_color[0] = 0;
325                 else if ( o_halo_color[0] > 1) o_halo_color[0] = 1;
326
327                 if ( sun_color[1] < 0 ) sun_color[1] = 0;
328                 else if ( sun_color[1] > 1) sun_color[1] = 1;
329                 if ( i_halo_color[1] < 0 ) i_halo_color[1] = 0;
330                 else if ( i_halo_color[1] > 1) i_halo_color[1] = 1;
331                 if ( o_halo_color[1] < 0 ) o_halo_color[1] = 0;
332                 else if ( o_halo_color[1] > 1) o_halo_color[1] = 1;
333
334                 if ( sun_color[2] < 0 ) sun_color[2] = 0;
335                 else if ( sun_color[2] > 1) sun_color[2] = 1;
336                 if ( i_halo_color[2] < 0 ) i_halo_color[2] = 0;
337                 else if ( i_halo_color[2] > 1) i_halo_color[2] = 1;
338                 if ( o_halo_color[2] < 0 ) o_halo_color[2] = 0;
339                 else if ( o_halo_color[2] > 1) o_halo_color[2] = 1;
340                 if ( o_halo_color[3] < 0 ) o_halo_color[2] = 0;
341                 else if ( o_halo_color[3] > 1) o_halo_color[3] = 1;
342
343         
344                 gamma_correct_rgb( i_halo_color._v );
345                 gamma_correct_rgb( o_halo_color._v );
346                 gamma_correct_rgb( sun_color._v );      
347
348                 (*sun_cl)[0] = sun_color;
349                 sun_cl->dirty();
350                 (*ihalo_cl)[0] = i_halo_color;
351                 ihalo_cl->dirty();
352                 (*ohalo_cl)[0] = o_halo_color;
353                 ohalo_cl->dirty();
354     }
355
356     return true;
357 }
358
359
360 // reposition the sun at the specified right ascension and
361 // declination, offset by our current position (p) so that it appears
362 // fixed at a great distance from the viewer.  Also add in an optional
363 // rotation (i.e. for the current time of day.)
364 // Then calculate stuff needed for the sun-coloring
365 bool SGSun::reposition( const SGVec3f& p, double angle,
366                         double rightAscension, double declination, 
367                         double sun_dist, double lat, double alt_asl, double sun_angle)
368 {
369     // GST - GMT sidereal time 
370     osg::Matrix T1, T2, GST, RA, DEC;
371
372     T1.makeTranslate(p.osg());
373     GST.makeRotate(SGD_DEGREES_TO_RADIANS*angle, osg::Vec3(0, 0, -1));
374
375     // xglRotatef( ((SGD_RADIANS_TO_DEGREES * rightAscension)- 90.0),
376     //             0.0, 0.0, 1.0);
377     RA.makeRotate(rightAscension - 90*SGD_DEGREES_TO_RADIANS, osg::Vec3(0, 0, 1));
378
379     // xglRotatef((SGD_RADIANS_TO_DEGREES * declination), 1.0, 0.0, 0.0);
380     DEC.makeRotate(declination, osg::Vec3(1, 0, 0));
381
382     // xglTranslatef(0,sun_dist);
383     T2.makeTranslate(osg::Vec3(0, sun_dist, 0));
384
385     sun_transform->setMatrix(T2*DEC*RA*GST*T1);
386
387     // Suncolor related things:
388     if ( prev_sun_angle != sun_angle ) {
389       if ( sun_angle == 0 ) sun_angle = 0.1;
390          const double r_earth_pole = 6356752.314;
391          const double r_tropo_pole = 6356752.314 + 8000;
392          const double epsilon_earth2 = 6.694380066E-3;
393          const double epsilon_tropo2 = 9.170014946E-3;
394
395          double r_tropo = r_tropo_pole / sqrt ( 1 - ( epsilon_tropo2 * pow ( cos( lat ), 2 )));
396          double r_earth = r_earth_pole / sqrt ( 1 - ( epsilon_earth2 * pow ( cos( lat ), 2 )));
397  
398          double position_radius = r_earth + alt_asl;
399
400          double gamma =  SG_PI - sun_angle;
401          double sin_beta =  ( position_radius * sin ( gamma )  ) / r_tropo;
402          double alpha =  SG_PI - gamma - asin( sin_beta );
403
404          // OK, now let's calculate the distance the light travels
405          path_distance = sqrt( pow( position_radius, 2 ) + pow( r_tropo, 2 )
406                         - ( 2 * position_radius * r_tropo * cos( alpha ) ));
407
408          double alt_half = sqrt( pow ( r_tropo, 2 ) + pow( path_distance / 2, 2 ) - r_tropo * path_distance * cos( asin( sin_beta )) ) - r_earth;
409
410          if ( alt_half < 0.0 ) alt_half = 0.0;
411
412          // Push the data to the property tree, so it can be used in the enviromental code
413          if ( env_node ){
414             env_node->setDoubleValue( "atmosphere/altitude-troposphere-top", r_tropo - r_earth );
415             env_node->setDoubleValue( "atmosphere/altitude-half-to-sun", alt_half );
416       }
417     }
418
419     return true;
420 }
421
422 SGVec4f
423 SGSun::get_color()
424 {
425     return SGVec4f((*sun_cl)[0][0], (*sun_cl)[0][1], (*sun_cl)[0][2], (*sun_cl)[0][3]);
426 }