]> git.mxchange.org Git - flightgear.git/blob - src/Model/model_panel.hxx
Remove unnecessary inclusions of sg.h ans ssg.h
[flightgear.git] / src / Model / model_panel.hxx
1 // model.hxx - manage a 3D aircraft model.
2 // Written by David Megginson, started 2002.
3 //
4 // This file is in the Public Domain, and comes with no warranty.
5
6 #ifndef __MODEL_HXX
7 #define __MODEL_HXX 1
8
9 #ifndef __cplusplus
10 # error This library requires C++
11 #endif
12
13 #include <vector>
14
15 SG_USING_STD(vector);
16
17 #include <simgear/math/point3d.hxx>
18 #include <simgear/props/props.hxx>
19
20
21 // Don't pull in the headers, since we don't need them here.
22 class ssgBranch;
23 class ssgEntity;
24 class ssgRangeSelector;
25 class ssgSelector;
26 class ssgTransform;
27
28 class SGInterpTable;
29 class FGCondition;
30 class FGLocation;
31
32
33 // Has anyone done anything *really* stupid, like making min and max macros?
34 #ifdef min
35 #undef min
36 #endif
37 #ifdef max
38 #undef max
39 #endif
40
41
42 /**
43  * Load a 3D model with or without XML wrapper.  This version supports
44  * also loading the instrument panel and is wired in with dependencies
45  * on panelnode.hxx, and thus files in src/Cockpit and also GUI/mouse
46  * input code to support the 3d clickable hotspots.
47  *
48  * If the path ends in ".xml", then it will be used as a property-
49  * list wrapper to add animations to the model.
50  *
51  * Subsystems should not normally invoke this function directly;
52  * instead, they should use the SGModelLoader declared in loader.hxx.
53  */
54 ssgBranch *fgLoad3DModelPanel( const string& fg_root, const string &path,
55                                SGPropertyNode *prop_root,
56                                double sim_time_sec );
57
58
59 #endif // __MODEL_HXX