2003-05-08 20:28:46 +00:00
|
|
|
// model.hxx - manage a 3D aircraft model.
|
|
|
|
// Written by David Megginson, started 2002.
|
|
|
|
//
|
|
|
|
// This file is in the Public Domain, and comes with no warranty.
|
|
|
|
|
|
|
|
#ifndef __MODEL_HXX
|
|
|
|
#define __MODEL_HXX 1
|
|
|
|
|
|
|
|
#ifndef __cplusplus
|
|
|
|
# error This library requires C++
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
SG_USING_STD(vector);
|
|
|
|
|
|
|
|
#include <simgear/math/point3d.hxx>
|
|
|
|
#include <simgear/props/props.hxx>
|
|
|
|
|
|
|
|
|
|
|
|
// Don't pull in the headers, since we don't need them here.
|
|
|
|
class ssgBranch;
|
|
|
|
class ssgEntity;
|
|
|
|
class ssgRangeSelector;
|
|
|
|
class ssgSelector;
|
|
|
|
class ssgTransform;
|
|
|
|
|
|
|
|
class SGInterpTable;
|
|
|
|
class FGCondition;
|
|
|
|
class FGLocation;
|
|
|
|
|
|
|
|
|
|
|
|
// Has anyone done anything *really* stupid, like making min and max macros?
|
|
|
|
#ifdef min
|
|
|
|
#undef min
|
|
|
|
#endif
|
|
|
|
#ifdef max
|
|
|
|
#undef max
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load a 3D model with or without XML wrapper. This version supports
|
|
|
|
* also loading the instrument panel and is wired in with dependencies
|
|
|
|
* on panelnode.hxx, and thus files in src/Cockpit and also GUI/mouse
|
|
|
|
* input code to support the 3d clickable hotspots.
|
|
|
|
*
|
|
|
|
* If the path ends in ".xml", then it will be used as a property-
|
|
|
|
* list wrapper to add animations to the model.
|
|
|
|
*
|
|
|
|
* Subsystems should not normally invoke this function directly;
|
2003-05-13 03:18:42 +00:00
|
|
|
* instead, they should use the SGModelLoader declared in loader.hxx.
|
2003-05-08 20:28:46 +00:00
|
|
|
*/
|
|
|
|
ssgBranch *fgLoad3DModelPanel( const string& fg_root, const string &path,
|
|
|
|
SGPropertyNode *prop_root,
|
|
|
|
double sim_time_sec );
|
|
|
|
|
|
|
|
|
|
|
|
#endif // __MODEL_HXX
|