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.cpp
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Module: FGInput.cpp
4 Author: Jon Berndt
5 Date started: 12/02/98
6 Purpose: Manage input of sim parameters from socket
7 Called by: FGSimExec
8
9 ------------- Copyright (C) 1999 Jon S. Berndt (jon@jsbsim.org) -------------
10
11 This program is free software; you can redistribute it and/or modify it under
12 the terms of the GNU Lesser General Public License as published by the Free
13 Software Foundation; either version 2 of the License, or (at your option) any
14 later version.
15
16 This program is distributed in the hope that it will be useful, but WITHOUT
17 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
19 details.
20
21 You should have received a copy of the GNU Lesser General Public License along
22 with this program; if not, write to the Free Software Foundation, Inc., 59
23 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24
25 Further information about the GNU Lesser General Public License can also be
26 found on the world wide web at http://www.gnu.org.
27
28FUNCTIONAL DESCRIPTION
29--------------------------------------------------------------------------------
30This is the place where you create output routines to dump data for perusal
31later.
32
33HISTORY
34--------------------------------------------------------------------------------
3512/02/98 JSB Created
36
37%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
38INCLUDES
39%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
40
41#include "FGInput.h"
42#include "FGFDMExec.h"
43#include "input_output/FGUDPInputSocket.h"
44#include "input_output/FGXMLFileRead.h"
45#include "input_output/FGModelLoader.h"
46#include "input_output/string_utilities.h"
47
48using namespace std;
49
50namespace JSBSim {
51
52/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
53CLASS IMPLEMENTATION
54%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
55
56FGInput::FGInput(FGFDMExec* fdmex) : FGModel(fdmex)
57{
58 Name = "FGInput";
59 enabled = true;
60
61 Debug(0);
62}
63
64//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
65
66FGInput::~FGInput()
67{
68 vector<FGInputType*>::iterator it;
69 for (it = InputTypes.begin(); it != InputTypes.end(); ++it)
70 delete (*it);
71
72 Debug(1);
73}
74
75//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
76
77bool FGInput::Load(Element* el)
78{
79 // Unlike the other FGModel classes, properties listed in the <input> section
80 // are not intended to create new properties. For that reason, FGInput
81 // cannot load its XML directives with FGModel::Load().
82 // Instead FGModelLoader::Open() and FGModel::PreLoad() must be explicitely
83 // called.
84 FGModelLoader ModelLoader(this);
85 Element* element = ModelLoader.Open(el);
86
87 if (!element) return false;
88
89 FGModel::PreLoad(element, FDMExec);
90
91 size_t idx = InputTypes.size();
92 string type = element->GetAttributeValue("type");
93 FGInputType* Input = 0;
94
95 if (debug_lvl > 0) cout << endl << " Input data set: " << idx << " " << endl;
96
97 type = to_upper(type);
98
99 if (type.empty() || type == "SOCKET") {
100 Input = new FGInputSocket(FDMExec);
101 } else if (type == "QTJSBSIM") {
102 Input = new FGUDPInputSocket(FDMExec);
103 } else if (type != string("NONE")) {
104 cerr << element->ReadFrom()
105 << "Unknown type of input specified in config file" << endl;
106 }
107
108 if (!Input) return false;
109
110 Input->SetIdx(idx);
111 Input->Load(element);
112 PostLoad(element, FDMExec);
113
114 InputTypes.push_back(Input);
115
116 Debug(2);
117 return true;
118}
119
120//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
121
122bool FGInput::InitModel(void)
123{
124 bool ret = false;
125
126 if (!FGModel::InitModel()) return false;
127
128 vector<FGInputType*>::iterator it;
129 for (it = InputTypes.begin(); it != InputTypes.end(); ++it)
130 ret &= (*it)->InitModel();
131
132 return ret;
133}
134
135//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
136
137bool FGInput::Run(bool Holding)
138{
139 if (FDMExec->GetTrimStatus()) return true;
140 if (FGModel::Run(Holding)) return true;
141 if (!enabled) return true;
142
143 vector<FGInputType*>::iterator it;
144 for (it = InputTypes.begin(); it != InputTypes.end(); ++it)
145 (*it)->Run(Holding);
146
147 return false;
148}
149
150//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
151
152bool FGInput::SetDirectivesFile(const SGPath& fname)
153{
155 Element* document = XMLFile.LoadXMLDocument(fname);
156 if (!document) {
157 stringstream s;
158 s << "Could not read directive file: " << fname;
159 throw BaseException(s.str());
160 }
161 bool result = Load(document);
162
163 if (!result)
164 cerr << endl << "Aircraft input element has problems in file " << fname << endl;
165
166 return result;
167}
168
169//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
170
171bool FGInput::Toggle(int idx)
172{
173 if (idx >= (int)0 && idx < (int)InputTypes.size())
174 return InputTypes[idx]->Toggle();
175
176 return false;
177}
178
179//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
180
181bool FGInput::SetInputName(unsigned int idx, const std::string& name)
182{
183 if (idx >= InputTypes.size()) return false;
184
185 InputTypes[idx]->SetInputName(name);
186 return true;
187}
188
189//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
190
191string FGInput::GetInputName(unsigned int idx) const
192{
193 string name;
194
195 if (idx < InputTypes.size())
196 name = InputTypes[idx]->GetInputName();
197 return name;
198}
199
200
201//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
202// The bitmasked value choices are as follows:
203// unset: In this case (the default) JSBSim would only print
204// out the normally expected messages, essentially echoing
205// the config files as they are read. If the environment
206// variable is not set, debug_lvl is set to 1 internally
207// 0: This requests JSBSim not to output any messages
208// whatsoever.
209// 1: This value explicity requests the normal JSBSim
210// startup messages
211// 2: This value asks for a message to be printed out when
212// a class is instantiated
213// 4: When this value is set, a message is displayed when a
214// FGModel object executes its Run() method
215// 8: When this value is set, various runtime state variables
216// are printed out periodically
217// 16: When set various parameters are sanity checked and
218// a message is printed out when they go out of bounds
219
220void FGInput::Debug(int from)
221{
222 string scratch="";
223
224 if (debug_lvl <= 0) return;
225
226 if (debug_lvl & 1) { // Standard console startup message output
227 if (from == 0) { // Constructor
228 }
229 if (from == 2) {
230 }
231 }
232 if (debug_lvl & 2 ) { // Instantiation/Destruction notification
233 if (from == 0) cout << "Instantiated: FGInput" << endl;
234 if (from == 1) cout << "Destroyed: FGInput" << endl;
235 }
236 if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
237 }
238 if (debug_lvl & 8 ) { // Runtime state variables
239 }
240 if (debug_lvl & 16) { // Sanity checking
241 }
242 if (debug_lvl & 64) {
243 if (from == 0) { // Constructor
244 }
245 }
246}
247}
std::string GetAttributeValue(const std::string &key)
Retrieves an attribute.
std::string ReadFrom(void) const
Return a string that contains a description of the location where the current XML element was read fr...
Implements the input from a socket.
Abstract class to provide functions generic to all the input directives.
Definition FGInputType.h:74
bool Load(Element *el) override
Init the input directives from an XML file (implement the FGModel interface).
void SetIdx(unsigned int idx)
Set the idx for this input instance.
Implements a UDP input socket.
This class is solely for the purpose of determining what type of file is given on the command line.
Definition JSBSim.cpp:155