]> git.mxchange.org Git - flightgear.git/log
flightgear.git
23 years agoChanged wording ...
curt [Thu, 29 Mar 2001 06:09:25 +0000 (06:09 +0000)]
Changed wording ...

23 years agoPut blinking marker beacon (bool) into the property registry for use by the
curt [Thu, 29 Mar 2001 06:05:01 +0000 (06:05 +0000)]
Put blinking marker beacon (bool) into the property registry for use by the
panel.

23 years agoDynamically adjust audio safety margin (how much audio we stuff in the
curt [Thu, 29 Mar 2001 05:18:29 +0000 (05:18 +0000)]
Dynamically adjust audio safety margin (how much audio we stuff in the
pipe in advance) based on frame rates.

23 years ago- model loading should work again with the latest CVS PLIB (and, I
curt [Thu, 29 Mar 2001 03:49:02 +0000 (03:49 +0000)]
- model loading should work again with the latest CVS PLIB (and, I
hope, with earlier versions as well)
- support for the new LONG value type
- gear support for UIUC (updated for the newly renamed SG_* stuff;
otherwise identical to what I sent you before)
- fixed reported MSVC problem in src/FDM/flight.cxx

23 years agoFrom: David Megginson <david@megginson.com>
curt [Thu, 29 Mar 2001 03:16:25 +0000 (03:16 +0000)]
From: David Megginson <david@megginson.com>

I have created a set of patches to provide configurable landing gear
for the UIUC models.  The patches (including four new files) are
available at

  http://megginson.com/private/fgfs/uiuc-20010309.tar.gz

A modified UIUC configuration file for the Twin Otter (DHC-6) is
available at

  http://megginson.com/private/fgfs/aircraft.dat

It should be possible to configure appropriate gear for all of the
UIUC models now.  As a bonus, the models also support braking, both
absolute and differential, as well as nose-wheel steering (all of
which are currently missing from the UIUC models) -- when you land,
you don't have to keep rolling off the end of the runway anymore, and
you don't have to bank to steer in a taxi.

My sample configuration file contains absolutely bizarre, wild
guesses, and many places that I didn't even bother to guess properly.
The only actual data I had was the wing-span of the DHC-6 (65ft),
which I used for positioning the wing tips.  The wing-tips for this
model actually work now -- I hit the aileron hard while accelerating
for take-off, and the wingtip noticeably strikes the ground and
bounces up (quite dramatic in external view using the DHC-6 model from
Wolfram's site).

Details
-------

The UIUC models now support up to 16 gear points each where a gear
point is anything in the aircraft that can come in contact with the
ground, including the tail and wing-tips.  I have added the following
new fields to the UIUC configuration files, where <index> is an
integer between 0 and 15, and <value> is a real number:

  gear <index> Dx_gear <value>     # x offset from CG [ft]
  gear <index> Dy_gear <value>     # y offset from CG [ft]
  gear <index> Dz_gear <value>     # z offset from CG [ft]
  gear <index> cgear <value>       # spring damping [lbs/ft/sec]
  gear <index> kgear <value>       # springiness [lbs/ft]
  gear <index> muGear <value>      # rolling coefficient
  gear <index> strutLength <value> # gear travel [ft] (not yet used)

Most of these names were already pencilled into the UIUC documentation
(as TODO items), but I had to make up Dx_gear, Dy_gear, and Dz_gear --
if those are inappropriate, I'd appreciate suggestions for better
names.

It will be necessary to modify the other UIUC configuration files to
include some kind of gear support as well, or the planes will sink
nose-first into the ground down to their CG's (it's actually quite
funny to watch with an external view).

Background
----------

As I frequently remind everyone here, I have no math background worth
spitting at, so I will not even pretend to have done the hard stuff.
The UIUC code uses a copy of a very old version of the LaRCsim
c172_gear.c -- I wanted to update it with Tony Peden's excellent newer
version, which includes differential braking among other goodies (the
UIUC models don't support brakes, period).

I copied the newer code into uiuc_aero.c, and it compiled and ran, but
all of the planes ended up sitting on their tails with their noses in
the air.  Since Tony made his gear code nicely parameterized, I
experimented with different values, and found that it wasn't too hard
to balance the Twin Otter by moving the gear back a bit.  At first, I
used properties to set different values, but then I decided to
integrate the whole thing properly into the UIUC configuration
framework.  Thanks to Tony Peden, who did the real modelling work -- I
can take credit only for two or three hours of integration.  It turns
out that Tony's code is generalized enough to deal with a wide range
of different gear structures -- I suspect that it will even work for
the 747, when I get around to trying some values.

23 years agoFix for MSVC.
curt [Thu, 29 Mar 2001 01:44:54 +0000 (01:44 +0000)]
Fix for MSVC.

23 years agoUpdates from Bernie Bright to massage tile loading around to make it
curt [Thu, 29 Mar 2001 01:42:31 +0000 (01:42 +0000)]
Updates from Bernie Bright to massage tile loading around to make it
slightly more conducive to future threading.

23 years agoLight model tweaks.
curt [Wed, 28 Mar 2001 18:11:05 +0000 (18:11 +0000)]
Light model tweaks.

23 years agoFix moon drawing at night.
curt [Wed, 28 Mar 2001 17:52:40 +0000 (17:52 +0000)]
Fix moon drawing at night.

23 years agoRemoved an unneeded exit()
curt [Wed, 28 Mar 2001 14:38:55 +0000 (14:38 +0000)]
Removed an unneeded exit()

23 years agoAdded marker beacon sound effects.
curt [Wed, 28 Mar 2001 07:12:11 +0000 (07:12 +0000)]
Added marker beacon sound effects.

23 years agoLighting fixes.
curt [Wed, 28 Mar 2001 00:39:29 +0000 (00:39 +0000)]
Lighting fixes.
Warning fixes.
Typo in configure.in

23 years agoIrix MIPS patches.
curt [Mon, 26 Mar 2001 18:22:31 +0000 (18:22 +0000)]
Irix MIPS patches.

23 years agoMore fg -> sg namespace changes in simgear.
curt [Sun, 25 Mar 2001 14:20:12 +0000 (14:20 +0000)]
More fg -> sg namespace changes in simgear.

23 years agoinlines.h -> sg_inlines.h
curt [Sat, 24 Mar 2001 14:56:37 +0000 (14:56 +0000)]
inlines.h -> sg_inlines.h

23 years agofg_zlib.h -> sg_zlib.h
curt [Sat, 24 Mar 2001 14:12:00 +0000 (14:12 +0000)]
fg_zlib.h -> sg_zlib.h

23 years agoSG-ified logstream.
curt [Sat, 24 Mar 2001 06:03:11 +0000 (06:03 +0000)]
SG-ified logstream.

23 years agoSG_ namespace.
curt [Sat, 24 Mar 2001 04:56:46 +0000 (04:56 +0000)]
SG_ namespace.

23 years agoSG_ namespace
curt [Sat, 24 Mar 2001 04:48:44 +0000 (04:48 +0000)]
SG_ namespace

23 years agoFG_ to SG_ namespace changes.
curt [Sat, 24 Mar 2001 03:10:40 +0000 (03:10 +0000)]
FG_ to SG_ namespace changes.

23 years agoFG_ to SG_ namespace changes.
curt [Sat, 24 Mar 2001 02:36:45 +0000 (02:36 +0000)]
FG_ to SG_ namespace changes.

23 years agoFG_ to SG_ namespace changes.
curt [Sat, 24 Mar 2001 00:18:01 +0000 (00:18 +0000)]
FG_ to SG_ namespace changes.

23 years agoFG_ to SG_ namespace changes.
curt [Fri, 23 Mar 2001 22:59:18 +0000 (22:59 +0000)]
FG_ to SG_ namespace changes.

23 years agoFG_ to SG_ name changes.
curt [Fri, 23 Mar 2001 22:42:49 +0000 (22:42 +0000)]
FG_ to SG_ name changes.

23 years agoFG_HAVE_STD_INCLUDES -> SG_HAVE_STD_INCLUDES
curt [Fri, 23 Mar 2001 22:15:19 +0000 (22:15 +0000)]
FG_HAVE_STD_INCLUDES -> SG_HAVE_STD_INCLUDES

23 years agoDavid Luff: I've put Phil's temperature correction back in since I'm not
curt [Thu, 22 Mar 2001 23:42:16 +0000 (23:42 +0000)]
David Luff: I've put Phil's temperature correction back in since I'm not
implicitly correcting for that yet.  The plane now makes it to 11000ft on
autopilot *slowly*.  I think I'll have to look at the prop parameters
next - altering the diameter and blade angle just slightly can have
quite an effect.  If you want to play then try changing the values
prop_diameter and blade_angle in FGNewEngine::init.  Keep blade
angle between 20 and 25 (since those are the only values for which
I've entered data and I interpolate between them) and ignore
FGProp1_Blade_Angle since that's an old variable that isn't used.  I
really ought to read all the engine and prop parameters from file to
avoid recompilation when tweaking !

23 years agoDavid Luff: Here is an update to the engine model. It now takes
curt [Thu, 22 Mar 2001 16:27:16 +0000 (16:27 +0000)]
David Luff:  Here is an update to the engine model.  It now takes
the actual air pressure and temperature from the LaRCSim model
instead of assuming that it is at sea level as before.  This has
reduced the ceiling from over 60000 ft to about 9000 ft.  This is a bit
low (should be around 13 - 14000 ft I think) but I still have some
stuff to do with the engine power correlation and its ignoring the
temperature at the moment so I'm not panicking yet :-)

I've also changed the mixture-power correlation to one from a
published paper since the curve from the IO360 manual seemed to
be a load of rubbish, and didn't have any numbers on the mixture
axis anyway.

I've also knocked the full rich mixture down a touch in line with
Riley Rainey's recommendation, and cleaned up the code a bit.

23 years agoInitial revision.
curt [Thu, 22 Mar 2001 04:19:12 +0000 (04:19 +0000)]
Initial revision.

23 years agoAdded support for reading ~/.fgfsrc.hostname files.
curt [Thu, 22 Mar 2001 04:02:11 +0000 (04:02 +0000)]
Added support for reading ~/.fgfsrc.hostname files.

23 years agoMSVC++ fixes.
curt [Wed, 21 Mar 2001 23:16:21 +0000 (23:16 +0000)]
MSVC++ fixes.

23 years agoMSVC fixes.
curt [Wed, 21 Mar 2001 23:10:15 +0000 (23:10 +0000)]
MSVC fixes.

23 years agoconfigure.in script changes:
curt [Tue, 20 Mar 2001 17:02:21 +0000 (17:02 +0000)]
configure.in script changes:
  - don't look for X11 libs if X11 isn't installed
  - add verbose "checking for audio ... no/yes" messages.

23 years agoFixed some problems with marker beacon range:
curt [Mon, 19 Mar 2001 13:56:19 +0000 (13:56 +0000)]
Fixed some problems with marker beacon range:
a) I was compairing feet vs. meter (making the range 3x too. big)
b) I was using the diameter in place of the radius (making the range an
   additional 2x too big.)
c) Updated the equation for calculating range to model the weak transmitter
   not being picked up at upper altitudes.

We still might need some additional tweaking, but I think we are starting to
get in the right ball park.

23 years agoJulian Foad: fixes to meters/feet confusion. (Also length of "--vNorth="
curt [Sat, 17 Mar 2001 21:06:43 +0000 (21:06 +0000)]
Julian Foad: fixes to meters/feet confusion.  (Also length of "--vNorth="
is 9 not 8.)  Note that the initial altitude setting was placing us way below
the ground, but as it doesn't seem to have caused us problems, it's probably
redundant!

23 years agoOops ...
curt [Sat, 17 Mar 2001 00:00:32 +0000 (00:00 +0000)]
Oops ...

23 years agoInitial support for marker beacons.
curt [Fri, 16 Mar 2001 23:59:02 +0000 (23:59 +0000)]
Initial support for marker beacons.

23 years agoFixes to not hide mouse in win32 (current implimentation caused too much
curt [Fri, 16 Mar 2001 23:58:31 +0000 (23:58 +0000)]
Fixes to not hide mouse in win32 (current implimentation caused too much
confusion.)

23 years agoInitial revision of mkrbeacons.[ch]xx
curt [Fri, 16 Mar 2001 23:57:38 +0000 (23:57 +0000)]
Initial revision of mkrbeacons.[ch]xx
Additions to query and report if we are over a marker beacon.

23 years agoMore tweaks to radio and sound.
curt [Fri, 16 Mar 2001 05:33:04 +0000 (05:33 +0000)]
More tweaks to radio and sound.

23 years agoTweaks to PLIB version detection.
curt [Wed, 14 Mar 2001 23:38:34 +0000 (23:38 +0000)]
Tweaks to PLIB version detection.

23 years agoMore tweaks to radios so we can listen to Nav2 and ADF as well.
curt [Wed, 14 Mar 2001 23:37:50 +0000 (23:37 +0000)]
More tweaks to radios so we can listen to Nav2 and ADF as well.
Fixed a bug which could make a station appear to be out of range when it isn't.
Expanded usable range to 1.3x times the FAA guaranteed service volume.

23 years agoRemoved ios::binary on file open.
curt [Wed, 14 Mar 2001 23:35:46 +0000 (23:35 +0000)]
Removed ios::binary on file open.

23 years agoChanged PLIB_IS_BROKEN define to a more benign sounded PLIB_1_2_X.
curt [Wed, 14 Mar 2001 23:35:11 +0000 (23:35 +0000)]
Changed PLIB_IS_BROKEN define to a more benign sounded PLIB_1_2_X.

23 years agoADF needle doesn't zero when it goes out of range.
curt [Wed, 14 Mar 2001 14:35:27 +0000 (14:35 +0000)]
ADF needle doesn't zero when it goes out of range.

23 years agoWorking on modeling more realistic VOR and ILS ranges.
curt [Wed, 14 Mar 2001 07:25:14 +0000 (07:25 +0000)]
Working on modeling more realistic VOR and ILS ranges.

23 years agoWorking on modeling VOR range as per AIM.
curt [Wed, 14 Mar 2001 01:31:04 +0000 (01:31 +0000)]
Working on modeling VOR range as per AIM.

23 years agoFixes to vor/ils/adf range pickup.
curt [Mon, 12 Mar 2001 15:07:49 +0000 (15:07 +0000)]
Fixes to vor/ils/adf range pickup.

23 years agoFixed a bug in radiostack->search() when switching freq. to a different
curt [Mon, 12 Mar 2001 13:42:32 +0000 (13:42 +0000)]
Fixed a bug in radiostack->search() when switching freq. to a different
station that has the same ident (i.e. from a vor to a ils as in EAU.)

23 years agoCleaned up a few things relating to playing morse audio vor/ils idents.
curt [Mon, 12 Mar 2001 12:40:18 +0000 (12:40 +0000)]
Cleaned up a few things relating to playing morse audio vor/ils idents.

23 years agoFixes from Erik Hofman for Mips Irix.
curt [Sat, 10 Mar 2001 20:58:47 +0000 (20:58 +0000)]
Fixes from Erik Hofman for Mips Irix.

23 years agoDon't play DME ident if no colocated DME.
curt [Sat, 10 Mar 2001 00:06:39 +0000 (00:06 +0000)]
Don't play DME ident if no colocated DME.

23 years agoPlay the full 4x VOR and 1x DME morse ident sequence at 30 second intervals.
curt [Fri, 9 Mar 2001 23:35:21 +0000 (23:35 +0000)]
Play the full 4x VOR and 1x DME morse ident sequence at 30 second intervals.
When you tune into a station start at a "random" point in the sequence.
Sped up the words per minute to 13 to which means one sequence per about 4 secs.
This means we get through the whole sequence in about 20 seconds leaving 10
seconds of silence.

23 years agoAttempt to detect and work around plib-1.2.0 audio bugs.
curt [Fri, 9 Mar 2001 20:17:54 +0000 (20:17 +0000)]
Attempt to detect and work around plib-1.2.0 audio bugs.

23 years agoWorking on vor audio ident (morse).
curt [Fri, 9 Mar 2001 02:41:04 +0000 (02:41 +0000)]
Working on vor audio ident (morse).
Fixed a bug in Network/props.cxx with the cd command.
Fixed a typo in options.cxx

23 years agoOpen C++ iostreams as ios::binary.
curt [Thu, 8 Mar 2001 02:34:27 +0000 (02:34 +0000)]
Open C++ iostreams as ios::binary.

23 years agoPatch from Tony so the FDM can trim out a specific starting location for a
curt [Tue, 6 Mar 2001 23:59:08 +0000 (23:59 +0000)]
Patch from Tony so the FDM can trim out a specific starting location for a
joystick input, and then will ignore the actual position of that input
until the user places it in the proper position to match the trimmed position.
At that point the joystick input captures control over the value and the
value will match the joystick position from then on.  This is primarily set
up so that the FDM can trim in an initial throttle position.

23 years agoAdded some sanity checking on max number of bottons and axes.
curt [Tue, 6 Mar 2001 23:03:06 +0000 (23:03 +0000)]
Added some sanity checking on max number of bottons and axes.

23 years agoUpdated version number.
curt [Tue, 6 Mar 2001 23:00:34 +0000 (23:00 +0000)]
Updated version number.

23 years agoUpdates from Julian Foad <julianfoad@netscapeonline.co.uk>
curt [Tue, 6 Mar 2001 22:59:36 +0000 (22:59 +0000)]
Updates from Julian Foad <julianfoad@netscapeonline.co.uk>

23 years agoTweaks for Mips Irix compilers.
curt [Tue, 6 Mar 2001 22:36:59 +0000 (22:36 +0000)]
Tweaks for Mips Irix compilers.

23 years agoAdded a quick lookup table for texture dimensions.
curt [Tue, 6 Mar 2001 19:35:56 +0000 (19:35 +0000)]
Added a quick lookup table for texture dimensions.

23 years agoA small patch (a few lines) to add a --file option to
curt [Tue, 6 Mar 2001 19:11:28 +0000 (19:11 +0000)]
A small patch (a few lines) to add a --file option to
FlightGear, a long-standing request from Norm, and to get the UIUC
--aircraft-dir option working again.

23 years agoOoops, missed adding this the first time.
curt [Tue, 6 Mar 2001 00:51:58 +0000 (00:51 +0000)]
Ooops, missed adding this the first time.

23 years agoReshuffled some of the sound code and created a "src/Sound" subdirectory.
curt [Mon, 5 Mar 2001 22:54:20 +0000 (22:54 +0000)]
Reshuffled some of the sound code and created a "src/Sound" subdirectory.

23 years agoMore work on morse code ...
curt [Mon, 5 Mar 2001 14:11:25 +0000 (14:11 +0000)]
More work on morse code ...

23 years agoContinued work on morse code generator.
curt [Mon, 5 Mar 2001 12:09:36 +0000 (12:09 +0000)]
Continued work on morse code generator.

23 years agoAdded beginnings of a morse code sound clip manager.
curt [Mon, 5 Mar 2001 03:13:47 +0000 (03:13 +0000)]
Added beginnings of a morse code sound clip manager.

23 years agoFixed a couple property manager typos.
curt [Sat, 3 Mar 2001 00:04:03 +0000 (00:04 +0000)]
Fixed a couple property manager typos.

23 years agoFixes to initial position for JSBSim.
curt [Sat, 3 Mar 2001 00:03:42 +0000 (00:03 +0000)]
Fixes to initial position for JSBSim.

23 years agoOops, forgot to take out -lsgmetar
curt [Fri, 2 Mar 2001 23:28:51 +0000 (23:28 +0000)]
Oops, forgot to take out -lsgmetar

23 years agoTony's patches to allow you to position yourself at an offset from the
curt [Fri, 2 Mar 2001 23:27:22 +0000 (23:27 +0000)]
Tony's patches to allow you to position yourself at an offset from the
default location (i.e. end of the runway.)  This allows you to start
up on final and things like that.

23 years agoUpdated comments.
curt [Fri, 2 Mar 2001 22:54:10 +0000 (22:54 +0000)]
Updated comments.

23 years agoAdded a first pass at a C++ sound manager class.
curt [Fri, 2 Mar 2001 22:37:01 +0000 (22:37 +0000)]
Added a first pass at a C++ sound manager class.

23 years agoContributed by Dave Luff:
curt [Thu, 1 Mar 2001 16:32:29 +0000 (16:32 +0000)]
Contributed by Dave Luff:

Added fuel-flow and total fuel to the LaRCSim model.  Its still a bit
rough for now but it works, except the engine dosn't stop when fuel runs
out at the moment since there's no refuelling capability in the sim just
now.  It takes about 4 gallons use before you see the fuel guages begin
to drop since there's 28 gal per tank but the guages go to 26.

23 years agoSome error checking and an xml dump routine contributed by Norman Vine.
curt [Wed, 28 Feb 2001 19:48:18 +0000 (19:48 +0000)]
Some error checking and an xml dump routine contributed by Norman Vine.

23 years agoBackcourse ILS needle should move correct direction now.
curt [Tue, 27 Feb 2001 23:52:52 +0000 (23:52 +0000)]
Backcourse ILS needle should move correct direction now.

23 years agoLots of little tweaks to autopilot to make it more realistic.
curt [Tue, 27 Feb 2001 23:17:58 +0000 (23:17 +0000)]
Lots of little tweaks to autopilot to make it more realistic.

23 years agoFixed a problem with autodetecting if we need to draw our own mouse cursor
curt [Mon, 26 Feb 2001 13:58:33 +0000 (13:58 +0000)]
Fixed a problem with autodetecting if we need to draw our own mouse cursor
on voodoo-1/2 cards.

23 years agoAutopilot in nav1 tracking mode bases heading off of desired radial not
curt [Sun, 25 Feb 2001 18:03:11 +0000 (18:03 +0000)]
Autopilot in nav1 tracking mode bases heading off of desired radial not
current radial.

23 years agoFixed a typo preventing the nav2 heading needle from moving.
curt [Sun, 25 Feb 2001 16:26:48 +0000 (16:26 +0000)]
Fixed a typo preventing the nav2 heading needle from moving.
DG heading bug initializes to a random setting.
Activating heading hold doesn't touch the DG heading bug any more.
Max autopilot decent rate is now -1000.

23 years agoAutopilot in Nav1 heading hold mode is now driven just from needle position.
curt [Sun, 25 Feb 2001 05:42:34 +0000 (05:42 +0000)]
Autopilot in Nav1 heading hold mode is now driven just from needle position.

23 years agoTweaks relating to autopilot heading hold.
curt [Sun, 25 Feb 2001 04:45:26 +0000 (04:45 +0000)]
Tweaks relating to autopilot heading hold.
Working on better modeling of nav radio needles.

23 years agoAutopilot fixes so when in NAV1 radial hold mode we can now fly the FROM
curt [Sat, 24 Feb 2001 13:51:48 +0000 (13:51 +0000)]
Autopilot fixes so when in NAV1 radial hold mode we can now fly the FROM
radial and we can properly fly "through" a VOR station.

23 years agoAdded support for managing fov via the property manager so the --fov= option
curt [Fri, 23 Feb 2001 22:25:03 +0000 (22:25 +0000)]
Added support for managing fov via the property manager so the --fov= option
can work again.
Removed a bit of debugging output when reading "native" IO input.

23 years agoChanges to make the default autopilot heading hold work much more like a C172
curt [Wed, 7 Feb 2001 04:16:12 +0000 (04:16 +0000)]
Changes to make the default autopilot heading hold work much more like a C172
DG heading hold (i.e. it will follow the gyro drift.)

23 years agoFix a problem with external views where the sky lighting was calculated
curt [Fri, 2 Feb 2001 23:15:03 +0000 (23:15 +0000)]
Fix a problem with external views where the sky lighting was calculated
in reverse.

23 years agoFixes to get back support for Voodoo-1/2 cards and the voodoo-in-a-window
curt [Fri, 2 Feb 2001 22:39:13 +0000 (22:39 +0000)]
Fixes to get back support for Voodoo-1/2 cards and the voodoo-in-a-window
hack.

23 years agoDavid Luff writes:
curt [Fri, 2 Feb 2001 20:55:41 +0000 (20:55 +0000)]
David Luff writes:
Basically I've rewritten the prop model along similar lines to how
Jon has done his - using published efficiency and coefficient of
power data.  It works *much* better - try pulling the throttle back
to idle and putting the plane into a dive before and after updating
and you'll see what I mean.  It doesn't require a fudge factor either
:-)

23 years agoOops for specified magvars, I had the sign backwards.
curt [Fri, 2 Feb 2001 17:44:16 +0000 (17:44 +0000)]
Oops for specified magvars, I had the sign backwards.

23 years agoWorking on ironing out issues with VOR navigation. It think we are "as
curt [Fri, 2 Feb 2001 05:25:45 +0000 (05:25 +0000)]
Working on ironing out issues with VOR navigation.  It think we are "as
good as we can get" until we find a data source with actual VOR magnetic
offsets.  We can use VOR offsets from some fixed date, but not all VOR's
were installed on the same day so no matter what date we pick we will be off on most of them.

23 years agoWorking on straightening out VOR navigation.
curt [Fri, 2 Feb 2001 02:55:07 +0000 (02:55 +0000)]
Working on straightening out VOR navigation.

23 years agoUse double math throughout.
curt [Wed, 31 Jan 2001 23:07:20 +0000 (23:07 +0000)]
Use double math throughout.

23 years agoTweaks ...
curt [Wed, 31 Jan 2001 23:04:52 +0000 (23:04 +0000)]
Tweaks ...

23 years agoAdded a test-up program to test the concept of "up".
curt [Wed, 31 Jan 2001 22:57:22 +0000 (22:57 +0000)]
Added a test-up program to test the concept of "up".

23 years agoAdded a specific "altas" format for output which includes a proprietary string
curt [Wed, 31 Jan 2001 22:21:36 +0000 (22:21 +0000)]
Added a specific "altas" format for output which includes a proprietary string
to convey the radio stack settings.

23 years agoInitial revision of atlas.cxx atlas.hxx
curt [Wed, 31 Jan 2001 21:57:55 +0000 (21:57 +0000)]
Initial revision of atlas.cxx atlas.hxx

23 years agoFixed --enable-freeze.
curt [Wed, 31 Jan 2001 15:59:16 +0000 (15:59 +0000)]
Fixed --enable-freeze.

23 years agoProperly close our database file ...
curt [Wed, 31 Jan 2001 15:58:53 +0000 (15:58 +0000)]
Properly close our database file ...

23 years agoReduce spurious output from joystick.cxx
curt [Mon, 29 Jan 2001 15:14:12 +0000 (15:14 +0000)]
Reduce spurious output from joystick.cxx
Fix a typo in JSBSim.cxx (#endif in wrong place)

23 years agoAdded a GUI vec3 pilot offset control contributed by Norman Vine.
curt [Mon, 29 Jan 2001 05:08:00 +0000 (05:08 +0000)]
Added a GUI vec3 pilot offset control contributed by Norman Vine.