1998-04-22 13:24:04 +00:00
|
|
|
//
|
|
|
|
// light.hxx -- lighting routines
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
|
2002-12-10 20:50:48 +00:00
|
|
|
#include GLUT_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-13 19:00:27 +00:00
|
|
|
#include <simgear/sky/sky.hxx>
|
2000-02-15 03:30:01 +00:00
|
|
|
|
1998-10-17 01:33:52 +00:00
|
|
|
#include <Aircraft/aircraft.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>
|
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"
|
|
|
|
|
2003-05-13 19:00:27 +00:00
|
|
|
extern SGSky *thesky; // FIXME: from main.cxx
|
1998-04-22 13:24:04 +00:00
|
|
|
|
|
|
|
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 ) {
|
1999-02-05 21:28:09 +00:00
|
|
|
FGInterface *f;
|
1998-05-20 20:54:16 +00:00
|
|
|
// 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-05 12:40:37 +00:00
|
|
|
#if defined (sgi) || defined( macintosh )
|
|
|
|
GLfloat base_sky_color[4] = { 0.252, 0.403, 0.657, 1.0 };
|
|
|
|
#else // default
|
|
|
|
GLfloat base_sky_color[4] = { 0.336, 0.406, 0.574, 1.0 };
|
2003-05-01 09:11:37 +00:00
|
|
|
#endif
|
2003-05-12 09:31:55 +00:00
|
|
|
GLfloat base_fog_color[4] = { 0.80, 0.83, 1.0, 1.0 };
|
2002-07-21 15:40:51 +00:00
|
|
|
double deg, ambient, diffuse, specular, sky_brightness;
|
1998-04-22 13:24:04 +00:00
|
|
|
|
1998-12-05 15:53:59 +00:00
|
|
|
f = current_aircraft.fdm_state;
|
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
|
|
|
|
2003-05-13 19:00:27 +00:00
|
|
|
// base fog color
|
|
|
|
float *sun_color = thesky->get_sun_color();
|
|
|
|
base_fog_color[0] *= (0.75 + sun_color[0]/4);
|
|
|
|
base_fog_color[1] *= (0.5 + sun_color[1]/2);
|
|
|
|
base_fog_color[2] *= sun_color[2];
|
|
|
|
|
|
|
|
|
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-05-20 20:54:16 +00:00
|
|
|
scene_ambient[0] = white[0] * ambient;
|
|
|
|
scene_ambient[1] = white[1] * ambient;
|
|
|
|
scene_ambient[2] = white[2] * ambient;
|
2000-05-27 06:40:55 +00:00
|
|
|
scene_ambient[3] = 1.0;
|
1998-05-20 20:54:16 +00:00
|
|
|
|
|
|
|
scene_diffuse[0] = white[0] * diffuse;
|
|
|
|
scene_diffuse[1] = white[1] * diffuse;
|
|
|
|
scene_diffuse[2] = white[2] * diffuse;
|
2000-05-27 06:40:55 +00:00
|
|
|
scene_diffuse[3] = 1.0;
|
1998-05-20 20:54:16 +00:00
|
|
|
|
2002-07-21 15:40:51 +00:00
|
|
|
scene_specular[0] = white[0] * specular;
|
|
|
|
scene_specular[1] = white[1] * specular;
|
|
|
|
scene_specular[2] = white[2] * specular;
|
|
|
|
scene_specular[3] = 1.0;
|
|
|
|
|
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];
|
|
|
|
|
1998-05-20 20:54:16 +00:00
|
|
|
// set fog color
|
|
|
|
fog_color[0] = base_fog_color[0] * sky_brightness;
|
|
|
|
fog_color[1] = base_fog_color[1] * sky_brightness;
|
|
|
|
fog_color[2] = base_fog_color[2] * sky_brightness;
|
|
|
|
fog_color[3] = base_fog_color[3];
|
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 ) {
|
1999-02-05 21:28:09 +00:00
|
|
|
FGInterface *f;
|
1998-07-22 21:45:37 +00:00
|
|
|
double sun_angle_deg, rotation, param1[3], param2[3];
|
|
|
|
|
1998-12-05 15:53:59 +00:00
|
|
|
f = current_aircraft.fdm_state;
|
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);
|
|
|
|
}
|
|
|
|
if ( f->get_Psi() < -2.0 * SGD_2PI || f->get_Psi() > 2.0 * SGD_2PI ) {
|
|
|
|
SG_LOG( SG_EVENT, SG_ALERT, "Psi rotation bad = " << f->get_Psi() );
|
|
|
|
exit(-1);
|
|
|
|
}
|
Major viewer-code overhaul from Jim Wilson:
Description:
This update includes the new viewer interface as proposed by David M. and
a first pass at cleaning up the viewer/view manager code by Jim W.
Note that I have dropped Main/viewer_lookat.?xx and Main/viewer_rph.?xx and
modified the Makefile.am accordingly.
Detail of work:
Overall:
The code reads a little easier. There are still some unnecessary bits in
there and I'd like to supplement the comments in the viewer.hxx with a tiny
bit on each interface group and what the groupings mean (similar but briefer
than what you emailed me the other day). I tried not to mess up the style,
but there is an occasional inconsistency. In general I wouldn't call it done
(especially since there's no tower yet! :)), but I'd like to get this out
there so others can comment, and test.
In Viewer:
The interface as you suggested has been implemented. Basically everything
seems to work as it did visually. There is no difference that I can see in
performance, although some things might be a tiny bit faster.
I've merged the lookat and rph (pilot view) code into the recalc for the
viewer. There is still some redundancy between the two, but a lot has been
removed. In some cases I've taken some code that we'd likely want to inline
anyway and left it in there in duplicate. You'll see that the code for both
looks a little cleaner. I need to take a closer look at the rotations in
particular. I've cleaned up a little there, but I suspect more can be done
to streamline this.
The external declaration to the Quat_mat in mouse.cxx has been removed. IMHO
the quat doesn't serve any intrinsic purpose in mouse.cxx, but I'm not about
to rip it out. It would seem that there more conventional ways to get
spherical data that are just as fast. In any case all the viewer was pulling
from the quat matrix was the pitch value so I modified mouse.cxx to output to
our pitchOffset input and that works fine.
I've changed the native values to degrees from radians where appropriate.
This required a conversion from degrees to radians in a couple modules that
access the interface. Perhaps we should add interface calls that do the
conversion, e.g. a getHeadingOffset_rad() to go along with the
getHeadingOffset_deg().
On the view_offset (now headingOffset) thing there are two entry points
because of the ability to instantly switch views or to scroll to a new view
angle (by hitting the numeric keys for example). This leaves an anomaly in
the interface which should be resolved by adding "goal" settings to the
interface, e.g. a setGoalHeadingOffset_deg(), setGoalPitchOffset_deg(), etc.
Other than these two issues, the next step here will be to look at some
further optimizations, and to write support code for a tower view. That
should be fairly simple at this point. I was considering creating a
"simulated tower view" or "pedestrian view" that defaulted to a position off
to the right of whereever the plane is at the moment you switch to the tower
view. This could be a fall back when we don't have an actual tower location
at hand (as would be the case with rural airports).
ViewManager:
Basically all I did here was neaten things up by ripping out excess crap and
made it compatible as is with the new interface.
The result is that viewmanager is now ready to be developed. The two
preexisting views are still hardcoded into the view manager. The next step
would be to design configuration xml (eg /sim/view[x]/config/blahblah) that
could be used to set up as many views as we want. If we want to take the easy
way out, we might want to insist that view[0] be a pilot-view and have
viewmanager check for that.
2002-03-20 17:43:28 +00:00
|
|
|
if ( globals->get_current_view()->getHeadingOffset_deg() * SGD_DEGREES_TO_RADIANS < -2.0 * SGD_2PI ||
|
|
|
|
globals->get_current_view()->getHeadingOffset_deg() * SGD_DEGREES_TO_RADIANS > 2.0 * SGD_2PI ) {
|
2002-01-22 15:39:51 +00:00
|
|
|
SG_LOG( SG_EVENT, SG_ALERT, "current view()->view offset bad = "
|
Major viewer-code overhaul from Jim Wilson:
Description:
This update includes the new viewer interface as proposed by David M. and
a first pass at cleaning up the viewer/view manager code by Jim W.
Note that I have dropped Main/viewer_lookat.?xx and Main/viewer_rph.?xx and
modified the Makefile.am accordingly.
Detail of work:
Overall:
The code reads a little easier. There are still some unnecessary bits in
there and I'd like to supplement the comments in the viewer.hxx with a tiny
bit on each interface group and what the groupings mean (similar but briefer
than what you emailed me the other day). I tried not to mess up the style,
but there is an occasional inconsistency. In general I wouldn't call it done
(especially since there's no tower yet! :)), but I'd like to get this out
there so others can comment, and test.
In Viewer:
The interface as you suggested has been implemented. Basically everything
seems to work as it did visually. There is no difference that I can see in
performance, although some things might be a tiny bit faster.
I've merged the lookat and rph (pilot view) code into the recalc for the
viewer. There is still some redundancy between the two, but a lot has been
removed. In some cases I've taken some code that we'd likely want to inline
anyway and left it in there in duplicate. You'll see that the code for both
looks a little cleaner. I need to take a closer look at the rotations in
particular. I've cleaned up a little there, but I suspect more can be done
to streamline this.
The external declaration to the Quat_mat in mouse.cxx has been removed. IMHO
the quat doesn't serve any intrinsic purpose in mouse.cxx, but I'm not about
to rip it out. It would seem that there more conventional ways to get
spherical data that are just as fast. In any case all the viewer was pulling
from the quat matrix was the pitch value so I modified mouse.cxx to output to
our pitchOffset input and that works fine.
I've changed the native values to degrees from radians where appropriate.
This required a conversion from degrees to radians in a couple modules that
access the interface. Perhaps we should add interface calls that do the
conversion, e.g. a getHeadingOffset_rad() to go along with the
getHeadingOffset_deg().
On the view_offset (now headingOffset) thing there are two entry points
because of the ability to instantly switch views or to scroll to a new view
angle (by hitting the numeric keys for example). This leaves an anomaly in
the interface which should be resolved by adding "goal" settings to the
interface, e.g. a setGoalHeadingOffset_deg(), setGoalPitchOffset_deg(), etc.
Other than these two issues, the next step here will be to look at some
further optimizations, and to write support code for a tower view. That
should be fairly simple at this point. I was considering creating a
"simulated tower view" or "pedestrian view" that defaulted to a position off
to the right of whereever the plane is at the moment you switch to the tower
view. This could be a fall back when we don't have an actual tower location
at hand (as would be the case with rural airports).
ViewManager:
Basically all I did here was neaten things up by ripping out excess crap and
made it compatible as is with the new interface.
The result is that viewmanager is now ready to be developed. The two
preexisting views are still hardcoded into the view manager. The next step
would be to design configuration xml (eg /sim/view[x]/config/blahblah) that
could be used to set up as many views as we want. If we want to take the easy
way out, we might want to insist that view[0] be a pilot-view and have
viewmanager check for that.
2002-03-20 17:43:28 +00:00
|
|
|
<< globals->get_current_view()->getHeadingOffset_deg() * SGD_DEGREES_TO_RADIANS );
|
2002-01-22 15:38:02 +00:00
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
1998-07-22 21:45:37 +00:00
|
|
|
// first determine the difference between our view angle and local
|
|
|
|
// direction to the sun
|
2001-03-24 02:36:45 +00:00
|
|
|
rotation = -(sun_rotation + SGD_PI)
|
Major viewer-code overhaul from Jim Wilson:
Description:
This update includes the new viewer interface as proposed by David M. and
a first pass at cleaning up the viewer/view manager code by Jim W.
Note that I have dropped Main/viewer_lookat.?xx and Main/viewer_rph.?xx and
modified the Makefile.am accordingly.
Detail of work:
Overall:
The code reads a little easier. There are still some unnecessary bits in
there and I'd like to supplement the comments in the viewer.hxx with a tiny
bit on each interface group and what the groupings mean (similar but briefer
than what you emailed me the other day). I tried not to mess up the style,
but there is an occasional inconsistency. In general I wouldn't call it done
(especially since there's no tower yet! :)), but I'd like to get this out
there so others can comment, and test.
In Viewer:
The interface as you suggested has been implemented. Basically everything
seems to work as it did visually. There is no difference that I can see in
performance, although some things might be a tiny bit faster.
I've merged the lookat and rph (pilot view) code into the recalc for the
viewer. There is still some redundancy between the two, but a lot has been
removed. In some cases I've taken some code that we'd likely want to inline
anyway and left it in there in duplicate. You'll see that the code for both
looks a little cleaner. I need to take a closer look at the rotations in
particular. I've cleaned up a little there, but I suspect more can be done
to streamline this.
The external declaration to the Quat_mat in mouse.cxx has been removed. IMHO
the quat doesn't serve any intrinsic purpose in mouse.cxx, but I'm not about
to rip it out. It would seem that there more conventional ways to get
spherical data that are just as fast. In any case all the viewer was pulling
from the quat matrix was the pitch value so I modified mouse.cxx to output to
our pitchOffset input and that works fine.
I've changed the native values to degrees from radians where appropriate.
This required a conversion from degrees to radians in a couple modules that
access the interface. Perhaps we should add interface calls that do the
conversion, e.g. a getHeadingOffset_rad() to go along with the
getHeadingOffset_deg().
On the view_offset (now headingOffset) thing there are two entry points
because of the ability to instantly switch views or to scroll to a new view
angle (by hitting the numeric keys for example). This leaves an anomaly in
the interface which should be resolved by adding "goal" settings to the
interface, e.g. a setGoalHeadingOffset_deg(), setGoalPitchOffset_deg(), etc.
Other than these two issues, the next step here will be to look at some
further optimizations, and to write support code for a tower view. That
should be fairly simple at this point. I was considering creating a
"simulated tower view" or "pedestrian view" that defaulted to a position off
to the right of whereever the plane is at the moment you switch to the tower
view. This could be a fall back when we don't have an actual tower location
at hand (as would be the case with rural airports).
ViewManager:
Basically all I did here was neaten things up by ripping out excess crap and
made it compatible as is with the new interface.
The result is that viewmanager is now ready to be developed. The two
preexisting views are still hardcoded into the view manager. The next step
would be to design configuration xml (eg /sim/view[x]/config/blahblah) that
could be used to set up as many views as we want. If we want to take the easy
way out, we might want to insist that view[0] be a pilot-view and have
viewmanager check for that.
2002-03-20 17:43:28 +00:00
|
|
|
- (f->get_Psi() - globals->get_current_view()->getHeadingOffset_deg() * SGD_DEGREES_TO_RADIANS);
|
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
|
|
|
}
|
2001-03-24 04:48:44 +00:00
|
|
|
rotation *= SGD_RADIANS_TO_DEGREES;
|
2001-03-24 06:03:11 +00:00
|
|
|
// fgPrintf( SG_EVENT, SG_INFO,
|
1998-07-24 21:42:25 +00:00
|
|
|
// " View to sun difference in degrees = %.2f\n", rotation);
|
1998-07-22 21:45:37 +00:00
|
|
|
|
|
|
|
// next check if we are in a sunset/sunrise situation
|
2001-03-24 04:48:44 +00:00
|
|
|
sun_angle_deg = sun_angle * SGD_RADIANS_TO_DEGREES;
|
1998-07-22 21:45:37 +00:00
|
|
|
if ( (sun_angle_deg > 80.0) && (sun_angle_deg < 100.0) ) {
|
1998-08-06 12:47:22 +00:00
|
|
|
/* 0.0 - 0.6 */
|
1998-10-20 18:41:53 +00:00
|
|
|
param1[0] = (10.0 - fabs(90.0 - sun_angle_deg)) / 20.0;
|
|
|
|
param1[1] = (10.0 - fabs(90.0 - sun_angle_deg)) / 40.0;
|
1999-04-05 02:14:40 +00:00
|
|
|
param1[2] = (10.0 - fabs(90.0 - sun_angle_deg)) / 30.0;
|
|
|
|
// param2[2] = -(10.0 - fabs(90.0 - sun_angle)) / 30.0;
|
1998-07-22 21:45:37 +00:00
|
|
|
} else {
|
|
|
|
param1[0] = param1[1] = param1[2] = 0.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( rotation - 180.0 <= 0.0 ) {
|
|
|
|
param2[0] = param1[0] * (180.0 - rotation) / 180.0;
|
|
|
|
param2[1] = param1[1] * (180.0 - rotation) / 180.0;
|
|
|
|
param2[2] = param1[2] * (180.0 - rotation) / 180.0;
|
1998-07-24 21:42:25 +00:00
|
|
|
// printf("param1[0] = %.2f param2[0] = %.2f\n", param1[0], param2[0]);
|
1998-07-22 21:45:37 +00:00
|
|
|
} else {
|
|
|
|
param2[0] = param1[0] * (rotation - 180.0) / 180.0;
|
|
|
|
param2[1] = param1[1] * (rotation - 180.0) / 180.0;
|
|
|
|
param2[2] = param1[2] * (rotation - 180.0) / 180.0;
|
1998-07-24 21:42:25 +00:00
|
|
|
// printf("param1[0] = %.2f param2[0] = %.2f\n", param1[0], param2[0]);
|
1998-07-22 21:45:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
adj_fog_color[0] = fog_color[0] + param2[0];
|
|
|
|
if ( adj_fog_color[0] > 1.0 ) { adj_fog_color[0] = 1.0; }
|
|
|
|
|
|
|
|
adj_fog_color[1] = fog_color[1] + param2[1];
|
|
|
|
if ( adj_fog_color[1] > 1.0 ) { adj_fog_color[1] = 1.0; }
|
|
|
|
|
|
|
|
adj_fog_color[2] = fog_color[2] + param2[2];
|
|
|
|
if ( adj_fog_color[2] > 1.0 ) { adj_fog_color[2] = 1.0; }
|
|
|
|
|
|
|
|
adj_fog_color[3] = fog_color[3];
|
1998-05-20 20:54:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Destructor
|
|
|
|
fgLIGHT::~fgLIGHT( void ) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
Major viewer-code overhaul from Jim Wilson:
Description:
This update includes the new viewer interface as proposed by David M. and
a first pass at cleaning up the viewer/view manager code by Jim W.
Note that I have dropped Main/viewer_lookat.?xx and Main/viewer_rph.?xx and
modified the Makefile.am accordingly.
Detail of work:
Overall:
The code reads a little easier. There are still some unnecessary bits in
there and I'd like to supplement the comments in the viewer.hxx with a tiny
bit on each interface group and what the groupings mean (similar but briefer
than what you emailed me the other day). I tried not to mess up the style,
but there is an occasional inconsistency. In general I wouldn't call it done
(especially since there's no tower yet! :)), but I'd like to get this out
there so others can comment, and test.
In Viewer:
The interface as you suggested has been implemented. Basically everything
seems to work as it did visually. There is no difference that I can see in
performance, although some things might be a tiny bit faster.
I've merged the lookat and rph (pilot view) code into the recalc for the
viewer. There is still some redundancy between the two, but a lot has been
removed. In some cases I've taken some code that we'd likely want to inline
anyway and left it in there in duplicate. You'll see that the code for both
looks a little cleaner. I need to take a closer look at the rotations in
particular. I've cleaned up a little there, but I suspect more can be done
to streamline this.
The external declaration to the Quat_mat in mouse.cxx has been removed. IMHO
the quat doesn't serve any intrinsic purpose in mouse.cxx, but I'm not about
to rip it out. It would seem that there more conventional ways to get
spherical data that are just as fast. In any case all the viewer was pulling
from the quat matrix was the pitch value so I modified mouse.cxx to output to
our pitchOffset input and that works fine.
I've changed the native values to degrees from radians where appropriate.
This required a conversion from degrees to radians in a couple modules that
access the interface. Perhaps we should add interface calls that do the
conversion, e.g. a getHeadingOffset_rad() to go along with the
getHeadingOffset_deg().
On the view_offset (now headingOffset) thing there are two entry points
because of the ability to instantly switch views or to scroll to a new view
angle (by hitting the numeric keys for example). This leaves an anomaly in
the interface which should be resolved by adding "goal" settings to the
interface, e.g. a setGoalHeadingOffset_deg(), setGoalPitchOffset_deg(), etc.
Other than these two issues, the next step here will be to look at some
further optimizations, and to write support code for a tower view. That
should be fairly simple at this point. I was considering creating a
"simulated tower view" or "pedestrian view" that defaulted to a position off
to the right of whereever the plane is at the moment you switch to the tower
view. This could be a fall back when we don't have an actual tower location
at hand (as would be the case with rural airports).
ViewManager:
Basically all I did here was neaten things up by ripping out excess crap and
made it compatible as is with the new interface.
The result is that viewmanager is now ready to be developed. The two
preexisting views are still hardcoded into the view manager. The next step
would be to design configuration xml (eg /sim/view[x]/config/blahblah) that
could be used to set up as many views as we want. If we want to take the easy
way out, we might want to insist that view[0] be a pilot-view and have
viewmanager check for that.
2002-03-20 17:43:28 +00:00
|
|
|
|
2002-03-27 14:52:19 +00:00
|
|
|
|