]> git.mxchange.org Git - flightgear.git/blob - src/Time/light.cxx
fog color and cloud color are the same anyhow, remove one of them in the ambient...
[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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 //
22 // $Id$
23
24
25 #ifdef HAVE_CONFIG_H
26 #  include <config.h>
27 #endif
28
29 #include <simgear/compiler.h>
30
31 #include <cmath>
32
33 #include <simgear/constants.h>
34 #include <simgear/debug/logstream.hxx>
35 #include <simgear/math/interpolater.hxx>
36 #include <simgear/misc/sg_path.hxx>
37 #include <simgear/scene/sky/sky.hxx>
38 #include <simgear/screen/colors.hxx>
39
40 #include <Main/main.hxx>
41 #include <Main/globals.hxx>
42 #include <Main/fg_props.hxx>
43 #include <Main/renderer.hxx>
44 #include <Main/viewer.hxx>
45
46 #include "light.hxx"
47 #include "tmp.hxx"
48
49
50 // Constructor
51 FGLight::FGLight ()
52     : _ambient_tbl( NULL ),
53       _diffuse_tbl( NULL ),
54       _specular_tbl( NULL ),
55       _sky_tbl( NULL ),
56       _sun_lon(0),
57       _sun_lat(0),
58       _moon_lon(0),
59       _moon_gc_lat(0),
60       _sunpos(0, 0, 0),
61       _moonpos(0, 0, 0),
62       _sun_vec(0, 0, 0, 0),
63       _moon_vec(0, 0, 0, 0),
64       _sun_vec_inv(0, 0, 0, 0),
65       _moon_vec_inv(0, 0, 0, 0),
66       _sun_angle(0),
67       _moon_angle(0),
68       _prev_sun_angle(0),
69       _sun_rotation(0),
70       _moon_rotation(0),
71       _scene_ambient(0, 0, 0, 0),
72       _scene_diffuse(0, 0, 0, 0),
73       _scene_specular(0, 0, 0, 0),
74       _sky_color(0, 0, 0, 0),
75       _fog_color(0, 0, 0, 0),
76       _cloud_color(0, 0, 0, 0),
77       _adj_fog_color(0, 0, 0, 0),
78       _adj_sky_color(0, 0, 0, 0),
79       _dt_total(0)
80 {
81 }
82
83 // Destructor
84 FGLight::~FGLight ()
85 {
86     delete _ambient_tbl;
87     delete _diffuse_tbl;
88     delete _specular_tbl;
89     delete _sky_tbl;
90 }
91
92
93 // initialize lighting tables
94 void FGLight::init () {
95     SG_LOG( SG_EVENT, SG_INFO, 
96             "Initializing Lighting interpolation tables." );
97
98     // build the path names of the lookup tables
99     SGPath path( globals->get_fg_root() );
100
101     // initialize ambient, diffuse and specular tables
102     SGPath ambient_path = path;
103     ambient_path.append( "Lighting/ambient" );
104     _ambient_tbl = new SGInterpTable( ambient_path.str() );
105
106     SGPath diffuse_path = path;
107     diffuse_path.append( "Lighting/diffuse" );
108     _diffuse_tbl = new SGInterpTable( diffuse_path.str() );
109
110     SGPath specular_path = path;
111     specular_path.append( "Lighting/specular" );
112     _specular_tbl = new SGInterpTable( specular_path.str() );
113     
114     // initialize sky table
115     SGPath sky_path = path;
116     sky_path.append( "Lighting/sky" );
117     _sky_tbl = new SGInterpTable( sky_path.str() );
118 }
119
120
121 void FGLight::reinit () {
122     _prev_sun_angle = -9999.0;
123     _dt_total = 0;
124
125     delete _ambient_tbl;
126     delete _diffuse_tbl;
127     delete _specular_tbl;
128     delete _sky_tbl;
129
130     init();
131
132     fgUpdateSunPos();
133
134     update_sky_color();
135     update_adj_fog_color();
136 }
137
138 void FGLight::bind () {
139     SGPropertyNode *prop = globals->get_props();
140     prop->tie("/sim/time/sun-angle-rad",SGRawValuePointer<double>(&_sun_angle));
141     prop->tie("/rendering/scene/ambient/red",SGRawValuePointer<float>(&_scene_ambient[0]));
142     prop->tie("/rendering/scene/ambient/green",SGRawValuePointer<float>(&_scene_ambient[1]));
143     prop->tie("/rendering/scene/ambient/blue",SGRawValuePointer<float>(&_scene_ambient[2]));
144     prop->tie("/rendering/scene/diffuse/red",SGRawValuePointer<float>(&_scene_diffuse[0]));
145     prop->tie("/rendering/scene/diffuse/green",SGRawValuePointer<float>(&_scene_diffuse[1]));
146     prop->tie("/rendering/scene/diffuse/blue",SGRawValuePointer<float>(&_scene_diffuse[2]));
147     prop->tie("/rendering/scene/specular/red",SGRawValuePointer<float>(&_scene_specular[0]));
148     prop->tie("/rendering/scene/specular/green",SGRawValuePointer<float>(&_scene_specular[1]));
149     prop->tie("/rendering/scene/specular/blue",SGRawValuePointer<float>(&_scene_specular[2]));
150 }
151
152 void FGLight::unbind () {
153     SGPropertyNode *prop = globals->get_props();
154     prop->untie("/sim/time/sun-angle-rad");
155     prop->untie("/rendering/scene/ambient/red");
156     prop->untie("/rendering/scene/ambient/green");
157     prop->untie("/rendering/scene/ambient/blue");
158     prop->untie("/rendering/scene/diffuse/red");
159     prop->untie("/rendering/scene/diffuse/green");
160     prop->untie("/rendering/scene/diffuse/blue");
161     prop->untie("/rendering/scene/specular/red");
162     prop->untie("/rendering/scene/specular/green");
163     prop->untie("/rendering/scene/specular/blue");
164 }
165
166
167 // update lighting parameters based on current sun position
168 void FGLight::update( double dt ) {
169
170     _dt_total += dt;
171     if (_dt_total >= 0.5) {
172         _dt_total -= 0.5;
173         fgUpdateSunPos();
174     }
175
176     update_adj_fog_color();
177
178     if (_prev_sun_angle != _sun_angle) {
179         _prev_sun_angle = _sun_angle;
180         update_sky_color();
181     }
182 }
183
184 void FGLight::update_sky_color () {
185     // if the 4th field is 0.0, this specifies a direction ...
186     // const GLfloat white[4]          = { 1.0,  1.0,  1.0,  1.0 };
187     const GLfloat base_sky_color[4] = { 0.31, 0.43, 0.69, 1.0 };
188     const GLfloat base_fog_color[4] = { 0.84, 0.87, 1.0,  1.0 };
189
190     SG_LOG( SG_EVENT, SG_DEBUG, "Updating light parameters." );
191
192     // calculate lighting parameters based on sun's relative angle to
193     // local up
194     float av = thesky->get_visibility();
195     if (av > 45000.0) av = 45000.0;
196     float visibility_log = log(av)/11.0;
197     float visibility_inv = (45000.0 - av)/45000.0;
198
199     float deg = _sun_angle * SGD_RADIANS_TO_DEGREES;
200     SG_LOG( SG_EVENT, SG_DEBUG, "  Sun angle = " << deg );
201
202     float ambient = _ambient_tbl->interpolate( deg ) + visibility_inv/10;
203     float diffuse = _diffuse_tbl->interpolate( deg );
204     float specular = _specular_tbl->interpolate( deg ) * visibility_log;
205     float sky_brightness = _sky_tbl->interpolate( deg );
206
207     SG_LOG( SG_EVENT, SG_DEBUG,
208             "  ambient = " << ambient << "  diffuse = " << diffuse 
209             << "  specular = " << specular << "  sky = " << sky_brightness );
210
211     // sky_brightness = 0.15;  // used to force a dark sky (when testing)
212
213     // set sky color
214     _sky_color[0] = base_sky_color[0] * sky_brightness;
215     _sky_color[1] = base_sky_color[1] * sky_brightness;
216     _sky_color[2] = base_sky_color[2] * sky_brightness;
217     _sky_color[3] = base_sky_color[3];
218     gamma_correct_rgb( _sky_color.data() );
219
220     // set fog and cloud color
221     _fog_color[0] = base_fog_color[0] * sky_brightness;
222     _fog_color[1] = base_fog_color[1] * sky_brightness;
223     _fog_color[2] = base_fog_color[2] * sky_brightness;
224     _fog_color[3] = base_fog_color[3];
225     gamma_correct_rgb( _fog_color.data() );
226
227     _cloud_color[0] = base_fog_color[0] * sky_brightness;
228     _cloud_color[1] = base_fog_color[1] * sky_brightness;
229     _cloud_color[2] = base_fog_color[2] * sky_brightness;
230     _cloud_color[3] = base_fog_color[3];
231
232     // adjust the cloud colors for sunrise/sunset effects (darken them)
233     if (_sun_angle > 1.0) {
234        float sun2 = sqrt(_sun_angle);
235        _cloud_color[0] /= sun2;
236        _cloud_color[1] /= sun2;
237        _cloud_color[2] /= sun2;
238     }
239     gamma_correct_rgb( _cloud_color.data() );
240
241     _scene_ambient[0] = _fog_color[0] * ambient;
242     _scene_ambient[1] = _fog_color[1] * ambient;
243     _scene_ambient[2] = _fog_color[2] * ambient;
244     _scene_ambient[3] = 1.0;
245     gamma_correct_rgb( _scene_ambient.data() );
246
247     SGVec4f sun_color = thesky->get_sun_color();
248     _scene_diffuse[0] = (sun_color[0]*0.4 + _fog_color[0]*0.6) * diffuse;
249     _scene_diffuse[1] = (sun_color[1]*0.4 + _fog_color[1]*0.6) * diffuse;
250     _scene_diffuse[2] = (sun_color[2]*0.4 + _fog_color[2]*0.6) * diffuse;
251     _scene_diffuse[3] = 1.0;
252     gamma_correct_rgb( _scene_diffuse.data() );
253
254     _scene_specular[0] = sun_color[0] * specular;
255     _scene_specular[1] = sun_color[1] * specular;
256     _scene_specular[2] = sun_color[2] * specular;
257     _scene_specular[3] = 1.0;
258     gamma_correct_rgb( _scene_specular.data() );
259 }
260
261
262 // calculate fog color adjusted for sunrise/sunset effects
263 void FGLight::update_adj_fog_color () {
264
265     double heading = globals->get_current_view()->getHeading_deg()
266                      * SGD_DEGREES_TO_RADIANS;
267     double heading_offset = globals->get_current_view()->getHeadingOffset_deg()
268                             * SGD_DEGREES_TO_RADIANS;
269
270     SG_LOG( SG_EVENT, SG_DEBUG, "Updating adjusted fog parameters." );
271
272     // set fog color (we'll try to match the sunset color in the
273     // direction we are looking
274
275     // Do some sanity checking ...
276     if ( _sun_rotation < -2.0 * SGD_2PI || _sun_rotation > 2.0 * SGD_2PI ) {
277         SG_LOG( SG_EVENT, SG_ALERT, "Sun rotation bad = " << _sun_rotation );
278         return;
279     }
280
281     if ( heading < -2.0 * SGD_2PI || heading > 2.0 * SGD_2PI ) {
282         SG_LOG( SG_EVENT, SG_ALERT, "Heading rotation bad = " << heading );
283         return;
284     }
285
286     if ( heading_offset < -2.0 * SGD_2PI || heading_offset > 2.0 * SGD_2PI ) {
287         SG_LOG( SG_EVENT, SG_ALERT, "Heading offset bad = " << heading_offset );
288         return;
289     }
290
291     double rotation;
292
293     // first determine the difference between our view angle and local
294     // direction to the sun
295     rotation = -(_sun_rotation + SGD_PI) - heading + heading_offset;
296     while ( rotation < 0 ) {
297         rotation += SGD_2PI;
298     }
299     while ( rotation > SGD_2PI ) {
300         rotation -= SGD_2PI;
301     }
302
303     // revert to unmodified values before usign them.
304     //
305     SGVec4f sun_color = thesky->get_sun_color();
306
307     gamma_restore_rgb( _fog_color.data() );
308
309     // Calculate the fog color in the direction of the sun for
310     // sunrise/sunset effects.
311     //
312     float s_red =   (_fog_color[0] + 2 * sun_color[0]*sun_color[0]) / 3;
313     float s_green = (_fog_color[1] + 2 * sun_color[1]*sun_color[1]) / 3;
314     float s_blue =  (_fog_color[2] + 2 * sun_color[2]) / 3;
315
316     // interpolate beween the sunrise/sunset color and the color
317     // at the opposite direction of this effect. Take in account
318     // the current visibility.
319     //
320     float av = thesky->get_visibility();
321     if (av > 45000)
322        av = 45000;
323
324     float avf = 0.87 - (45000 - av) / 83333.33;
325     float sif = 0.5 - cos(_sun_angle*2)/2;
326
327     if (sif < 1e-4)
328        sif = 1e-4;
329
330     float rf1 = fabs((rotation - SGD_PI) / SGD_PI);             // 0.0 .. 1.0
331     float rf2 = avf * pow(rf1 * rf1, 1/sif);
332     float rf3 = 0.94 - rf2;
333
334     _adj_fog_color[0] = rf3 * _fog_color[0] + rf2 * s_red;
335     _adj_fog_color[1] = rf3 * _fog_color[1] + rf2 * s_green;
336     _adj_fog_color[2] = rf3 * _fog_color[2] + rf2 * s_blue;
337     gamma_correct_rgb( _adj_fog_color.data() );
338
339     // make sure the colors have their original value before they are being
340     // used by the rest of the program.
341     //
342     gamma_correct_rgb( _fog_color.data() );
343 }
344