]> git.mxchange.org Git - flightgear.git/log
flightgear.git
21 years agoUpdates to the Thanks file contributed by Jim Wilson.
curt [Wed, 5 Mar 2003 17:07:01 +0000 (17:07 +0000)]
Updates to the Thanks file contributed by Jim Wilson.

21 years agoRemove std::
curt [Tue, 4 Mar 2003 00:25:35 +0000 (00:25 +0000)]
Remove std::

21 years agoDon't remove the named pipe on a "Reset" or position change (i.e. when
curt [Mon, 3 Mar 2003 17:48:09 +0000 (17:48 +0000)]
Don't remove the named pipe on a "Reset" or position change (i.e. when
FGExternalPipe is destructed.)  This leaves the name pipe hanging around
even after flightgear exits, but assuming we put the files in /tmp that
shouldn't be a big deal.

21 years agoIRIX fixes from Erik Hofman
daveluff [Mon, 3 Mar 2003 11:43:49 +0000 (11:43 +0000)]
IRIX fixes from Erik Hofman

21 years agoRemoved DOS line endings
daveluff [Mon, 3 Mar 2003 10:38:13 +0000 (10:38 +0000)]
Removed DOS line endings

21 years agoA small optimization, pass the number of iterations to the remote end and
curt [Mon, 3 Mar 2003 04:59:41 +0000 (04:59 +0000)]
A small optimization, pass the number of iterations to the remote end and
have it do all the work, rather than calling the remote end "iteration"
number of times.

21 years agoAdd a net_byte_order flag so that the calling code can specify if network
curt [Mon, 3 Mar 2003 04:35:09 +0000 (04:35 +0000)]
Add a net_byte_order flag so that the calling code can specify if network
byte order conversion is desired (defaults to true.)

21 years agoAdd support for --fdm=pipe,<pipe_name>
curt [Mon, 3 Mar 2003 04:34:27 +0000 (04:34 +0000)]
Add support for --fdm=pipe,<pipe_name>

21 years agoAdd ExternalPipe subdirectory.
curt [Mon, 3 Mar 2003 04:33:51 +0000 (04:33 +0000)]
Add ExternalPipe subdirectory.

21 years agoMinor tweak.
curt [Mon, 3 Mar 2003 04:32:56 +0000 (04:32 +0000)]
Minor tweak.

21 years agoAdd src/FDM/ExternalPipe
curt [Mon, 3 Mar 2003 04:32:42 +0000 (04:32 +0000)]
Add src/FDM/ExternalPipe

21 years agoFirst stab at a "named pipe" interface to an external FDM. Compared to the
curt [Mon, 3 Mar 2003 04:30:16 +0000 (04:30 +0000)]
First stab at a "named pipe" interface to an external FDM.  Compared to the
ExternalNet interface:

- allows a much more closely coupled execution.  A remote network FDM will run
  at it's own rate, and maybe a particular data packets will come, maybe it
  won't.  This makes it very hard to control timing and keep the animation
  smooth.  There are also cpu scheduling issues with running multiple
  processes on a single machine.  The linux scheduler by default runs at
  100hz.  If an FDM process uses a sleep/alarm system to avoid wasting
  CPU, it will be forced to run at 100hz, 50hz, 25hz, 20hz, etc.  This
  makes it *impossible* to serve a display system running at 60hz without
  dropping frames.

- the downside is that the FDM process must now run on the same machine as
  the master flightgear process.

21 years agoPatch from Frederic Bouvier:
david [Sun, 2 Mar 2003 16:37:48 +0000 (16:37 +0000)]
Patch from Frederic Bouvier:

arrays of insufficient size are allocated in prop_picker.cxx ( size()
don't count the null char ) and strcpy is writing outside the allocated
array. A patch follow.

21 years agoPatch from Erik Hofman:
david [Sun, 2 Mar 2003 14:19:24 +0000 (14:19 +0000)]
Patch from Erik Hofman:

I've updated the instrument modulator code to allow tricks like the one
described by Andy. It is now possible to define <min>, <max> and
<modulator> in one layer and if <min> and/or <max> ore within the range
of the <modulator> tag, their value will be honoured.

So, if you define

  <layer>
   <min>0</min>
   <max>50</max>
   <modulator>100</modulator>
  </layer>

The value will stay at 50, until the modulator forces it back to 0.

21 years agoDon't fiddle with control positions at startup -- we can do that in
david [Sun, 2 Mar 2003 02:22:18 +0000 (02:22 +0000)]
Don't fiddle with control positions at startup -- we can do that in
the *-set.xml files if desired.

21 years agoInitialize speed from mach number or vcas more-or-less properly.
david [Sun, 2 Mar 2003 01:44:11 +0000 (01:44 +0000)]
Initialize speed from mach number or vcas more-or-less properly.

21 years agoAdd spdFromMach() and spdFromVCAS().
david [Sun, 2 Mar 2003 01:43:39 +0000 (01:43 +0000)]
Add spdFromMach() and spdFromVCAS().

21 years agoMake sure the atmosphere is updated before the flight model.
david [Sun, 2 Mar 2003 01:43:00 +0000 (01:43 +0000)]
Make sure the atmosphere is updated before the flight model.

21 years agoDon't allow this subsystem to be suspended.
david [Sat, 1 Mar 2003 21:29:31 +0000 (21:29 +0000)]
Don't allow this subsystem to be suspended.

21 years agoRefactor things so that individual subsystems can override suspension.
david [Sat, 1 Mar 2003 21:29:16 +0000 (21:29 +0000)]
Refactor things so that individual subsystems can override suspension.

21 years agoAdd a new <power> property to allow raising an axis to a power other
david [Sat, 1 Mar 2003 21:28:51 +0000 (21:28 +0000)]
Add a new <power> property to allow raising an axis to a power other
than 1 or 2 (<squared/> still works as well, and is equivalent to
<power>2</power>).

21 years agoMinor code cleanup.
david [Wed, 26 Feb 2003 19:20:02 +0000 (19:20 +0000)]
Minor code cleanup.

21 years agoUse actual terrain ground elevation instead of hardwired KEMT elevation field whilst...
daveluff [Wed, 26 Feb 2003 11:24:15 +0000 (11:24 +0000)]
Use actual terrain ground elevation instead of hardwired KEMT elevation field whilst taxiing.  Still need to fix this for takeoff and landing roll.  Also added a check that a valid gate is found whilst arriving, and simply disappear the plane if none is found (instead of stackdumping\!\!

21 years agoInitialize the internal pressure to ambient pressure.
david [Tue, 25 Feb 2003 20:04:22 +0000 (20:04 +0000)]
Initialize the internal pressure to ambient pressure.

21 years agoWhoops - a stray debugging cout got through
daveluff [Tue, 25 Feb 2003 09:32:49 +0000 (09:32 +0000)]
Whoops - a stray debugging cout got through

21 years agoModified slightly whilst developing the shortest-path algorithm in the ground code...
daveluff [Mon, 24 Feb 2003 19:04:53 +0000 (19:04 +0000)]
Modified slightly whilst developing the shortest-path algorithm in the ground code.  Also removed some old KPAO specific initialisation.

21 years agoAdded a shortest-path algorithm between two nodes and removed the hardwired KEMT...
daveluff [Mon, 24 Feb 2003 19:03:15 +0000 (19:03 +0000)]
Added a shortest-path algorithm between two nodes and removed the hardwired KEMT-specific path.  Also tidied up some bugs in the gate handling code

21 years agoBegin supporting a starting speed for YASim:
david [Sat, 22 Feb 2003 20:29:43 +0000 (20:29 +0000)]
Begin supporting a starting speed for YASim:

- NED and UVW are working correctly
- knots is giving true airspeed instead of calibrated airspeed
- mach is not working at all

This desperately needs a trimming routine.

21 years agoAdd new options:
david [Fri, 21 Feb 2003 02:46:44 +0000 (02:46 +0000)]
Add new options:

  --vor=ID
  --ndb=ID
  --fix=ID
  --turbulence=NORM

21 years agoInvoke fgInitNav() before fgInitPos().
david [Fri, 21 Feb 2003 02:46:07 +0000 (02:46 +0000)]
Invoke fgInitNav() before fgInitPos().

21 years agoAdd fgInitNav() function so that navaids and fixes can be loaded
david [Fri, 21 Feb 2003 02:45:47 +0000 (02:45 +0000)]
Add fgInitNav() function so that navaids and fixes can be loaded
earlier, before fgInitSubsystems().

Modify fgInitPos() so that the plane is not automatically aligned with
a runway when an airport is the reference point unless (a) a runway
was explicitly requested, or (b) the plane is on the ground with no
offset distance specified.  To set up the plane lined up on an
approach to a runway, use something like

  fgfs --airport=CYOW --runway=32 --altitude=300 --offset-distance=0.5

This way, it's possible to specify a starting position relative to an
airport without getting snapped onto a runway approach (unless you
want to be).

21 years agoDeclare fgInitNav().
david [Fri, 21 Feb 2003 02:42:45 +0000 (02:42 +0000)]
Declare fgInitNav().

21 years agoFixed calibrated airspeed output so that it accounts for wind.
david [Wed, 19 Feb 2003 17:41:53 +0000 (17:41 +0000)]
Fixed calibrated airspeed output so that it accounts for wind.

21 years agoInterpolate the twist linearly over the wing.
david [Tue, 18 Feb 2003 17:37:28 +0000 (17:37 +0000)]
Interpolate the twist linearly over the wing.

Reduce the minimum number of twist segments from 16 to 8.

21 years agoAdded a "twist" attribute for wings to allow for washout (or washin,
david [Tue, 18 Feb 2003 16:50:07 +0000 (16:50 +0000)]
Added a "twist" attribute for wings to allow for washout (or washin,
if desired) in the stall.  This allows for fairly docile stalls when
desired, as on trainers (you also need to limit the elevator lift).

21 years agoAdded basic support for using more than one voice. The render function is moved...
daveluff [Tue, 18 Feb 2003 10:44:01 +0000 (10:44 +0000)]
Added basic support for using more than one voice.  The render function is moved out of ATCmgr and into the ATC base class.

21 years agoJim Wilson:
curt [Sun, 16 Feb 2003 20:47:40 +0000 (20:47 +0000)]
Jim Wilson:

Here's a patch to fix the asi problem (it affects most aircraft panels).
[ Avoids a sqrt( x < 0 ) ]

21 years agoCommented out a stray cout.
curt [Thu, 13 Feb 2003 21:31:44 +0000 (21:31 +0000)]
Commented out a stray cout.

21 years agoAlexander's new files added to Makefile.am
daveluff [Thu, 13 Feb 2003 12:21:01 +0000 (12:21 +0000)]
Alexander's new files added to Makefile.am

21 years agoChanges in support of Alexander's ATC menu/transmission work. In particular all...
daveluff [Thu, 13 Feb 2003 12:20:25 +0000 (12:20 +0000)]
Changes in support of Alexander's ATC menu/transmission work.  In particular all the pop-up dialog stuff has been ripped out of ATCmgr.[ch]xx and moved to ATCDialog.[ch]xx

21 years agoBetter robustness for the ATCData structure istream operator. Adding fin.close(...
daveluff [Thu, 13 Feb 2003 12:17:37 +0000 (12:17 +0000)]
Better robustness for the ATCData structure istream operator.  Adding fin.close() seems to have cured an intermittent stackdump when reading in the voice files which are the next istream operation to occur.  Unknown types no longer cause the rest of the file not to be read - only the specific unknown entry

21 years agoAlexander's Approach ATC class modified to support his new menu/transmission code
daveluff [Thu, 13 Feb 2003 12:09:28 +0000 (12:09 +0000)]
Alexander's Approach ATC class modified to support his new menu/transmission code

21 years agoFirst draft of work by Alexander Kappes to add dynamically driven menu entries to...
daveluff [Thu, 13 Feb 2003 12:05:19 +0000 (12:05 +0000)]
First draft of work by Alexander Kappes to add dynamically driven menu entries to the pop-up ATC dialog, parsing of text input to the ATC system and parameterised transmissions where the speech of a transmission is derived from the intent based on data files potentially allowing users to specify different phrases for each voice instead of being hard-coded.  This is a work in progress.

21 years agoIntegrate code posted by Jon Berndt, so that only the z-direction
david [Wed, 12 Feb 2003 23:00:49 +0000 (23:00 +0000)]
Integrate code posted by Jon Berndt, so that only the z-direction
turbulence is diminished near the ground.

21 years agoMinor code cleanups.
david [Wed, 12 Feb 2003 18:35:04 +0000 (18:35 +0000)]
Minor code cleanups.

21 years agoSquare the /environment/turbulence-norm property before scaling it for
david [Wed, 12 Feb 2003 18:34:51 +0000 (18:34 +0000)]
Square the /environment/turbulence-norm property before scaling it for
FGAtmosphere -- that way, there are finer distinctions in the lower
end, where most people will fly.

21 years agoFade out the turbulence within two wingspans of the ground.
david [Wed, 12 Feb 2003 18:34:39 +0000 (18:34 +0000)]
Fade out the turbulence within two wingspans of the ground.

21 years agoConnect the FlightGear /environment/turbulence-norm property to the
david [Wed, 12 Feb 2003 00:30:24 +0000 (00:30 +0000)]
Connect the FlightGear /environment/turbulence-norm property to the
turbulence gain in JSBSim's FGAtmosphere class.

Latest FGAtmosphere from JSBSim with working turbulence support.

21 years agoErik Hofman:
curt [Tue, 11 Feb 2003 21:17:36 +0000 (21:17 +0000)]
Erik Hofman:

Sort aircraft when using --show-aircraft option.

21 years agoErik Hofman:
curt [Tue, 11 Feb 2003 20:26:42 +0000 (20:26 +0000)]
Erik Hofman:

Adds some small updates to the sound code (add vector clearing in destructors).

21 years agoTemporarily disabled ILS range tweaking, until we come up with a
david [Tue, 11 Feb 2003 20:05:18 +0000 (20:05 +0000)]
Temporarily disabled ILS range tweaking, until we come up with a
better scheme.

While it's true that the actual ILS indications are unreliable when
far off the approach path, the ILS is not out of range -- you can
still ident it (an essential part of any approach procedure), and the
indicator will usually be doing something, however bizarre.  The
current scheme did not allow the user to ident the ILS until
practically on the approach path.

21 years agoAnother tilemgr fix from Jim W.
curt [Tue, 11 Feb 2003 15:50:53 +0000 (15:50 +0000)]
Another tilemgr fix from Jim W.

21 years agoSeveral *list.[ch]xx files removed
daveluff [Mon, 10 Feb 2003 22:30:13 +0000 (22:30 +0000)]
Several *list.[ch]xx files removed

21 years agoapproachlist.[ch]xx superceeded by commlist.[ch]xx
daveluff [Mon, 10 Feb 2003 22:29:15 +0000 (22:29 +0000)]
approachlist.[ch]xx superceeded by commlist.[ch]xx

21 years agotowerlist.[ch]xx superceeded by commlist.[ch]xx
daveluff [Mon, 10 Feb 2003 22:28:31 +0000 (22:28 +0000)]
towerlist.[ch]xx superceeded by commlist.[ch]xx

21 years agoatislist.hxx superceeded by commlist.hxx
daveluff [Mon, 10 Feb 2003 22:27:43 +0000 (22:27 +0000)]
atislist.hxx superceeded by commlist.hxx

21 years agoatislist.cxx superceeded by commlist.cxx
daveluff [Mon, 10 Feb 2003 22:27:12 +0000 (22:27 +0000)]
atislist.cxx superceeded by commlist.cxx

21 years agoDave Luff:
curt [Mon, 10 Feb 2003 20:42:18 +0000 (20:42 +0000)]
Dave Luff:

Patch to remove initialisation of atislist,towerlist and
approachlist which have been superceeded by commlist.

21 years ago*** empty log message ***
david [Mon, 10 Feb 2003 16:42:12 +0000 (16:42 +0000)]
*** empty log message ***

21 years agoFix a bug in tile manager updating when switching from one view to the next.
curt [Mon, 10 Feb 2003 15:34:18 +0000 (15:34 +0000)]
Fix a bug in tile manager updating when switching from one view to the next.

21 years agoFixes for Mac OS X.
curt [Sun, 9 Feb 2003 03:47:21 +0000 (03:47 +0000)]
Fixes for Mac OS X.

21 years agoFix a typo in the FreeBSD support section.
curt [Fri, 7 Feb 2003 17:35:46 +0000 (17:35 +0000)]
Fix a typo in the FreeBSD support section.

21 years agogroundlist now replaced by commlist
daveluff [Fri, 7 Feb 2003 13:38:57 +0000 (13:38 +0000)]
groundlist now replaced by commlist

21 years agoWhoops - missed a file from the commlist changes yesterday
daveluff [Fri, 7 Feb 2003 13:34:56 +0000 (13:34 +0000)]
Whoops - missed a file from the commlist changes yesterday

21 years agoThere are a number of little changes. Tested with current cvs as of 20:30EST
curt [Thu, 6 Feb 2003 19:44:32 +0000 (19:44 +0000)]
There are a number of little changes.  Tested with current cvs as of 20:30EST
04Feb.  Actually been running since the beginning of January with these
patches.  All changes work without crashing with the current base package cvs,
but there are some visual problems with the views (other than pilot view)
without changes to the base package.

As soon as you can build test and commit I can add in those base package
updates that will make it all work nicely.  I will also go through all the 3D
Aircraft configs to make sure the change in the "pitch-offset" for cockpit
views (see below) are made to maintain current behavior.

Here are the files (changes listed below):
http://www.spiderbark.com/fgfs/viewerupdate.diffs.gz
http://www.spiderbark.com/fgfs/viewerupdate.tar.gz

21 years agoMake sure that we have a VOR or VORTAC, and not just a DME or TACAN.
david [Thu, 6 Feb 2003 16:18:17 +0000 (16:18 +0000)]
Make sure that we have a VOR or VORTAC, and not just a DME or TACAN.

21 years agoThe switch position was screwed up -- 2 means "hold last frequency",
david [Thu, 6 Feb 2003 16:17:47 +0000 (16:17 +0000)]
The switch position was screwed up -- 2 means "hold last frequency",
not "off".

21 years agoUse the property /sim/sound/voice to disable voice support even if
david [Thu, 6 Feb 2003 16:17:03 +0000 (16:17 +0000)]
Use the property /sim/sound/voice to disable voice support even if
/sim/sound/audible is true.

21 years agoMajor re-work of the comm frequency storage and lookup. Only a small core amount...
daveluff [Thu, 6 Feb 2003 10:42:43 +0000 (10:42 +0000)]
Major re-work of the comm frequency storage and lookup.  Only a small core amount of data is now stored instead of the whole ATC classes.  All the comm frequency types are now stored in one map instead of a map each.  query(...) and query_bck(...) have been renamed to FindByFreq(...) and FindByPos(...) for clarity and consistency with NavList

21 years agoGUI style changes suggested by Erik Hofman and Curtis Olson.
david [Wed, 5 Feb 2003 02:17:08 +0000 (02:17 +0000)]
GUI style changes suggested by Erik Hofman and Curtis Olson.

21 years agoPatches from Johan Walles:
david [Wed, 5 Feb 2003 01:09:20 +0000 (01:09 +0000)]
Patches from Johan Walles:

Here are the two modifications I had to make to get flightgear (just
updated from CVS) to build.  The first one is for being able to specify
SimGear's location at the ./configure command line, and the second one
is to be able to link.

21 years agoRephrased some comments to avoid /* in a comment warnings.
curt [Tue, 4 Feb 2003 22:28:48 +0000 (22:28 +0000)]
Rephrased some comments to avoid /* in a comment warnings.

21 years agoClean up a compiler warning.
curt [Tue, 4 Feb 2003 22:28:19 +0000 (22:28 +0000)]
Clean up a compiler warning.

21 years agoJames Turner:
curt [Tue, 4 Feb 2003 22:27:58 +0000 (22:27 +0000)]
James Turner:

Here's a change to the GUI property picker I did a few weeks back.
It makes the values in the property pick 'live' (and also re-factors
the picker code to use less arrays, this should be obvious from the
diffs). A good demo is to open up the engine node and observe the rpm,
cylinder head temp, oil pressure and so on while playing with the
throttle and airspeed. It's pretty rough (some rounding of digits would
help) but useful for testing (at least I think so). I'm not sure about
the performance implications either, but it seems fine for me.

21 years agoFix a bug in transit sound termination and adjust the minimum time we
curt [Tue, 4 Feb 2003 18:18:24 +0000 (18:18 +0000)]
Fix a bug in transit sound termination and adjust the minimum time we
wait with no change before stoping the sound.

21 years agoPeriodically the turn coordinator is jammed all the way to one side.
curt [Tue, 4 Feb 2003 17:23:21 +0000 (17:23 +0000)]
Periodically the turn coordinator is jammed all the way to one side.
Initialize _last_rate to 0 at start up to hopefully avoid this.

21 years agoOops, sorry, nothing more to see here, move right along ...
curt [Tue, 4 Feb 2003 17:22:00 +0000 (17:22 +0000)]
Oops, sorry, nothing more to see here, move right along ...

21 years agoAdded note related to alternators.
curt [Tue, 4 Feb 2003 02:34:58 +0000 (02:34 +0000)]
Added note related to alternators.

21 years agoAdd support for specifying an rpm source for the alternator. This enables
curt [Mon, 3 Feb 2003 22:35:24 +0000 (22:35 +0000)]
Add support for specifying an rpm source for the alternator.  This enables
us to tie the output of an arbitrary generator to the state of an arbitrary
engine.

21 years agoFixed a spelling error in the api. (ouch) :-)
curt [Mon, 3 Feb 2003 22:22:02 +0000 (22:22 +0000)]
Fixed a spelling error in the api. (ouch) :-)

21 years agoUpdated note about specifying the initial state of a connector's switch.
curt [Mon, 3 Feb 2003 22:19:36 +0000 (22:19 +0000)]
Updated note about specifying the initial state of a connector's switch.

21 years agoAdd the ability to specify an initial state (on/off) for a connector switch.
curt [Mon, 3 Feb 2003 22:15:36 +0000 (22:15 +0000)]
Add the ability to specify an initial state (on/off) for a connector switch.
If nothing is specifed the switch defaults to on, but this is a problem for
the starter switch.

21 years agoAvoid a potential segfault.
curt [Mon, 3 Feb 2003 21:57:25 +0000 (21:57 +0000)]
Avoid a potential segfault.

21 years agoRegister that we have been inited so the init routine isn't called repeatedly.
curt [Mon, 3 Feb 2003 21:57:07 +0000 (21:57 +0000)]
Register that we have been inited so the init routine isn't called repeatedly.

21 years agoInitial stab at documenting the electrical system.
curt [Mon, 3 Feb 2003 21:29:58 +0000 (21:29 +0000)]
Initial stab at documenting the electrical system.

21 years agoUpdated FGILSList api to better match the FGNavList api.
curt [Mon, 3 Feb 2003 20:05:27 +0000 (20:05 +0000)]
Updated FGILSList api to better match the FGNavList api.

21 years agoUpdates to use new FGILSList api (updated to better match NavList api)
curt [Mon, 3 Feb 2003 20:04:56 +0000 (20:04 +0000)]
Updates to use new FGILSList api (updated to better match NavList api)

21 years agoMinor logging changes.
david [Sat, 1 Feb 2003 17:59:52 +0000 (17:59 +0000)]
Minor logging changes.

All logs and log entries are now disabled by default, unless
explicitly enabled by an 'enabled' property.  This works much more
intuitively with the GUI dialog.

21 years agoAdd support for numerals as well as letters in Morse identifiers
david [Wed, 29 Jan 2003 23:30:34 +0000 (23:30 +0000)]
Add support for numerals as well as letters in Morse identifiers
(needed for many navaids).

21 years agoAdded the cvs ident in the comment header.
curt [Wed, 29 Jan 2003 21:57:46 +0000 (21:57 +0000)]
Added the cvs ident in the comment header.

21 years agoUpdated license statement.
curt [Wed, 29 Jan 2003 21:57:00 +0000 (21:57 +0000)]
Updated license statement.

21 years agoInitial revisions.
curt [Wed, 29 Jan 2003 21:55:53 +0000 (21:55 +0000)]
Initial revisions.

21 years agoREADME for src/Systems/
david [Wed, 29 Jan 2003 16:03:00 +0000 (16:03 +0000)]
README for src/Systems/

21 years agoConverted to a simple FGSubsystemGroup.
david [Wed, 29 Jan 2003 16:02:46 +0000 (16:02 +0000)]
Converted to a simple FGSubsystemGroup.

21 years agoRemoved unneeded inclusion of std::vector.
david [Wed, 29 Jan 2003 16:02:27 +0000 (16:02 +0000)]
Removed unneeded inclusion of std::vector.

21 years agoAdded a README for the src/Instrumentation/ directory.
david [Wed, 29 Jan 2003 15:38:52 +0000 (15:38 +0000)]
Added a README for the src/Instrumentation/ directory.

21 years agoAdded a README for the src/Cockpit/ directory.
david [Wed, 29 Jan 2003 15:34:31 +0000 (15:34 +0000)]
Added a README for the src/Cockpit/ directory.

21 years agoRemoved the old FGSteam module from FlightGear.
david [Wed, 29 Jan 2003 15:30:29 +0000 (15:30 +0000)]
Removed the old FGSteam module from FlightGear.

21 years agoRemoving files already removed from JSBSim CVS.
tony [Mon, 27 Jan 2003 23:42:08 +0000 (23:42 +0000)]
Removing files already removed from JSBSim CVS.

21 years agoCorrect old-reinit_dialog to old-reinit-dialog.
david [Mon, 27 Jan 2003 15:39:41 +0000 (15:39 +0000)]
Correct old-reinit_dialog to old-reinit-dialog.