1998-04-22 13:24:04 +00:00
|
|
|
//
|
2003-05-18 09:04:14 +00:00
|
|
|
// light.cxx -- lighting routines
|
1998-04-22 13:24:04 +00:00
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started April 1998.
|
|
|
|
//
|
|
|
|
// Copyright (C) 1998 Curtis L. Olson - curt@me.umn.edu
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
1998-04-24 00:52:24 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
1998-04-22 13:24:04 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_WINDOWS_H
|
|
|
|
# include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2003-08-11 21:50:22 +00:00
|
|
|
#include <GL/gl.h>
|
1998-04-24 00:52:24 +00:00
|
|
|
|
2000-02-15 03:30:01 +00:00
|
|
|
#include <simgear/compiler.h>
|
1999-01-07 20:25:32 +00:00
|
|
|
|
2001-03-23 22:42:49 +00:00
|
|
|
#ifdef SG_MATH_EXCEPTION_CLASH
|
1998-11-23 21:48:09 +00:00
|
|
|
# define exception c_exception
|
|
|
|
#endif
|
|
|
|
|
2001-03-23 22:15:19 +00:00
|
|
|
#ifdef SG_HAVE_STD_INCLUDES
|
1999-01-07 20:25:32 +00:00
|
|
|
# include <cmath>
|
|
|
|
#else
|
|
|
|
# include <math.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <string>
|
2001-03-23 22:59:18 +00:00
|
|
|
SG_USING_STD(string);
|
1998-04-22 13:24:04 +00:00
|
|
|
|
2000-02-15 03:30:01 +00:00
|
|
|
#include <simgear/constants.h>
|
2000-02-16 23:01:03 +00:00
|
|
|
#include <simgear/debug/logstream.hxx>
|
|
|
|
#include <simgear/math/interpolater.hxx>
|
|
|
|
#include <simgear/math/polar3d.hxx>
|
2001-03-25 14:20:12 +00:00
|
|
|
#include <simgear/misc/sg_path.hxx>
|
2003-05-30 15:16:57 +00:00
|
|
|
#include <simgear/scene/sky/sky.hxx>
|
2003-05-17 12:45:27 +00:00
|
|
|
#include <simgear/screen/colors.hxx>
|
2000-02-15 03:30:01 +00:00
|
|
|
|
2003-08-17 09:54:41 +00:00
|
|
|
#include <Main/main.hxx>
|
The following changes were made to flightgear-0.7.5 code to implement the follow
ing features:
a) ADA Flight model - ADA.cxx, ADA.hxx, flight.hxx
b) Fighter a/c HUD - flight.hxx, hud.hxx, hud.cxx, cockpit.cxx, hud_ladr.c
xx, hud_card.cxx
c) 3-window display - options.hxx, options.cxx, viewer.cxx
d) Moving objects (ship) - main.cxx
e) Patches - main.cxx
ADA.cxx, ADA.hxx
--------------------------
Interface to the external ADA flight dynamics package.
flight.hxx
----------
Included prototypes for accepting additional data fron the External flight
model for fighter aircraft HUD
Hud.hxx
-------
Included prototypes for accepting additional data for fighter HUD from Exernal F
light model.
Defined FIGHTER_HUD pre-processor directive to enable compilation of fighter hud
code.
hud.cxx, cockpit.cxx, hud_ladr.cxx, hud_card.cxx
---------------------------------------
Included code to initialise additional reticles/text for fighter HUD which is co
nditionally
compiled if FIGHTER_HUD is defined.
options.hxx
-----------
Added window_offset, and function to retrieve its value for 3 windows
options.cxx
-----------
Changed few options to suit ADA/CEF projection system/screens and checks for win
dow offset.
views.cxx
---------
Added code to retrieve view offset for window.
Main.cxx
--------
Added code to load and move an aircraft carrier.
Patch to enable clouds from command line until Curtis fixes it. By default cloud
s are disabled.
2000-10-19 19:46:13 +00:00
|
|
|
#include <Main/globals.hxx>
|
2003-06-15 11:30:25 +00:00
|
|
|
#include <Main/fg_props.hxx>
|
2001-07-22 19:51:16 +00:00
|
|
|
#include <Main/viewer.hxx>
|
1998-04-22 13:24:04 +00:00
|
|
|
|
|
|
|
#include "light.hxx"
|
|
|
|
#include "sunpos.hxx"
|
|
|
|
|
|
|
|
fgLIGHT cur_light_params;
|
|
|
|
|
1998-05-20 20:54:16 +00:00
|
|
|
|
|
|
|
// Constructor
|
|
|
|
fgLIGHT::fgLIGHT( void ) {
|
|
|
|
}
|
1998-04-22 13:24:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
// initialize lighting tables
|
1998-05-20 20:54:16 +00:00
|
|
|
void fgLIGHT::Init( void ) {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_EVENT, SG_INFO,
|
1998-11-06 21:17:31 +00:00
|
|
|
"Initializing Lighting interpolation tables." );
|
1998-04-22 13:24:04 +00:00
|
|
|
|
|
|
|
// build the path name to the ambient lookup table
|
2001-03-25 14:20:12 +00:00
|
|
|
SGPath path( globals->get_fg_root() );
|
|
|
|
SGPath ambient = path;
|
1999-04-27 19:27:45 +00:00
|
|
|
ambient.append( "Lighting/ambient" );
|
2001-03-25 14:20:12 +00:00
|
|
|
SGPath diffuse = path;
|
1999-04-27 19:27:45 +00:00
|
|
|
diffuse.append( "Lighting/diffuse" );
|
2002-07-21 15:40:51 +00:00
|
|
|
SGPath specular = path;
|
|
|
|
specular.append( "Lighting/specular" );
|
2001-03-25 14:20:12 +00:00
|
|
|
SGPath sky = path;
|
1999-04-27 19:27:45 +00:00
|
|
|
sky.append( "Lighting/sky" );
|
1998-08-27 17:01:55 +00:00
|
|
|
|
1998-04-22 13:24:04 +00:00
|
|
|
// initialize ambient table
|
2001-03-14 07:25:14 +00:00
|
|
|
ambient_tbl = new SGInterpTable( ambient.str() );
|
1998-04-22 13:24:04 +00:00
|
|
|
|
|
|
|
// initialize diffuse table
|
2001-03-14 07:25:14 +00:00
|
|
|
diffuse_tbl = new SGInterpTable( diffuse.str() );
|
1998-04-22 13:24:04 +00:00
|
|
|
|
2002-07-21 15:40:51 +00:00
|
|
|
// initialize diffuse table
|
|
|
|
specular_tbl = new SGInterpTable( specular.str() );
|
|
|
|
|
1998-04-22 13:24:04 +00:00
|
|
|
// initialize sky table
|
2001-03-14 07:25:14 +00:00
|
|
|
sky_tbl = new SGInterpTable( sky.str() );
|
1998-04-22 13:24:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// update lighting parameters based on current sun position
|
1998-05-20 20:54:16 +00:00
|
|
|
void fgLIGHT::Update( void ) {
|
|
|
|
// if the 4th field is 0.0, this specifies a direction ...
|
1998-04-22 13:24:04 +00:00
|
|
|
GLfloat white[4] = { 1.0, 1.0, 1.0, 1.0 };
|
1998-05-20 20:54:16 +00:00
|
|
|
// base sky color
|
2003-05-21 17:20:55 +00:00
|
|
|
GLfloat base_sky_color[4] = { 0.39, 0.50, 0.74, 1.0 };
|
2003-05-17 12:45:27 +00:00
|
|
|
// base fog color
|
2003-05-21 17:20:55 +00:00
|
|
|
GLfloat base_fog_color[4] = { 0.84, 0.87, 1.0, 1.0 };
|
|
|
|
float deg, ambient, diffuse, specular, sky_brightness;
|
1998-04-22 13:24:04 +00:00
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_EVENT, SG_INFO, "Updating light parameters." );
|
1998-04-22 13:24:04 +00:00
|
|
|
|
1998-05-20 20:54:16 +00:00
|
|
|
// calculate lighting parameters based on sun's relative angle to
|
|
|
|
// local up
|
1998-04-22 13:24:04 +00:00
|
|
|
|
2001-03-24 04:48:44 +00:00
|
|
|
deg = sun_angle * SGD_RADIANS_TO_DEGREES;
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_EVENT, SG_INFO, " Sun angle = " << deg );
|
1998-04-22 13:24:04 +00:00
|
|
|
|
|
|
|
ambient = ambient_tbl->interpolate( deg );
|
|
|
|
diffuse = diffuse_tbl->interpolate( deg );
|
2002-07-21 15:40:51 +00:00
|
|
|
specular = specular_tbl->interpolate( deg );
|
1998-04-22 13:24:04 +00:00
|
|
|
sky_brightness = sky_tbl->interpolate( deg );
|
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_EVENT, SG_INFO,
|
1998-11-06 21:17:31 +00:00
|
|
|
" ambient = " << ambient << " diffuse = " << diffuse
|
2002-07-21 15:40:51 +00:00
|
|
|
<< " specular = " << specular << " sky = " << sky_brightness );
|
1998-04-22 13:24:04 +00:00
|
|
|
|
|
|
|
// sky_brightness = 0.15; // used to force a dark sky (when testing)
|
|
|
|
|
|
|
|
// if ( ambient < 0.02 ) { ambient = 0.02; }
|
|
|
|
// if ( diffuse < 0.0 ) { diffuse = 0.0; }
|
|
|
|
// if ( sky_brightness < 0.1 ) { sky_brightness = 0.1; }
|
|
|
|
|
1998-07-22 21:45:37 +00:00
|
|
|
// set sky color
|
|
|
|
sky_color[0] = base_sky_color[0] * sky_brightness;
|
|
|
|
sky_color[1] = base_sky_color[1] * sky_brightness;
|
|
|
|
sky_color[2] = base_sky_color[2] * sky_brightness;
|
|
|
|
sky_color[3] = base_sky_color[3];
|
2003-05-21 17:20:55 +00:00
|
|
|
gamma_correct_rgb( sky_color );
|
1998-07-22 21:45:37 +00:00
|
|
|
|
2003-05-16 20:32:21 +00:00
|
|
|
// set cloud and fog color
|
|
|
|
cloud_color[0] = fog_color[0] = base_fog_color[0] * sky_brightness;
|
|
|
|
cloud_color[1] = fog_color[1] = base_fog_color[1] * sky_brightness;
|
|
|
|
cloud_color[2] = fog_color[2] = base_fog_color[2] * sky_brightness;
|
|
|
|
cloud_color[3] = fog_color[3] = base_fog_color[3];
|
2003-05-21 17:20:55 +00:00
|
|
|
gamma_correct_rgb( fog_color );
|
2003-05-16 17:35:48 +00:00
|
|
|
|
2003-05-21 17:20:55 +00:00
|
|
|
// adjust the cloud colors for sunrise/sunset effects (darken them)
|
2003-05-16 17:35:48 +00:00
|
|
|
if (sun_angle > 1.0) {
|
2003-06-27 21:29:48 +00:00
|
|
|
float sun2 = sqrt(sun_angle);
|
2003-05-16 20:32:21 +00:00
|
|
|
cloud_color[0] /= sun2;
|
|
|
|
cloud_color[1] /= sun2;
|
|
|
|
cloud_color[2] /= sun2;
|
2003-05-16 17:35:48 +00:00
|
|
|
}
|
2003-05-21 17:20:55 +00:00
|
|
|
gamma_correct_rgb( cloud_color );
|
2003-08-02 12:45:15 +00:00
|
|
|
|
2003-08-04 09:34:55 +00:00
|
|
|
if (fgGetBool("/test/scene_lighting")) {
|
|
|
|
float *sun_color = thesky->get_sun_color();
|
|
|
|
|
2003-08-29 22:13:05 +00:00
|
|
|
scene_ambient[0] = ((sun_color[0]*0.25 + cloud_color[0]*0.75) + ambient) / 2;
|
|
|
|
scene_ambient[1] = ((sun_color[1]*0.25 + cloud_color[1]*0.75) + ambient) / 2;
|
|
|
|
scene_ambient[2] = ((sun_color[2]*0.25 + cloud_color[2]*0.75) + ambient) / 2;
|
|
|
|
// scene_ambient[0] = white[0] * ambient;
|
|
|
|
// scene_ambient[1] = white[0] * ambient;
|
|
|
|
// scene_ambient[2] = white[0] * ambient;
|
2003-08-29 21:24:13 +00:00
|
|
|
scene_ambient[3] = 1.0;
|
2003-08-04 09:34:55 +00:00
|
|
|
|
|
|
|
scene_diffuse[0] = (sun_color[0]*0.25 + fog_color[0]*0.75) * diffuse;
|
|
|
|
scene_diffuse[1] = (sun_color[1]*0.25 + fog_color[1]*0.75) * diffuse;
|
|
|
|
scene_diffuse[2] = (sun_color[2]*0.25 + fog_color[2]*0.75) * diffuse;
|
2003-08-29 21:24:13 +00:00
|
|
|
scene_diffuse[3] = 1.0;
|
2003-08-04 09:34:55 +00:00
|
|
|
|
|
|
|
scene_specular[0] = sun_color[0] * specular;
|
|
|
|
scene_specular[1] = sun_color[1] * specular;
|
|
|
|
scene_specular[2] = sun_color[2] * specular;
|
|
|
|
scene_specular[3] = 1.0;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
scene_ambient[0] = white[0] * ambient;
|
|
|
|
scene_ambient[1] = white[1] * ambient;
|
|
|
|
scene_ambient[2] = white[2] * ambient;
|
|
|
|
scene_ambient[3] = 1.0;
|
|
|
|
|
|
|
|
scene_diffuse[0] = white[0] * diffuse;
|
|
|
|
scene_diffuse[1] = white[1] * diffuse;
|
|
|
|
scene_diffuse[2] = white[2] * diffuse;
|
|
|
|
scene_diffuse[3] = 1.0;
|
|
|
|
|
|
|
|
scene_specular[0] = white[0] * ambient;
|
|
|
|
scene_specular[1] = white[1] * ambient;
|
|
|
|
scene_specular[2] = white[2] * ambient;
|
|
|
|
scene_specular[3] = 1.0;
|
|
|
|
}
|
1998-07-22 21:45:37 +00:00
|
|
|
}
|
1998-05-20 20:54:16 +00:00
|
|
|
|
1998-07-22 21:45:37 +00:00
|
|
|
|
|
|
|
// calculate fog color adjusted for sunrise/sunset effects
|
|
|
|
void fgLIGHT::UpdateAdjFog( void ) {
|
|
|
|
|
2003-05-18 09:04:14 +00:00
|
|
|
double heading = globals->get_current_view()->getHeading_deg()
|
|
|
|
* SGD_DEGREES_TO_RADIANS;
|
|
|
|
double heading_offset = globals->get_current_view()->getHeadingOffset_deg()
|
|
|
|
* SGD_DEGREES_TO_RADIANS;
|
1998-07-22 21:45:37 +00:00
|
|
|
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_EVENT, SG_DEBUG, "Updating adjusted fog parameters." );
|
1998-07-22 21:45:37 +00:00
|
|
|
|
|
|
|
// set fog color (we'll try to match the sunset color in the
|
|
|
|
// direction we are looking
|
|
|
|
|
2002-01-22 15:38:02 +00:00
|
|
|
// Do some sanity checking ...
|
|
|
|
if ( sun_rotation < -2.0 * SGD_2PI || sun_rotation > 2.0 * SGD_2PI ) {
|
|
|
|
SG_LOG( SG_EVENT, SG_ALERT, "Sun rotation bad = " << sun_rotation );
|
|
|
|
exit(-1);
|
|
|
|
}
|
2003-05-18 09:04:14 +00:00
|
|
|
|
|
|
|
if ( heading < -2.0 * SGD_2PI || heading > 2.0 * SGD_2PI ) {
|
2003-05-18 11:40:57 +00:00
|
|
|
SG_LOG( SG_EVENT, SG_ALERT, "Heading rotation bad = " << heading );
|
2002-01-22 15:38:02 +00:00
|
|
|
exit(-1);
|
|
|
|
}
|
2003-05-18 09:04:14 +00:00
|
|
|
|
|
|
|
if ( heading_offset < -2.0 * SGD_2PI || heading_offset > 2.0 * SGD_2PI ) {
|
2003-05-18 11:40:57 +00:00
|
|
|
SG_LOG( SG_EVENT, SG_ALERT, "Heading offset bad = " << heading_offset );
|
2002-01-22 15:38:02 +00:00
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
2003-05-16 20:32:21 +00:00
|
|
|
double rotation;
|
|
|
|
|
1998-07-22 21:45:37 +00:00
|
|
|
// first determine the difference between our view angle and local
|
|
|
|
// direction to the sun
|
2003-05-18 11:40:57 +00:00
|
|
|
rotation = -(sun_rotation + SGD_PI) - heading + heading_offset;
|
1998-07-22 21:45:37 +00:00
|
|
|
while ( rotation < 0 ) {
|
2001-03-24 03:10:40 +00:00
|
|
|
rotation += SGD_2PI;
|
1998-07-22 21:45:37 +00:00
|
|
|
}
|
2001-03-24 03:10:40 +00:00
|
|
|
while ( rotation > SGD_2PI ) {
|
|
|
|
rotation -= SGD_2PI;
|
1998-07-22 21:45:37 +00:00
|
|
|
}
|
2003-05-16 20:32:21 +00:00
|
|
|
|
2003-05-21 17:20:55 +00:00
|
|
|
// revert to unmodified values before usign them.
|
|
|
|
//
|
2003-05-16 20:32:21 +00:00
|
|
|
float *sun_color = thesky->get_sun_color();
|
|
|
|
|
2003-05-21 17:20:55 +00:00
|
|
|
gamma_restore_rgb( fog_color );
|
|
|
|
|
|
|
|
// Calculate the fog color in the direction of the sun for
|
|
|
|
// sunrise/sunset effects.
|
|
|
|
//
|
2003-06-27 21:29:48 +00:00
|
|
|
float s_red = (fog_color[0] + 2 * sun_color[0]*sun_color[0]) / 3;
|
|
|
|
float s_green = (fog_color[1] + 2 * sun_color[1]*sun_color[1]) / 3;
|
2003-05-21 17:20:55 +00:00
|
|
|
float s_blue = (fog_color[2] + 2 * sun_color[2]) / 3;
|
|
|
|
|
|
|
|
// interpolate beween the sunrise/sunset color and the color
|
2003-06-15 11:30:25 +00:00
|
|
|
// at the opposite direction of this effect. Take in account
|
|
|
|
// the current visibility.
|
2003-05-21 17:20:55 +00:00
|
|
|
//
|
2003-06-15 11:30:25 +00:00
|
|
|
float av = thesky->get_visibility();
|
|
|
|
if (av > 45000)
|
|
|
|
av = 45000;
|
|
|
|
|
|
|
|
float avf = 0.87 - (45000 - av) / 83333.33;
|
2003-05-21 17:20:55 +00:00
|
|
|
float sif = 0.5 - cos(sun_angle*2)/2;
|
2003-06-15 11:30:25 +00:00
|
|
|
|
2003-05-21 17:20:55 +00:00
|
|
|
float rf1 = fabs((rotation - SGD_PI) / SGD_PI); // 0.0 .. 1.0
|
2003-06-15 11:30:25 +00:00
|
|
|
float rf2 = avf * pow(rf1 * rf1, 1/sif);
|
|
|
|
float rf3 = 0.94 - rf2;
|
2003-05-21 17:20:55 +00:00
|
|
|
|
|
|
|
adj_fog_color[0] = rf3 * fog_color[0] + rf2 * s_red;
|
|
|
|
adj_fog_color[1] = rf3 * fog_color[1] + rf2 * s_green;
|
|
|
|
adj_fog_color[2] = rf3 * fog_color[2] + rf2 * s_blue;
|
|
|
|
gamma_correct_rgb( adj_fog_color );
|
|
|
|
|
|
|
|
// make sure the colors have their original value before they are being
|
|
|
|
// used by the rest of the program.
|
|
|
|
//
|
|
|
|
gamma_correct_rgb( fog_color );
|
1998-05-20 20:54:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Destructor
|
|
|
|
fgLIGHT::~fgLIGHT( void ) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|