]> git.mxchange.org Git - flightgear.git/log
flightgear.git
12 years agoCameraGroup: adapt order of member vars to their init sequence.
ThorstenB [Mon, 26 Mar 2012 19:21:41 +0000 (21:21 +0200)]
CameraGroup: adapt order of member vars to their init sequence.
(Avoids flood of "init sequence" GCC warnings, whenever CameraGroup.hxx
is included anywhere)

12 years agoPrevent negative alpha value
ThorstenB [Mon, 26 Mar 2012 19:09:10 +0000 (21:09 +0200)]
Prevent negative alpha value
(affects splash screen)

12 years agoFix "use of uninitialized data" reported by valgrind.
ThorstenB [Mon, 26 Mar 2012 19:08:11 +0000 (21:08 +0200)]
Fix "use of uninitialized data" reported by valgrind.
(issue triggered when FGGlobals::saveInitialState copies the entire
property tree on start-up).

12 years agomarker beacon: catch NULL pointer
ThorstenB [Mon, 26 Mar 2012 19:04:23 +0000 (21:04 +0200)]
marker beacon: catch NULL pointer
when runway not in navdb (affects incomplete/inconsistent nav data only).

12 years agoFix "use of uninitialized data" reported by valgrind.
ThorstenB [Mon, 26 Mar 2012 19:03:05 +0000 (21:03 +0200)]
Fix "use of uninitialized data" reported by valgrind.
(also pushed to JSBSIM cvs)

12 years agoAIFlightPlan: Initialize the same member variables in all constructors.
ThorstenB [Sun, 25 Mar 2012 12:03:53 +0000 (14:03 +0200)]
AIFlightPlan: Initialize the same member variables in all constructors.
distance_to_go / lead_distance were not initialized in all constructors.
Fixes 'condition on uninitialized data' reported by valgrind.
Also comment-out unused vars.

12 years agoReplace unnecessary use of copy constructor.
ThorstenB [Sun, 25 Mar 2012 11:47:43 +0000 (13:47 +0200)]
Replace unnecessary use of copy constructor.

12 years agotilemanager: initialize member variables
ThorstenB [Sun, 25 Mar 2012 11:43:28 +0000 (13:43 +0200)]
tilemanager: initialize member variables
Also drop some obsolete members.

12 years agoAvoid a crash when using the native menubar on Mac, due to non-static classes with...
James Turner [Mon, 26 Mar 2012 16:38:09 +0000 (17:38 +0100)]
Avoid a crash when using the native menubar on Mac, due to non-static classes with identical names.

12 years agoFix YAsim linkage.
James Turner [Mon, 26 Mar 2012 15:09:21 +0000 (16:09 +0100)]
Fix YAsim linkage.

12 years agoDon't create intermediate static libraries for build fgfs. (Speeds up rebuilds in...
James Turner [Mon, 26 Mar 2012 12:09:39 +0000 (13:09 +0100)]
Don't create intermediate static libraries for build fgfs. (Speeds up rebuilds in Xcode dramatically, possible in other IDEs too)

12 years agoSuppress a warning when using Clang.
James Turner [Sun, 25 Mar 2012 17:46:50 +0000 (18:46 +0100)]
Suppress a warning when using Clang.

12 years agoFix 2.5D panel hit detection, compute logical panel extend from actions.
James Turner [Sun, 25 Mar 2012 17:46:04 +0000 (18:46 +0100)]
Fix 2.5D panel hit detection, compute logical panel extend from actions.

12 years agoWarn of harmless messages caused by the Rembrandt renderer
Frederic Bouvier [Sun, 25 Mar 2012 17:05:10 +0000 (19:05 +0200)]
Warn of harmless messages caused by the Rembrandt renderer

12 years agoRemove tabs
Frederic Bouvier [Sun, 25 Mar 2012 14:07:56 +0000 (16:07 +0200)]
Remove tabs

12 years agoFirst, preliminary, code of the Rembrandt renderer.
Frederic Bouvier [Sun, 25 Mar 2012 12:37:01 +0000 (14:37 +0200)]
First, preliminary, code of the Rembrandt renderer.
The new renderer is activated by the --enable-rembrandt option, or in the preferences.xml file.
The renderer at this stage doesn't have shadows yet, and shows a lighting bug. The slash screen doesn't work too.

12 years agoAdd options to enable or disable the Rembrandt renderer
Frederic Bouvier [Sun, 25 Mar 2012 12:33:22 +0000 (14:33 +0200)]
Add options to enable or disable the Rembrandt renderer

12 years agoAllow any number of cameras as render stages for a single viewport
Frederic Bouvier [Sun, 11 Mar 2012 19:38:17 +0000 (20:38 +0100)]
Allow any number of cameras as render stages for a single viewport

12 years agoCompile with MSVC 9
Frederic Bouvier [Sun, 11 Mar 2012 18:55:04 +0000 (19:55 +0100)]
Compile with MSVC 9

12 years agoChoose renderer from /sim/rendering/rembrandt property
Frederic Bouvier [Sun, 11 Mar 2012 14:50:18 +0000 (15:50 +0100)]
Choose renderer from /sim/rendering/rembrandt property

12 years agoMove camera setup to the renderer
Frederic Bouvier [Sat, 10 Mar 2012 13:57:43 +0000 (14:57 +0100)]
Move camera setup to the renderer

12 years agoSmall refactoring in CameraInfo
Frederic Bouvier [Sat, 10 Mar 2012 08:49:01 +0000 (09:49 +0100)]
Small refactoring in CameraInfo

12 years agoIgnore empty lines in html output.
ThorstenB [Sun, 25 Mar 2012 08:34:50 +0000 (10:34 +0200)]
Ignore empty lines in html output.

12 years ago#548: segfault in AIFlightPlanCreate
ThorstenB [Sun, 25 Mar 2012 08:34:07 +0000 (10:34 +0200)]
#548: segfault in AIFlightPlanCreate
check "tn != NULL" before calling tn->getGeod()

12 years agoNo avionics sound group for aimodels.
ThorstenB [Thu, 22 Mar 2012 22:53:18 +0000 (23:53 +0100)]
No avionics sound group for aimodels.

12 years agoDon't crash on start-up when avionics sound is disabled.
ThorstenB [Thu, 22 Mar 2012 22:36:39 +0000 (23:36 +0100)]
Don't crash on start-up when avionics sound is disabled.
FGFX::init/soundfx::init use "_avionics" unconditionally, so it has to be
valid, even when avionics sound is disabled. Also allow to properly
enable/disable avioncis sound at run-time.

12 years agoMake FG_OPTIONS_EXIT work.
ThorstenB [Sat, 17 Mar 2012 11:01:51 +0000 (12:01 +0100)]
Make FG_OPTIONS_EXIT work.
'fgfs --version' wants to exit...

12 years agoAdapt 777 directory.
ThorstenB [Fri, 16 Mar 2012 22:21:31 +0000 (23:21 +0100)]
Adapt 777 directory.

12 years agoFix Linux build
ThorstenB [Fri, 16 Mar 2012 22:21:07 +0000 (23:21 +0100)]
Fix Linux build

12 years agoWork on making 2D panels act like standard scene-graph elements for picking and drawing.
James Turner [Mon, 2 Jan 2012 23:16:18 +0000 (23:16 +0000)]
Work on making 2D panels act like standard scene-graph elements for picking and drawing.
(This includes 2.5D panels in the 3D scene)

12 years agofgviewer: Update to current initialization structure.
Mathias Froehlich [Thu, 15 Mar 2012 20:11:44 +0000 (21:11 +0100)]
fgviewer: Update to current initialization structure.

Improove argument parsing. Reorder initialization.

12 years agoscenery: Move flightgears paging back into the application.
Mathias Froehlich [Thu, 15 Mar 2012 19:56:37 +0000 (20:56 +0100)]
scenery: Move flightgears paging back into the application.

This way of scenery paging is really application code.
Now that the simgear stg loader is seperated from the paging
code, this appication specific paging can reside here.
May be at some time also use the spt stuff here.

12 years agoscenery: The tile entries load callback is not needed anymore.
Mathias Froehlich [Thu, 15 Mar 2012 18:04:55 +0000 (19:04 +0100)]
scenery: The tile entries load callback is not needed anymore.

The stg loader can do this itself.

12 years agoRemove /sim/paths/use-custom-scenery-data.
Mathias Froehlich [Thu, 15 Mar 2012 17:48:57 +0000 (18:48 +0100)]
Remove /sim/paths/use-custom-scenery-data.

Scenery people tell me that this is always set to true
today. Thus we can remove this property as this allows
me for some further osg loader cleanups.

12 years agoMake use of auto-coordination more flexible
Torsten Dreyer [Tue, 13 Mar 2012 20:00:22 +0000 (21:00 +0100)]
Make use of auto-coordination more flexible

- move property /sim/auto-coordination to
  /controls/flight/auto-coordination
- introduce new property /controls/flight/auto-coordination-factor
  with default of 0.5
- auto-coordinate the rudder if auto-coordination is true and the factor
  is greater than zero

backward compatibility for the old property is temporary provided by
a temporary Nasal hack in FGDATA/Nasal/aircraft.nas

12 years agoConsistent white-spacing...
ThorstenB [Mon, 12 Mar 2012 20:18:37 +0000 (21:18 +0100)]
Consistent white-spacing...

12 years ago#706: Properly set FLTK include directory.
ThorstenB [Mon, 12 Mar 2012 20:15:05 +0000 (21:15 +0100)]
#706: Properly set FLTK include directory.

12 years agobind the sky disable cutoff distance to a property
Torsten Dreyer [Fri, 9 Mar 2012 20:00:23 +0000 (21:00 +0100)]
bind the sky disable cutoff distance to a property

There used to be a hardcoded visibility of 1000m below which the
sky was disabled. This distance is now bound to
/sim/rendering/minimum-sky-visibility with a default value of 1000

12 years ago#702: Misspelled "devices" property node.
ThorstenB [Thu, 8 Mar 2012 07:58:44 +0000 (08:58 +0100)]
#702: Misspelled "devices" property node.
(Typo from my commit earlier this week)

12 years agofgviewer: adapt to simgear upstream changes.
Mathias Froehlich [Thu, 8 Mar 2012 06:32:18 +0000 (07:32 +0100)]
fgviewer: adapt to simgear upstream changes.

12 years agoFix segfault when loading routes in RouteManager
ThorstenB [Wed, 7 Mar 2012 20:33:08 +0000 (21:33 +0100)]
Fix segfault when loading routes in RouteManager
FGRouteMgr::loadRoute always needs to call "update_mirror" before
returning.

12 years ago#589: 2D panels transparent at night. May also fix #591.
ThorstenB [Fri, 10 Feb 2012 20:16:39 +0000 (21:16 +0100)]
#589: 2D panels transparent at night. May also fix #591.
Since d91a617423fa5c269902a847494b3778b05ebcb4 (vectory color calculations)
all 4 elements of a color were scaled with the respective brightness.
The caused some panels to be transparent at night etc.
Before the change, only the 3 RGB elements of the colors were scaled,
while the 4th element (alpha channel?) remained unaltered.
Commit restores the alpha elements to their original behaviour.
=> "Quick hack" for 2.6.0. Need s.o. to double check the initial changes
and commit something clean to "next".

12 years agoMore spring-cleaning fun.
ThorstenB [Wed, 7 Mar 2012 19:48:00 +0000 (20:48 +0100)]
More spring-cleaning fun.
Use tiedPropertyLists, instead of manual tie/unties.

12 years ago#591: Fix sky flickering at certain sun/view angles
ThorstenB [Wed, 7 Mar 2012 19:43:52 +0000 (20:43 +0100)]
#591: Fix sky flickering at certain sun/view angles
Commit 5f0066c resulted in an incorrect angle calculation. At certain view/sun
angles "hor_rotation" and "rf1" would skip from the minimum to the maximum
value).
Also, an offset angle of 90 degrees (PI/2) is added, which seems to align
the sky effect with the sun position. Calculation is probably still wrong,
but seems less wrong than before - and the flickering is gone...

12 years agoSpring-cleaning: some minor optimization
Torsten Dreyer [Tue, 6 Mar 2012 21:28:18 +0000 (22:28 +0100)]
Spring-cleaning: some minor optimization

- initialize uninitialized properties
- use prefix instead of postfix increments
- reduce visibility of variables
- use empty() instead of size() == 0 for vector and string
- pass string by reference, not by value

12 years agofgviewer: Make use of the world texture when no file argument is given.
Mathias Froehlich [Sun, 4 Mar 2012 19:31:14 +0000 (20:31 +0100)]
fgviewer: Make use of the world texture when no file argument is given.

12 years agoAdapt script to changed name.
ThorstenB [Sun, 4 Mar 2012 18:49:28 +0000 (19:49 +0100)]
Adapt script to changed name.

12 years agoRename to "nasal_api_doc.py".
ThorstenB [Sun, 4 Mar 2012 18:49:02 +0000 (19:49 +0100)]
Rename to "nasal_api_doc.py".

12 years agoIgnore .pyc files
ThorstenB [Sun, 4 Mar 2012 18:40:19 +0000 (19:40 +0100)]
Ignore .pyc files
(compiled python binaries)

12 years agoupdated API script
adrian [Fri, 3 Feb 2012 17:16:11 +0000 (19:16 +0200)]
updated API script

12 years agopython script which generates $FGROOT/Nasal API documentation
adrian [Mon, 30 Jan 2012 19:02:19 +0000 (21:02 +0200)]
python script which generates $FGROOT/Nasal API documentation

12 years agoUse tiedPropertyLists instead of manually matched tie/untie calls.
ThorstenB [Sun, 4 Mar 2012 16:38:06 +0000 (17:38 +0100)]
Use tiedPropertyLists instead of manually matched tie/untie calls.
Ensures we don't forget to untie some individual properties.

12 years agoUse tiedPropertyLists instead of manually matched tie/untie calls.
ThorstenB [Sun, 4 Mar 2012 14:30:08 +0000 (15:30 +0100)]
Use tiedPropertyLists instead of manually matched tie/untie calls.
Ensures we don't forget to untie some individual properties.

12 years agoIt does. :)
ThorstenB [Sat, 3 Mar 2012 20:40:40 +0000 (21:40 +0100)]
It does. :)

12 years agoFix type issue.
ThorstenB [Sat, 3 Mar 2012 20:39:22 +0000 (21:39 +0100)]
Fix type issue.
multi-sample-buffers is int, not bool.

12 years agoFix compile past last simgear change.
Mathias Froehlich [Sat, 3 Mar 2012 13:05:43 +0000 (14:05 +0100)]
Fix compile past last simgear change.

12 years agoAdapt to simgear SGMath change.
Mathias Froehlich [Sat, 3 Mar 2012 12:37:43 +0000 (13:37 +0100)]
Adapt to simgear SGMath change.

Simgears SGMath has lost its dependency on osg.
Update includes and code using these methods.

12 years agofgviewer: Does not need plib.
Mathias Froehlich [Sat, 3 Mar 2012 06:07:22 +0000 (07:07 +0100)]
fgviewer: Does not need plib.

12 years agohla: Rename HLAVariantData* to HLAVariantRecordData*.
Mathias Froehlich [Sat, 18 Feb 2012 12:38:59 +0000 (13:38 +0100)]
hla: Rename HLAVariantData* to HLAVariantRecordData*.

Rename the variant record data types and elements to something
more standard conformant. This catches up with recent changes
in simgear.

12 years agohla: Avoid using deprecated readObjectModelTemplate.
Mathias Froehlich [Sat, 18 Feb 2012 12:35:17 +0000 (13:35 +0100)]
hla: Avoid using deprecated readObjectModelTemplate.

Avoid using the now deprecated readObjectModelTemplate() method
in HLAFederate. Make more use of the available general
initialization functions in HLAFederate.

12 years agoWindows...
ThorstenB [Sat, 25 Feb 2012 00:48:13 +0000 (01:48 +0100)]
Windows...
revert to directly using PLIB variables *sigh*

12 years agoFix Windows dependencies
ThorstenB [Sat, 25 Feb 2012 00:05:39 +0000 (01:05 +0100)]
Fix Windows dependencies
SimgGear always needs "winmm" on Windows (due to timeGetTime in sgtimestamp.cxx)

12 years agoClean-up cmake (linker) dependencies.
ThorstenB [Fri, 24 Feb 2012 21:23:15 +0000 (22:23 +0100)]
Clean-up cmake (linker) dependencies.

12 years ago#537 linker issues due to clock_gettime/librt dependencies
ThorstenB [Fri, 24 Feb 2012 21:22:14 +0000 (22:22 +0100)]
#537 linker issues due to clock_gettime/librt dependencies
Simplify dependency check and make it work for Debian.

12 years agoRevert "Try to fix MSVC template instantiation issue with SGVec dependencies."
ThorstenB [Fri, 24 Feb 2012 21:01:20 +0000 (22:01 +0100)]
Revert "Try to fix MSVC template instantiation issue with SGVec dependencies."

This reverts commit 67b3b95310c2e9af2ebc9d0e0936ae01aff5092e.

12 years agoTry to fix MSVC template instantiation issue with SGVec dependencies.
ThorstenB [Fri, 24 Feb 2012 20:47:57 +0000 (21:47 +0100)]
Try to fix MSVC template instantiation issue with SGVec dependencies.

12 years agoFix Windows compile issue.
ThorstenB [Sun, 19 Feb 2012 21:13:41 +0000 (22:13 +0100)]
Fix Windows compile issue.

12 years agoDisable OSG dependencies to osg/Vec2 for simgear compile test.
ThorstenB [Sun, 19 Feb 2012 21:12:52 +0000 (22:12 +0100)]
Disable OSG dependencies to osg/Vec2 for simgear compile test.

12 years agoFix MSVC build issue.
ThorstenB [Sun, 19 Feb 2012 19:30:15 +0000 (20:30 +0100)]
Fix MSVC build issue.
MSVC complained about ambiguous "floor" when T=<int>.

12 years agoMore talkative cmake SimGear checks
ThorstenB [Sun, 19 Feb 2012 19:20:12 +0000 (20:20 +0100)]
More talkative cmake SimGear checks
Give details whether includes or libraries are missing,
or if (and how) the version mismatches.
Also require an exact simgear/flightgear version match.

12 years agoprotocol module: minor clean-up
ThorstenB [Sun, 19 Feb 2012 13:57:25 +0000 (14:57 +0100)]
protocol module: minor clean-up

12 years agoUse simgear functions for clip and wrap around.
Thomas Geymayer [Tue, 14 Feb 2012 13:41:53 +0000 (14:41 +0100)]
Use simgear functions for clip and wrap around.

12 years agoRemove unneeded function and add bool relative changes
Thomas Geymayer [Sun, 12 Feb 2012 23:06:51 +0000 (00:06 +0100)]
Remove unneeded function and add bool relative changes

12 years agoDocument protocol extensions
Thomas Geymayer [Tue, 27 Dec 2011 20:29:37 +0000 (21:29 +0100)]
Document protocol extensions

12 years agoSupport relative changes and wrapping for generic protocol input.
Thomas Geymayer [Tue, 27 Dec 2011 17:56:52 +0000 (18:56 +0100)]
Support relative changes and wrapping for generic protocol input.

12 years ago#669: reset fly-by-view when a new replay loop begins
ThorstenB [Sun, 19 Feb 2012 13:34:43 +0000 (14:34 +0100)]
#669: reset fly-by-view when a new replay loop begins

12 years agoTerrasync clean-up
ThorstenB [Sun, 19 Feb 2012 13:33:41 +0000 (14:33 +0100)]
Terrasync clean-up
Avoid code duplication, only UDP processing and
NMEA message parsing remains.

12 years agoRemove obsolete ignore pattern for automake generated headers.
ThorstenB [Fri, 17 Feb 2012 22:46:42 +0000 (23:46 +0100)]
Remove obsolete ignore pattern for automake generated headers.

12 years agoNavradio: provide property is-localizer-frequency
Torsten Dreyer [Wed, 15 Feb 2012 21:43:15 +0000 (22:43 +0100)]
Navradio: provide property is-localizer-frequency

This property is true if the active frequency is tuned to a
paired LOC/GS frequency in the range 108.00 - 111.95 with a
odd 100kHz digit (108.10, 108.15, 108.30, 108.35 ...)
It only indicates, that this _is_ a LOC/GS frequency,
it does _not_ provide any indication if a LOC/GS station is
actually being received.

12 years agoRemove the deprecated warning for JSBSim's egt_degf
Torsten Dreyer [Wed, 15 Feb 2012 14:13:33 +0000 (15:13 +0100)]
Remove the deprecated warning for JSBSim's egt_degf

At least no FGDATA aircraft uses this property anymore.

12 years agoMerge branch 'next' of gitorious.org:fg/flightgear into next
Torsten Dreyer [Wed, 15 Feb 2012 14:03:53 +0000 (15:03 +0100)]
Merge branch 'next' of gitorious.org:fg/flightgear into next

12 years agoSome xml-autopilot tuning
Torsten Dreyer [Wed, 15 Feb 2012 13:59:10 +0000 (14:59 +0100)]
Some xml-autopilot tuning

- Add update-interval-secs to the entire autopilot
- cache min/max values in InputValue
- a little more relaxed "equals zero" checking in the NoiseSpikeFilter

12 years agoAccept setting-hpa along with setting-inhg for altimeter
Torsten Dreyer [Mon, 13 Feb 2012 21:25:30 +0000 (22:25 +0100)]
Accept setting-hpa along with setting-inhg for altimeter

12 years agoFix file access mode for newnavradio.[ch]xx
Torsten Dreyer [Mon, 13 Feb 2012 21:24:41 +0000 (22:24 +0100)]
Fix file access mode for newnavradio.[ch]xx

12 years agoFix FL_STAT macro
Frederic Bouvier [Sun, 12 Feb 2012 20:20:53 +0000 (21:20 +0100)]
Fix FL_STAT macro

12 years agoUgly hack to detect the presence of fl_filename_free_list without relying on cmake...
Frederic Bouvier [Sun, 12 Feb 2012 19:51:56 +0000 (20:51 +0100)]
Ugly hack to detect the presence of fl_filename_free_list without relying on cmake magic

12 years agoFix compile issue with Fltk 1.1.
ThorstenB [Sun, 12 Feb 2012 19:04:26 +0000 (20:04 +0100)]
Fix compile issue with Fltk 1.1.
fl_filename_free_list not available for older Fltk versions.

12 years ago#663: fgadmin not working properly (with latest Fltk)
ThorstenB [Sun, 12 Feb 2012 16:39:01 +0000 (17:39 +0100)]
#663: fgadmin not working properly (with latest Fltk)
Some things about fltk seem changed, which broke fgadmin:
fl_filename_list could return negative number instead of 0.
fl_filename_list now has a "/" appended to every reported directory name.
free( list ) now caused a segfault - use fltk's method to free memory.
fgadmin should now work with new and old Fltk.

12 years agoMerge branch 'next' of gitorious.org:fg/flightgear into next
Torsten Dreyer [Sun, 12 Feb 2012 10:42:01 +0000 (11:42 +0100)]
Merge branch 'next' of gitorious.org:fg/flightgear into next

12 years agoSome autopilot works
Torsten Dreyer [Sun, 12 Feb 2012 10:41:21 +0000 (11:41 +0100)]
Some autopilot works

- add new <update-interval-secs> for autopilot components.
  This does what it says.
- add new method to PeriodicalValue to normalize symmetric around zero
- move the DigitalFilterImplementation out of the header file
- refactor NoiseSpikeFilter: spare some cpu-cycles and respect periodical
  output

12 years agoMac-specific fgjs / event-input fixes from Tatsuhiro.
James Turner [Sat, 11 Feb 2012 17:33:02 +0000 (17:33 +0000)]
Mac-specific fgjs / event-input fixes from Tatsuhiro.

12 years agoRon Jensen: fixed a potential NaN and Segfault in JSBSim propeller code
ThorstenB [Sat, 11 Feb 2012 16:11:13 +0000 (17:11 +0100)]
Ron Jensen: fixed a potential NaN and Segfault in JSBSim propeller code
The property /fdm/jsbsim/propulsion/engine/prop-induced-velocity_fps
gives wrong answers, and can become NaN under certain conditions. When thrust is
negative and forward velocity is small we can take the square root of a negative
number. This could occur, for example, when using reverse thrusters on landing.
The value comes out much too high when alpha is near 180, such as taxing with a
tail wind.

12 years ago#656: COM1 frequency set to 0 at startup
ThorstenB [Fri, 10 Feb 2012 22:41:33 +0000 (23:41 +0100)]
#656: COM1 frequency set to 0 at startup
Also, don't flood the screen with AI ATC messages when COM1/2 is set to 0
(ignore aircraft "transmissions" on frequency "0 MHz").

12 years agoFix another line lost in a merge conflict.
ThorstenB [Tue, 7 Feb 2012 20:12:51 +0000 (21:12 +0100)]
Fix another line lost in a merge conflict.

12 years agoFix missing declaration.
ThorstenB [Tue, 7 Feb 2012 18:32:55 +0000 (19:32 +0100)]
Fix missing declaration.

12 years ago#553: decouple OSG callbacks from Nasal subsystem
ThorstenB [Mon, 6 Feb 2012 21:19:33 +0000 (22:19 +0100)]
#553: decouple OSG callbacks from Nasal subsystem

12 years agoThis 'fixes' #613 but partly re-introduces #553.
ThorstenB [Sun, 29 Jan 2012 09:18:06 +0000 (10:18 +0100)]
This 'fixes' #613 but partly re-introduces #553.

12 years agoMerge branch 'next' of git://gitorious.org/fg/flightgear into next
Frederic Bouvier [Sun, 5 Feb 2012 14:18:26 +0000 (15:18 +0100)]
Merge branch 'next' of git://gitorious.org/fg/flightgear into next

12 years agoFix MSVC90 project
Frederic Bouvier [Sun, 5 Feb 2012 14:17:15 +0000 (15:17 +0100)]
Fix MSVC90 project

12 years ago#591: night-time rendering issues, avoid negative color values
ThorstenB [Sun, 5 Feb 2012 14:13:58 +0000 (15:13 +0100)]
#591: night-time rendering issues, avoid negative color values
Fog color became negative at certain sun angles (around midnight), which
resulted in weird sky dome coloring issues.
Hack: simply clamp the value for now.