New in 0.52
+* Stars added in 8 stages as sky gets darker for a smoother more realistic
+ transition.
+* rewrote star loader to significantly improve load times.
+* Tweaked sky brightness and dawn/dusk colors.
* Fixed a small problem with moon rendering.
* Fog color tries to track the sky color at the center of view in sunrise
and sunset situations.
Created the Generic Polygon Clipping library
-Jonathan R Shewchuk <Jonathan_R_Shewchuk@ux4.sp.cs.cmu.edu>
- Author of the Triangle program. Triangle is used to calculate the
- Delauney triangulation of our irregular terrain.
-
-
-Michael Smith <msmith99@flash.net>
- Contributed cockpit graphics, 3d models, logos, and other images.
- Project Bonanza - http://members.xoom.com/ConceptSim/index.html
-
-
-U.S. Geological Survey - http://edcwww.cr.usgs.gov/doc/edchome/ndcdb/ndcdb.html
- Provided geographic data used by this project
-
-
Friedemann Reinhard <mpt218@faupt212.physik.uni-erlangen.de>
Contributed beginnings of a textured instrument panel.
will have an influence on the development of our own audio library.
+Jonathan R Shewchuk <Jonathan_R_Shewchuk@ux4.sp.cs.cmu.edu>
+ Author of the Triangle program. Triangle is used to calculate the
+ Delauney triangulation of our irregular terrain.
+
+
+Gordan Sikic <gsikic@public.srce.hr>
+ Contributed a cherokee flight model for LaRCsim. Currently is not
+ working and needs to be debugged. Use configure --with-flight-model=cherokee
+ to build the cherokee instead of the navion.
+
+
+Michael Smith <msmith99@flash.net>
+ Contributed cockpit graphics, 3d models, logos, and other images.
+ Project Bonanza - http://members.xoom.com/ConceptSim/index.html
+
+
+U.S. Geological Survey - http://edcwww.cr.usgs.gov/doc/edchome/ndcdb/ndcdb.html
+ Provided geographic data used by this project
+
+
Durk Talsma <pn_talsma@macmail.psy.uva.nl>
Accurate Sun, Moon, and Planets. Sun changes color based on
position in sky. Moon has correct phase and blends well into the
dnl even the implied warranty of MERCHANTABILITY or FITNESS FOR A
dnl PARTICULAR PURPOSE.
+# Define a conditional.
+
+AC_DEFUN(AM_CONDITIONAL,
+[AC_SUBST($1_TRUE)
+AC_SUBST($1_FALSE)
+if $2; then
+ $1_TRUE=
+ $1_FALSE='#'
+else
+ $1_TRUE='#'
+ $1_FALSE=
+fi])
+
# Do all the work for Automake. This macro actually does too much --
# some checks are only needed if your package does certain things.
# But this isn't really a big deal.
fi
AC_SUBST($1)])
-# Define a conditional.
-
-AC_DEFUN(AM_CONDITIONAL,
-[AC_SUBST($1_TRUE)
-AC_SUBST($1_FALSE)
-if $2; then
- $1_TRUE=
- $1_FALSE='#'
-else
- $1_TRUE='#'
- $1_FALSE=
-fi])
-
# Like AC_CONFIG_HEADER, but automatically create stamp file.
AC_DEFUN(AM_CONFIG_HEADER,
AC_INIT(Simulator/Aircraft/aircraft.c)
+dnl specify the compiled flight model
+AC_ARG_WITH(flight-model, [ --with-flight-model Specify the compiled in flight model (navion, cherokee)])
+
+if test "x$with_flight_model" = "xcherokee" ; then
+ echo "Building with cherokee flight model"
+else
+ echo "Building with navion flight model"
+fi
+AM_CONDITIONAL(ENABLE_CHEROKEE, test "x$with_flight_model" = "xcherokee")
+
dnl Let the Win32 user specify if they want to build with the SGI
dnl opengl.dll as opposed to the more standard openg32.dll
AC_ARG_WITH(sgiopengl, [ --with-sgiopengl Build against opengl.dll glu.dll and glut.dll])