]> git.mxchange.org Git - flightgear.git/blob - src/Time/light.cxx
Migrate FlightGear code to use "#include SG_GL*" defined in
[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  - curt@me.umn.edu
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/viewer.hxx>
62
63 #include "light.hxx"
64 #include "sunpos.hxx"
65
66
67 // Constructor
68 FGLight::FGLight ()
69     : _ambient_tbl( NULL ),
70       _diffuse_tbl( NULL ),
71       _specular_tbl( NULL ),
72       _sky_tbl( NULL ),
73       _prev_sun_angle(-9999.0),
74       _sun_rotation( 0.0 ),
75       _dt_total( 0.0 )
76 {
77 }
78
79 // Destructor
80 FGLight::~FGLight ()
81 {
82     delete _ambient_tbl;
83     delete _diffuse_tbl;
84     delete _specular_tbl;
85     delete _sky_tbl;
86 }
87
88
89 // initialize lighting tables
90 void FGLight::init () {
91     SG_LOG( SG_EVENT, SG_INFO, 
92             "Initializing Lighting interpolation tables." );
93
94     // build the path names of the lookup tables
95     SGPath path( globals->get_fg_root() );
96
97     // initialize ambient, diffuse and specular tables
98     SGPath ambient_path = path;
99     ambient_path.append( "Lighting/ambient" );
100     _ambient_tbl = new SGInterpTable( ambient_path.str() );
101
102     SGPath diffuse_path = path;
103     diffuse_path.append( "Lighting/diffuse" );
104     _diffuse_tbl = new SGInterpTable( diffuse_path.str() );
105
106     SGPath specular_path = path;
107     specular_path.append( "Lighting/specular" );
108     _specular_tbl = new SGInterpTable( specular_path.str() );
109     
110     // initialize sky table
111     SGPath sky_path = path;
112     sky_path.append( "Lighting/sky" );
113     _sky_tbl = new SGInterpTable( sky_path.str() );
114 }
115
116
117 void FGLight::reinit () {
118     _prev_sun_angle = -9999.0;
119     _dt_total = 0;
120
121     delete _ambient_tbl;
122     delete _diffuse_tbl;
123     delete _specular_tbl;
124     delete _sky_tbl;
125
126     init();
127
128     fgUpdateSunPos();
129     fgUpdateMoonPos();
130
131     update_sky_color();
132     update_adj_fog_color();
133 }
134
135 void FGLight::bind () {
136     SGPropertyNode *prop = globals->get_props();
137     prop->tie("/sim/time/sun-angle-rad",SGRawValuePointer<double>(&_sun_angle));
138 }
139
140 void FGLight::unbind () {
141     SGPropertyNode *prop = globals->get_props();
142     prop->untie("/sim/time/sun-angle-rad");
143 }
144
145
146 // update lighting parameters based on current sun position
147 void FGLight::update( double dt ) {
148
149     _dt_total += dt;
150     if (_dt_total >= 0.5) {
151         _dt_total -= 0.5;
152         fgUpdateSunPos();
153         fgUpdateMoonPos();
154     }
155
156     update_adj_fog_color();
157
158     if (_prev_sun_angle != _sun_angle) {
159         _prev_sun_angle = _sun_angle;
160         update_sky_color();
161     }
162 }
163
164 void FGLight::update_sky_color () {
165     // if the 4th field is 0.0, this specifies a direction ...
166     // const GLfloat white[4]          = { 1.0,  1.0,  1.0,  1.0 };
167     const GLfloat base_sky_color[4] = { 0.31, 0.43, 0.69, 1.0 };
168     const GLfloat base_fog_color[4] = { 0.84, 0.87, 1.0,  1.0 };
169
170     SG_LOG( SG_EVENT, SG_INFO, "Updating light parameters." );
171
172     // calculate lighting parameters based on sun's relative angle to
173     // local up
174
175     float deg = _sun_angle * SGD_RADIANS_TO_DEGREES;
176     SG_LOG( SG_EVENT, SG_INFO, "  Sun angle = " << deg );
177
178     float ambient = _ambient_tbl->interpolate( deg );
179     float diffuse = _diffuse_tbl->interpolate( deg );
180     float specular = _specular_tbl->interpolate( deg );
181     float sky_brightness = _sky_tbl->interpolate( deg );
182
183     SG_LOG( SG_EVENT, SG_INFO, 
184             "  ambient = " << ambient << "  diffuse = " << diffuse 
185             << "  specular = " << specular << "  sky = " << sky_brightness );
186
187     // sky_brightness = 0.15;  // used to force a dark sky (when testing)
188
189     // if ( ambient < 0.02 ) { ambient = 0.02; }
190     // if ( diffuse < 0.0 ) { diffuse = 0.0; }
191     // if ( sky_brightness < 0.1 ) { sky_brightness = 0.1; }
192
193     // set sky color
194     _sky_color[0] = base_sky_color[0] * sky_brightness;
195     _sky_color[1] = base_sky_color[1] * sky_brightness;
196     _sky_color[2] = base_sky_color[2] * sky_brightness;
197     _sky_color[3] = base_sky_color[3];
198     gamma_correct_rgb( _sky_color );
199
200     // set cloud and fog color
201     _cloud_color[0] = _fog_color[0] = base_fog_color[0] * sky_brightness;
202     _cloud_color[1] = _fog_color[1] = base_fog_color[1] * sky_brightness;
203     _cloud_color[2] = _fog_color[2] = base_fog_color[2] * sky_brightness;
204     _cloud_color[3] = _fog_color[3] = base_fog_color[3];
205     gamma_correct_rgb( _fog_color );
206
207     // adjust the cloud colors for sunrise/sunset effects (darken them)
208     if (_sun_angle > 1.0) {
209        float sun2 = sqrt(_sun_angle);
210        _cloud_color[0] /= sun2;
211        _cloud_color[1] /= sun2;
212        _cloud_color[2] /= sun2;
213     }
214     gamma_correct_rgb( _cloud_color );
215
216     float *sun_color = thesky->get_sun_color();
217
218     _scene_ambient[0] = ((sun_color[0]*0.25 + _cloud_color[0]*0.75) + ambient) / 2;
219     _scene_ambient[1] = ((sun_color[1]*0.25 + _cloud_color[1]*0.75) + ambient) / 2;
220     _scene_ambient[2] = ((sun_color[2]*0.25 + _cloud_color[2]*0.75) + ambient) / 2;
221     _scene_ambient[3] = 1.0;
222
223     _scene_diffuse[0] = (sun_color[0]*0.25 + _fog_color[0]*0.75) * diffuse;
224     _scene_diffuse[1] = (sun_color[1]*0.25 + _fog_color[1]*0.75) * diffuse;
225     _scene_diffuse[2] = (sun_color[2]*0.25 + _fog_color[2]*0.75) * diffuse;
226     _scene_diffuse[3] = 1.0;
227
228     _scene_specular[0] = sun_color[0] * specular;
229     _scene_specular[1] = sun_color[1] * specular;
230     _scene_specular[2] = sun_color[2] * specular;
231     _scene_specular[3] = 1.0;
232 }
233
234
235 // calculate fog color adjusted for sunrise/sunset effects
236 void FGLight::update_adj_fog_color () {
237
238     double heading = globals->get_current_view()->getHeading_deg()
239                      * SGD_DEGREES_TO_RADIANS;
240     double heading_offset = globals->get_current_view()->getHeadingOffset_deg()
241                             * SGD_DEGREES_TO_RADIANS;
242
243     SG_LOG( SG_EVENT, SG_DEBUG, "Updating adjusted fog parameters." );
244
245     // set fog color (we'll try to match the sunset color in the
246     // direction we are looking
247
248     // Do some sanity checking ...
249     if ( _sun_rotation < -2.0 * SGD_2PI || _sun_rotation > 2.0 * SGD_2PI ) {
250         SG_LOG( SG_EVENT, SG_ALERT, "Sun rotation bad = " << _sun_rotation );
251         return;
252     }
253
254     if ( heading < -2.0 * SGD_2PI || heading > 2.0 * SGD_2PI ) {
255         SG_LOG( SG_EVENT, SG_ALERT, "Heading rotation bad = " << heading );
256         return;
257     }
258
259     if ( heading_offset < -2.0 * SGD_2PI || heading_offset > 2.0 * SGD_2PI ) {
260         SG_LOG( SG_EVENT, SG_ALERT, "Heading offset bad = " << heading_offset );
261         return;
262     }
263
264     double rotation;
265
266     // first determine the difference between our view angle and local
267     // direction to the sun
268     rotation = -(_sun_rotation + SGD_PI) - heading + heading_offset;
269     while ( rotation < 0 ) {
270         rotation += SGD_2PI;
271     }
272     while ( rotation > SGD_2PI ) {
273         rotation -= SGD_2PI;
274     }
275
276     // revert to unmodified values before usign them.
277     //
278     float *sun_color = thesky->get_sun_color();
279
280     gamma_restore_rgb( _fog_color );
281
282     // Calculate the fog color in the direction of the sun for
283     // sunrise/sunset effects.
284     //
285     float s_red =   (_fog_color[0] + 2 * sun_color[0]*sun_color[0]) / 3;
286     float s_green = (_fog_color[1] + 2 * sun_color[1]*sun_color[1]) / 3;
287     float s_blue =  (_fog_color[2] + 2 * sun_color[2]) / 3;
288
289     // interpolate beween the sunrise/sunset color and the color
290     // at the opposite direction of this effect. Take in account
291     // the current visibility.
292     //
293     float av = thesky->get_visibility();
294     if (av > 45000)
295        av = 45000;
296
297     float avf = 0.87 - (45000 - av) / 83333.33;
298     float sif = 0.5 - cos(_sun_angle*2)/2;
299
300     if (sif < 1e-4)
301        sif = 1e-4;
302
303     float rf1 = fabs((rotation - SGD_PI) / SGD_PI);             // 0.0 .. 1.0
304     float rf2 = avf * pow(rf1 * rf1, 1/sif);
305     float rf3 = 0.94 - rf2;
306
307     _adj_fog_color[0] = rf3 * _fog_color[0] + rf2 * s_red;
308     _adj_fog_color[1] = rf3 * _fog_color[1] + rf2 * s_green;
309     _adj_fog_color[2] = rf3 * _fog_color[2] + rf2 * s_blue;
310     gamma_correct_rgb( _adj_fog_color );
311
312     // make sure the colors have their original value before they are being
313     // used by the rest of the program.
314     //
315     gamma_correct_rgb( _fog_color );
316 }
317