]> git.mxchange.org Git - flightgear.git/log
flightgear.git
21 years agoUpdated to work with new instrumentation version of dme.
curt [Tue, 1 Apr 2003 03:42:51 +0000 (03:42 +0000)]
Updated to work with new instrumentation version of dme.

21 years agoFix of framerate drop due to broken OnActiveRunway function - don't read in the runwa...
daveluff [Mon, 31 Mar 2003 16:24:41 +0000 (16:24 +0000)]
Fix of framerate drop due to broken OnActiveRunway function - don't read in the runway.mk4 file (~1MB) every frame

21 years agoAdd width to ATC RunwayDetails structure
daveluff [Mon, 31 Mar 2003 16:23:49 +0000 (16:23 +0000)]
Add width to ATC RunwayDetails structure

21 years agoSlight change of function api
daveluff [Mon, 31 Mar 2003 16:23:23 +0000 (16:23 +0000)]
Slight change of function api

21 years agoEmergency fix of framerate problem
daveluff [Mon, 31 Mar 2003 09:51:36 +0000 (09:51 +0000)]
Emergency fix of framerate problem

21 years agoChange some cerr messages into SG_LOG messages
ehofman [Mon, 31 Mar 2003 09:36:49 +0000 (09:36 +0000)]
Change some cerr messages into SG_LOG messages

21 years agoRemove an unnecessary check. This is done in fgPanelVisible already
ehofman [Mon, 31 Mar 2003 08:36:49 +0000 (08:36 +0000)]
Remove an unnecessary check. This is done in fgPanelVisible already

21 years agoFix a bug where current_panel was called before it was initialized properly
ehofman [Mon, 31 Mar 2003 08:25:00 +0000 (08:25 +0000)]
Fix a bug where current_panel was called before it was initialized properly

21 years agoSorry, left in some debugging statements, now removed.
curt [Mon, 31 Mar 2003 01:35:26 +0000 (01:35 +0000)]
Sorry, left in some debugging statements, now removed.

21 years agoI found 3 problems with the GS modeling in flightgear (all my fault originally
curt [Mon, 31 Mar 2003 01:29:23 +0000 (01:29 +0000)]
I found 3 problems with the GS modeling in flightgear (all my fault originally
I believe.) :-)

- The height of the navaid was not being properly converted to meters
  before being used in our internal calculations.  This caused the GS
  to be placed too high.

- I was using the wrong trig function to calculate the current approach
  angle of the aircraft.  The distance to the GS source is the euclidean
  point to point distance and represents the hypotenuse (not the ground
  distance) so I need to use asin() rather than atan() to calculate the
  angle.

- I was calculating distance directly to the GS source, rather than
  taking into consideration that the GS transmitter projects a plane,
  so I need to take the distance to the line where that plane intersectso
  the ground.  Previously, the way I modeled my distance calculation, the
  GS transmitter effectively formed a 3 degree cone from the source.  The GS
  transmitter is usually placed a 100 meters or so off the runway edge so
  the cone model could never bring you in to the touch down point precisely.

With these changes, the GS will bring you in precisely to the touchdown
point as defined in the default.ils.gz file (it wouldn't before.)  The only
issue that remains is that it will bring you in to the elevation defined
in the ILS database, which doesn't necessarily match the DEM/SRTM terrain
at that point.  Still on average, this will be a big improvement until we
can do a better job of getting the runway end elevations nailed correctly.

21 years agoDeclare fgReshape into gui.h
ehofman [Sun, 30 Mar 2003 19:40:43 +0000 (19:40 +0000)]
Declare fgReshape into gui.h

21 years agoCache some nodes
ehofman [Sun, 30 Mar 2003 16:49:48 +0000 (16:49 +0000)]
Cache some nodes

21 years agoChange the log level of somme messages which can harldy be called allerts
ehofman [Sun, 30 Mar 2003 13:30:25 +0000 (13:30 +0000)]
Change the log level of somme messages which can harldy be called allerts

21 years agoSecond update in attempt to create an aircraft selection dialog
ehofman [Sun, 30 Mar 2003 12:49:05 +0000 (12:49 +0000)]
Second update in attempt to create an aircraft selection dialog

  New panels are loaded now
  New 3D model gets loaded
  Reinitialize more subsystems
  Add reinit() to FGFX, sound gets reinitialized

  Still a lot needs to be done though.

21 years agoMove current_panel to globals
ehofman [Sun, 30 Mar 2003 12:46:08 +0000 (12:46 +0000)]
Move current_panel to globals

21 years agoThere were several typos in the unbinding section of FGInterface. This meant
curt [Sun, 30 Mar 2003 02:26:05 +0000 (02:26 +0000)]
There were several typos in the unbinding section of FGInterface.  This meant
that after a reset or reposition, several FDM variable were not unbound
correctly and left dangling pointing to unallocated memory.  This wasn't
a crash type bug, but those properties then had bogus values.  This
specifically prevented the turn coordinator gyro modeling from working after
a reset or reposition.

21 years agoRemoved static inline qualifiers to the fgLoadAircraft definition.
curt [Sat, 29 Mar 2003 22:09:28 +0000 (22:09 +0000)]
Removed static inline qualifiers to the fgLoadAircraft definition.

21 years agoA first stab at an aircraft selection dialog
ehofman [Sat, 29 Mar 2003 15:04:52 +0000 (15:04 +0000)]
A first stab at an aircraft selection dialog

21 years agoMake the turn indicator more responsive.
david [Sat, 29 Mar 2003 14:19:12 +0000 (14:19 +0000)]
Make the turn indicator more responsive.

21 years agoIf the main frame rate is less than the requested io rate, don't send multiple
curt [Sat, 29 Mar 2003 03:43:39 +0000 (03:43 +0000)]
If the main frame rate is less than the requested io rate, don't send multiple
copies of the same data for the sole purpose of faking it.

21 years agoFix a typo (specified analog in channel 39 rather than 29.
curt [Sat, 29 Mar 2003 03:39:52 +0000 (03:39 +0000)]
Fix a typo (specified analog in channel 39 rather than 29.
Various other tweaks.

21 years agoAdded a property /sim/rendering/draw-otw which specifies whether or not
curt [Sat, 29 Mar 2003 03:21:48 +0000 (03:21 +0000)]
Added a property /sim/rendering/draw-otw which specifies whether or not
we want to draw the out-the-window view (defaults to true in properties.xml)

21 years agoDon't start paused for in air starts.
curt [Sat, 29 Mar 2003 03:19:35 +0000 (03:19 +0000)]
Don't start paused for in air starts.

21 years agoAdd a property which specifies if the current nav station has a glideslope.
curt [Sat, 29 Mar 2003 03:19:03 +0000 (03:19 +0000)]
Add a property which specifies if the current nav station has a glideslope.

21 years agoFixed intermittant marker beacon audio.
curt [Sat, 29 Mar 2003 03:18:17 +0000 (03:18 +0000)]
Fixed intermittant marker beacon audio.

21 years agoCalculate active runway in FGGround. It would be better to get the active runway...
daveluff [Fri, 28 Mar 2003 15:25:48 +0000 (15:25 +0000)]
Calculate active runway in FGGround.  It would be better to get the active runway from FGTower instead of duplicating the code to calculate it, but at the moment I can't guarantee that tower control at a given airport will be initialised before ground control, so this will have to do for now...

21 years agoMoved the RunwayDetails struct definition out of tower.hxx to ATC.hxx
daveluff [Fri, 28 Mar 2003 15:24:02 +0000 (15:24 +0000)]
Moved the RunwayDetails struct definition out of tower.hxx to ATC.hxx

21 years agoInitialise user lon, lat and elev
daveluff [Thu, 27 Mar 2003 15:46:23 +0000 (15:46 +0000)]
Initialise user lon, lat and elev

21 years agoSome fixes to Alexander's pop-up dialog box
daveluff [Thu, 27 Mar 2003 15:45:48 +0000 (15:45 +0000)]
Some fixes to Alexander's pop-up dialog box

21 years agoLog to SG_ATC instead of SG_GENERAL and cout
daveluff [Thu, 27 Mar 2003 15:45:20 +0000 (15:45 +0000)]
Log to SG_ATC instead of SG_GENERAL and cout

21 years agoPass dt to update(...)
daveluff [Thu, 27 Mar 2003 15:44:35 +0000 (15:44 +0000)]
Pass dt to update(...)

21 years agoStart interacting with ATC (still somewhat rudimentary)
daveluff [Thu, 27 Mar 2003 15:44:10 +0000 (15:44 +0000)]
Start interacting with ATC (still somewhat rudimentary)

21 years agoProgress towards interactive ATC...
daveluff [Thu, 27 Mar 2003 15:41:09 +0000 (15:41 +0000)]
Progress towards interactive ATC...

21 years agoAdded support for toe brakes
curt [Thu, 27 Mar 2003 02:57:31 +0000 (02:57 +0000)]
Added support for toe brakes
Added support for instrument panel pots
Just default circuit breakers to on.

21 years agoLatest MultiPlayer updates
ehofman [Wed, 26 Mar 2003 14:12:17 +0000 (14:12 +0000)]
Latest MultiPlayer updates

21 years agoLatest MultiPlayer updates
ehofman [Wed, 26 Mar 2003 14:06:51 +0000 (14:06 +0000)]
Latest MultiPlayer updates

21 years agoOops - let some DOS line endings creep in - quickly get rid of them before Erik notic...
daveluff [Wed, 26 Mar 2003 10:02:32 +0000 (10:02 +0000)]
Oops - let some DOS line endings creep in - quickly get rid of them before Erik notices...

21 years agoAdd a generic, configurable communiction output option
ehofman [Tue, 25 Mar 2003 18:47:30 +0000 (18:47 +0000)]
Add a generic, configurable communiction output option

21 years agoMSVC fix from Frederic Bouvier
daveluff [Mon, 24 Mar 2003 11:06:00 +0000 (11:06 +0000)]
MSVC fix from Frederic Bouvier

21 years agoRemove un-needed typedef
daveluff [Mon, 24 Mar 2003 11:05:25 +0000 (11:05 +0000)]
Remove un-needed typedef

21 years agoMake spoilers and speed-brake position accessible
ehofman [Mon, 24 Mar 2003 10:44:45 +0000 (10:44 +0000)]
Make spoilers and speed-brake position accessible

21 years agoAdd speed-brake and spoilers controlls
ehofman [Mon, 24 Mar 2003 10:04:19 +0000 (10:04 +0000)]
Add speed-brake and spoilers controlls

21 years agoUpdates from JSBSim, including new turbine engine model from David Culp
tony [Sun, 23 Mar 2003 15:12:35 +0000 (15:12 +0000)]
Updates from JSBSim, including new turbine engine model from David Culp

21 years agoMultiPlayer updates for MSVC from Frederic Bouvier
ehofman [Sun, 23 Mar 2003 10:08:47 +0000 (10:08 +0000)]
MultiPlayer updates for MSVC from Frederic Bouvier

21 years agoFrederic Bouvier's assorted set of MSVC fixes
ehofman [Sun, 23 Mar 2003 09:59:46 +0000 (09:59 +0000)]
Frederic Bouvier's assorted set of MSVC fixes

21 years agoLatest MultiPlayer updates
ehofman [Sun, 23 Mar 2003 09:51:28 +0000 (09:51 +0000)]
Latest MultiPlayer updates

21 years agoMake callsign parameter aware
ehofman [Sat, 22 Mar 2003 15:43:24 +0000 (15:43 +0000)]
Make callsign parameter aware

21 years agoRemove old if..then..else kludge an favour of Frederic Bouvier's new code. This also...
ehofman [Sat, 22 Mar 2003 14:52:15 +0000 (14:52 +0000)]
Remove old if..then..else kludge an favour of Frederic Bouvier's new code. This also fixes a problem with MultiPlayer options being defined in the wrong place

21 years agoAdd runtime log level support
ehofman [Sat, 22 Mar 2003 10:38:15 +0000 (10:38 +0000)]
Add runtime log level support

21 years agoAdd comma to log statement
ehofman [Fri, 21 Mar 2003 22:22:33 +0000 (22:22 +0000)]
Add comma to log statement

21 years agoAdd logstream header files when using SG_LOG()
ehofman [Fri, 21 Mar 2003 21:12:12 +0000 (21:12 +0000)]
Add logstream header files when using SG_LOG()

21 years agoRemoved SG_USING_STD(for_each) to make MSVC happy(er). :-)
curt [Fri, 21 Mar 2003 21:09:21 +0000 (21:09 +0000)]
Removed SG_USING_STD(for_each) to make MSVC happy(er). :-)

21 years agoMake error message slightly more informative.
curt [Fri, 21 Mar 2003 20:39:59 +0000 (20:39 +0000)]
Make error message slightly more informative.

21 years agoRemove some compiler warnings.
curt [Fri, 21 Mar 2003 20:39:27 +0000 (20:39 +0000)]
Remove some compiler warnings.

21 years agoLatest episode of the MultiPlayer saga
ehofman [Fri, 21 Mar 2003 20:33:41 +0000 (20:33 +0000)]
Latest episode of the MultiPlayer saga

21 years agoAdd missing #include <algorithm> which provides a prototype for for_each()
curt [Fri, 21 Mar 2003 19:41:04 +0000 (19:41 +0000)]
Add missing #include <algorithm> which provides a prototype for for_each()

21 years agoFix a small problem where multiplayer support was added to network support unconditio...
ehofman [Fri, 21 Mar 2003 18:47:24 +0000 (18:47 +0000)]
Fix a small problem where multiplayer support was added to network support unconditionally

21 years agoAndy wrote:
ehofman [Fri, 21 Mar 2003 15:02:23 +0000 (15:02 +0000)]
Andy wrote:

This is just a port of an old 3D HUD patch to the new view code.
This pans the HUD with the view, by pasting it onto a quad fixed in front of the viewer.  It also fixes the awful, arbitrary scaling problems the HUD code has.  The old HUD only looks right when viewed at 1024x768 and 55 degree FOV.  This works the scale out magically so that it looks right in all views.  It also redefines the "<compression-factor>" tag in the ladder to (1) mean compression instead of expansion and (2) have non-psychopathic units (now "1" means 1 degree per degree).  Fix this in your existing HUD ladder files before reporting bugs.  It's definitely a cosmetic win -- the velocity vector points at the right thing and the horizon lines up properly.

Norman wrote:

I have created a modified version of Andy's patch that implements the 3D HUD as the 'normal' and the 2D HUD as the 'minimal' HUD.   < i > and < shift I > keys

21 years agoGive MultiPlayer support authority over NetworkOLK
ehofman [Fri, 21 Mar 2003 10:39:17 +0000 (10:39 +0000)]
Give MultiPlayer support authority over NetworkOLK

21 years agoFix a nasty NetworkOLK/MultiPlayer configure problem
ehofman [Fri, 21 Mar 2003 09:57:38 +0000 (09:57 +0000)]
Fix a nasty NetworkOLK/MultiPlayer configure problem

21 years agoFix a typo
ehofman [Thu, 20 Mar 2003 22:31:25 +0000 (22:31 +0000)]
Fix a typo

21 years agoAdd a function to allow transmission of messages to AI entities - the actual implemen...
daveluff [Thu, 20 Mar 2003 11:53:44 +0000 (11:53 +0000)]
Add a function to allow transmission of messages to AI entities - the actual implementation is a bit of a temporary hack at the moment

21 years agoLoad ground ATC frequency data, and map all stations by bucket index
daveluff [Thu, 20 Mar 2003 11:51:44 +0000 (11:51 +0000)]
Load ground ATC frequency data, and map all stations by bucket index

21 years agoMinor formatting changes
daveluff [Thu, 20 Mar 2003 11:50:34 +0000 (11:50 +0000)]
Minor formatting changes

21 years agoBase length of time messages are displayed for on dt rather than iterations in order...
daveluff [Thu, 20 Mar 2003 11:22:08 +0000 (11:22 +0000)]
Base length of time messages are displayed for on dt rather than iterations in order to de-couple it from frame rate

21 years agoChange cout and cerr in SG_LOG() where appropriate, otherwise comment it out
ehofman [Thu, 20 Mar 2003 10:43:02 +0000 (10:43 +0000)]
Change cout and cerr in SG_LOG() where appropriate, otherwise comment it out

21 years agoDavid Luff writes:
ehofman [Thu, 20 Mar 2003 09:38:06 +0000 (09:38 +0000)]
David Luff writes:

I've fixed a bug in FGRunways::search(aptid, tgt_hdg) which wasn't working properly for airports with multiple parallel runways. I've also firmed up and pulled out into it's own function the GetReverseRunwayNo code, and done some input checking.

As a result of fixing the above in runways.cxx, I've pulled out the
parallel implementation in the functions that set position by airport and
heading/runway number in fg_init.cxx and called the runways functions
instead.

21 years agoAdd includes for MacOS X
ehofman [Thu, 20 Mar 2003 08:51:01 +0000 (08:51 +0000)]
Add includes for MacOS X

21 years agoAdd multiplayer support from Duncan McCreanor and Diarmuid Tyson
ehofman [Wed, 19 Mar 2003 20:45:09 +0000 (20:45 +0000)]
Add multiplayer support from Duncan McCreanor and Diarmuid Tyson

21 years agoCompiler warning fixes and small updates
ehofman [Wed, 19 Mar 2003 17:46:52 +0000 (17:46 +0000)]
Compiler warning fixes and small updates

21 years agoAdd mach number to the property tree
ehofman [Wed, 19 Mar 2003 16:06:17 +0000 (16:06 +0000)]
Add mach number to the property tree

21 years agoAdd the ability to scroll single ATC messages - this is toggled using property /ATC...
daveluff [Mon, 17 Mar 2003 11:32:51 +0000 (11:32 +0000)]
Add the ability to scroll single ATC messages - this is toggled using property /ATC/display/scroll-single-messages (off by default).  Also increased the time that single messages are displayed in non-scrolling mode - this makes ATC transmissions easier to read.

21 years agoAdded a new turbulence type ttStandard, and made it the default.
david [Sun, 16 Mar 2003 21:14:45 +0000 (21:14 +0000)]
Added a new turbulence type ttStandard, and made it the default.

ttStandard is copied from ttBerndt, with the following modifications:

1. All turbulence is diminished within three wingspans of the ground.

2. The horizontal forces are used to calculate the moments, but then
   zeroed out so that only the vertical force is actually applied to
   the aircraft.

3. The yaw moment is not used.

In fact, the horizontal forces and the yaw moment should be allowed,
but they are extremely rare compared to the vertical force and the
pitch/roll moments.  For now, simply zeroing them gives the most
accurate feel.

21 years agoFix a nasty problem in the FGAIMgr search code that could cause a stackdump with...
daveluff [Fri, 14 Mar 2003 12:27:24 +0000 (12:27 +0000)]
Fix a nasty problem in the FGAIMgr search code that could cause a stackdump with AI traffic enabled

21 years agoWire frame mode got broke somehow. This seems to fix it.
curt [Fri, 14 Mar 2003 02:07:45 +0000 (02:07 +0000)]
Wire frame mode got broke somehow.  This seems to fix it.

21 years agoWhoops - left out ++itr in a while(1) loop
daveluff [Thu, 13 Mar 2003 11:44:40 +0000 (11:44 +0000)]
Whoops - left out ++itr in a while(1) loop

21 years agoSimplify the pitot system and ASI -- the indicated airspeed should be
david [Wed, 12 Mar 2003 20:28:54 +0000 (20:28 +0000)]
Simplify the pitot system and ASI -- the indicated airspeed should be
more reasonable now.

21 years agoNeed to call Init() when initialising tower, otherwise bad things happen...
daveluff [Tue, 11 Mar 2003 23:41:03 +0000 (23:41 +0000)]
Need to call Init() when initialising tower, otherwise bad things happen...

21 years agoEmergency fix of a possible dereference dangling pointer path uncovered by Martin...
daveluff [Tue, 11 Mar 2003 17:15:23 +0000 (17:15 +0000)]
Emergency fix of a possible dereference dangling pointer path uncovered by Martin Spott

21 years agoAdded a function to determine whether a point is on a given runway
daveluff [Tue, 11 Mar 2003 13:25:14 +0000 (13:25 +0000)]
Added a function to determine whether a point is on a given runway

21 years agoAdded a function to return the closest ATC station of a given type
daveluff [Tue, 11 Mar 2003 13:24:35 +0000 (13:24 +0000)]
Added a function to return the closest ATC station of a given type

21 years agoAdded simple GPS support (no waypoints yet).
david [Mon, 10 Mar 2003 14:09:43 +0000 (14:09 +0000)]
Added simple GPS support (no waypoints yet).

21 years agoCorrected some typos.
david [Mon, 10 Mar 2003 14:09:26 +0000 (14:09 +0000)]
Corrected some typos.

21 years agoStart roughing in interactive tower control. AI planes now get the ground control...
daveluff [Mon, 10 Mar 2003 13:41:37 +0000 (13:41 +0000)]
Start roughing in interactive tower control.  AI planes now get the ground control pointer through tower control, which then handles the difference between larger airports with separate ground and smaller ones where tower handles it

21 years agoAdd units to function documentation
daveluff [Mon, 10 Mar 2003 13:40:10 +0000 (13:40 +0000)]
Add units to function documentation

21 years agoFixed a compile problem that affected gcc-2.95 users on Cygwin and removed a few...
daveluff [Sun, 9 Mar 2003 23:04:38 +0000 (23:04 +0000)]
Fixed a compile problem that affected gcc-2.95 users on Cygwin and removed a few unused variable warnings

21 years agoFGAIMgr now searches for proximity to airports with logical networks defined at start...
daveluff [Sun, 9 Mar 2003 17:39:44 +0000 (17:39 +0000)]
FGAIMgr now searches for proximity to airports with logical networks defined at startup and periodically thereafter, and only starts AI traffic when a suitable airport is found in range (currently only KEMT).  In theory it should now be possible for a user to drop in a *.taxi file in my undocumented-shortly-to-change format into fgfsbase/ATC and have an AI Cessna appear at that airport and fly a circuit if they start there or fly near there.  In practice its probably better until we start using the output from Bernie's taxiway editor, and there's bound to be glitches once other networks are tried

21 years agoAdded a range parameter to the FindByPos search function, also fixed a bug whereby...
daveluff [Sun, 9 Mar 2003 17:35:16 +0000 (17:35 +0000)]
Added a range parameter to the FindByPos search function, also fixed a bug whereby one too few buckets in the North and East direction were searched - hence when only one bucket should have been searched none were

21 years agoRemoved some extraneous debugging output.
curt [Sun, 9 Mar 2003 12:48:29 +0000 (12:48 +0000)]
Removed some extraneous debugging output.

21 years agoMajor change:
david [Sun, 9 Mar 2003 03:34:29 +0000 (03:34 +0000)]
Major change:

The "switch" layer type now takes any number of child layers, and will
use the first child that has a condition that evaluates to 'true' (no
condition is automatically true).  Previously, it could take only two
children, controlled by a boolean property.

21 years agoMake sure that all elapsed time gets passed to update when a subsystem
david [Sun, 9 Mar 2003 03:22:12 +0000 (03:22 +0000)]
Make sure that all elapsed time gets passed to update when a subsystem
has a minimum time slice.

21 years agoIgnore generated files.
david [Sun, 9 Mar 2003 03:21:34 +0000 (03:21 +0000)]
Ignore generated files.

21 years agoNew version of basic DME support. This can coexist with the old one
david [Sun, 9 Mar 2003 03:20:34 +0000 (03:20 +0000)]
New version of basic DME support.  This can coexist with the old one
for a little while, since it uses different properties.  There are
some improvements, especially with searching and range.  It also has
its own serviceable and in-range properties, independent of any
coupled VOR.

21 years agoEeek! Emergency fix of a couple "case" problems for includes.
curt [Fri, 7 Mar 2003 14:42:14 +0000 (14:42 +0000)]
Eeek!  Emergency fix of a couple "case" problems for includes.

21 years agoWhoops - forgot SG_USING_STD(cout)
daveluff [Fri, 7 Mar 2003 14:06:52 +0000 (14:06 +0000)]
Whoops - forgot SG_USING_STD(cout)

21 years agoMore stuff to make the AI/ATC system less hardwired and more generic. Most of the...
daveluff [Fri, 7 Mar 2003 13:58:33 +0000 (13:58 +0000)]
More stuff to make the AI/ATC system less hardwired and more generic.  Most of the hardwired stuff is now gone - there's just a little bit left in FGAIMgr

21 years agoAdded FindByCode (airport ICAO code) to commlist. This is basically a wrapper around...
daveluff [Thu, 6 Mar 2003 14:06:34 +0000 (14:06 +0000)]
Added FindByCode (airport ICAO code) to commlist.  This is basically a wrapper around Flightgear's airport lookup and FindByPos

21 years agoAdded constructor to ATCData struct
daveluff [Thu, 6 Mar 2003 14:04:02 +0000 (14:04 +0000)]
Added constructor to ATCData struct

21 years agoIf no wind, active runway is now read-out as the most Westward facing one which is...
daveluff [Wed, 5 Mar 2003 21:40:24 +0000 (21:40 +0000)]
If no wind, active runway is now read-out as the most Westward facing one which is consistent with the rest of FlightGear

21 years agoRemoved a lot of the remaining hardwired KEMT stuff, made the initialisation more...
daveluff [Wed, 5 Mar 2003 21:38:29 +0000 (21:38 +0000)]
Removed a lot of the remaining hardwired KEMT stuff, made the initialisation more generic, added the ability to taxi from a parking spot to a runway, used real ground elevation more