X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=Time%2Flight.cxx;h=b8a4a559972384038dc2eae2006904a640911b87;hb=c74350c4fe126328ced5e080a4d262d0bcba5369;hp=1c98e8f1a4ef7e7518e85b2e11a30129529ee61a;hpb=ad3ae513488acc0364815218dbfd22dc13bf9eab;p=flightgear.git diff --git a/Time/light.cxx b/Time/light.cxx index 1c98e8f1a..b8a4a5599 100644 --- a/Time/light.cxx +++ b/Time/light.cxx @@ -36,7 +36,7 @@ #include #include -#include +#include #include #include
#include
@@ -62,8 +62,8 @@ fgLIGHT::fgLIGHT( void ) { void fgLIGHT::Init( void ) { string path, ambient, diffuse, sky; - fgPrintf( FG_EVENT, FG_INFO, - "Initializing Lighting interpolation tables.\n" ); + FG_LOG( FG_EVENT, FG_INFO, + "Initializing Lighting interpolation tables." ); // build the path name to the ambient lookup table path = current_options.get_fg_root(); @@ -99,21 +99,21 @@ void fgLIGHT::Update( void ) { t = &cur_time_params; v = ¤t_view; - fgPrintf( FG_EVENT, FG_INFO, "Updating light parameters.\n" ); + FG_LOG( FG_EVENT, FG_INFO, "Updating light parameters." ); // calculate lighting parameters based on sun's relative angle to // local up deg = sun_angle * 180.0 / FG_PI; - fgPrintf( FG_EVENT, FG_INFO, " Sun angle = %.2f.\n", deg ); + FG_LOG( FG_EVENT, FG_INFO, " Sun angle = " << deg ); ambient = ambient_tbl->interpolate( deg ); diffuse = diffuse_tbl->interpolate( deg ); sky_brightness = sky_tbl->interpolate( deg ); - fgPrintf( FG_EVENT, FG_INFO, - " ambient = %.2f diffuse = %.2f sky = %.2f\n", - ambient, diffuse, sky_brightness ); + FG_LOG( FG_EVENT, FG_INFO, + " ambient = " << ambient << " diffuse = " << diffuse + << " sky = " << sky_brightness ); // sky_brightness = 0.15; // used to force a dark sky (when testing) @@ -152,7 +152,7 @@ void fgLIGHT::UpdateAdjFog( void ) { f = current_aircraft.flight; v = ¤t_view; - fgPrintf( FG_EVENT, FG_DEBUG, "Updating adjusted fog parameters.\n" ); + FG_LOG( FG_EVENT, FG_DEBUG, "Updating adjusted fog parameters." ); // set fog color (we'll try to match the sunset color in the // direction we are looking @@ -212,6 +212,11 @@ fgLIGHT::~fgLIGHT( void ) { // $Log$ +// Revision 1.20 1998/11/06 21:18:27 curt +// Converted to new logstream debugging facility. This allows release +// builds with no messages at all (and no performance impact) by using +// the -DFG_NDEBUG flag. +// // Revision 1.19 1998/10/20 18:41:53 curt // Tweaked sunrise/sunset colors. //