]> git.mxchange.org Git - flightgear.git/blob - src/Time/light.cxx
Fix a misuse of a return value that lead to an error message being displayed
[flightgear.git] / src / Time / light.cxx
1 //
2 // light.cxx -- lighting routines
3 //
4 // Written by Curtis Olson, started April 1998.
5 //
6 // Copyright (C) 1998  Curtis L. Olson  - http://www.flightgear.org/~curt
7 //
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 // General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 //
22 // $Id$
23
24
25 #ifdef HAVE_CONFIG_H
26 #  include <config.h>
27 #endif
28
29 #ifdef HAVE_WINDOWS_H
30 #  include <windows.h>
31 #endif
32
33 #include <simgear/compiler.h>
34
35 #include SG_GL_H
36
37 #ifdef SG_MATH_EXCEPTION_CLASH
38 #  define exception c_exception
39 #endif
40
41 #ifdef SG_HAVE_STD_INCLUDES
42 #  include <cmath>
43 #else
44 #  include <math.h>
45 #endif
46
47 #include <string>
48 SG_USING_STD(string);
49
50 #include <simgear/constants.h>
51 #include <simgear/debug/logstream.hxx>
52 #include <simgear/math/interpolater.hxx>
53 #include <simgear/math/polar3d.hxx>
54 #include <simgear/misc/sg_path.hxx>
55 #include <simgear/scene/sky/sky.hxx>
56 #include <simgear/screen/colors.hxx>
57
58 #include <Main/main.hxx>
59 #include <Main/globals.hxx>
60 #include <Main/fg_props.hxx>
61 #include <Main/renderer.hxx>
62 #include <Main/viewer.hxx>
63
64 #include "light.hxx"
65 #include "sunpos.hxx"
66
67
68 // Constructor
69 FGLight::FGLight ()
70     : _ambient_tbl( NULL ),
71       _diffuse_tbl( NULL ),
72       _specular_tbl( NULL ),
73       _sky_tbl( NULL ),
74       _prev_sun_angle(-9999.0),
75       _sun_rotation( 0.0 ),
76       _dt_total( 0.0 )
77 {
78 }
79
80 // Destructor
81 FGLight::~FGLight ()
82 {
83     delete _ambient_tbl;
84     delete _diffuse_tbl;
85     delete _specular_tbl;
86     delete _sky_tbl;
87 }
88
89
90 // initialize lighting tables
91 void FGLight::init () {
92     SG_LOG( SG_EVENT, SG_INFO, 
93             "Initializing Lighting interpolation tables." );
94
95     // build the path names of the lookup tables
96     SGPath path( globals->get_fg_root() );
97
98     // initialize ambient, diffuse and specular tables
99     SGPath ambient_path = path;
100     ambient_path.append( "Lighting/ambient" );
101     _ambient_tbl = new SGInterpTable( ambient_path.str() );
102
103     SGPath diffuse_path = path;
104     diffuse_path.append( "Lighting/diffuse" );
105     _diffuse_tbl = new SGInterpTable( diffuse_path.str() );
106
107     SGPath specular_path = path;
108     specular_path.append( "Lighting/specular" );
109     _specular_tbl = new SGInterpTable( specular_path.str() );
110     
111     // initialize sky table
112     SGPath sky_path = path;
113     sky_path.append( "Lighting/sky" );
114     _sky_tbl = new SGInterpTable( sky_path.str() );
115 }
116
117
118 void FGLight::reinit () {
119     _prev_sun_angle = -9999.0;
120     _dt_total = 0;
121
122     delete _ambient_tbl;
123     delete _diffuse_tbl;
124     delete _specular_tbl;
125     delete _sky_tbl;
126
127     init();
128
129     fgUpdateSunPos();
130     fgUpdateMoonPos();
131
132     update_sky_color();
133     update_adj_fog_color();
134 }
135
136 void FGLight::bind () {
137     SGPropertyNode *prop = globals->get_props();
138     prop->tie("/sim/time/sun-angle-rad",SGRawValuePointer<double>(&_sun_angle));
139 }
140
141 void FGLight::unbind () {
142     SGPropertyNode *prop = globals->get_props();
143     prop->untie("/sim/time/sun-angle-rad");
144 }
145
146
147 // update lighting parameters based on current sun position
148 void FGLight::update( double dt ) {
149
150     _dt_total += dt;
151     if (_dt_total >= 0.5) {
152         _dt_total -= 0.5;
153         fgUpdateSunPos();
154         fgUpdateMoonPos();
155     }
156
157     update_adj_fog_color();
158
159     if (_prev_sun_angle != _sun_angle) {
160         _prev_sun_angle = _sun_angle;
161         update_sky_color();
162     }
163 }
164
165 void FGLight::update_sky_color () {
166     // if the 4th field is 0.0, this specifies a direction ...
167     // const GLfloat white[4]          = { 1.0,  1.0,  1.0,  1.0 };
168     const GLfloat base_sky_color[4] = { 0.31, 0.43, 0.69, 1.0 };
169     const GLfloat base_fog_color[4] = { 0.84, 0.87, 1.0,  1.0 };
170
171     SG_LOG( SG_EVENT, SG_INFO, "Updating light parameters." );
172
173     // calculate lighting parameters based on sun's relative angle to
174     // local up
175
176     float deg = _sun_angle * SGD_RADIANS_TO_DEGREES;
177     SG_LOG( SG_EVENT, SG_INFO, "  Sun angle = " << deg );
178
179     float ambient = _ambient_tbl->interpolate( deg );
180     float diffuse = _diffuse_tbl->interpolate( deg );
181     float specular = _specular_tbl->interpolate( deg );
182     float sky_brightness = _sky_tbl->interpolate( deg );
183
184     SG_LOG( SG_EVENT, SG_INFO, 
185             "  ambient = " << ambient << "  diffuse = " << diffuse 
186             << "  specular = " << specular << "  sky = " << sky_brightness );
187
188     // sky_brightness = 0.15;  // used to force a dark sky (when testing)
189
190     // if ( ambient < 0.02 ) { ambient = 0.02; }
191     // if ( diffuse < 0.0 ) { diffuse = 0.0; }
192     // if ( sky_brightness < 0.1 ) { sky_brightness = 0.1; }
193
194     // set sky color
195     _sky_color[0] = base_sky_color[0] * sky_brightness;
196     _sky_color[1] = base_sky_color[1] * sky_brightness;
197     _sky_color[2] = base_sky_color[2] * sky_brightness;
198     _sky_color[3] = base_sky_color[3];
199     gamma_correct_rgb( _sky_color );
200
201     // set cloud and fog color
202     _cloud_color[0] = _fog_color[0] = base_fog_color[0] * sky_brightness;
203     _cloud_color[1] = _fog_color[1] = base_fog_color[1] * sky_brightness;
204     _cloud_color[2] = _fog_color[2] = base_fog_color[2] * sky_brightness;
205     _cloud_color[3] = _fog_color[3] = base_fog_color[3];
206     gamma_correct_rgb( _fog_color );
207
208     // adjust the cloud colors for sunrise/sunset effects (darken them)
209     if (_sun_angle > 1.0) {
210        float sun2 = sqrt(_sun_angle);
211        _cloud_color[0] /= sun2;
212        _cloud_color[1] /= sun2;
213        _cloud_color[2] /= sun2;
214     }
215     gamma_correct_rgb( _cloud_color );
216
217     float *sun_color = thesky->get_sun_color();
218
219     _scene_ambient[0] = ((sun_color[0]*0.25 + _cloud_color[0]*0.75) + ambient) / 2;
220     _scene_ambient[1] = ((sun_color[1]*0.25 + _cloud_color[1]*0.75) + ambient) / 2;
221     _scene_ambient[2] = ((sun_color[2]*0.25 + _cloud_color[2]*0.75) + ambient) / 2;
222     _scene_ambient[3] = 1.0;
223
224     _scene_diffuse[0] = (sun_color[0]*0.25 + _fog_color[0]*0.75) * diffuse;
225     _scene_diffuse[1] = (sun_color[1]*0.25 + _fog_color[1]*0.75) * diffuse;
226     _scene_diffuse[2] = (sun_color[2]*0.25 + _fog_color[2]*0.75) * diffuse;
227     _scene_diffuse[3] = 1.0;
228
229     _scene_specular[0] = sun_color[0] * specular;
230     _scene_specular[1] = sun_color[1] * specular;
231     _scene_specular[2] = sun_color[2] * specular;
232     _scene_specular[3] = 1.0;
233 }
234
235
236 // calculate fog color adjusted for sunrise/sunset effects
237 void FGLight::update_adj_fog_color () {
238
239     double heading = globals->get_current_view()->getHeading_deg()
240                      * SGD_DEGREES_TO_RADIANS;
241     double heading_offset = globals->get_current_view()->getHeadingOffset_deg()
242                             * SGD_DEGREES_TO_RADIANS;
243
244     SG_LOG( SG_EVENT, SG_DEBUG, "Updating adjusted fog parameters." );
245
246     // set fog color (we'll try to match the sunset color in the
247     // direction we are looking
248
249     // Do some sanity checking ...
250     if ( _sun_rotation < -2.0 * SGD_2PI || _sun_rotation > 2.0 * SGD_2PI ) {
251         SG_LOG( SG_EVENT, SG_ALERT, "Sun rotation bad = " << _sun_rotation );
252         return;
253     }
254
255     if ( heading < -2.0 * SGD_2PI || heading > 2.0 * SGD_2PI ) {
256         SG_LOG( SG_EVENT, SG_ALERT, "Heading rotation bad = " << heading );
257         return;
258     }
259
260     if ( heading_offset < -2.0 * SGD_2PI || heading_offset > 2.0 * SGD_2PI ) {
261         SG_LOG( SG_EVENT, SG_ALERT, "Heading offset bad = " << heading_offset );
262         return;
263     }
264
265     double rotation;
266
267     // first determine the difference between our view angle and local
268     // direction to the sun
269     rotation = -(_sun_rotation + SGD_PI) - heading + heading_offset;
270     while ( rotation < 0 ) {
271         rotation += SGD_2PI;
272     }
273     while ( rotation > SGD_2PI ) {
274         rotation -= SGD_2PI;
275     }
276
277     // revert to unmodified values before usign them.
278     //
279     float *sun_color = thesky->get_sun_color();
280
281     gamma_restore_rgb( _fog_color );
282
283     // Calculate the fog color in the direction of the sun for
284     // sunrise/sunset effects.
285     //
286     float s_red =   (_fog_color[0] + 2 * sun_color[0]*sun_color[0]) / 3;
287     float s_green = (_fog_color[1] + 2 * sun_color[1]*sun_color[1]) / 3;
288     float s_blue =  (_fog_color[2] + 2 * sun_color[2]) / 3;
289
290     // interpolate beween the sunrise/sunset color and the color
291     // at the opposite direction of this effect. Take in account
292     // the current visibility.
293     //
294     float av = thesky->get_visibility();
295     if (av > 45000)
296        av = 45000;
297
298     float avf = 0.87 - (45000 - av) / 83333.33;
299     float sif = 0.5 - cos(_sun_angle*2)/2;
300
301     if (sif < 1e-4)
302        sif = 1e-4;
303
304     float rf1 = fabs((rotation - SGD_PI) / SGD_PI);             // 0.0 .. 1.0
305     float rf2 = avf * pow(rf1 * rf1, 1/sif);
306     float rf3 = 0.94 - rf2;
307
308     _adj_fog_color[0] = rf3 * _fog_color[0] + rf2 * s_red;
309     _adj_fog_color[1] = rf3 * _fog_color[1] + rf2 * s_green;
310     _adj_fog_color[2] = rf3 * _fog_color[2] + rf2 * s_blue;
311     gamma_correct_rgb( _adj_fog_color );
312
313     // make sure the colors have their original value before they are being
314     // used by the rest of the program.
315     //
316     gamma_correct_rgb( _fog_color );
317 }
318