]> git.mxchange.org Git - simgear.git/log
simgear.git
14 years agoCreate a singleton for the parser table
Tim Moore [Sun, 19 Jul 2009 21:05:04 +0000 (23:05 +0200)]
Create a singleton for the parser table

14 years agoMove definition of SGRawBase<...>::printOn out of simgear namespace
Tim Moore [Sun, 19 Jul 2009 20:39:16 +0000 (22:39 +0200)]
Move definition of SGRawBase<...>::printOn out of simgear namespace

They are declared in the global namespace, and MSVC insists that they be
defined there.

14 years agoAdd missing return statements
Tim Moore [Sat, 18 Jul 2009 08:12:59 +0000 (10:12 +0200)]
Add missing return statements

14 years agoStore material data with Effect
Tim Moore [Fri, 17 Jul 2009 14:16:25 +0000 (16:16 +0200)]
Store material data with Effect

Somehow this got left out, which broke ground intersection queries.

14 years agoChange references to property types
Tim Moore [Fri, 17 Jul 2009 12:52:58 +0000 (14:52 +0200)]
Change references to property types

BOOL, FLOAT etc. conflict with typedefs in windows.h, so these types
are referred to using the props:: namespace.

14 years agoChanged SGRawValue::DefaultValue to an inline function.
Tim Moore [Fri, 17 Jul 2009 09:40:36 +0000 (11:40 +0200)]
Changed SGRawValue::DefaultValue to an inline function.

This avoids MSVC bugs in declaring templated specializations of static members.

14 years agoUse SGAtomic's compareAndExchange instead of a new SGSwappable class
Tim Moore [Thu, 16 Jul 2009 22:29:48 +0000 (00:29 +0200)]
Use SGAtomic's compareAndExchange instead of a new SGSwappable class

Also, eliminate the __declspec(32) of that class which is causing problems
in osg::buffered_object.

14 years agoinclude file change to make simgear work with OSG 2.9.X again
Tim Moore [Thu, 16 Jul 2009 21:09:10 +0000 (23:09 +0200)]
include file change to make simgear work with OSG 2.9.X again

14 years agoFix effects code to work with OSG 2.8.2-rc4
Tim Moore [Thu, 16 Jul 2009 16:25:36 +0000 (18:25 +0200)]
Fix effects code to work with OSG 2.8.2-rc4

14 years agoUse std::back_inserter instead of my local hack
Tim Moore [Thu, 16 Jul 2009 10:53:11 +0000 (12:53 +0200)]
Use std::back_inserter instead of my local hack

BackRefInsertIterator is probably broken and may not be needed at all.

14 years agoAdd new Effects files to vcproj
timoore [Wed, 15 Jul 2009 23:12:25 +0000 (23:12 +0000)]
Add new Effects files to vcproj

14 years agoFixes for technique predicates
timoore [Wed, 15 Jul 2009 23:11:55 +0000 (23:11 +0000)]
Fixes for technique predicates

Get tests based on properties and OpenGL extensions working.

14 years agomore effects features
timoore [Wed, 15 Jul 2009 23:11:44 +0000 (23:11 +0000)]
more effects features

Materials can specify an effect.

Add support for PolygonMode and initial support for Uniform.

14 years agoConstruct effects from property lists
timoore [Wed, 15 Jul 2009 23:10:44 +0000 (23:10 +0000)]
Construct effects from property lists

The material code constructs a property list from its input parameters.

Enable dumping of Pass and Technique objects to a file.

Default effect now uses texture node instead of texture0

14 years agomaterials use only simgear::Effect
timoore [Wed, 15 Jul 2009 23:10:32 +0000 (23:10 +0000)]
materials use only simgear::Effect

Eliminate SGMaterial::get_state function.

Use Effect in BVH visitor, ocean tile generation, and airport signs.

14 years agoUse Effect to implement point lights
timoore [Wed, 15 Jul 2009 23:10:21 +0000 (23:10 +0000)]
Use Effect to implement point lights

This allows different OpenGL features (point sprites, point attenuation) to
be used depending on hardware support.

14 years agoUse SGExpressions for evaluating a Technique's validity
timoore [Wed, 15 Jul 2009 23:10:13 +0000 (23:10 +0000)]
Use SGExpressions for evaluating a Technique's validity

14 years agoOverhaul of SGExpression
timoore [Wed, 15 Jul 2009 23:10:06 +0000 (23:10 +0000)]
Overhaul of SGExpression

Polymorphic additions to expressions: Add an expression base class
with a method for dynamically determining the type of an expression.

Add variables, predicates and boolian expressions.

Support for parsing trees of expressions

14 years agoWork in progress for Technique validation
timoore [Wed, 15 Jul 2009 23:09:58 +0000 (23:09 +0000)]
Work in progress for Technique validation

14 years agoUse Effects in materials library, and therefore in scenery
timoore [Wed, 15 Jul 2009 23:09:31 +0000 (23:09 +0000)]
Use Effects in materials library, and therefore in scenery

14 years agoEffects framework
timoore [Wed, 15 Jul 2009 23:09:19 +0000 (23:09 +0000)]
Effects framework

14 years agoBlow away unused SGMaterialLib::add_item functions
timoore [Wed, 15 Jul 2009 23:08:42 +0000 (23:08 +0000)]
Blow away unused SGMaterialLib::add_item functions

14 years agocleanup
timoore [Wed, 15 Jul 2009 23:08:36 +0000 (23:08 +0000)]
cleanup

Add support for boost::mem_fn to SGSharedPtr.

Remove a couple of "using" declarations from scene/model/model.hxx

14 years agoAdd PropertyList typedef for vectors of property list nodes.
timoore [Wed, 15 Jul 2009 23:08:30 +0000 (23:08 +0000)]
Add PropertyList typedef for vectors of property list nodes.

14 years agoAdd a method to setStringValue that takes a std::string argument
timoore [Wed, 15 Jul 2009 23:08:22 +0000 (23:08 +0000)]
Add a method to setStringValue that takes a std::string argument

14 years agoDon't cache results of getDisplayName
timoore [Wed, 15 Jul 2009 23:08:10 +0000 (23:08 +0000)]
Don't cache results of getDisplayName

Return a std::string result instead of char *.

14 years agoAdd VEC3D and VEC4D property types
timoore [Wed, 15 Jul 2009 23:08:01 +0000 (23:08 +0000)]
Add VEC3D and VEC4D property types

Add "extended" argument to readProperties, which controls whether the vector
 property types are accepted by the XML reader.

14 years agoExtend properties to support new property types.
timoore [Wed, 15 Jul 2009 23:07:53 +0000 (23:07 +0000)]
Extend properties to support new property types.

An SGRawBase class has been added as a base class to the SGRawValue
hierarchy so that SGPropertyValue functions don't necessarily need to
know the type of the value stored in the node.

A new SGRawValueContainer class stores properties that shouldn't be
stored in the node itself. PropertyTraits indicates if a type is
stored in the property node or externally.

Add getValue and SetValue template member functions to SGPropertyNode.

Read and write new extended properties.

Rearrange props.hxx a bit so that the template magic actually works.

Split out extended raw value virtual functions into a seperate base class.

SGRawExtended is chosen as a base class of SGRawValue for extended property
types.

14 years agoCleanup of properties
timoore [Wed, 15 Jul 2009 23:07:45 +0000 (23:07 +0000)]
Cleanup of properties

Change most uses of the SGPropertyNode _value union to use static_cast.

Move SGPropertyNode::Type out of the class into simgear::props namespace. Add
a PropertyTraits class so that templates can calculate the property type tag
based on a C++ type.

In destructor, delete _value.val if it is not 0 (and the property is not
aliased).

14 years agoRefactor GLX only debug code
fredb [Sun, 12 Jul 2009 17:48:49 +0000 (17:48 +0000)]
Refactor GLX only debug code

14 years agoCompile when not GLX
fredb [Mon, 6 Jul 2009 22:58:09 +0000 (22:58 +0000)]
Compile when not GLX

14 years agoGeoff McLane:
ehofman [Thu, 2 Jul 2009 14:01:38 +0000 (14:01 +0000)]
Geoff McLane:
add a bunch of debugging code to find a persistant bug for Atlas/Map and fix them one by one.

15 years agoSupport MSVC 64-bit architecture
fredb [Sun, 28 Jun 2009 22:20:22 +0000 (22:20 +0000)]
Support MSVC 64-bit architecture

15 years agoAdd MSVC90 (VS2008) project files
fredb [Sun, 28 Jun 2009 20:27:15 +0000 (20:27 +0000)]
Add MSVC90 (VS2008) project files

15 years agoUpdate MSVC 7.1 projects - Put PLIB and FLTK in 3rdParty
fredb [Sun, 28 Jun 2009 13:34:31 +0000 (13:34 +0000)]
Update MSVC 7.1 projects - Put PLIB and FLTK in 3rdParty

15 years agoRemove unneeded explicit scenegraph deletion.
frohlich [Sun, 28 Jun 2009 09:19:04 +0000 (09:19 +0000)]
Remove unneeded explicit scenegraph deletion.

Modified Files:
simgear/scene/tgdb/TileCache.cxx
  simgear/scene/tgdb/TileEntry.cxx
simgear/scene/tgdb/TileEntry.hxx

15 years agoRemove unmaintained, outdated and misleading project files. Use VC7.1 projects instead
fredb [Sat, 27 Jun 2009 21:45:25 +0000 (21:45 +0000)]
Remove unmaintained, outdated and misleading project files. Use VC7.1 projects instead

15 years agoSuppress warnings
fredb [Sat, 27 Jun 2009 07:41:33 +0000 (07:41 +0000)]
Suppress warnings

15 years agoWin32 fix
fredb [Sat, 27 Jun 2009 06:41:08 +0000 (06:41 +0000)]
Win32 fix

15 years agoProvide a thread safe SGWeakPtr implementation.
frohlich [Wed, 24 Jun 2009 05:19:52 +0000 (05:19 +0000)]
Provide a thread safe SGWeakPtr implementation.
Extend SGAtomic with atomic exchange and add.
Import updates from the original implementation of that in OpenFDM.

Modified Files:
  Makefile.am SGAtomic.cxx SGAtomic.hxx SGReferenced.hxx
  SGSharedPtr.hxx
Added Files:
  SGWeakPtr.hxx SGWeakReferenced.hxx

15 years agoUpdate MSVC 7.1 projects
fredb [Tue, 23 Jun 2009 20:35:41 +0000 (20:35 +0000)]
Update MSVC 7.1 projects

15 years agoWin32 fix
fredb [Tue, 23 Jun 2009 20:35:17 +0000 (20:35 +0000)]
Win32 fix

15 years agoNo observed_ptr needed.
frohlich [Tue, 23 Jun 2009 20:34:46 +0000 (20:34 +0000)]
No observed_ptr needed.

Modified Files:
simgear/scene/model/ModelRegistry.cxx

15 years agoRemove unused headers.
frohlich [Tue, 23 Jun 2009 20:26:57 +0000 (20:26 +0000)]
Remove unused headers.

Modified Files:
simgear/scene/tgdb/TileEntry.cxx

15 years agoPropagate the lanel loader through the options.
frohlich [Tue, 23 Jun 2009 20:26:26 +0000 (20:26 +0000)]
Propagate the lanel loader through the options.

Modified Files:
simgear/scene/model/SGReaderWriterXML.cxx

15 years agoMove the carrier interactive geometry configuration into the model files.
frohlich [Mon, 22 Jun 2009 18:39:44 +0000 (18:39 +0000)]
Move the carrier interactive geometry configuration into the model files.

Modified Files:
Makefile.am animation.cxx
Added Files:
SGInteractionAnimation.hxx SGInteractionAnimation.cxx

15 years agoMove the texture code to FlightGear/utils/Modeller
ehofman [Mon, 22 Jun 2009 09:35:12 +0000 (09:35 +0000)]
Move the texture code to FlightGear/utils/Modeller

15 years agoAdd some trailing spaces ...
frohlich [Sat, 20 Jun 2009 11:11:48 +0000 (11:11 +0000)]
Add some trailing spaces ...

Modified Files:
  ./simgear/math/SGIntersect.hxx

15 years agoFix a warning from GCC - 'ALIAS' was unhandled in the switch stmt.
jmt [Sat, 20 Jun 2009 09:33:44 +0000 (09:33 +0000)]
Fix a warning from GCC - 'ALIAS' was unhandled in the switch stmt.

15 years agochange MAX_PATH to max_path to avoid Windows compilation problems
Tim Moore [Wed, 17 Jun 2009 09:37:21 +0000 (11:37 +0200)]
change MAX_PATH to max_path to avoid Windows compilation problems

15 years agooverhaul sg_throwable to behave like a proper exception
Tim Moore [Wed, 4 Mar 2009 10:15:47 +0000 (11:15 +0100)]
overhaul sg_throwable to behave like a proper exception

Make sg_throwable inherit from std::exception.

change exception objects to contain C strings: exception objects should not
include objects, like std::string, whose copy constructor could throw.

15 years agoAdd a simple class to subdivide Bezier curves
fredb [Sun, 14 Jun 2009 10:56:28 +0000 (10:56 +0000)]
Add a simple class to subdivide Bezier curves

15 years agoRemove unused variable
fredb [Sun, 14 Jun 2009 10:53:09 +0000 (10:53 +0000)]
Remove unused variable

15 years agoFinally get rid of that member in the SGModelData callback.
frohlich [Thu, 11 Jun 2009 18:53:19 +0000 (18:53 +0000)]
Finally get rid of that member in the SGModelData callback.
Move call of SGModelData::modelLoaded directly into the xml reader.

Modified Files:
  simgear/scene/model/SGPagedLOD.cxx
  simgear/scene/model/modellib.hxx
  simgear/scene/model/modellib.cxx
  simgear/scene/model/SGReaderWriterXML.cxx

15 years agoMark static transforms as static.
frohlich [Thu, 11 Jun 2009 18:32:46 +0000 (18:32 +0000)]
Mark static transforms as static.

Modified Files:
simgear/scene/tgdb/TileEntry.cxx

15 years agoRevert a change from 2009/06/07.
frohlich [Thu, 11 Jun 2009 13:39:52 +0000 (13:39 +0000)]
Revert a change from 2009/06/07.
Should make the Nasal code for some xml models work again.

Modified Files:
  simgear/scene/model/SGPagedLOD.cxx
simgear/scene/model/SGReaderWriterXML.cxx
  simgear/scene/model/modellib.cxx
simgear/scene/model/modellib.hxx

15 years agoAlso handle PagedLOD nodes frame count in the update visitor.
frohlich [Thu, 11 Jun 2009 08:42:44 +0000 (08:42 +0000)]
Also handle PagedLOD nodes frame count in the update visitor.

Modified Files:
  simgear/scene/util/SGUpdateVisitor.hxx

15 years agoAlso test against bounds when updating the scene.
frohlich [Thu, 11 Jun 2009 07:15:07 +0000 (07:15 +0000)]
Also test against bounds when updating the scene.

Modified Files:
simgear/scene/util/SGUpdateVisitor.hxx

15 years agoFix waypoint test, thanks Martin.
jmt [Wed, 10 Jun 2009 22:46:15 +0000 (22:46 +0000)]
Fix waypoint test, thanks Martin.

15 years agoExtend SGWaypoint with track and speed data, and compute tracks with the
jmt [Wed, 10 Jun 2009 12:42:44 +0000 (12:42 +0000)]
Extend SGWaypoint with track and speed data, and compute tracks with the
distance in SGRoute.

15 years agoWin32 fix
fredb [Tue, 9 Jun 2009 20:51:24 +0000 (20:51 +0000)]
Win32 fix

15 years agoFix bad interaction between CourseAndDistance overloads and use of implicit
jmt [Tue, 9 Jun 2009 00:01:14 +0000 (00:01 +0000)]
Fix bad interaction between CourseAndDistance overloads and use of implicit
SGWaypoint construction from SGGeod.

15 years agoUpdate route/waypoint tests for revised API
jmt [Mon, 8 Jun 2009 23:30:54 +0000 (23:30 +0000)]
Update route/waypoint tests for revised API

15 years agoChange SGWaypoint to use SGGeod internally. Remove some unused code, to
jmt [Mon, 8 Jun 2009 23:18:39 +0000 (23:18 +0000)]
Change SGWaypoint to use SGGeod internally. Remove some unused code, to
support cartesian waypoints and compute distance off a cartesian route.
Add a helper to access the total route distance.

Should not cause any visible functionality change.

15 years agoMore cleanup.
frohlich [Sun, 7 Jun 2009 11:58:11 +0000 (11:58 +0000)]
More cleanup.

Modified Files:
simgear/scene/model/SGReaderWriterXML.cxx

15 years agoDo not modify danymically generated textures.
frohlich [Sun, 7 Jun 2009 11:50:01 +0000 (11:50 +0000)]
Do not modify danymically generated textures.

Modified Files:
simgear/scene/model/ModelRegistry.cxx

15 years agoProvide something more sensible for the properties root
frohlich [Sun, 7 Jun 2009 11:30:12 +0000 (11:30 +0000)]
Provide something more sensible for the properties root
for the modelLoaded call. MAy be this needs to be revisited, but in any
case better than constant zero.

Modified Files:
  simgear/scene/model/SGPagedLOD.cxx
simgear/scene/model/modellib.cxx

15 years agoCleanup.
frohlich [Sun, 7 Jun 2009 11:27:53 +0000 (11:27 +0000)]
Cleanup.

Modified Files:
simgear/scene/model/SGReaderWriterXML.cxx

15 years agoDoing the compilers job: constant propagation.
frohlich [Sun, 7 Jun 2009 11:26:48 +0000 (11:26 +0000)]
Doing the compilers job: constant propagation.
This variable is nowhere set except to zero.

Modified Files:
model/SGPagedLOD.cxx model/SGReaderWriterXML.cxx
model/modellib.cxx model/modellib.hxx

15 years agoSlight cleanup.
frohlich [Sat, 6 Jun 2009 10:38:53 +0000 (10:38 +0000)]
Slight cleanup.
Remive last reference to plibs file utility library.

Modified Files:
  simgear/scene/model/SGReaderWriterXML.cxx

15 years agoRemove unused header.
frohlich [Sat, 6 Jun 2009 09:17:37 +0000 (09:17 +0000)]
Remove unused header.

Modified Files:
simgear/scene/tgdb/TileEntry.cxx

15 years agoUse osgDB::FileUtils instead of plib file utils.
frohlich [Sat, 6 Jun 2009 09:16:04 +0000 (09:16 +0000)]
Use osgDB::FileUtils instead of plib file utils.

Modified Files:
  simgear/scene/material/mat.cxx

15 years agoReplace SGPlacementTrans usage with osg::PositionAttitueTransform.
frohlich [Sat, 6 Jun 2009 08:07:20 +0000 (08:07 +0000)]
Replace SGPlacementTrans usage with osg::PositionAttitueTransform.
Remove SGPlacementTrans.
Update build system.

Modified Files:
SimGear.dsp projects/VC7.1/SimGear.vcproj
projects/VC8/SimGear.vcproj simgear/scene/model/Makefile.am
simgear/scene/model/placement.cxx
simgear/scene/model/placement.hxx
simgear/scene/tgdb/TileEntry.cxx
simgear/scene/tgdb/TileEntry.hxx
Removed Files:
  simgear/scene/model/placementtrans.cxx
  simgear/scene/model/placementtrans.hxx

15 years agoUse osg's builtin mechanisms to traverse only in range nodes with the
frohlich [Sat, 6 Jun 2009 07:24:26 +0000 (07:24 +0000)]
Use osg's builtin mechanisms to traverse only in range nodes with the
update visitor.

Modified Files:
simgear/scene/util/SGUpdateVisitor.hxx
  simgear/scene/tgdb/TileEntry.cxx
  simgear/scene/model/placementtrans.cxx

15 years agoInvent a property root if not given in the options struct.
frohlich [Wed, 3 Jun 2009 19:30:35 +0000 (19:30 +0000)]
Invent a property root if not given in the options struct.

Modified Files:
simgear/scene/model/SGReaderWriterXML.cxx

15 years agotest for addChild also
ehofman [Mon, 25 May 2009 11:12:59 +0000 (11:12 +0000)]
test for addChild also

15 years agofind the last index instead of the last pos for addChild
ehofman [Mon, 25 May 2009 11:12:24 +0000 (11:12 +0000)]
find the last index instead of the last pos for addChild

15 years agoAvoid empty search path extensions for the case that only the bucket index
frohlich [Mon, 25 May 2009 04:59:51 +0000 (04:59 +0000)]
Avoid empty search path extensions for the case that only the bucket index
number is given.

Modified Files:
scene/tgdb/TileEntry.cxx

15 years agoWhen loading stg files honour the original path if given.
frohlich [Sun, 24 May 2009 06:38:58 +0000 (06:38 +0000)]
When loading stg files honour the original path if given.

Modified Files:
simgear/scene/tgdb/ReaderWriterSTG.cxx
simgear/scene/tgdb/TileEntry.cxx
simgear/scene/tgdb/TileEntry.hxx

15 years agoEnable stg loading by filename.
frohlich [Sat, 23 May 2009 12:00:17 +0000 (12:00 +0000)]
Enable stg loading by filename.

Modified Files:
simgear/scene/tgdb/ReaderWriterSTG.cxx

15 years agosegfault--
mfranz [Sat, 23 May 2009 07:32:29 +0000 (07:32 +0000)]
segfault--

15 years agoCleanup.
frohlich [Fri, 22 May 2009 18:20:11 +0000 (18:20 +0000)]
Cleanup.
Additional null pointer checks.
Simplify redundant interface arguments.

Modified Files:
simgear/scene/material/mat.cxx simgear/scene/material/mat.hxx
simgear/scene/material/matlib.cxx
simgear/scene/material/matlib.hxx
simgear/scene/tgdb/ReaderWriterSTG.cxx
simgear/scene/tgdb/SGReaderWriterBTG.cxx
simgear/scene/tgdb/SGReaderWriterBTGOptions.hxx
simgear/scene/tgdb/TileEntry.cxx
simgear/scene/tgdb/TileEntry.hxx simgear/scene/tgdb/obj.cxx

15 years agoGive the models properties as an argument to the init callback.
frohlich [Fri, 22 May 2009 14:53:57 +0000 (14:53 +0000)]
Give the models properties as an argument to the init callback.

Modified Files:
  SGPagedLOD.cxx

15 years agoremove duplicated header entry
mfranz [Tue, 19 May 2009 21:29:13 +0000 (21:29 +0000)]
remove duplicated header entry

15 years agoAlso note the btg reader header in the build system.
frohlich [Tue, 19 May 2009 05:30:59 +0000 (05:30 +0000)]
Also note the btg reader header in the build system.

Modified Files:
scene/tgdb/Makefile.am

15 years agoRestore the special capability of the btg reader to read compressed files.
frohlich [Tue, 19 May 2009 05:30:16 +0000 (05:30 +0000)]
Restore the special capability of the btg reader to read compressed files.

Modified Files:
  scene/tgdb/SGReaderWriterBTG.cxx
  scene/tgdb/SGReaderWriterBTG.hxx

15 years agoImplement current osgDB::ReaderWriters supportsExtension interface instead
frohlich [Sat, 16 May 2009 18:05:21 +0000 (18:05 +0000)]
Implement current osgDB::ReaderWriters supportsExtension interface instead
of the previous one.

Modified Files:
  model/SGReaderWriterXML.cxx model/SGReaderWriterXML.hxx
  tgdb/ReaderWriterSTG.cxx tgdb/ReaderWriterSTG.hxx
  tgdb/SGReaderWriterBTG.cxx tgdb/SGReaderWriterBTG.hxx

15 years agoAttach the ModelData to the options instead of the userdata field.
frohlich [Sat, 16 May 2009 17:46:12 +0000 (17:46 +0000)]
Attach the ModelData to the options instead of the userdata field.

Modified Files:
simgear/scene/model/SGPagedLOD.cxx
simgear/scene/model/SGReaderWriterXML.cxx

15 years ago * Add a function to create a node after the laste node with the same name
ehofman [Sat, 9 May 2009 11:34:28 +0000 (11:34 +0000)]
 * Add a function to create a node after the laste node with the same name
   (this frees the xml property loader from keeping track of the number of
    nodes with the same name that have already been added to the property
    tree).
 * make some small code cleanups at the core of the property tree.

15 years agoMerge branch 'maint' into next
Tim Moore [Sun, 17 May 2009 22:34:06 +0000 (00:34 +0200)]
Merge branch 'maint' into next

15 years agoMake SimGear compile with osg trunk
frohlich [Sat, 16 May 2009 08:13:52 +0000 (08:13 +0000)]
Make SimGear compile with osg trunk

Modified Files:
simgear/scene/model/SGPagedLOD.cxx
  simgear/scene/model/SGPagedLOD.hxx
  simgear/scene/sky/cloud.cxx simgear/scene/sky/moon.cxx
simgear/structure/OSGVersion.hxx

15 years ago- fix one broken #include path (in a not usually compiled test app)
mfranz [Tue, 12 May 2009 15:56:30 +0000 (15:56 +0000)]
- fix one broken #include path (in a not usually compiled test app)
- turn four #include paths from the "foo" form to <foo>

The quotes form is normally only used for headers with path relative
to the including file's path, though the standard doesn't strictly
mandate this. This is consistent with the rest of sg, it makes the
code's intent clearer and helps to find headers. (And it's a few
milliseconds faster, too.)

15 years agotcpserver: typo
mfranz [Wed, 6 May 2009 16:17:05 +0000 (16:17 +0000)]
tcpserver: typo

15 years agofix leaks
mfranz [Wed, 6 May 2009 06:32:09 +0000 (06:32 +0000)]
fix leaks

15 years agoadd a bit of comment
ehofman [Sat, 25 Apr 2009 09:57:06 +0000 (09:57 +0000)]
add a bit of comment

15 years agoStuart Buchanan :
fredb [Sat, 18 Apr 2009 18:47:01 +0000 (18:47 +0000)]
Stuart Buchanan :
This patch changes the shader so the diffuse light element is applied based on the co-linearity of the light vector and the viewing vector. I think this makes sense, as the tree textures don't represent a surface themselves.

15 years agoRevert most of the previous patch, it didn't improve the dome since it wat adjusting...
ehofman [Sun, 12 Apr 2009 11:42:34 +0000 (11:42 +0000)]
Revert most of the previous patch, it didn't improve the dome since it wat adjusting the wrong bads

15 years agoPut some annotations into the loaded models names.
frohlich [Sun, 12 Apr 2009 09:46:36 +0000 (09:46 +0000)]
Put some annotations into the loaded models names.

Modified Files:
simgear/scene/model/modellib.cxx

15 years agoRemove a newline printf, probably left over from development.
frohlich [Sun, 12 Apr 2009 08:05:14 +0000 (08:05 +0000)]
Remove a newline printf, probably left over from development.

Modified Files:
dome.cxx

15 years agoLet the fog color transition into the sky dome to give a more natural effect
ehofman [Sat, 11 Apr 2009 12:27:05 +0000 (12:27 +0000)]
Let the fog color transition into the sky dome to give a more natural effect