]> git.mxchange.org Git - flightgear.git/blob - src/FDM/fdm_shell.hxx
04bbf1b722a1c409f3e8a5a25ae973d8304906f1
[flightgear.git] / src / FDM / fdm_shell.hxx
1 // fdm_shell.hxx -- encapsulate FDM implementations as well-behaved subsystems
2 //
3 // Written by James Turner, started June 2010.
4 //
5 // Copyright (C) 2010  Curtis L. Olson  - http://www.flightgear.org/~curt
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23 #ifndef FG_FDM_SHELL_HXX
24 #define FG_FDM_SHELL_HXX
25
26 #include <simgear/structure/subsystem_mgr.hxx>
27 #include "TankProperties.hxx"
28
29 // forward decls
30 class FGInterface;
31
32 /**
33  * Wrap an FDM implementation in a subsystem with standard semantics
34  * Notably, deal with the various cases in which update() should not
35  * be called, such as replay or before scenery has loaded
36  *
37  * This class also provides the factory method which creates the
38  * specific FDM class (createImplementation)
39  */
40 class FDMShell : public SGSubsystem
41 {
42 public:
43   FDMShell();
44   ~FDMShell();
45   
46   virtual void init();
47   virtual void reinit();
48   
49   virtual void bind();
50   virtual void unbind();
51   
52   virtual void update(double dt);
53   SGSubsystem* getFDM();
54
55 private:
56
57   void createImplementation();
58   
59   TankPropertiesList _tankProperties;
60   FGInterface* _impl;
61   SGPropertyNode* _props; // root property tree for this FDM instance
62   bool _dataLogging;
63 };
64
65 #endif // of FG_FDM_SHELL_HXX