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"
56FGInput::FGInput(FGFDMExec* fdmex) : FGModel(fdmex)
68 vector<FGInputType*>::iterator it;
69 for (it = InputTypes.begin(); it != InputTypes.end(); ++it)
85 Element* element = ModelLoader.Open(el);
87 if (!element)
return false;
89 FGModel::PreLoad(element, FDMExec);
91 size_t idx = InputTypes.size();
95 if (debug_lvl > 0) cout << endl <<
" Input data set: " << idx <<
" " << endl;
97 type = to_upper(type);
99 if (type.empty() || type ==
"SOCKET") {
101 }
else if (type ==
"QTJSBSIM") {
103 }
else if (type !=
string(
"NONE")) {
105 <<
"Unknown type of input specified in config file" << endl;
108 if (!Input)
return false;
111 Input->
Load(element);
112 PostLoad(element, FDMExec);
114 InputTypes.push_back(Input);
122bool FGInput::InitModel(
void)
126 if (!FGModel::InitModel())
return false;
128 vector<FGInputType*>::iterator it;
129 for (it = InputTypes.begin(); it != InputTypes.end(); ++it)
130 ret &= (*it)->InitModel();
137bool FGInput::Run(
bool Holding)
139 if (FDMExec->GetTrimStatus())
return true;
140 if (FGModel::Run(Holding))
return true;
141 if (!enabled)
return true;
143 vector<FGInputType*>::iterator it;
144 for (it = InputTypes.begin(); it != InputTypes.end(); ++it)
152bool FGInput::SetDirectivesFile(
const SGPath& fname)
158 s <<
"Could not read directive file: " << fname;
161 bool result = Load(document);
164 cerr << endl <<
"Aircraft input element has problems in file " << fname << endl;
171bool FGInput::Toggle(
int idx)
173 if (idx >= (
int)0 && idx < (
int)InputTypes.size())
174 return InputTypes[idx]->Toggle();
181bool FGInput::SetInputName(
unsigned int idx,
const std::string& name)
183 if (idx >= InputTypes.size())
return false;
185 InputTypes[idx]->SetInputName(name);
191string FGInput::GetInputName(
unsigned int idx)
const
195 if (idx < InputTypes.size())
196 name = InputTypes[idx]->GetInputName();
220void FGInput::Debug(
int from)
224 if (debug_lvl <= 0)
return;
232 if (debug_lvl & 2 ) {
233 if (from == 0) cout <<
"Instantiated: FGInput" << endl;
234 if (from == 1) cout <<
"Destroyed: FGInput" << endl;
236 if (debug_lvl & 4 ) {
238 if (debug_lvl & 8 ) {
240 if (debug_lvl & 16) {
242 if (debug_lvl & 64) {
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...
This class is solely for the purpose of determining what type of file is given on the command line.