2 // light.cxx -- lighting routines
4 // Written by Curtis Olson, started April 1998.
6 // Copyright (C) 1998 Curtis L. Olson - curt@me.umn.edu
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.
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.
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.
33 #include <simgear/compiler.h>
37 #ifdef SG_MATH_EXCEPTION_CLASH
38 # define exception c_exception
41 #ifdef SG_HAVE_STD_INCLUDES
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>
58 #include <Main/main.hxx>
59 #include <Main/globals.hxx>
60 #include <Main/fg_props.hxx>
61 #include <Main/viewer.hxx>
69 : _ambient_tbl( NULL ),
71 _specular_tbl( NULL ),
73 _prev_sun_angle(-9999.0),
89 // initialize lighting tables
90 void FGLight::init () {
91 SG_LOG( SG_EVENT, SG_INFO,
92 "Initializing Lighting interpolation tables." );
94 // build the path names of the lookup tables
95 SGPath path( globals->get_fg_root() );
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() );
102 SGPath diffuse_path = path;
103 diffuse_path.append( "Lighting/diffuse" );
104 _diffuse_tbl = new SGInterpTable( diffuse_path.str() );
106 SGPath specular_path = path;
107 specular_path.append( "Lighting/specular" );
108 _specular_tbl = new SGInterpTable( specular_path.str() );
110 // initialize sky table
111 SGPath sky_path = path;
112 sky_path.append( "Lighting/sky" );
113 _sky_tbl = new SGInterpTable( sky_path.str() );
117 void FGLight::reinit () {
118 _prev_sun_angle = -9999.0;
123 delete _specular_tbl;
132 update_adj_fog_color();
135 void FGLight::bind () {
136 SGPropertyNode *prop = globals->get_props();
137 prop->tie("/sim/time/sun-angle-rad",SGRawValuePointer<double>(&_sun_angle));
140 void FGLight::unbind () {
141 SGPropertyNode *prop = globals->get_props();
142 prop->untie("/sim/time/sun-angle-rad");
146 // update lighting parameters based on current sun position
147 void FGLight::update( double dt ) {
150 if (_dt_total >= 0.5) {
156 update_adj_fog_color();
158 if (_prev_sun_angle != _sun_angle) {
159 _prev_sun_angle = _sun_angle;
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 };
170 SG_LOG( SG_EVENT, SG_INFO, "Updating light parameters." );
172 // calculate lighting parameters based on sun's relative angle to
175 float deg = _sun_angle * SGD_RADIANS_TO_DEGREES;
176 SG_LOG( SG_EVENT, SG_INFO, " Sun angle = " << deg );
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 );
183 SG_LOG( SG_EVENT, SG_INFO,
184 " ambient = " << ambient << " diffuse = " << diffuse
185 << " specular = " << specular << " sky = " << sky_brightness );
187 // sky_brightness = 0.15; // used to force a dark sky (when testing)
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; }
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 );
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 );
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;
214 gamma_correct_rgb( _cloud_color );
216 float *sun_color = thesky->get_sun_color();
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;
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;
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;
235 // calculate fog color adjusted for sunrise/sunset effects
236 void FGLight::update_adj_fog_color () {
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;
243 SG_LOG( SG_EVENT, SG_DEBUG, "Updating adjusted fog parameters." );
245 // set fog color (we'll try to match the sunset color in the
246 // direction we are looking
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 );
254 if ( heading < -2.0 * SGD_2PI || heading > 2.0 * SGD_2PI ) {
255 SG_LOG( SG_EVENT, SG_ALERT, "Heading rotation bad = " << heading );
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 );
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 ) {
272 while ( rotation > SGD_2PI ) {
276 // revert to unmodified values before usign them.
278 float *sun_color = thesky->get_sun_color();
280 gamma_restore_rgb( _fog_color );
282 // Calculate the fog color in the direction of the sun for
283 // sunrise/sunset effects.
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;
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.
293 float av = thesky->get_visibility();
297 float avf = 0.87 - (45000 - av) / 83333.33;
298 float sif = 0.5 - cos(_sun_angle*2)/2;
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;
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 );
312 // make sure the colors have their original value before they are being
313 // used by the rest of the program.
315 gamma_correct_rgb( _fog_color );