1
0
Fork 0
Commit graph

54 commits

Author SHA1 Message Date
curt
cc0d582e26 Converted to c++ style comments. 1998-09-24 15:36:19 +00:00
curt
aa60beb13d Miscellaneous tweaks. 1998-09-24 15:25:22 +00:00
curt
9e9fbd3185 Fixed output message. 1998-09-17 18:25:11 +00:00
curt
a7ebfb4b65 New textured moon and rewritten/restructured Astro code contributed by Durk
Talsma.
1998-09-15 04:26:07 +00:00
curt
8fe7595b7c log file tweak. 1998-09-03 21:25:39 +00:00
curt
747bc7c6b4 Changes contributed by Bernie Bright <bbright@c031.aone.net.au>
- The new classes in libmisc.tgz define a stream interface into zlib.
   I've put these in a new directory, Lib/Misc.  Feel free to rename it
   to something more appropriate.  However you'll have to change the
   include directives in all the other files.  Additionally you'll have
   add the library to Lib/Makefile.am and Simulator/Main/Makefile.am.

   The StopWatch class in Lib/Misc requires a HAVE_GETRUSAGE autoconf
   test so I've included the required changes in config.tgz.

   There are a fair few changes to Simulator/Objects as I've moved
   things around.  Loading tiles is quicker but thats not where the delay
   is.  Tile loading takes a few tenths of a second per file on a P200
   but it seems to be the post-processing that leads to a noticeable
   blip in framerate.  I suppose its time to start profiling to see where
   the delays are.

   I've included a brief description of each archives contents.

Lib/Misc/
  zfstream.cxx
  zfstream.hxx
    C++ stream interface into zlib.
    Taken from zlib-1.1.3/contrib/iostream/.
    Minor mods for STL compatibility.
    There's no copyright associated with these so I assume they're
    covered by zlib's.

  fgstream.cxx
  fgstream.hxx
    FlightGear input stream using gz_ifstream.  Tries to open the
    given filename.  If that fails then filename is examined and a
    ".gz" suffix is removed or appended and that file is opened.

  stopwatch.hxx
    A simple timer for benchmarking.  Not used in production code.
    Taken from the Blitz++ project.  Covered by GPL.

  strutils.cxx
  strutils.hxx
    Some simple string manipulation routines.

Simulator/Airports/
  Load airports database using fgstream.
  Changed fgAIRPORTS to use set<> instead of map<>.
  Added bool fgAIRPORTS::search() as a neater way doing the lookup.
  Returns true if found.

Simulator/Astro/
  Modified fgStarsInit() to load stars database using fgstream.

Simulator/Objects/
  Modified fgObjLoad() to use fgstream.
  Modified fgMATERIAL_MGR::load_lib() to use fgstream.
  Many changes to fgMATERIAL.
  Some changes to fgFRAGMENT but I forget what!
1998-09-01 19:02:53 +00:00
curt
f801b0ed1e Rewrite of event manager thanks to Bernie Bright. 1998-08-29 13:07:16 +00:00
curt
283a23159a Contributions from Bernie Bright <bbright@c031.aone.net.au>
- use strings for fg_root and airport_id and added methods to return
  them as strings,
- inlined all access methods,
- made the parsing functions private methods,
- deleted some unused functions.
- propogated some of these changes out a bit further.
1998-08-27 17:01:55 +00:00
curt
9d608dd593 Shuffled $FG_ROOT file layout. 1998-08-25 20:53:24 +00:00
curt
378969e7b8 Nailed a uninitialized variable usage bug that was killing us on some
platforms with some compiler options.
1998-08-22 02:01:11 +00:00
curt
2912a48965 Minor tweaks to avoid using unitialized memory. 1998-08-22 01:18:59 +00:00
curt
0118151a84 Sky now tracks adjusted fog color so it blends well with terrain. 1998-08-12 21:40:44 +00:00
curt
9568e79ac5 Rewrote star loading and rendering to:
1. significantly improve load speed
  2. transition from no stars to stars through eight stages.
1998-08-10 20:33:09 +00:00
curt
737b4cc6b8 Modified to bring in stars in 8 increments based on magnitude, not number
of stars.
1998-08-06 12:45:20 +00:00
curt
dbf002ddc0 Eliminated glScale call so that glutSolidSphere normals are preserved
correctly.  Also made the sun & moon a bit smaller.
1998-07-30 23:43:30 +00:00
curt
3fb75af08f Lower skirt tracks adjusted fog color, not fog color. 1998-07-22 21:39:21 +00:00
curt
4abe562805 Wrote access functions for current fgOPTIONS. 1998-07-13 21:00:09 +00:00
curt
3fb9a879a7 In fgCalculatePlanet() pass a pointer to a structure to be modified, rather
than returning the entire structure.
1998-06-27 16:51:54 +00:00
curt
1642829438 Build only static libraries. 1998-06-12 01:01:14 +00:00
curt
371806f033 Added zlib support for reading in compressed data files. 1998-05-29 20:35:41 +00:00
curt
26757b73b2 Derived file "Makefile.in" removed from version control. 1998-05-23 14:18:28 +00:00
curt
474849f96b Use new C++ events class. 1998-05-23 14:07:14 +00:00
curt
37df3de51d Root path info moved to fgOPTIONS. 1998-05-13 18:25:34 +00:00
curt
c0f121ab00 Type-ified fgTIME and fgVIEW 1998-04-28 01:18:59 +00:00
curt
4a487175c9 "struct fgLIGHT" -> "fgLIGHT" because fgLIGHT is typedef'd. 1998-04-26 05:10:00 +00:00
curt
0b782544a3 Edited cvs log messages in source files ... bad bad bad! 1998-04-25 22:06:24 +00:00
curt
d830cbf39a Wrapped "#include <config.h>" in "#ifdef HAVE_CONFIG_H"
Fixed a bug when generating sky colors.
1998-04-24 00:45:00 +00:00
curt
aba1974dad C++ - ifing the code a bit. 1998-04-22 13:21:26 +00:00
curt
664b1fa4a8 Prepairing for C++ integration. 1998-04-21 17:02:27 +00:00
curt
7d39aa3777 Moved fg_debug.c to it's own library. 1998-04-18 04:13:51 +00:00
curt
ab59ca78b9 Code reorganizations. Added a Lib/ directory for more general libraries. 1998-04-14 02:23:04 +00:00
curt
8c3b74b775 Tweaks to Gnu automake/autoconf system. 1998-04-08 23:32:28 +00:00
curt
b69c64da41 Minor cleanups and reorganizations. 1998-04-06 15:56:15 +00:00
curt
54d5c7a071 Converting to Gnu autoconf system. 1998-04-03 21:50:53 +00:00
curt
ff852dc871 Updated fgGENERAL to a "type" of struct. 1998-03-14 00:27:12 +00:00
curt
0d86b4c20f Incorporated Durk's updates. 1998-03-09 22:47:25 +00:00
curt
e798c59696 Incorporated Durk's Astro/ tweaks. Includes unifying the sun position
calculation code between sun display, and other FG sections that use this
for things like lighting.
1998-02-23 19:07:49 +00:00
curt
e5a447ece9 Incorporated some HUD tweaks from Michelle America.
Tweaked the sky's sunset/rise colors.
Other misc. tweaks.
1998-02-19 13:05:43 +00:00
curt
913fe75558 Incorporated code changes contributed by Charlie Hotchkiss
<chotchkiss@namg.us.anritsu.com>
1998-02-12 21:58:27 +00:00
curt
b570e9ce9a Removed "depend" files from cvs control. Other minor make tweaks. 1998-02-09 22:56:28 +00:00
curt
d126b3d8f0 Minor tweaks. 1998-02-09 15:07:47 +00:00
curt
50c0f6c9e6 Incorporated HUD changes and struct/typedef changes from Charlie Hotchkiss
<chotchkiss@namg.us.anritsu.com>
1998-02-07 15:29:31 +00:00
curt
0bb3c2969a Lots of little tweaks to fix various consistency problems discovered by
Solaris' CC.  Fixed a bug in fg_debug.c with how the fgPrintf() wrapper
passed arguments along to the real printf().  Also incorporated HUD changes
by Michele America.
1998-02-03 23:20:08 +00:00
curt
cff17bc840 To version 0.29 1998-02-02 20:52:20 +00:00
curt
a9cdbcf0b1 Minor tweaks. 1998-01-27 18:35:53 +00:00
curt
3680a11148 Incorporated Paul Bleisch's <bleisch@chromatic.com> new debug message
system and commandline/config file processing code.
1998-01-27 00:47:41 +00:00
curt
0322d1d108 Added a "skirt" to try to help hide gaps between scenery and sky. This will
have to be revisited in the future.
1998-01-26 15:54:28 +00:00
curt
38264efc4d Changed #ifdef FILE_H to #ifdef _FILE_H 1998-01-22 02:59:23 +00:00
curt
ec140f2161 More misc. tweaks for rpk make merge. 1998-01-19 19:42:58 +00:00
curt
bda27365e4 Merged in make system changes from Bob Kuehne <rpk@sgi.com>
This should simplify things tremendously.
1998-01-19 19:26:51 +00:00