]> git.mxchange.org Git - flightgear.git/blob - src/Time/light.cxx
Model the effect where the sun and moon look 1.5 times larger when close to the horizon
[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 GLUT_H
34
35 #include <simgear/compiler.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/globals.hxx>
59 #include <Main/fg_props.hxx>
60 #include <Main/viewer.hxx>
61
62 #include "light.hxx"
63 #include "sunpos.hxx"
64
65 extern SGSky *thesky;           // FIXME: from main.cxx
66 fgLIGHT cur_light_params;
67
68
69 // Constructor
70 fgLIGHT::fgLIGHT( void ) {
71 }
72
73
74 // initialize lighting tables
75 void fgLIGHT::Init( void ) {
76     SG_LOG( SG_EVENT, SG_INFO, 
77             "Initializing Lighting interpolation tables." );
78
79     // build the path name to the ambient lookup table
80     SGPath path( globals->get_fg_root() );
81     SGPath ambient = path;
82     ambient.append( "Lighting/ambient" );
83     SGPath diffuse = path;
84     diffuse.append( "Lighting/diffuse" );
85     SGPath specular = path;
86     specular.append( "Lighting/specular" );
87     SGPath sky = path;
88     sky.append( "Lighting/sky" );
89
90     // initialize ambient table
91     ambient_tbl = new SGInterpTable( ambient.str() );
92
93     // initialize diffuse table
94     diffuse_tbl = new SGInterpTable( diffuse.str() );
95     
96     // initialize diffuse table
97     specular_tbl = new SGInterpTable( specular.str() );
98     
99     // initialize sky table
100     sky_tbl = new SGInterpTable( sky.str() );
101 }
102
103
104 // update lighting parameters based on current sun position
105 void fgLIGHT::Update( void ) {
106     // if the 4th field is 0.0, this specifies a direction ...
107     GLfloat white[4] = { 1.0, 1.0, 1.0, 1.0 };
108     // base sky color
109     GLfloat base_sky_color[4] = { 0.39, 0.50, 0.74, 1.0 };
110     // base fog color
111     GLfloat base_fog_color[4] = { 0.84, 0.87, 1.0, 1.0 };
112     float deg, ambient, diffuse, specular, sky_brightness;
113
114     SG_LOG( SG_EVENT, SG_INFO, "Updating light parameters." );
115
116     // calculate lighting parameters based on sun's relative angle to
117     // local up
118
119     deg = sun_angle * SGD_RADIANS_TO_DEGREES;
120     SG_LOG( SG_EVENT, SG_INFO, "  Sun angle = " << deg );
121
122     ambient = ambient_tbl->interpolate( deg );
123     diffuse = diffuse_tbl->interpolate( deg );
124     specular = specular_tbl->interpolate( deg );
125     sky_brightness = sky_tbl->interpolate( deg );
126
127     SG_LOG( SG_EVENT, SG_INFO, 
128             "  ambient = " << ambient << "  diffuse = " << diffuse 
129             << "  specular = " << specular << "  sky = " << sky_brightness );
130
131     // sky_brightness = 0.15;  // used to force a dark sky (when testing)
132
133     // if ( ambient < 0.02 ) { ambient = 0.02; }
134     // if ( diffuse < 0.0 ) { diffuse = 0.0; }
135     // if ( sky_brightness < 0.1 ) { sky_brightness = 0.1; }
136
137     scene_ambient[0] = white[0] * ambient;
138     scene_ambient[1] = white[1] * ambient;
139     scene_ambient[2] = white[2] * ambient;
140     scene_ambient[3] = 1.0;
141
142     scene_diffuse[0] = white[0] * diffuse;
143     scene_diffuse[1] = white[1] * diffuse;
144     scene_diffuse[2] = white[2] * diffuse;
145     scene_diffuse[3] = 1.0;
146
147     scene_specular[0] = white[0] * specular;
148     scene_specular[1] = white[1] * specular;
149     scene_specular[2] = white[2] * specular;
150     scene_specular[3] = 1.0;
151
152     // set sky color
153     sky_color[0] = base_sky_color[0] * sky_brightness;
154     sky_color[1] = base_sky_color[1] * sky_brightness;
155     sky_color[2] = base_sky_color[2] * sky_brightness;
156     sky_color[3] = base_sky_color[3];
157     gamma_correct_rgb( sky_color );
158
159     // set cloud and fog color
160     cloud_color[0] = fog_color[0] = base_fog_color[0] * sky_brightness;
161     cloud_color[1] = fog_color[1] = base_fog_color[1] * sky_brightness;
162     cloud_color[2] = fog_color[2] = base_fog_color[2] * sky_brightness;
163     cloud_color[3] = fog_color[3] = base_fog_color[3];
164     gamma_correct_rgb( fog_color );
165
166     // adjust the cloud colors for sunrise/sunset effects (darken them)
167     if (sun_angle > 1.0) {
168        float sun2 = pow(sun_angle, 0.5);
169        cloud_color[0] /= sun2;
170        cloud_color[1] /= sun2;
171        cloud_color[2] /= sun2;
172     }
173     gamma_correct_rgb( cloud_color );
174 }
175
176
177 // calculate fog color adjusted for sunrise/sunset effects
178 void fgLIGHT::UpdateAdjFog( void ) {
179
180     double heading = globals->get_current_view()->getHeading_deg()
181                      * SGD_DEGREES_TO_RADIANS;
182     double heading_offset = globals->get_current_view()->getHeadingOffset_deg()
183                             * SGD_DEGREES_TO_RADIANS;
184
185     SG_LOG( SG_EVENT, SG_DEBUG, "Updating adjusted fog parameters." );
186
187     // set fog color (we'll try to match the sunset color in the
188     // direction we are looking
189
190     // Do some sanity checking ...
191     if ( sun_rotation < -2.0 * SGD_2PI || sun_rotation > 2.0 * SGD_2PI ) {
192         SG_LOG( SG_EVENT, SG_ALERT, "Sun rotation bad = " << sun_rotation );
193         exit(-1);
194     }
195
196     if ( heading < -2.0 * SGD_2PI || heading > 2.0 * SGD_2PI ) {
197         SG_LOG( SG_EVENT, SG_ALERT, "Heading rotation bad = " << heading );
198         exit(-1);
199     }
200
201     if ( heading_offset < -2.0 * SGD_2PI || heading_offset > 2.0 * SGD_2PI ) {
202         SG_LOG( SG_EVENT, SG_ALERT, "Heading offset bad = " << heading_offset );
203         exit(-1);
204     }
205
206     double rotation;
207
208     // first determine the difference between our view angle and local
209     // direction to the sun
210     rotation = -(sun_rotation + SGD_PI) - heading + heading_offset;
211     while ( rotation < 0 ) {
212         rotation += SGD_2PI;
213     }
214     while ( rotation > SGD_2PI ) {
215         rotation -= SGD_2PI;
216     }
217
218     // revert to unmodified values before usign them.
219     //
220     float *sun_color = thesky->get_sun_color();
221
222     gamma_restore_rgb( fog_color );
223     gamma_restore_rgb( cloud_color );
224
225     // Calculate the fog color in the direction of the sun for
226     // sunrise/sunset effects.
227     //
228     float s_red =   (fog_color[0] + 2 * pow(sun_color[0], 2)) / 3;
229     float s_green = (fog_color[1] + 2 * pow(sun_color[1], 2)) / 3;
230     float s_blue =  (fog_color[2] + 2 * sun_color[2]) / 3;
231
232     // interpolate beween the sunrise/sunset color and the color
233     // at the opposite direction of this effect. Take in account
234     // the current visibility.
235     //
236     float av = thesky->get_visibility();
237     if (av > 45000)
238        av = 45000;
239
240     float avf = 0.87 - (45000 - av) / 83333.33;
241     float sif = 0.5 - cos(sun_angle*2)/2;
242
243     float rf1 = fabs((rotation - SGD_PI) / SGD_PI);             // 0.0 .. 1.0
244     float rf2 = avf * pow(rf1 * rf1, 1/sif);
245     float rf3 = 0.94 - rf2;
246
247     adj_fog_color[0] = rf3 * fog_color[0] + rf2 * s_red;
248     adj_fog_color[1] = rf3 * fog_color[1] + rf2 * s_green;
249     adj_fog_color[2] = rf3 * fog_color[2] + rf2 * s_blue;
250     gamma_correct_rgb( adj_fog_color );
251
252     // make sure the colors have their original value before they are being
253     // used by the rest of the program.
254     //
255     gamma_correct_rgb( fog_color );
256     gamma_correct_rgb( cloud_color );
257 }
258
259
260 // Destructor
261 fgLIGHT::~fgLIGHT( void ) {
262 }
263
264