1
0
Fork 0
flightgear/src/Model
curt 2119db35c3 This is step "1" of probably "many" in the process of separating out the
scene management code and organizing it within simgear.  My strategy is
to identify the code I want to move, and break it's direct flightgear
dependencies.  Then it will be free to move over into the simgear package.

- Moved some property specific code into simgear/props/
- Split out the condition code from fgfs/src/Main/fg_props and put it
  in it's own source file in simgear/props/
- Created a scene subdirectory for scenery, model, and material property
  related code.
- Moved location.[ch]xx into simgear/scene/model/
- The location and condition code had dependencies on flightgear's global
  state (all the globals-> stuff, the flightgear property tree, etc.)  SimGear
  code can't depend on it so that data has to be passed as parameters to the
  functions/methods/constructors.
- This need to pass data as function parameters had a dramatic cascading
  effect throughout the FlightGear code.
2003-05-06 23:46:24 +00:00
..
.cvsignore Moved FGAircraftModel subsystem out into its own directory, and 2002-04-05 03:19:34 +00:00
acmodel.cxx This is step "1" of probably "many" in the process of separating out the 2003-05-06 23:46:24 +00:00
acmodel.hxx Separate the model geodetic position and orientation into a separate 2002-06-10 13:20:26 +00:00
loader.cxx This is step "1" of probably "many" in the process of separating out the 2003-05-06 23:46:24 +00:00
loader.hxx This is step "1" of probably "many" in the process of separating out the 2003-05-06 23:46:24 +00:00
Makefile.am Tidy up the autoconf/automake configuration a bit. 2002-08-25 19:40:04 +00:00
model.cxx This is step "1" of probably "many" in the process of separating out the 2003-05-06 23:46:24 +00:00
model.hxx This is step "1" of probably "many" in the process of separating out the 2003-05-06 23:46:24 +00:00
modelmgr.cxx This is step "1" of probably "many" in the process of separating out the 2003-05-06 23:46:24 +00:00
modelmgr.hxx Made it possible to add and remove models programmatically, as 2002-12-30 15:44:11 +00:00
panelnode.cxx This is step "1" of probably "many" in the process of separating out the 2003-05-06 23:46:24 +00:00
panelnode.hxx Andy Ross: 2002-10-29 19:44:03 +00:00
README Updated docs for this directory. 2002-04-20 14:05:49 +00:00
TODO Updated docs for this directory. 2002-04-20 14:05:49 +00:00

Last updated $Date$

This directory contains code for loading, positioning, orienting, and
animating 3D models.

acmodel.cxx
acmodel.hxx
  This module defines the FGAircraftModel subsystem, which manages the 3D
  model representing the aircraft the user is flying.

model.cxx
model.hxx
  This module defines the FG3DModel class, which represents any 3D
  model in the FlightGear world.

modelmgr.cxx
modelmgr.hxx
  This module defines the FGModelMgr subsystem, which manages all 3D
  models except for the aircraft.