]> git.mxchange.org Git - flightgear.git/log
flightgear.git
23 years agoContinuing work on cleanups.
curt [Wed, 25 Oct 2000 19:27:13 +0000 (19:27 +0000)]
Continuing work on cleanups.
Removed some commented out chunks of code that no longer make sense to keep
around.
Working on replacing instances of Point3D with sg{d,}Vec3.

23 years agoCheckpoint commit for cleaning up the FGViewer class. External views are
curt [Wed, 25 Oct 2000 15:27:55 +0000 (15:27 +0000)]
Checkpoint commit for cleaning up the FGViewer class.  External views are
not working right, but this will hopefully be fixed soon.

23 years agoStarted integrating Jon's doc++ comments.
curt [Tue, 24 Oct 2000 21:43:37 +0000 (21:43 +0000)]
Started integrating Jon's doc++ comments.

23 years agoUpdates to fix a network communication problem.
curt [Tue, 24 Oct 2000 17:15:32 +0000 (17:15 +0000)]
Updates to fix a network communication problem.

23 years agoI tested:
curt [Tue, 24 Oct 2000 00:34:50 +0000 (00:34 +0000)]
I tested:
LaRCsim c172 on-ground and in-air starts, reset: all work
UIUC Cessna172 on-ground and in-air starts work as expected, reset
results in an aircraft that is upside down but does not crash FG.   I
don't know what it was like before, so it may well be no change.
JSBSim c172 and X15 in-air starts work fine, resets now work (and are
trimmed), on-ground starts do not -- the c172 ends up on its back.  I
suspect this is no worse than before.

I did not test:
Balloon (the weather code returns nan's for the atmosphere data --this
is in the weather module and apparently is a linux only bug)
ADA (don't know how)
MagicCarpet  (needs work yet)
External (don't know how)

known to be broken:
LaRCsim c172 on-ground starts with a negative terrain altitude (this
happens at KPAO when the scenery is not present).   The FDM inits to
about 50 feet AGL and the model falls to the ground.  It does stay
upright, however, and seems to be fine once it settles out, FWIW.

To do:
--implement set_Model on the bus
--bring Christian's weather data into JSBSim
-- add default method to bus for updating things like the sin and cos of
latitude (for Balloon, MagicCarpet)
-- lots of cleanup

The files:
src/FDM/flight.cxx
src/FDM/flight.hxx
-- all data members now declared protected instead of private.
-- eliminated all but a small set of 'setters', no change to getters.
-- that small set is declared virtual, the default implementation
provided preserves the old behavior
-- all of the vector data members are now initialized.
-- added busdump() method -- FG_LOG's  all the bus data when called,
useful for diagnostics.

src/FDM/ADA.cxx
-- bus data members now directly assigned to

src/FDM/Balloon.cxx
-- bus data members now directly assigned to
-- changed V_equiv_kts to V_calibrated_kts

src/FDM/JSBSim.cxx
src/FDM/JSBSim.hxx
-- bus data members now directly assigned to
-- implemented the FGInterface virtual setters with JSBSim specific
logic
-- changed the static FDMExec to a dynamic fdmex (needed so that the
JSBSim object can be deleted when a model change is called for)
-- implemented constructor and destructor, moved some of the logic
formerly in init() to constructor
-- added logic to bring up FGEngInterface objects and set the RPM and
throttle values.

src/FDM/LaRCsim.cxx
src/FDM/LaRCsim.hxx
-- bus data members now directly assigned to
-- implemented the FGInterface virtual setters with LaRCsim specific
logic, uses LaRCsimIC
-- implemented constructor and destructor, moved some of the logic
formerly in init() to constructor
-- moved default inertias to here from fg_init.cxx
-- eliminated the climb rate calculation.  The equivalent, climb_rate =
-1*vdown, is now in copy_from_LaRCsim().

src/FDM/LaRCsimIC.cxx
src/FDM/LaRCsimIC.hxx
-- similar to FGInitialCondition, this class has all the logic needed to
turn data like Vc and Mach into the more fundamental quantities LaRCsim
needs to initialize.
-- put it in src/FDM since it is a class

src/FDM/MagicCarpet.cxx
 -- bus data members now directly assigned to

src/FDM/Makefile.am
-- adds LaRCsimIC.hxx and cxx

src/FDM/JSBSim/FGAtmosphere.h
src/FDM/JSBSim/FGDefs.h
src/FDM/JSBSim/FGInitialCondition.cpp
src/FDM/JSBSim/FGInitialCondition.h
src/FDM/JSBSim/JSBSim.cpp
-- changes to accomodate the new bus

src/FDM/LaRCsim/atmos_62.h
src/FDM/LaRCsim/ls_geodesy.h
-- surrounded prototypes with #ifdef __cplusplus ... #endif , functions
here are needed in LaRCsimIC

src/FDM/LaRCsim/c172_main.c
src/FDM/LaRCsim/cherokee_aero.c
src/FDM/LaRCsim/ls_aux.c
src/FDM/LaRCsim/ls_constants.h
src/FDM/LaRCsim/ls_geodesy.c
src/FDM/LaRCsim/ls_geodesy.h
src/FDM/LaRCsim/ls_step.c
src/FDM/UIUCModel/uiuc_betaprobe.cpp
-- changed PI to LS_PI, eliminates preprocessor naming conflict with
weather module

src/FDM/LaRCsim/ls_interface.c
src/FDM/LaRCsim/ls_interface.h
-- added function ls_set_model_dt()

src/Main/bfi.cxx
-- eliminated calls that set the NED speeds to body components.  They
are no longer needed and confuse the new bus.

src/Main/fg_init.cxx
-- eliminated calls that just brought the bus data up-to-date (e.g.
set_sin_cos_latitude). or set default values.   The bus now handles the
defaults and updates itself when the setters are called (for LaRCsim and
JSBSim).  A default method for doing this needs to be added to the bus.
-- added fgVelocityInit() to set the speed the user asked for.  Both
JSBSim and LaRCsim can now be initialized using any of:
vc,mach, NED components, UVW components.

src/Main/main.cxx
--eliminated call to fgFDMSetGroundElevation, this data is now 'pulled'
onto the bus every update()

src/Main/options.cxx
src/Main/options.hxx
-- added enum to keep track of the speed requested by the user
-- eliminated calls to set NED velocity properties to body speeds, they
are no longer needed.
-- added options for the NED components.

src/Network/garmin.cxx
src/Network/nmea.cxx
--eliminated calls that just brought the bus data up-to-date (e.g.
set_sin_cos_latitude).  The bus now updates itself when the setters are
called (for LaRCsim and JSBSim).  A default method for doing this needs
to be added to the bus.
-- changed set_V_equiv_kts to set_V_calibrated_kts.  set_V_equiv_kts no
longer exists ( get_V_equiv_kts still does, though)

src/WeatherCM/FGLocalWeatherDatabase.cpp
-- commented out the code to put the weather data on the bus, a
different scheme for this is needed.

23 years agoTweaks.
curt [Mon, 23 Oct 2000 20:27:41 +0000 (20:27 +0000)]
Tweaks.

23 years agoUpdates to track more consistant naming scheme in simgear.
curt [Mon, 23 Oct 2000 17:10:06 +0000 (17:10 +0000)]
Updates to track more consistant naming scheme in simgear.

23 years agoMoved winWidth and winHeight out of FGViewer since these are set on a
curt [Thu, 19 Oct 2000 23:09:33 +0000 (23:09 +0000)]
Moved winWidth and winHeight out of FGViewer since these are set on a
per-application level.  We can have multiple viewers ...
Cleaned up fov mistake on startup with panel activated.

23 years agoCode clean ups relating to FGOptions ... and moved it into globals-> space.
curt [Thu, 19 Oct 2000 21:24:43 +0000 (21:24 +0000)]
Code clean ups relating to FGOptions ... and moved it into globals-> space.

23 years agoThe following changes were made to flightgear-0.7.5 code to implement the follow
curt [Thu, 19 Oct 2000 19:46:13 +0000 (19:46 +0000)]
The following changes were made to flightgear-0.7.5 code to implement the follow
ing features:

a) ADA Flight model - ADA.cxx, ADA.hxx, flight.hxx
b) Fighter a/c HUD       - flight.hxx, hud.hxx, hud.cxx, cockpit.cxx, hud_ladr.c
xx, hud_card.cxx
c) 3-window display      - options.hxx, options.cxx, viewer.cxx
d) Moving objects (ship) - main.cxx
e) Patches               - main.cxx

ADA.cxx, ADA.hxx
--------------------------
Interface to the external ADA flight dynamics package.

flight.hxx
----------
Included prototypes for accepting additional data fron the External flight
model for fighter aircraft HUD

Hud.hxx
-------
Included prototypes for accepting additional data for fighter HUD from Exernal F
light model.
Defined FIGHTER_HUD pre-processor directive to enable compilation of fighter hud
 code.

hud.cxx, cockpit.cxx, hud_ladr.cxx, hud_card.cxx
---------------------------------------
Included code to initialise additional reticles/text for fighter HUD which is co
nditionally
compiled if FIGHTER_HUD is defined.

options.hxx
-----------
Added window_offset, and function to retrieve its value for 3 windows

options.cxx
-----------
Changed few options to suit ADA/CEF projection system/screens and checks for win
dow offset.

views.cxx
---------
Added code to retrieve view offset for window.

Main.cxx
--------
Added code to load and move an aircraft carrier.
Patch to enable clouds from command line until Curtis fixes it. By default cloud
s are disabled.

23 years agoSome changes contributed by David Megginson to allow for more interesting
curt [Wed, 18 Oct 2000 21:19:30 +0000 (21:19 +0000)]
Some changes contributed by David Megginson to allow for more interesting
external views.

23 years agoI guess we have to ref() ssgStateTable as well as ssgSimpleState.
curt [Wed, 18 Oct 2000 07:03:49 +0000 (07:03 +0000)]
I guess we have to ref() ssgStateTable as well as ssgSimpleState.

23 years agoAdded ref() count increment calls to all ssgSimpleState creation to prevent
curt [Wed, 18 Oct 2000 00:48:12 +0000 (00:48 +0000)]
Added ref() count increment calls to all ssgSimpleState creation to prevent
them from being delete by ssg once nothing in the scene graph points to them.

23 years agoAdd #include <string.h> since js.h doesn't (but should.)
curt [Wed, 18 Oct 2000 00:47:18 +0000 (00:47 +0000)]
Add #include <string.h> since js.h doesn't (but should.)

23 years agoNew msvc project files.
curt [Wed, 18 Oct 2000 00:46:47 +0000 (00:46 +0000)]
New msvc project files.

23 years agoInitial revision.
curt [Mon, 16 Oct 2000 22:02:10 +0000 (22:02 +0000)]
Initial revision.

23 years agoDoh! typo in a the file name.
curt [Mon, 16 Oct 2000 21:53:45 +0000 (21:53 +0000)]
Doh! typo in a the file name.

23 years agoAdded a missing patch ...
curt [Mon, 16 Oct 2000 20:54:48 +0000 (20:54 +0000)]
Added a missing patch ...

23 years agoAdded #include <math.h> for fabs()
curt [Mon, 16 Oct 2000 20:47:47 +0000 (20:47 +0000)]
Added #include <math.h> for fabs()

23 years agoRenamed new FGEngine to FGNewEngine to avoid conflict with stuff in JSBSim.
curt [Mon, 16 Oct 2000 20:01:23 +0000 (20:01 +0000)]
Renamed new FGEngine to FGNewEngine to avoid conflict with stuff in JSBSim.

23 years agoCheck result of cur_fdm_state->init() and die if it fails.
curt [Mon, 16 Oct 2000 14:55:34 +0000 (14:55 +0000)]
Check result of cur_fdm_state->init() and die if it fails.

23 years agoCheck return value of FDM::init().
curt [Mon, 16 Oct 2000 14:54:41 +0000 (14:54 +0000)]
Check return value of FDM::init().
Updated other return values to be bool instead of int.

23 years agoChanged default starting airport.
curt [Mon, 16 Oct 2000 14:52:42 +0000 (14:52 +0000)]
Changed default starting airport.
Updated Thanks.
Removed reference to --with-flight-model= (depricated) from configure script.

23 years agoFriday the 13th JSBSim update ... :-0 !!!
curt [Sat, 14 Oct 2000 02:10:10 +0000 (02:10 +0000)]
Friday the 13th JSBSim update ... :-0  !!!

23 years agoPanel tweaks to support "shaped" panels.
curt [Fri, 13 Oct 2000 23:34:54 +0000 (23:34 +0000)]
Panel tweaks to support "shaped" panels.
Additional HUD support for waypoints.
JSBSim updates.

23 years agoMinor tweaks.
curt [Thu, 12 Oct 2000 01:08:22 +0000 (01:08 +0000)]
Minor tweaks.

23 years agoTweaks and massaging relative to the new waypoint route management system.
curt [Thu, 12 Oct 2000 01:08:09 +0000 (01:08 +0000)]
Tweaks and massaging relative to the new waypoint route management system.
You can now specify waypoint on the command line with --wp=ID[,alt]

23 years agoUpdates to Autopilot menu to support new SGRoute manager.
curt [Thu, 12 Oct 2000 01:06:55 +0000 (01:06 +0000)]
Updates to Autopilot menu to support new SGRoute manager.

23 years agoUpdates to track current JSBSim cvs.
curt [Thu, 12 Oct 2000 01:06:31 +0000 (01:06 +0000)]
Updates to track current JSBSim cvs.

23 years agoLot's of massaging to get the WAYPOINT hold mechanism to work with the
curt [Thu, 12 Oct 2000 01:06:07 +0000 (01:06 +0000)]
Lot's of massaging to get the WAYPOINT hold mechanism to work with the
new SGRoute manager.  Changed logic and gui a bit to match.

23 years agoMoved VERSION to FLIGHTGEAR_VERSION and put it in it's own include file.
curt [Wed, 11 Oct 2000 00:19:10 +0000 (00:19 +0000)]
Moved VERSION to FLIGHTGEAR_VERSION and put it in it's own include file.

23 years agoChanges to support new simgear waypoint module.
curt [Wed, 11 Oct 2000 00:18:26 +0000 (00:18 +0000)]
Changes to support new simgear waypoint module.

23 years agoSome tweaks relating to engines and the various LaRCsim related fdm's
curt [Tue, 10 Oct 2000 20:31:20 +0000 (20:31 +0000)]
Some tweaks relating to engines and the various LaRCsim related fdm's

23 years agoSeparated out "VERSION" into it's own include file.
curt [Tue, 10 Oct 2000 19:47:34 +0000 (19:47 +0000)]
Separated out "VERSION" into it's own include file.

23 years agoAdded keyboard mappings to move panel up/down/right/left.
curt [Tue, 10 Oct 2000 17:45:04 +0000 (17:45 +0000)]
Added keyboard mappings to move panel up/down/right/left.

23 years agoOct. 10, 2000 sync with JSBSim master repository.
curt [Tue, 10 Oct 2000 17:44:35 +0000 (17:44 +0000)]
Oct. 10, 2000 sync with JSBSim master repository.

23 years agoFixed a small bug in the engine lookup of bfi that is currently crashing
curt [Mon, 9 Oct 2000 21:17:39 +0000 (21:17 +0000)]
Fixed a small bug in the engine lookup of bfi that is currently crashing
with jsbsim since no engine is currently created.  This will all have to be
revamped in the future, but jsbsim has the structure for doing engines so
that is good.

23 years agoOct. 9, 2000 - synced with latest JSBsim code.
curt [Mon, 9 Oct 2000 21:16:21 +0000 (21:16 +0000)]
Oct. 9, 2000 - synced with latest JSBsim code.

23 years agoFixed an altitude setting bug.
curt [Mon, 9 Oct 2000 20:33:53 +0000 (20:33 +0000)]
Fixed an altitude setting bug.

23 years agoFrom: John Check <j4strngs@bitless.net>
curt [Fri, 6 Oct 2000 21:45:47 +0000 (21:45 +0000)]
From: John Check <j4strngs@bitless.net>
Subject: New panel doc
Date: Thu, 5 Oct 2000 19:44:02 -0500 (EST)

Hi Curt,
Here's the latest version panel doc. I'm also including the final
version joystick doc, the one in docs-mini is one behind.

I made some changes to my local sources to get a larger viewport
allowing for a shaped panel and still being able to see the runway
on takeoff. Should I send you the changes? David M is cool with it.

FWIW I've been playing with 3D renders for some textures and it's
looking pretty good. Theres a screenshot with the throttle and
mixture knobs done like that at http://rockfish.net/fg/

I'm going to post a tarball with what I have now to the above URL
but Dave is planning on making some changes to property manager over
the weekend and I figured I'd wait till I'm synched with any name changes
before making an official update.

23 years agoDavid Megginson writes:
curt [Fri, 6 Oct 2000 21:16:01 +0000 (21:16 +0000)]
David Megginson writes:

I have a scrollable panel working (it didn't take long in the end).  A
panel can now be much wider or higher than the available area, and the
user can scroll around using [Shift]F5, [Shift]F6, [Shift]F7, and
[Shift]F8.  The user can also scroll the panel down to get a bigger
external view.  Mouse clicks seem still to be working correctly.

To set the panel's (virtual) height and width, use the panel file's /w
and /h properties in a panel XML file; to set the initial x- and y-
offsets (untested), use the panel file's /x-offset and /y-offset
properties; to set the initial height of the external view (untested
and optional), use the panel file's /view-height property.  Note that
none of these show up in the regular FGFS property manager.

Unfortunately, these patches will not affect your initialization
problems with the property manager -- I'm having a hard time tracking
them down because I cannot reproduce them.

I have also made some patches to main.cxx and views.cxx to do two
things:

1. Expand or shrink the external view as the panel moves up and down.

2. Set the window ratio correctly, so that we don't get an oval sun
   and flat clouds when the panel is visible (the problem before was
   integer division, so I added casts).

Unfortunately, the window ratio is not set properly at start-up --
there are too many dependencies, and I haven't figured that part out
yet.  As soon as you hide and redisplay the panel or move it
vertically (i.e. force fgReshape to be called), you'll see the correct
ratio.

23 years agoProperties:
curt [Wed, 4 Oct 2000 22:52:34 +0000 (22:52 +0000)]
Properties:

- /engines/engine0/rpm changed to read-only
- /engines/engine0/egt added (read-only)
- /controls/mixture added
- /controls/propellor-pitch added (not used for C172)

BFI:

- getEGT() added
- getMixture() and setMixture() added
- getPropAdvance() and setPropAdvance() added (= pitch)
- cleaned up reinit function a bit
- force reinit only when values are actually changed; for example,
  setting the flight model to the current flight model will not cause
  a reinit

LaRCSim:

- hook up mixture and pitch to FGControls (they were hard-coded
  before)

23 years agoProperties:
curt [Wed, 4 Oct 2000 22:22:21 +0000 (22:22 +0000)]
Properties:

- /engines/engine0/rpm changed to read-only
- /engines/engine0/egt added (read-only)
- /controls/mixture added
- /controls/propellor-pitch added (not used for C172)

BFI:

- getEGT() added
- getMixture() and setMixture() added
- getPropAdvance() and setPropAdvance() added (= pitch)
- cleaned up reinit function a bit
- force reinit only when values are actually changed; for example,
  setting the flight model to the current flight model will not cause
  a reinit

LaRCSim:

- hook up mixture and pitch to FGControls (they were hard-coded
  before)

23 years agoTrial support for texture sets with varying resolution.
curt [Wed, 4 Oct 2000 20:51:57 +0000 (20:51 +0000)]
Trial support for texture sets with varying resolution.

23 years agoWorking on a new protocal that allows you to remotely browse, examine, and
curt [Wed, 4 Oct 2000 20:51:12 +0000 (20:51 +0000)]
Working on a new protocal that allows you to remotely browse, examine, and
change items in the property manager.

23 years agoDie if I/O Channel config fails for any reason.
curt [Wed, 4 Oct 2000 20:50:38 +0000 (20:50 +0000)]
Die if I/O Channel config fails for any reason.
Add an I/O Shutdown function call that explicitely closes all the open channels.

23 years agoClose all iochannel connections on exit.
curt [Wed, 4 Oct 2000 20:49:44 +0000 (20:49 +0000)]
Close all iochannel connections on exit.

23 years agorunway textures!
curt [Wed, 4 Oct 2000 20:49:19 +0000 (20:49 +0000)]
runway textures!

23 years agoOct 2, 2000 JSBSim sync.
curt [Mon, 2 Oct 2000 23:07:30 +0000 (23:07 +0000)]
Oct 2, 2000 JSBSim sync.

23 years agoMSVC compatibility changes and code tweaks for minor nits caught by the
curt [Mon, 2 Oct 2000 21:49:04 +0000 (21:49 +0000)]
MSVC compatibility changes and code tweaks for minor nits caught by the
MSVC compiler.

23 years agoUpdates from Christian Mayer to put some of the weather data "on the bus."
curt [Sat, 30 Sep 2000 03:55:57 +0000 (03:55 +0000)]
Updates from Christian Mayer to put some of the weather data "on the bus."

23 years agoUpdates from David Megginson relating to the property manager.
curt [Sat, 30 Sep 2000 03:35:38 +0000 (03:35 +0000)]
Updates from David Megginson relating to the property manager.

23 years agotweaks?
curt [Sat, 30 Sep 2000 01:11:26 +0000 (01:11 +0000)]
tweaks?

23 years agoTie the engine0 rpm to the property manager.
curt [Fri, 29 Sep 2000 22:02:32 +0000 (22:02 +0000)]
Tie the engine0 rpm to the property manager.

23 years agoWorking on putting engine data on "the bus"
curt [Fri, 29 Sep 2000 03:27:21 +0000 (03:27 +0000)]
Working on putting engine data on "the bus"

23 years agoUpdates to IO360 engine model: Added a couple of guestimates for engine
curt [Thu, 28 Sep 2000 22:49:33 +0000 (22:49 +0000)]
Updates to IO360 engine model:  Added a couple of guestimates for engine
and prop inertia and passed the timestep from LaRCsim in order to have
the engine rpm behaving according to the applied torque and the laws of
physics.

23 years agoA bit of fg->sg namespace changing.
curt [Wed, 27 Sep 2000 20:16:22 +0000 (20:16 +0000)]
A bit of fg->sg namespace changing.

23 years agoRenamed fg_types.hxx -> sg_types.hxx
curt [Tue, 26 Sep 2000 23:39:29 +0000 (23:39 +0000)]
Renamed fg_types.hxx -> sg_types.hxx
Started work on an interactive property manager traverser/setter.

23 years agoTweaks to base making rules.
curt [Tue, 26 Sep 2000 23:38:26 +0000 (23:38 +0000)]
Tweaks to base making rules.

23 years agoInitial revision.
curt [Tue, 26 Sep 2000 23:37:26 +0000 (23:37 +0000)]
Initial revision.

23 years agoMinor changes to several includes to allow out of source tree builds.
curt [Tue, 26 Sep 2000 21:44:52 +0000 (21:44 +0000)]
Minor changes to several includes to allow out of source tree builds.

23 years agoFixed a couple "typos"
curt [Mon, 25 Sep 2000 23:37:38 +0000 (23:37 +0000)]
Fixed a couple "typos"

23 years agoInitial revision.
curt [Mon, 25 Sep 2000 23:29:37 +0000 (23:29 +0000)]
Initial revision.

23 years agoInitial revision.
curt [Mon, 25 Sep 2000 22:20:57 +0000 (22:20 +0000)]
Initial revision.

23 years agoUpdated version.
curt [Mon, 25 Sep 2000 22:02:08 +0000 (22:02 +0000)]
Updated version.

23 years agoChanges from David Megginson in support of an xml based configuration file.
curt [Mon, 25 Sep 2000 21:41:50 +0000 (21:41 +0000)]
Changes from David Megginson in support of an xml based configuration file.

23 years agoSep. 22, 2000 panel updates from David Megginson to make the new config file
curt [Fri, 22 Sep 2000 17:20:56 +0000 (17:20 +0000)]
Sep. 22, 2000 panel updates from David Megginson to make the new config file
panel be the default (sp_panel.* RIP).

23 years agoFixes for MSVC++ issues.
curt [Thu, 21 Sep 2000 22:59:27 +0000 (22:59 +0000)]
Fixes for MSVC++ issues.

23 years agoCaught an old texture path reference.
curt [Thu, 21 Sep 2000 20:44:14 +0000 (20:44 +0000)]
Caught an old texture path reference.

23 years agoTweaks for new panel invocation.
curt [Thu, 21 Sep 2000 20:09:12 +0000 (20:09 +0000)]
Tweaks for new panel invocation.

23 years agoFixed another array overrun type bug.
curt [Thu, 21 Sep 2000 20:08:51 +0000 (20:08 +0000)]
Fixed another array overrun type bug.

23 years agoSep. 18, 2000 updates from David Megginson. New panel configs are now
curt [Thu, 21 Sep 2000 20:08:16 +0000 (20:08 +0000)]
Sep. 18, 2000 updates from David Megginson.  New panel configs are now
expected to be found in $fgroot.

23 years agoInitial revision.
curt [Thu, 21 Sep 2000 15:17:36 +0000 (15:17 +0000)]
Initial revision.

23 years agobuilddir -> srcdir so builds can be done outside the master source directory.
curt [Wed, 20 Sep 2000 23:27:25 +0000 (23:27 +0000)]
builddir -> srcdir so builds can be done outside the master source directory.

23 years agoTweaks to handle latest airport data file from Robin Peel.
curt [Wed, 20 Sep 2000 23:26:17 +0000 (23:26 +0000)]
Tweaks to handle latest airport data file from Robin Peel.

23 years agoUpdates for version 0.7.6.
curt [Wed, 20 Sep 2000 23:25:28 +0000 (23:25 +0000)]
Updates for version 0.7.6.

23 years agoJoystick fixes from Tony.
curt [Wed, 20 Sep 2000 20:35:49 +0000 (20:35 +0000)]
Joystick fixes from Tony.

23 years agoChange A* and B* variables to lowercase to avoid conflicting defines with
curt [Wed, 20 Sep 2000 16:17:42 +0000 (16:17 +0000)]
Change A* and B* variables to lowercase to avoid conflicting defines with
Irix includes.

23 years agoNEWS for 0.7.5
curt [Mon, 18 Sep 2000 21:17:58 +0000 (21:17 +0000)]
NEWS for 0.7.5

23 years agoGrab max texture size in case we want to use it later ...
curt [Mon, 18 Sep 2000 21:02:59 +0000 (21:02 +0000)]
Grab max texture size in case we want to use it later ...

23 years agoUse time_t instead of long int for mktime() return type.
curt [Mon, 18 Sep 2000 19:00:40 +0000 (19:00 +0000)]
Use time_t instead of long int for mktime() return type.

23 years agoAdded a function to query the current size of the tile load queue.
curt [Fri, 15 Sep 2000 19:28:45 +0000 (19:28 +0000)]
Added a function to query the current size of the tile load queue.

23 years agobfi load/save fix from David.
curt [Fri, 15 Sep 2000 19:28:26 +0000 (19:28 +0000)]
bfi load/save fix from David.
Added an initial freeze on startup so that we can try to avoid bouncing the
plane on it's back during the very low frame rate / scenery loading startup
conditions.

23 years agoAdded .h flags so the they are included in the distribution.
curt [Fri, 15 Sep 2000 19:25:18 +0000 (19:25 +0000)]
Added .h flags so the they are included in the distribution.

23 years agoUpdated beta version letters.
curt [Fri, 15 Sep 2000 19:24:51 +0000 (19:24 +0000)]
Updated beta version letters.

23 years agoTweaks to the runfgfs.bat script.
curt [Thu, 14 Sep 2000 17:36:39 +0000 (17:36 +0000)]
Tweaks to the runfgfs.bat script.

23 years agoTweaks to ground steering sensitivity.
curt [Thu, 14 Sep 2000 17:36:25 +0000 (17:36 +0000)]
Tweaks to ground steering sensitivity.

23 years agoIncorporated previously missed updates.
curt [Thu, 14 Sep 2000 17:36:02 +0000 (17:36 +0000)]
Incorporated previously missed updates.

23 years agoMacOS changes by Darrell Walisser.
curt [Wed, 13 Sep 2000 21:51:07 +0000 (21:51 +0000)]
MacOS changes by Darrell Walisser.

23 years agoInitial revision.
curt [Wed, 13 Sep 2000 20:57:46 +0000 (20:57 +0000)]
Initial revision.

23 years agoMACOS -> macintosh
curt [Sun, 10 Sep 2000 00:04:50 +0000 (00:04 +0000)]
MACOS -> macintosh

23 years agoExplicitely add -lpthread to the link line to avoid a long standing linux
curt [Sat, 9 Sep 2000 15:48:14 +0000 (15:48 +0000)]
Explicitely add -lpthread to the link line to avoid a long standing linux
ld bug.

A couple namespace fixes to avoid problems with latest plib cvs on some
systems.

23 years agoSep 8, 2000 panel updates from David Megginson.
curt [Fri, 8 Sep 2000 20:47:18 +0000 (20:47 +0000)]
Sep 8, 2000 panel updates from David Megginson.

23 years agoOoops, shouldn't call a program "ps".
curt [Fri, 8 Sep 2000 14:35:23 +0000 (14:35 +0000)]
Ooops, shouldn't call a program "ps".

23 years agoInitial revision.
curt [Thu, 7 Sep 2000 00:12:32 +0000 (00:12 +0000)]
Initial revision.

23 years agoMiscellaneous MSVC fixes.
curt [Wed, 6 Sep 2000 22:46:43 +0000 (22:46 +0000)]
Miscellaneous MSVC fixes.

23 years agoSep 1 2000 updates from the UIUC team.
curt [Wed, 6 Sep 2000 19:52:37 +0000 (19:52 +0000)]
Sep 1 2000 updates from the UIUC team.

23 years agoFixed whiskey compass.
curt [Wed, 6 Sep 2000 17:43:45 +0000 (17:43 +0000)]
Fixed whiskey compass.

23 years agoInitial revision.
curt [Wed, 6 Sep 2000 15:45:43 +0000 (15:45 +0000)]
Initial revision.

23 years agoTweaks ...
curt [Wed, 6 Sep 2000 00:11:01 +0000 (00:11 +0000)]
Tweaks ...