]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/filtersjb/FGFCSComponent.h
d6294f93b7dd12b750ec951ffdbdc7ad1ccdc757
[flightgear.git] / src / FDM / JSBSim / filtersjb / FGFCSComponent.h
1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3  Header:       FGFCSComponent.h
4  Author:       Jon S. Berndt
5  Date started: 05/01/2000
6
7  ------------- Copyright (C)  -------------
8
9  This program is free software; you can redistribute it and/or modify it under
10  the terms of the GNU General Public License as published by the Free Software
11  Foundation; either version 2 of the License, or (at your option) any later
12  version.
13
14  This program is distributed in the hope that it will be useful, but WITHOUT
15  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
17  details.
18
19  You should have received a copy of the GNU General Public License along with
20  this program; if not, write to the Free Software Foundation, Inc., 59 Temple
21  Place - Suite 330, Boston, MA  02111-1307, USA.
22
23  Further information about the GNU General Public License can also be found on
24  the world wide web at http://www.gnu.org.
25
26 HISTORY
27 --------------------------------------------------------------------------------
28
29 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30 SENTRY
31 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
32
33 #ifndef FGFCSCOMPONENT_H
34 #define FGFCSCOMPONENT_H
35
36 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
37 INCLUDES
38 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
39
40 #ifdef FGFS
41 #  include <simgear/compiler.h>
42 #endif
43
44 #include <string>
45 #include <vector>
46 #include "../FGJSBBase.h"
47 #include "../FGPropertyManager.h"
48
49 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
50 DEFINITIONS
51 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
52
53 #define ID_FCSCOMPONENT "$Id$"
54
55 using std::string;
56
57 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
58 FORWARD DECLARATIONS
59 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
60
61 namespace JSBSim {
62
63 class FGFCS;
64
65 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
66 CLASS DOCUMENTATION
67 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
68
69 /** Base class for JSBSim Flight Control System Components.
70     The Flight Control System (FCS) for JSBSim consists of the FCS container
71     class (see \URL[FGFCS]{FGFCS.html}), the FGFCSComponent base class, and the
72     component classes from which can be constructed a string, or channel. See:
73
74     - FGSwitch
75     - FGGain
76     - FGKinemat
77     - FGFilter
78     - FGDeadBand
79     - FGSummer
80     - FGGradient
81     
82     @author Jon S. Berndt
83     @version $Id$
84     @see Documentation for the FGFCS class, and for the configuration file class
85          FGConfigFile.
86 */
87
88 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
89 CLASS DECLARATION
90 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
91
92 class FGFCSComponent : public FGJSBBase
93 {
94 public:
95   /// Constructor
96   FGFCSComponent(FGFCS*);
97   /// Destructor
98   virtual ~FGFCSComponent();
99
100   virtual bool Run(void);
101   virtual void SetOutput(void);
102   inline double GetOutput (void) const {return Output;}
103   inline FGPropertyManager* GetOutputNode(void) { return OutputNode; }
104   inline string GetName(void) const {return Name;}
105   inline string GetType(void) const { return Type; }
106   virtual double GetOutputPct(void) const { return 0; }
107   
108   virtual void bind();
109   FGPropertyManager* resolveSymbol(string token);
110   
111 protected:
112   FGFCS* fcs;
113   FGPropertyManager* PropertyManager;
114   FGPropertyManager* treenode;
115   string Type;
116   string Name;
117   vector <FGPropertyManager*> InputNodes;
118   vector <float> InputSigns;
119   double Input;
120   FGPropertyManager* OutputNode;
121   double Output;
122   bool IsOutput;
123   virtual void Debug(int from);
124 };
125
126 } //namespace JSBSim
127
128 #include "../FGFCS.h"
129
130 #endif
131