]> git.mxchange.org Git - flightgear.git/log
flightgear.git
22 years agoFurther restructuring of the scenery loading code.
curt [Sun, 3 Mar 2002 23:20:55 +0000 (23:20 +0000)]
Further restructuring of the scenery loading code.

22 years agoAdded write-all parameter to save command. If set to true, the
david [Sun, 3 Mar 2002 22:48:40 +0000 (22:48 +0000)]
Added write-all parameter to save command.  If set to true, the
command will save *all* properties, rather than just those marked as
archivable.  This feature was requested by Tony Peden to make it
easier to write documentation on the properties, but it should also be
useful for debugging.  There is currently no default binding for the
command with the write-all parameter set to true.

22 years agoAdded final newline to prevent compiler warnings.
david [Sun, 3 Mar 2002 22:47:06 +0000 (22:47 +0000)]
Added final newline to prevent compiler warnings.

22 years agoUpdates to the scenery loading infrastructure to make it more flexible,
curt [Sun, 3 Mar 2002 20:29:31 +0000 (20:29 +0000)]
Updates to the scenery loading infrastructure to make it more flexible,
clean up some messiness, and lay more groundwork for runway lighting.

22 years agoAdded magnetos and starter to structure
curt [Sun, 3 Mar 2002 20:27:56 +0000 (20:27 +0000)]
Added magnetos and starter to structure

22 years agoErik Hofman's documentation for sound configuration, updated and moved
david [Sun, 3 Mar 2002 02:07:21 +0000 (02:07 +0000)]
Erik Hofman's documentation for sound configuration, updated and moved
from the base package.

22 years agoLogging cleanups from Martin Dressler.
david [Sun, 3 Mar 2002 00:38:56 +0000 (00:38 +0000)]
Logging cleanups from Martin Dressler.

22 years agoVirtual cockpit patches from Andy Ross:
david [Sun, 3 Mar 2002 00:06:24 +0000 (00:06 +0000)]
Virtual cockpit patches from Andy Ross:

What the attached patch does is map your panel definition onto a (non
z-buffered) quad in front of your face.  You can twist the view around
and see it move in the appropriate ways.

Apply the patch (let me know if folks need help with that step), and
then set the /sim/virtual-cockpit property to true.  You can do this
on the command line with --prop:/sim/virtual-cockpit=1, or via the
property picker.  Bind it to a key for fast toggling if you like.

The default bindings don't allow for "panning" the view, so you'll
have to modify yours.  These are the mappings to my joystick's hat
switch, for those who need hints:

   <axis n="6">
    <desc>View Direction</desc>
    <low>
     <repeatable>true</repeatable>
     <binding>
      <command>property-adjust</command>
      <property>/sim/view/goal-offset-deg</property>
      <step type="double">1.0</step>
     </binding>
    </low>
    <high>
     <repeatable>true</repeatable>
     <binding>
      <command>property-adjust</command>
      <property>/sim/view/goal-offset-deg</property>
      <step type="double">-1.0</step>
     </binding>
    </high>
   </axis>

   <axis n="7">
    <desc>View Elevation</desc>
    <low>
     <repeatable>true</repeatable>
     <binding>
      <command>property-adjust</command>
      <property>/sim/view/goal-tilt-deg</property>
      <step type="double">1.0</step>
     </binding>
    </low>
    <high>
     <repeatable>true</repeatable>
     <binding>
      <command>property-adjust</command>
      <property>/sim/view/goal-tilt-deg</property>
      <step type="double">-1.0</step>
     </binding>
    </high>
   </axis>

While the current implementation is happy with just plastering the
panel's notion of "screen" into the 3D world, this is actually more
general.  Each panel can, in principle, have it's own coordinate
system, and you could build a cockpit out of a bunch of them.  The
mapping is specified by providing a 3D coordinate for three corners of
the quad the panel should be mapped to; this should be pretty simple
to work with.

All that's needed for a perfectly general solution is a convention on
where to store the information (a cockpit xml file, or put it in the
aircraft -set file, or...), and some work on the panel's coordinate
system conventions (some of which don't coexist very nicely with a
generalized 3D environment).  Combine that with a plib model for the
non-panel interior of the cockpit, and we're golden.

I'm actually really pleased with this.  It worked better and more
quickly than I could have imagined, and impact on the surrounding code
is quite light -- a few property tests only.  But some stuff is still
missing:

+ No equivalent work was done to the HUD, so it still displays
   incorrect headings when the view changes.  The use of pixel
   coordinates deep in the HUD code is going to give me fits doing the
   port, I sure.  It's not nearly so well put together as the panel
   (where I just changed the setup code -- none of the rendering code
   changed at all).

+ I forgot that the panel was clickable. :)  Input events still have
   the screen coordinates, which essentially kills the interactivity
   when in virtual cockpit mode.  This won't be hard to fix; it's only
   broken because I forgot the feature existed.

And one note about the implementation choice: to get away from the
inevitable near clip plane issue, the virtual cockpit renderer simply
disables the z buffer.  This means that cockpits built using these
panels need to be z-sorted, which isn't too hard since they are static
geometry.  It also means that no two "virtual panels" can ever be
allowed to interpenetrate.  No biggie.

22 years agoFor property-scale, apply the squared option before factor, etc.
david [Sat, 2 Mar 2002 19:40:26 +0000 (19:40 +0000)]
For property-scale, apply the squared option before factor, etc.

22 years agoAdded min/max parameters to clamp range of movement. These are
david [Sat, 2 Mar 2002 16:07:42 +0000 (16:07 +0000)]
Added min/max parameters to clamp range of movement.  These are
actually very powerful when combined with factor and offset -- for
example, on the C310 model the nose wheel can now retract completely
before the doors start closing.

22 years agoFixed gear position property.
tony [Fri, 1 Mar 2002 20:56:15 +0000 (20:56 +0000)]
Fixed gear position property.

22 years agoSetting up some more ground work for lighting.
curt [Fri, 1 Mar 2002 18:08:30 +0000 (18:08 +0000)]
Setting up some more ground work for lighting.

22 years agoAttached is a reasonably large patch to add a proper ATC
curt [Fri, 1 Mar 2002 17:39:52 +0000 (17:39 +0000)]
Attached is a reasonably large patch to add a proper ATC
subsystem to Flightgear.  No more functionality is implemented
than at present (apart from an ATIS bug-fix - station wouldn't
change if the radio was switched directly from one station to
another) but it is much neater than the current hack and should be
easily extendable.

Some cruft is still probably left over in radiostack.[ch]xx such as
the bindings to the comm frequencies but I'll leave removing those
until I'm sure they're not needed there.

22 years agoThis is the change where autopilot bindings are moved from fg_props.cxx to
curt [Fri, 1 Mar 2002 16:54:50 +0000 (16:54 +0000)]
This is the change where autopilot bindings are moved from fg_props.cxx to
newauto.cxx.  Basically everything is the same functionally except for a
changed in the initial altitude setting to 3000ft instead of meters (the panel
is in feet).

22 years agoChanged -pct properties to -norm
tony [Fri, 1 Mar 2002 12:38:37 +0000 (12:38 +0000)]
Changed -pct properties to -norm

22 years agoAdded a property output feature to ControlMap that allows arbitrary binding
andy [Fri, 1 Mar 2002 06:47:28 +0000 (06:47 +0000)]
Added a property output feature to ControlMap that allows arbitrary binding
and scaling of control values to properties.  Also added a time interpolation
feature that replaces the hacked-in "retract-time" feature for the gear in
a more general way (applicable to flaps, too!).  Incompatibly breaks
the XML syntax; get new files!

22 years agoLatest version of hitlist.cxx from Norman Vine:
curt [Thu, 28 Feb 2002 23:59:28 +0000 (23:59 +0000)]
Latest version of hitlist.cxx from Norman Vine:
- Addresses some ot the recent profiling results.
- Added a 'lazy evaluation' in IntersectBranch and inlined a couple
  of HEAVILY called functions.

22 years agoCopy normalized control surface positions to property tree
tony [Thu, 28 Feb 2002 13:32:40 +0000 (13:32 +0000)]
Copy normalized control surface positions to property tree

22 years agoAdd support for normalized control surface positions and right and left ailerons
tony [Thu, 28 Feb 2002 13:31:56 +0000 (13:31 +0000)]
Add support for normalized control surface positions and right and left ailerons

22 years agoAdd support for normalized control surface positions
tony [Thu, 28 Feb 2002 13:30:25 +0000 (13:30 +0000)]
Add support for normalized control surface positions

22 years agoA few of Norman's changes I managed to get in.
curt [Thu, 28 Feb 2002 00:10:35 +0000 (00:10 +0000)]
A few of Norman's changes I managed to get in.
Added support for arrays of points (in addition to various forms of triangles)

22 years agoA single transformation can now be applied to more than one object by
david [Wed, 27 Feb 2002 20:32:24 +0000 (20:32 +0000)]
A single transformation can now be applied to more than one object by
including multiple <object-name> entries.

22 years agoMake sure when setting autopilot heading via the menu that the current
curt [Wed, 27 Feb 2002 18:05:17 +0000 (18:05 +0000)]
Make sure when setting autopilot heading via the menu that the current
heading value is presented between 0 and 360.

22 years agoMajor sound-effect architectural reworking from Eric Hofman, allowing
david [Wed, 27 Feb 2002 15:13:58 +0000 (15:13 +0000)]
Major sound-effect architectural reworking from Eric Hofman, allowing
individual aircraft to have different sounds (and cleaning up my code
a fair bit).  The most important user-visible change is the renaming
of the /sim/sound property to /sim/sound/audible.

22 years agoIgnore gmon.out, in case people are doing profiling runs.
david [Wed, 27 Feb 2002 14:59:04 +0000 (14:59 +0000)]
Ignore gmon.out, in case people are doing profiling runs.

22 years agoPatch from Andy Ross to sort properties in browser.
david [Wed, 27 Feb 2002 14:58:18 +0000 (14:58 +0000)]
Patch from Andy Ross to sort properties in browser.

22 years ago- added an 'offset' parameter for animations (it's applied before
david [Wed, 27 Feb 2002 12:46:38 +0000 (12:46 +0000)]
- added an 'offset' parameter for animations (it's applied before
  'factor')

- incorporated changes from Norman Vine to avoid expensive matrix
  operations

22 years agoWrong sense in the pilot acceleration coordinates (or maybe it's a panel
andy [Wed, 27 Feb 2002 08:24:37 +0000 (08:24 +0000)]
Wrong sense in the pilot acceleration coordinates (or maybe it's a panel
bug?  I'm not sure what points where anymore).

22 years agoAdded a post-solver "initEngines()" call to return the engines to a sane
andy [Wed, 27 Feb 2002 00:41:57 +0000 (00:41 +0000)]
Added a post-solver "initEngines()" call to return the engines to a sane
initial state.  No more starting up at cruise RPM.

22 years agoBasically complete support for piston engine startup, including power loss
andy [Wed, 27 Feb 2002 00:18:57 +0000 (00:18 +0000)]
Basically complete support for piston engine startup, including power loss
due to single-magneto operation.  Seems to work.

22 years agoTrimming in turn now works
tony [Tue, 26 Feb 2002 22:28:41 +0000 (22:28 +0000)]
Trimming in turn now works

22 years agoOutput control positions to properties
tony [Tue, 26 Feb 2002 22:27:42 +0000 (22:27 +0000)]
Output control positions to properties

22 years agoAdded rotation animations, and a factor parameter for scaling.
david [Tue, 26 Feb 2002 14:30:04 +0000 (14:30 +0000)]
Added rotation animations, and a factor parameter for scaling.

22 years agoStarted support for animations. Currently, the only supported type
david [Tue, 26 Feb 2002 00:10:06 +0000 (00:10 +0000)]
Started support for animations.  Currently, the only supported type
(other than "none") is "spin", which must be tied to a property giving
a value in RPM.  This gets the DC-3 propellers turning.  The next type
will be "rotation", which will allow the flaps, elevators, ailerons,
and rudders to move (and even gear, eventually).  Later, I'll add
"shift" for sliding things around, and will figure something out for
blinking lights.

22 years agoIf the model path specified ends with .xml, then read properties from
david [Mon, 25 Feb 2002 20:07:34 +0000 (20:07 +0000)]
If the model path specified ends with .xml, then read properties from
the XML file, including the path to the 3D file.

This change obsoletes the existing /sim/model/*-offset-deg and
/sim/model/*-offset-m properties in the main property tree, and
replaces them with /offsets/*-deg and /offsets/*-m in the model
property file.  The /path property in the model XML file is relative
to the XML file's location rather than FG_ROOT.

22 years agoMoved JSBSim.hxx to src/FDM/JSBSim/
curt [Mon, 25 Feb 2002 03:22:03 +0000 (03:22 +0000)]
Moved JSBSim.hxx to src/FDM/JSBSim/

22 years agoRemoved JSBSim/tests
curt [Mon, 25 Feb 2002 00:07:05 +0000 (00:07 +0000)]
Removed JSBSim/tests

22 years agoWorkaround for terrain altitude problem. Helps but doesn't work 100%
tony [Sun, 24 Feb 2002 21:56:38 +0000 (21:56 +0000)]
Workaround for terrain altitude problem.  Helps but doesn't work 100%

22 years agoRemoved orphaned 10520d engine modeling code. Thanks goes to Phil
curt [Sun, 24 Feb 2002 21:41:02 +0000 (21:41 +0000)]
Removed orphaned 10520d engine modeling code.  Thanks goes to Phil
Schubert for getting the ball rolling with engine modeling in
flightgear.  The existing engine modeling code is derived from
his initial efforts.

22 years agoFixed crash when using 3D model other than the C172.
david [Sun, 24 Feb 2002 21:14:38 +0000 (21:14 +0000)]
Fixed crash when using 3D model other than the C172.

22 years agoMoved to tests subdirectory.
curt [Sun, 24 Feb 2002 21:01:11 +0000 (21:01 +0000)]
Moved to tests subdirectory.

22 years agoMoved to JSBSim subdirectory.
curt [Sun, 24 Feb 2002 20:54:23 +0000 (20:54 +0000)]
Moved to JSBSim subdirectory.

22 years agoMoved JSBSim.cxx and JSBSim.hxx into src/FDM/JSBSim subdirectory
curt [Sun, 24 Feb 2002 20:53:46 +0000 (20:53 +0000)]
Moved JSBSim.cxx and JSBSim.hxx into src/FDM/JSBSim subdirectory
(similar to how YASim is setup.)

22 years agoSeparated 3D model-handling code from main.cxx out into its own
david [Sat, 23 Feb 2002 21:20:00 +0000 (21:20 +0000)]
Separated 3D model-handling code from main.cxx out into its own
subsystem, FGAircraftModel.

22 years agoAdded an #ifdef for compiling without --with-new-environment. Thanks
david [Sat, 23 Feb 2002 04:50:47 +0000 (04:50 +0000)]
Added an #ifdef for compiling without --with-new-environment.  Thanks
to Tony Peden for the catch.

22 years agoGeneral cleanups to cut cross-dependencies and speed up compilation.
david [Fri, 22 Feb 2002 23:37:45 +0000 (23:37 +0000)]
General cleanups to cut cross-dependencies and speed up compilation.

Added two new properties:

  /environment/temperature-sea-level-degc
  /environment/pressure-sea-level-inhg

These are now supported in FGEnvironment as well, though they always
have the same value for now.  They need to be hooked up to the FDMs.

22 years agoAdded FGEnvironmentMgr to provide information on the environment in
david [Fri, 22 Feb 2002 22:51:34 +0000 (22:51 +0000)]
Added FGEnvironmentMgr to provide information on the environment in
different locations, and hitched it into FGGlobals.  FGEnvironmentMgr
has taken over as the subsystem, while FGEnvironment is simple the
information that it returns.  I've removed current_environment
completely -- everything now uses properties or goes through
FGGlobals.  FGGlobals itself has a couple of useful methods:

  const FGEnvironment * get_environment ();
  const FGEnvironment * get_environment (double lat, double lon, double alt);

The first one returns the environment data for the plane's current
position, while the second returns the environment data for any
arbitrary location.  Currently, they both return the same information,
but that will change soon.

22 years agoFix a big where the initial ground elevation reported could be bogus
curt [Fri, 22 Feb 2002 20:20:23 +0000 (20:20 +0000)]
Fix a big where the initial ground elevation reported could be bogus
(initialization order problem.)

22 years agoAdds flap cmd and pos to output
tony [Fri, 22 Feb 2002 13:27:19 +0000 (13:27 +0000)]
Adds flap cmd and pos to output

22 years agoAdded parameter for abs value of elevator, rudder, and aileron positions
tony [Fri, 22 Feb 2002 13:26:31 +0000 (13:26 +0000)]
Added parameter for abs value of elevator, rudder, and aileron positions

22 years agoCorrected typo that was hiding winds from FDM's unless configured with
david [Wed, 20 Feb 2002 22:58:42 +0000 (22:58 +0000)]
Corrected typo that was hiding winds from FDM's unless configured with
--with-new-environment.

22 years agoAdded Tony's function to set position on a glide slope.
curt [Wed, 20 Feb 2002 16:56:44 +0000 (16:56 +0000)]
Added Tony's function to set position on a glide slope.

22 years agoMinor mixup. Engines that are off have a manifold pressure equal to
andy [Wed, 20 Feb 2002 07:15:12 +0000 (07:15 +0000)]
Minor mixup.  Engines that are off have a manifold pressure equal to
ambient, not to _rho0, which is the air density of the "calibration
environment" (typically sea level).

22 years agoAutomatically generate "contact" points for collision detection. Implemented
andy [Wed, 20 Feb 2002 07:12:27 +0000 (07:12 +0000)]
Automatically generate "contact" points for collision detection.  Implemented
as extra (and invisible) gear objects.

22 years agoScaling "idle" MP to 6 inches or so is all well and good, but not if
andy [Wed, 20 Feb 2002 07:10:58 +0000 (07:10 +0000)]
Scaling "idle" MP to 6 inches or so is all well and good, but not if
the engine continues to develop 20% power.  Rescale the output power
accordingly, so idling aircraft stay put.

22 years agoForgot to include the wind when computing airspeed. Big oops.
andy [Wed, 20 Feb 2002 07:09:21 +0000 (07:09 +0000)]
Forgot to include the wind when computing airspeed.  Big oops.

22 years agoSupport a "skid" property for non-rolling gear objects like tail skids.
andy [Wed, 20 Feb 2002 07:08:33 +0000 (07:08 +0000)]
Support a "skid" property for non-rolling gear objects like tail skids.

22 years agoAdded minimal support for magnetos, so that engines can be shut off.
david [Wed, 20 Feb 2002 04:27:22 +0000 (04:27 +0000)]
Added minimal support for magnetos, so that engines can be shut off.
The starter isn't working yet, so the engine just springs to life.

22 years agoFixed runway-altitude problem that prevented starts at airports higher
david [Wed, 20 Feb 2002 00:20:13 +0000 (00:20 +0000)]
Fixed runway-altitude problem that prevented starts at airports higher
than sea-level.

22 years agoAdded a new 'squared' subproperty for axis bindings.
david [Tue, 19 Feb 2002 23:54:47 +0000 (23:54 +0000)]
Added a new 'squared' subproperty for axis bindings.

22 years agoAttempt to merge LED font patches back in (they were wiped out by
david [Tue, 19 Feb 2002 23:54:17 +0000 (23:54 +0000)]
Attempt to merge LED font patches back in (they were wiped out by
Jim's tiled-background patches).

22 years agoTiled panel background support from Jim Wilson.
david [Tue, 19 Feb 2002 21:57:09 +0000 (21:57 +0000)]
Tiled panel background support from Jim Wilson.

22 years agoFurther tweaks for the new environment subsystem.
david [Tue, 19 Feb 2002 16:25:38 +0000 (16:25 +0000)]
Further tweaks for the new environment subsystem.

22 years agoRemove obsolete FGWeather subsystem.
david [Tue, 19 Feb 2002 15:19:21 +0000 (15:19 +0000)]
Remove obsolete FGWeather subsystem.

22 years agoInitial take of new environment subsystem. Configure with
david [Tue, 19 Feb 2002 15:16:08 +0000 (15:16 +0000)]
Initial take of new environment subsystem.  Configure with
--use-new-environment to active it.

22 years agoInitial take of new environment subsystem. Configure with
david [Tue, 19 Feb 2002 14:21:19 +0000 (14:21 +0000)]
Initial take of new environment subsystem.  Configure with
--use-new-environment to active it.

22 years agoMinor, miscellaneous stuff ...
curt [Tue, 19 Feb 2002 04:34:18 +0000 (04:34 +0000)]
Minor, miscellaneous stuff ...

22 years agoAdd support for multiple panel fonts (specifically an LED font.)
curt [Tue, 19 Feb 2002 03:42:16 +0000 (03:42 +0000)]
Add support for multiple panel fonts (specifically an LED font.)

22 years agoFirst steps in a weather reorganization. Note especially that
david [Tue, 19 Feb 2002 01:26:44 +0000 (01:26 +0000)]
First steps in a weather reorganization.  Note especially that
properties have been renamed from wind-(north|east|down)-fps to
wind-from-(north|east|down)-fps, and the FDMs modified appropriately.
No other changes should be visible unless FG_OLD_WEATHER is defined.

22 years agoCorrected wind, so that properties give the FROM direction for all
david [Mon, 18 Feb 2002 19:33:18 +0000 (19:33 +0000)]
Corrected wind, so that properties give the FROM direction for all
FDMs, and the --wind option takes the direction *from* which the wind
is blowing.

22 years agoPatches from Tony Peden:
david [Mon, 18 Feb 2002 19:18:51 +0000 (19:18 +0000)]
Patches from Tony Peden:

Attached are patches for adding the command line options to set initial
glideslope and climb rate. This was really easy to do as all the pieces
were in place.  It works well with JSBSim because the trimming routine
finds the right throttle and elevator settings. It should work with
LaRCsim as well, but it has no trimming routine so there will be some
dynamics at startup.  I don't know what YASim will do.

22 years agoChanges from Tony Peden to fix reinit crashes (and eliminate the force
david [Sun, 17 Feb 2002 21:05:27 +0000 (21:05 +0000)]
Changes from Tony Peden to fix reinit crashes (and eliminate the force
altitude function).

22 years agoLatest JSBSim changes.
david [Sun, 17 Feb 2002 21:04:44 +0000 (21:04 +0000)]
Latest JSBSim changes.

22 years agoFinally 0.7.9 tweaks.
curt [Sat, 16 Feb 2002 17:40:34 +0000 (17:40 +0000)]
Finally 0.7.9 tweaks.

22 years agoBe more robust when FlightGear changes it's mind about the local ground
curt [Sat, 16 Feb 2002 17:38:29 +0000 (17:38 +0000)]
Be more robust when FlightGear changes it's mind about the local ground
elevation.

22 years ago- Removed redundant FG*:: qualifications from class members
curt [Fri, 15 Feb 2002 22:00:49 +0000 (22:00 +0000)]
- Removed redundant FG*:: qualifications from class members
- Fixed comparisons between signed and unsigned ints

22 years agoUpdate Norman's entry.
curt [Fri, 15 Feb 2002 06:37:10 +0000 (06:37 +0000)]
Update Norman's entry.

22 years agoFixed description of the --time-offset option.
curt [Thu, 14 Feb 2002 03:57:22 +0000 (03:57 +0000)]
Fixed description of the --time-offset option.

22 years agoJSBSim fix for FreeBSD.
david [Wed, 13 Feb 2002 23:57:49 +0000 (23:57 +0000)]
JSBSim fix for FreeBSD.

22 years agoCorrected typo ("Celsius" rather than "Celcius") and added to cast to
david [Wed, 13 Feb 2002 23:57:31 +0000 (23:57 +0000)]
Corrected typo ("Celsius" rather than "Celcius") and added to cast to
avoid a compiler warning.

22 years agoFixed an email address.
curt [Wed, 13 Feb 2002 22:25:16 +0000 (22:25 +0000)]
Fixed an email address.

22 years agoEnsure that initial engine settings are copied over.
david [Wed, 13 Feb 2002 20:51:57 +0000 (20:51 +0000)]
Ensure that initial engine settings are copied over.

22 years agoThis is a three line fix for some inconsistancies between the gui dialogs and
curt [Wed, 13 Feb 2002 20:12:31 +0000 (20:12 +0000)]
This is a three line fix for some inconsistancies between the gui dialogs and
the panel controls for the autopilot.  The heading dialog would only show the
last setting you did through it, even if it was later tweaked with the bug on
the hsi.  The altitude dialog did a similar thing.  Now the values default to
the same that show on the panel displays.

22 years agoReset "/sim/startup/time-offset-type" when specifying "--time-offset" in
curt [Wed, 13 Feb 2002 19:41:05 +0000 (19:41 +0000)]
Reset "/sim/startup/time-offset-type" when specifying "--time-offset" in
case some other conflicting option has set this to something else.

22 years agoCleaned up a few stray cout's
curt [Wed, 13 Feb 2002 18:17:04 +0000 (18:17 +0000)]
Cleaned up a few stray cout's

22 years agoFixed an if statement typo.
curt [Wed, 13 Feb 2002 17:43:01 +0000 (17:43 +0000)]
Fixed an if statement typo.

22 years agoUpdated Cameron's entry.
curt [Wed, 13 Feb 2002 17:39:13 +0000 (17:39 +0000)]
Updated Cameron's entry.

22 years ago0.7.9pre2 changes.
curt [Wed, 13 Feb 2002 16:03:54 +0000 (16:03 +0000)]
0.7.9pre2 changes.

22 years agoLatest JSBSim fixes, including Dave Luff's mixture improvements for
david [Wed, 13 Feb 2002 14:35:10 +0000 (14:35 +0000)]
Latest JSBSim fixes, including Dave Luff's mixture improvements for
the JSBSim piston-engine model.

22 years agoSeveral updates.
curt [Wed, 13 Feb 2002 03:11:16 +0000 (03:11 +0000)]
Several updates.

22 years agoOops fixed one small mistake from the last fix.
curt [Wed, 13 Feb 2002 02:46:01 +0000 (02:46 +0000)]
Oops fixed one small mistake from the last fix.

22 years agoAdded a clock freeze option (/sim/freeze/clock). This can be specified
curt [Wed, 13 Feb 2002 02:37:44 +0000 (02:37 +0000)]
Added a clock freeze option (/sim/freeze/clock).  This can be specified
via the command line (--enable-clock-freeze / --disable-clock-freeze)
and can be toggled during a run.  However this property is not currently
bound to any menu or keystroke so you have to do it via the gui property
interface or externally via the web property browser or a script.

22 years agoAdded .hpp files to Makefile.am so they will be automatically included
curt [Tue, 12 Feb 2002 23:44:15 +0000 (23:44 +0000)]
Added .hpp files to Makefile.am so they will be automatically included
in the tarball distributions.

22 years agoUpdates ...
curt [Tue, 12 Feb 2002 22:49:56 +0000 (22:49 +0000)]
Updates ...

22 years agoInitial changelog for 0.7.9
curt [Tue, 12 Feb 2002 22:36:42 +0000 (22:36 +0000)]
Initial changelog for 0.7.9

22 years agoMake code a bit more explicit.
curt [Tue, 12 Feb 2002 22:27:57 +0000 (22:27 +0000)]
Make code a bit more explicit.

22 years agoConverted a cout to SG_LOG()
curt [Tue, 12 Feb 2002 16:36:25 +0000 (16:36 +0000)]
Converted a cout to SG_LOG()

22 years agoEnable audio support for MSVC builds.
curt [Tue, 12 Feb 2002 16:12:52 +0000 (16:12 +0000)]
Enable audio support for MSVC builds.

22 years agoBetter support for an alternate calendar time (i.e. if time/position/etc.
curt [Mon, 11 Feb 2002 23:33:20 +0000 (23:33 +0000)]
Better support for an alternate calendar time (i.e. if time/position/etc.
are being driven from an external data source.)

Akso found and fixed a bug in the simgear that caused the time to go goofy
temporarily while scenery was being loaded.

22 years agoAdd support for cygwin
curt [Mon, 11 Feb 2002 15:25:19 +0000 (15:25 +0000)]
Add support for cygwin