]> git.mxchange.org Git - flightgear.git/log
flightgear.git
20 years agoMinor formatting changes
daveluff [Mon, 6 Oct 2003 15:19:42 +0000 (15:19 +0000)]
Minor formatting changes

20 years agoRemoved some extraneous output
daveluff [Mon, 6 Oct 2003 14:09:59 +0000 (14:09 +0000)]
Removed some extraneous output

20 years agoWork around a MipsPro 7.2 STL problem
ehofman [Thu, 2 Oct 2003 08:47:33 +0000 (08:47 +0000)]
Work around a MipsPro 7.2 STL problem

20 years agoModified so that a multiple-element FG_SCENERY path will work:
david [Wed, 1 Oct 2003 22:49:06 +0000 (22:49 +0000)]
Modified so that a multiple-element FG_SCENERY path will work:

1. Do not stop scanning STG files after OBJECT_BASE is found.

2. Load OBJECT_BASE only once.

3. Load OBJECT only when no OBJECT_BASE has been found or when
   OBJECT_BASE was found in the same file (probably should be only the
   latter, if we constrain OBJECT_BASE always to come first).

4. Always load OBJECT_STATIC and OBJECT_SHARED.

20 years agoDon't make SG_SCENERY into an SGPath before splitting, to avoid
david [Wed, 1 Oct 2003 22:38:53 +0000 (22:38 +0000)]
Don't make SG_SCENERY into an SGPath before splitting, to avoid
normalizing ':' to '/'.

20 years agoClamp a lower end on the range, for now.
david [Wed, 1 Oct 2003 21:11:34 +0000 (21:11 +0000)]
Clamp a lower end on the range, for now.

20 years agoAn improved ADF, but no sound yet (and not the default).
david [Wed, 1 Oct 2003 21:10:33 +0000 (21:10 +0000)]
An improved ADF, but no sound yet (and not the default).

20 years agoStarted a README.
david [Wed, 1 Oct 2003 21:09:39 +0000 (21:09 +0000)]
Started a README.

20 years agoFirst, MSVC 7 bombs when a value greater than 255 is passed to
ehofman [Sat, 27 Sep 2003 09:44:41 +0000 (09:44 +0000)]
First, MSVC 7 bombs when a value greater than 255 is passed to
Frederic Bouvier:
First, MSVC 7 bombs when a value greater than 255 is passed to
issomething(), so I copy k to a char (unsigned ) kc before calling
them.

Second, with my french keyboard, and I thing this is the same for
a great number of countries, some characters from the regular ASCII
set can only be get with ALt Gr that appears to be CTRL+ALT.

Especially, I can't select the second engine because '@' is
AltGr+'à' nor all because '~' is AltGr+'é' (and I have to hit space
after otherwise I can get õ or ã that are not used in french) and
FG try to cope with the modifiers.

So, currently, we have to mask out CTRL and ALT modifiers when they
are together. The current bingings don't allow 2 simultaneous to
be declared so it shouldn't break anything.

20 years agoJim Wilson:
ehofman [Fri, 26 Sep 2003 16:58:15 +0000 (16:58 +0000)]
Jim Wilson:
This has been on my local copy for a while (well tested :-))
It fixes a problem with the auto throttle jumping around needlessly.  Adjustments are calculated based on the last calculated autothrottle setting rather than reading the throttle setting from the property tree.

20 years agoCLear the key bindings before assigning new ones
ehofman [Thu, 25 Sep 2003 12:07:42 +0000 (12:07 +0000)]
CLear the key bindings before assigning new ones

20 years agoFix a dependency problem
ehofman [Thu, 25 Sep 2003 09:09:35 +0000 (09:09 +0000)]
Fix a dependency problem

20 years agoSort VASI lights into their own tree so we can control them separately
curt [Wed, 24 Sep 2003 19:59:25 +0000 (19:59 +0000)]
Sort VASI lights into their own tree so we can control them separately
from the rest of the runway lighting.  VASI/PAPI lights are generally
always on.  Also, the red/white VASI coloring has never worked right.
This is also a step towards fixing that problem.

20 years agoFix a potential segfault.
curt [Wed, 24 Sep 2003 19:57:50 +0000 (19:57 +0000)]
Fix a potential segfault.

20 years agoFix a problem where the compiler would mix up two function declarations because the...
ehofman [Wed, 24 Sep 2003 19:07:34 +0000 (19:07 +0000)]
Fix a problem where the compiler would mix up two function declarations because the one wich has SGSubsystem in it's options list expected a const SGSubsystem, but it was called with a plain SGSubsystem

20 years agoMove FGEventMgr and FGSubsystemMgr over to SimGear, add SGEventMgr to FlightGear...
ehofman [Wed, 24 Sep 2003 17:20:55 +0000 (17:20 +0000)]
Move FGEventMgr and FGSubsystemMgr over to SimGear, add SGEventMgr to FlightGear's globals structre and some small code cleanups

20 years agoMake random wind a little less extreme.
david [Wed, 24 Sep 2003 00:04:28 +0000 (00:04 +0000)]
Make random wind a little less extreme.

20 years agoFix a nasty bug whereby the AI plane would descend far too early on the circuit follo...
daveluff [Tue, 23 Sep 2003 21:01:02 +0000 (21:01 +0000)]
Fix a nasty bug whereby the AI plane would descend far too early on the circuit following a touch-and-go

20 years agoGet rid of some cruft
daveluff [Tue, 23 Sep 2003 15:02:12 +0000 (15:02 +0000)]
Get rid of some cruft

20 years agoImplement two convienience functions.
daveluff [Tue, 23 Sep 2003 15:01:53 +0000 (15:01 +0000)]
Implement two convienience functions.

20 years agoDavid Culp:
ehofman [Tue, 23 Sep 2003 09:25:24 +0000 (09:25 +0000)]
David Culp:
Here's a new FGSimTurbine module.  Changes are:

1.  Adds starting and stopping functionality
2.  Calculate() now calls other functions, based on the engine's state, which gives more readable code.

Until now turbine engines were always running as long as fuel was available. With this new module the engine defaults to OFF.  To start with the engine running, the variable FGEngine::Running must be set to true at sim startup. In FlightGear this is done with --prop:/engines/engine[n]/running=true.

To start the engine (on the ground), first set the starter to ON, i.e. FGEngine::Starter is set to true.  In FlightGear this is done by toggling /controls/engines/engine[n]/starter to TRUE.  Note that the current FlightGear key binding will not work, as it causes the starter to quit when the key is released.  A new key binding is needed, without the mod-up.

When N2 reaches 15% or greater, place the fuel cutoff control to FALSE.  This is FGEngine::Cutoff.  In FlightGear this is done with /controls/engines/engine[n]/cutoff set to FALSE.  The engine will then accelerate to idle.  Upon reaching idle, the starter is automatically turned off, and the engine is running.  There is presently no FlightGear key binding for the fuel cutoff switch.

To shut off the engine, place the fuel cutoff control to TRUE.

If you shut down the engine in flight it will windmill.  To airstart you will need at least 15% N2, just as with a ground start.  When you have enough N2, place the cutoff control to FALSE and the engine will restart. Note that if you can't get enough N2 by speeding up, you can get it by using the starter.

The reverser still works, and is controlled in FlightGear with /controls/engines/engine[n]/reverser.  With the reverser control on (TRUE), the engine will produce negative thrust in proportion to throttle position, i.e. to get more reverse
thrust, increase throttle.

20 years agoDavid Culp:
ehofman [Tue, 23 Sep 2003 09:24:36 +0000 (09:24 +0000)]
David Culp:
Here's a new FGSimTurbine module.  Changes are:

1.  Adds starting and stopping functionality
2.  Calculate() now calls other functions, based on the engine's state, which gives more readable code.

Until now turbine engines were always running as long as fuel was available. With this new module the engine defaults to OFF.  To start with the engine running, the variable FGEngine::Running must be set to true at sim startup. In FlightGear this is done with --prop:/engines/engine[n]/running=true.

To start the engine (on the ground), first set the starter to ON, i.e. FGEngine::Starter is set to true.  In FlightGear this is done by toggling /controls/engines/engine[n]/starter to TRUE.  Note that the current FlightGear key binding will not work, as it causes the starter to quit when the key is released.  A new key binding is needed, without the mod-up.

When N2 reaches 15% or greater, place the fuel cutoff control to FALSE.  This is FGEngine::Cutoff.  In FlightGear this is done with /controls/engines/engine[n]/cutoff set to FALSE.  The engine will then accelerate to idle.  Upon reaching idle, the starter is automatically turned off, and the engine is running.  There is presently no FlightGear key binding for the fuel cutoff switch.

To shut off the engine, place the fuel cutoff control to TRUE.

If you shut down the engine in flight it will windmill.  To airstart you will need at least 15% N2, just as with a ground start.  When you have enough N2, place the cutoff control to FALSE and the engine will restart. Note that if you can't get enough N2 by speeding up, you can get it by using the starter.

The reverser still works, and is controlled in FlightGear with /controls/engines/engine[n]/reverser.  With the reverser control on (TRUE), the engine will produce negative thrust in proportion to throttle position, i.e. to get more reverse thrust, increase throttle.

20 years agoFix a problem where the upper cloud layers are draw
ehofman [Tue, 23 Sep 2003 08:43:19 +0000 (08:43 +0000)]
Fix a problem where the upper cloud layers are draw

n with the sun punch through value

20 years agoInitialize some variables, re-order the function calls in updeate() and reread the...
ehofman [Tue, 23 Sep 2003 08:27:06 +0000 (08:27 +0000)]
Initialize some variables, re-order the function calls in updeate() and reread the interpoltation tables upoj reinit()

20 years agoAnother small, incremental step towards interactive tower control.
daveluff [Mon, 22 Sep 2003 23:57:57 +0000 (23:57 +0000)]
Another small, incremental step towards interactive tower control.

20 years agoFix a compiler warning
daveluff [Mon, 22 Sep 2003 23:56:09 +0000 (23:56 +0000)]
Fix a compiler warning

20 years agoSlightly more appropriate callsign for C-FGFS. These options still don't do anything...
daveluff [Mon, 22 Sep 2003 23:55:46 +0000 (23:55 +0000)]
Slightly more appropriate callsign for C-FGFS.  These options still don't do anything at the moment mind!

20 years agoReturn landing type
daveluff [Mon, 22 Sep 2003 23:54:41 +0000 (23:54 +0000)]
Return landing type

20 years agoReturn landing type. Simple AIPlane always returns full stop for now - more advanced...
daveluff [Mon, 22 Sep 2003 23:53:56 +0000 (23:53 +0000)]
Return landing type.  Simple AIPlane always returns full stop for now - more advanced classes are expected to override this if required.  Also give some enums an ostream operator

20 years agoReturn position
daveluff [Mon, 22 Sep 2003 23:52:25 +0000 (23:52 +0000)]
Return position

20 years agoClean up the output of the help and show-aircraft options a bit by setting log-level...
ehofman [Mon, 22 Sep 2003 11:35:21 +0000 (11:35 +0000)]
Clean up the output of the help and show-aircraft options a bit by setting log-level to alert prior to showing the output

20 years agoAllow the log-level to be set as early as possible
ehofman [Mon, 22 Sep 2003 09:31:36 +0000 (09:31 +0000)]
Allow the log-level to be set as early as possible

20 years agoUse the log level environment already set up by David instead of mine
ehofman [Mon, 22 Sep 2003 09:22:05 +0000 (09:22 +0000)]
Use the log level environment already set up by David instead of mine

20 years agoA small fix to have a smoot transition of cloud colors when in time warp mode
ehofman [Sat, 20 Sep 2003 11:05:12 +0000 (11:05 +0000)]
A small fix to have a smoot transition of cloud colors when in time warp mode

20 years agoConvert fgLIGHT to FGLight and make it FGSubsystem compatible. Let the subsystem...
ehofman [Sat, 20 Sep 2003 09:38:32 +0000 (09:38 +0000)]
Convert fgLIGHT to FGLight and make it FGSubsystem compatible. Let the subsystem manager handle it and let FGLight::update() handle the repositioning of the sun and the moon.

20 years agoAnother step towards making aircraft more self contained. YASim aircraft
curt [Sat, 20 Sep 2003 03:33:06 +0000 (03:33 +0000)]
Another step towards making aircraft more self contained.  YASim aircraft
now read the config file out of the individual aircraft directory rather
than the collective Aircraft-yasim/ directory (which is now obsolete.)
This requires a corresponding update of the base package cvs.

20 years agoUpdate --showaircraft and --aircraft= options to recursively search the
curt [Fri, 19 Sep 2003 20:06:27 +0000 (20:06 +0000)]
Update --showaircraft and --aircraft= options to recursively search the
$FGROOT/data/Aircraft hierarchy.  There could be some long term performance
concerns if a person has a *huge* collection of aircraft or a really slow
file system, but I see zero performance blip here from recursing the default
CVS tree.  We should also allow the user to specify the whole path to the
-set.xml file if they don't want to recurse ... this way we could eventually
come up with an aircraft selection dialog box on the front end so the user
could manually walk the tree to the desired aircraft.  There also the system
wouldn't have to search for the aircraft.

20 years agoFix a couple compiler warnings.
curt [Fri, 19 Sep 2003 20:03:43 +0000 (20:03 +0000)]
Fix a couple compiler warnings.

20 years agoFurther progress towards interactive tower control. Very much an initial stab at...
daveluff [Fri, 19 Sep 2003 16:51:27 +0000 (16:51 +0000)]
Further progress towards interactive tower control.  Very much an initial stab at a first iteration of a tricky problem, ie don't look too closely - some of it is ugly!

20 years agoReduce taxiing speed a fraction
daveluff [Fri, 19 Sep 2003 16:48:58 +0000 (16:48 +0000)]
Reduce taxiing speed a fraction

20 years agoAdd an overloaded function
daveluff [Fri, 19 Sep 2003 16:48:27 +0000 (16:48 +0000)]
Add an overloaded function

20 years agoRemove a couple of extraneous lines.
daveluff [Fri, 19 Sep 2003 09:38:22 +0000 (09:38 +0000)]
Remove a couple of extraneous lines.

20 years agoRemove some unused UIUC specific code
ehofman [Thu, 18 Sep 2003 09:33:13 +0000 (09:33 +0000)]
Remove some unused UIUC specific code

20 years agoRemove the test property to check the difference between the old and the new behavior
ehofman [Wed, 17 Sep 2003 19:21:57 +0000 (19:21 +0000)]
Remove the test property to check the difference between the old and the new behavior

20 years agoOops fix a small bug resetting to "real-clock" time.
curt [Wed, 17 Sep 2003 15:58:40 +0000 (15:58 +0000)]
Oops fix a small bug resetting to "real-clock" time.

20 years agoClean up the timeofday setting code a bit more, consolodate the solver
curt [Wed, 17 Sep 2003 15:49:15 +0000 (15:49 +0000)]
Clean up the timeofday setting code a bit more, consolodate the solver
functions (note to Norman: I looked at the web page you listed and that
looks like a good idea, but I don't have time right now to go through and
debug an entirely new routine.  What we have works well enough for now I hope!)

20 years agoReorginize the code just before fgMainLoop a bit so that the lighting update actually...
ehofman [Wed, 17 Sep 2003 10:02:36 +0000 (10:02 +0000)]
Reorginize the code just before fgMainLoop a bit so that the lighting update actually has any effect

20 years agoFix a model loading problem
ehofman [Wed, 17 Sep 2003 09:44:37 +0000 (09:44 +0000)]
Fix a model loading problem

20 years agoOops, get rid of some extraneous debugging output.
curt [Tue, 16 Sep 2003 22:38:41 +0000 (22:38 +0000)]
Oops, get rid of some extraneous debugging output.

20 years agoExpose the time of day setting through the fg_command and property interface
curt [Tue, 16 Sep 2003 22:35:16 +0000 (22:35 +0000)]
Expose the time of day setting through the fg_command and property interface
so a gui interface can be built.

20 years agoFix a few potential gotcha's in setting up start time.
curt [Tue, 16 Sep 2003 22:34:22 +0000 (22:34 +0000)]
Fix a few potential gotcha's in setting up start time.

20 years agoDon't just disable depth buffer writes but instead disable the depth test all together
ehofman [Tue, 16 Sep 2003 16:27:01 +0000 (16:27 +0000)]
Don't just disable depth buffer writes but instead disable the depth test all together

20 years agoTry to prevent z-buffer problems for video cards with a 16-bit depth buffer
ehofman [Tue, 16 Sep 2003 14:31:14 +0000 (14:31 +0000)]
Try to prevent z-buffer problems for video cards with a 16-bit depth buffer

20 years agoEnable back face culling for cockpit instruments, disable depth buffer writes for...
ehofman [Tue, 16 Sep 2003 10:02:32 +0000 (10:02 +0000)]
Enable back face culling for cockpit instruments, disable depth buffer writes for 2d instruments but enable depth buffer writes for the magnetic compass. Does anyone care to create a 3d magnetic compass?

20 years agoMake sure the joystick name gets printed
ehofman [Tue, 16 Sep 2003 08:25:16 +0000 (08:25 +0000)]
Make sure the joystick name gets printed

20 years agoAdded a command line option to specify a starting time of day in the sense of:
curt [Mon, 15 Sep 2003 22:55:39 +0000 (22:55 +0000)]
Added a command line option to specify a starting time of day in the sense of:

  --timeofday=dawn
  --timeofday=dusk
  --timeofday=noon
  --timeofday=midnight

20 years agoAllow -jsbsim, -yasim or -uiuc in the name of the configuration file when it resides...
ehofman [Mon, 15 Sep 2003 16:00:18 +0000 (16:00 +0000)]
Allow -jsbsim, -yasim or -uiuc in the name of the configuration file when it resides in it's own subdirectory

20 years agoAdd support for loading aircraft which have the configuration file inside it's own...
ehofman [Mon, 15 Sep 2003 14:21:16 +0000 (14:21 +0000)]
Add support for loading aircraft which have the configuration file inside it's own subdirectory

20 years agoAdd support for <aircraft>-set.xml configuration files inside it's own subdirectory...
ehofman [Mon, 15 Sep 2003 14:07:50 +0000 (14:07 +0000)]
Add support for <aircraft>-set.xml configuration files inside it's own subdirectory. This applies only to the --show-aircraft option for now.

20 years agoFrederic Bouvier:
ehofman [Sat, 13 Sep 2003 11:47:30 +0000 (11:47 +0000)]
Frederic Bouvier:
This patch is there to correct a problem that prevent to load static objects when specifying a relative fg-root or a different, relative, fg-scenery. It appears that there is a mix between fg-root, fg-scenery and PLIB's model-dir.
It has been reported on the list that users are not able to see the buildings, especially those running the win32 builds because they run 'runfgfs.bat' that set FG_ROOT=./DATA.

I decided not to use model-dir because it just add confusion and to build a valid path earlier.

20 years agoEnable two sided lighting calculations when specular highlight is enabled
ehofman [Sat, 13 Sep 2003 09:27:50 +0000 (09:27 +0000)]
Enable two sided lighting calculations when specular highlight is enabled

20 years agoTurn back to default lighting when specular-highlight gets disabled
ehofman [Fri, 12 Sep 2003 22:09:54 +0000 (22:09 +0000)]
Turn back to default lighting when specular-highlight gets disabled

20 years agoAdd the posibillity to disable specular highlight because it looks like some implemen...
ehofman [Fri, 12 Sep 2003 21:43:01 +0000 (21:43 +0000)]
Add the posibillity to disable specular highlight because it looks like some implementations switch over to sofware rendering when this is enabled

20 years agoMake it possible for textured object to change color to white when lit by a strong...
ehofman [Fri, 12 Sep 2003 09:27:19 +0000 (09:27 +0000)]
Make it possible for textured object to change color to white when lit by a strong light source. This might affect rendering time a bit

20 years agoChanges to facilitate replaying the last "n" seconds.
curt [Thu, 11 Sep 2003 19:36:04 +0000 (19:36 +0000)]
Changes to facilitate replaying the last "n" seconds.

20 years agoAdded --failure option.
david [Wed, 10 Sep 2003 01:29:19 +0000 (01:29 +0000)]
Added --failure option.

20 years agoFix a couple of bugs that resulted in ATIS not being heard at airports with AI traffi...
daveluff [Fri, 5 Sep 2003 13:58:51 +0000 (13:58 +0000)]
Fix a couple of bugs that resulted in ATIS not being heard at airports with AI traffic active

20 years agoChange the start of descent point of the AI plane when the circuit has been extended...
daveluff [Fri, 5 Sep 2003 10:26:11 +0000 (10:26 +0000)]
Change the start of descent point of the AI plane when the circuit has been extended when following previous traffic - it should not land short now, although it can land a way down the runway if start of descent should occur during a turn, since it doesnt start descending until the turn is finished

20 years agoGuard against update(...) getting called before init(...)
daveluff [Fri, 5 Sep 2003 10:23:20 +0000 (10:23 +0000)]
Guard against update(...) getting called before init(...)

20 years agoOutput a few properties for AI code devel convienience - probably temporary
daveluff [Fri, 5 Sep 2003 10:22:18 +0000 (10:22 +0000)]
Output a few properties for AI code devel convienience - probably temporary

20 years agoWhitespace cleanup
daveluff [Fri, 5 Sep 2003 10:21:29 +0000 (10:21 +0000)]
Whitespace cleanup

20 years agoRemove unused gamma corrections
ehofman [Wed, 3 Sep 2003 18:47:48 +0000 (18:47 +0000)]
Remove unused gamma corrections

20 years agoFix a reset bug for at least JSBSim by removing some apperently old UIUC code. This...
ehofman [Wed, 3 Sep 2003 17:10:52 +0000 (17:10 +0000)]
Fix a reset bug for at least JSBSim by removing some apperently old UIUC code. This falls in the same category as the code from main.cxx which was recently removed by advice from the UIUC developers.

20 years agoDavid Luff:
curt [Tue, 2 Sep 2003 19:12:11 +0000 (19:12 +0000)]
David Luff:

Firstly, the search of a given runway number was coming out wrong if the
reverse of the one actually in the database was given, resulting in the AI
plane going to the wrong runway.  This was caused by the fact that if the
reverse runway number to the one wanted was matched then revrwyno was
assigned to rwy.rwy_no, whereas actually it was the original runwayno that
should have been assigned.

Secondly, whilst instrumenting the search with couts to see what was going
wrong, I noticed that one runway would come up loads of times.  It turns
out that this is because taxiways and the next airport line were loaded in
as the last runway, with only the type changed, in the constructor.  Thus
the total number of runway entries for all except the last airport equalled
(no-of-runways + no-of-taxiways +  1).  I've changed a couple of lines to
fix this.

[Curt: this was partially fixed last week, but now it should be completely
fixed.  Thanks Dave!]

20 years agoAdd a --ceiling=FT_AGL[:THICKNESS_AGL] option to create a default
david [Mon, 1 Sep 2003 22:58:19 +0000 (22:58 +0000)]
Add a --ceiling=FT_AGL[:THICKNESS_AGL] option to create a default
overcast ceiling at the given altitude AGL, optionally with the given
thickness (or default to 2000 ft).

20 years agoRoll out last change for now. It kills the mag compass on the default
david [Mon, 1 Sep 2003 22:03:46 +0000 (22:03 +0000)]
Roll out last change for now.  It kills the mag compass on the default
172, and seems to have unpredictable results depending on the drawing
order.

20 years agoAverage sunlight and ambient light instead of multiplying it
ehofman [Fri, 29 Aug 2003 22:13:05 +0000 (22:13 +0000)]
Average sunlight and ambient light instead of multiplying it

20 years ago- The latest volley in the FlightGear lighting wars.
curt [Fri, 29 Aug 2003 21:24:13 +0000 (21:24 +0000)]
- The latest volley in the FlightGear lighting wars.
- Ambient is based off the lookup table only.
- Diffuse is based off of the lookup table, but multiplied by a combination
  of sun/fog colors.

The result is a bit more ambient light at dusk and night since the world is
never 100% dark.  And we still get nice sunset/sunrise colored illumination
of surfaces that are directly illuminated by the sun.

20 years agoI had to make a small mod to the runways.dat format, code changes to handle
curt [Fri, 29 Aug 2003 20:27:48 +0000 (20:27 +0000)]
I had to make a small mod to the runways.dat format, code changes to handle
that.

20 years agoUse the glPointParameter function pointer rather than the function itself
ehofman [Fri, 29 Aug 2003 16:50:20 +0000 (16:50 +0000)]
Use the glPointParameter function pointer rather than the function itself

20 years agoRemove a possible glut dependency and do some code cleaning
ehofman [Fri, 29 Aug 2003 16:46:21 +0000 (16:46 +0000)]
Remove a possible glut dependency and do some code cleaning

20 years agoNew automake, new problems. Add $base_LIBS for programs since $LIBS isn't substituted...
ehofman [Fri, 29 Aug 2003 09:03:49 +0000 (09:03 +0000)]
New automake, new problems. Add $base_LIBS for programs since $LIBS isn't substituted automatically anymore

20 years agoRemove the last traces of metakit (hopefully) :-)
curt [Fri, 29 Aug 2003 04:42:43 +0000 (04:42 +0000)]
Remove the last traces of metakit (hopefully) :-)

20 years agoDepricated ...
curt [Fri, 29 Aug 2003 04:12:34 +0000 (04:12 +0000)]
Depricated ...

20 years agoRedo the runway database scheme to use a flat/ascii file and load the entire
curt [Fri, 29 Aug 2003 04:11:23 +0000 (04:11 +0000)]
Redo the runway database scheme to use a flat/ascii file and load the entire
database into memory at the start.  This should completely eliminate any
dependencies we have on metakit.

20 years agoFix a small oops on my part.
curt [Thu, 28 Aug 2003 21:05:01 +0000 (21:05 +0000)]
Fix a small oops on my part.

20 years agoDepricated ...
curt [Thu, 28 Aug 2003 21:04:12 +0000 (21:04 +0000)]
Depricated ...

20 years agoRemove one dependence on MetaKit.
curt [Thu, 28 Aug 2003 20:53:08 +0000 (20:53 +0000)]
Remove one dependence on MetaKit.

20 years agoPut the id of the tile we are flying over into the property tree for
curt [Thu, 28 Aug 2003 20:52:34 +0000 (20:52 +0000)]
Put the id of the tile we are flying over into the property tree for
convenience of debugging.

20 years agoMinor tweak.
curt [Thu, 28 Aug 2003 20:52:05 +0000 (20:52 +0000)]
Minor tweak.

20 years agoFix an undeclared function refference in one of the supported compiler environments
ehofman [Mon, 25 Aug 2003 12:41:40 +0000 (12:41 +0000)]
Fix an undeclared function refference in one of the supported compiler environments

20 years agoUpdates needed for z-ordewring of the cloud layers
ehofman [Fri, 22 Aug 2003 08:05:00 +0000 (08:05 +0000)]
Updates needed for z-ordewring of the cloud layers

20 years agoRename every instance of GLUT_H to FG_GLUT_H to prevent a freeglut naming clash
ehofman [Fri, 22 Aug 2003 08:03:10 +0000 (08:03 +0000)]
Rename every instance of GLUT_H to FG_GLUT_H to prevent a freeglut naming clash

20 years agoChange GLUT_H to FG_GLUT_H to prevent a naming clash with freeglut.
ehofman [Thu, 21 Aug 2003 09:12:12 +0000 (09:12 +0000)]
Change GLUT_H to FG_GLUT_H to prevent a naming clash with freeglut.

20 years agoAdd support for moving cloud layers
ehofman [Tue, 19 Aug 2003 13:06:51 +0000 (13:06 +0000)]
Add support for moving cloud layers

20 years agoFix some network layer issues. Some htonl() calls didn't use the return value.
ehofman [Mon, 18 Aug 2003 11:11:08 +0000 (11:11 +0000)]
Fix some network layer issues. Some htonl() calls didn't use the return value.

20 years agoAdd a comment on how to enable an alternative HOT algorithm that enables one to fly...
ehofman [Mon, 18 Aug 2003 09:34:12 +0000 (09:34 +0000)]
Add a comment on how to enable an alternative HOT algorithm that enables one to fly underneath static objects

20 years agoFix a bug where a test was perfromed on a variable that wasn;'t even initialized...
ehofman [Mon, 18 Aug 2003 09:26:26 +0000 (09:26 +0000)]
Fix a bug where a test was perfromed on a variable that wasn;'t even initialized (and wrong) and add support for tab and space as a seperator

20 years agoSome small (linux) fixes
ehofman [Sun, 17 Aug 2003 10:03:36 +0000 (10:03 +0000)]
Some small (linux) fixes

20 years agoReorganization of main.cxx
ehofman [Sun, 17 Aug 2003 09:54:41 +0000 (09:54 +0000)]
Reorganization of main.cxx