JSBSim Flight Dynamics Model 1.2.2 (22 Mar 2025)
An Open Source Flight Dynamics and Control Software Library in C++
Loading...
Searching...
No Matches
FGInput.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Header: FGInput.h
4 Author: Jon Berndt
5 Date started: 12/2/98
6
7 ------------- Copyright (C) 1999 Jon S. Berndt (jon@jsbsim.org) -------------
8
9 This program is free software; you can redistribute it and/or modify it under
10 the terms of the GNU Lesser 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 Lesser General Public License for more
17 details.
18
19 You should have received a copy of the GNU Lesser 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 Lesser General Public License can also be found on
24 the world wide web at http://www.gnu.org.
25
26HISTORY
27--------------------------------------------------------------------------------
2812/02/98 JSB Created
2919/01/15 PCH Split the code in several classes (see input_output dir)
30
31%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
32SENTRY
33%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
34
35#ifndef FGINPUT_H
36#define FGINPUT_H
37
38/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
39INCLUDES
40%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
41
42#include "FGModel.h"
43#include "input_output/FGInputType.h"
44
45/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
46FORWARD DECLARATIONS
47%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
48
49namespace JSBSim {
50
51/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
52CLASS DOCUMENTATION
53%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
54
80/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
81CLASS DECLARATION
82%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
83
84class FGInput : public FGModel
85{
86public:
88 ~FGInput() override;
89
94 bool Load(Element* el) override;
95
102 bool InitModel(void) override;
103
111 bool Run(bool Holding) override;
112
118 bool SetDirectivesFile(const SGPath& fname);
119
121 void Enable(void) { enabled = true; }
123 void Disable(void) { enabled = false; }
130 bool Toggle(int idx);
131
139 bool SetInputName(unsigned int idx, const std::string& name);
144 std::string GetInputName(unsigned int idx) const;
145
146private:
147 std::vector<FGInputType*> InputTypes;
148 bool enabled;
149
150 void Debug(int from) override;
151};
152}
153//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
154#endif
Encapsulates the JSBSim simulation executive.
Definition FGFDMExec.h:184
Handles simulation input.
Definition FGInput.h:85
bool Load(Element *el) override
Load the input directives and adds a new input instance to the Input Manager list.
Definition FGInput.cpp:77
bool Toggle(int idx)
Toggles the input generation of each input instance.
Definition FGInput.cpp:171
bool Run(bool Holding) override
Runs the Input model; called by the Executive Can pass in a value indicating if the executive is dire...
Definition FGInput.cpp:137
bool SetDirectivesFile(const SGPath &fname)
Adds a new input instance to the Input Manager.
Definition FGInput.cpp:152
std::string GetInputName(unsigned int idx) const
Get the name identifier to which the input will be directed.
Definition FGInput.cpp:191
bool SetInputName(unsigned int idx, const std::string &name)
Overwrites the name identifier under which the input will be logged.
Definition FGInput.cpp:181
bool InitModel(void) override
Initializes the instance.
Definition FGInput.cpp:122
void Disable(void)
Disables the input generation for all input instances.
Definition FGInput.h:123
void Enable(void)
Enables the input generation for all input instances.
Definition FGInput.h:121
Base class for all scheduled JSBSim models.
Definition FGModel.h:70