43#include "input_output/FGOutputTextFile.h"
44#include "input_output/FGOutputFG.h"
45#include "input_output/FGXMLFileRead.h"
46#include "input_output/FGModelLoader.h"
47#include "input_output/string_utilities.h"
57FGOutput::FGOutput(FGFDMExec* fdmex) : FGModel(fdmex)
59 typedef int (FGOutput::*iOPV)(void) const;
64 PropertyManager->Tie(
"simulation/force-output",
this, (iOPV)0, &FGOutput::ForceOutput);
73 for (
auto output: OutputTypes)
81bool FGOutput::InitModel(
void)
85 if (!FGModel::InitModel())
return false;
87 for (
auto output: OutputTypes)
88 ret &= output->InitModel();
95bool FGOutput::Run(
bool Holding)
97 if (FDMExec->GetTrimStatus())
return true;
98 if (FGModel::Run(Holding))
return true;
99 if (Holding)
return false;
100 if (!enabled)
return true;
102 for (
auto output: OutputTypes)
103 output->Run(Holding);
110void FGOutput::Print(
void)
112 for (
auto output: OutputTypes)
118void FGOutput::SetStartNewOutput(
void)
120 for (
auto output: OutputTypes)
121 output->SetStartNewOutput();
126bool FGOutput::Toggle(
int idx)
128 if (idx >= (
int)0 && idx < (
int)OutputTypes.size())
129 return OutputTypes[idx]->Toggle();
136void FGOutput::SetRateHz(
double rate)
138 for (
auto output: OutputTypes)
139 output->SetRateHz(rate);
144void FGOutput::ForceOutput(
int idx)
146 if (idx >= (
int)0 && idx < (
int)OutputTypes.size())
147 OutputTypes[idx]->Print();
152bool FGOutput::SetOutputName(
unsigned int idx,
const std::string& name)
154 if (idx >= OutputTypes.size())
return false;
156 OutputTypes[idx]->SetOutputName(name);
162string FGOutput::GetOutputName(
unsigned int idx)
const
166 if (idx < OutputTypes.size())
167 name = OutputTypes[idx]->GetOutputName();
173bool FGOutput::SetDirectivesFile(
const SGPath& fname)
179 s <<
"Could not read directive file: " << fname;
183 bool result = Load(document);
185 cerr << endl <<
"Aircraft output element has problems in file " << fname << endl;
192bool FGOutput::Load(
int subSystems, std::string protocol, std::string type,
193 std::string port, std::string name,
double outRate,
194 std::vector<FGPropertyNode_ptr> & outputProperties)
196 size_t idx = OutputTypes.size();
199 if (debug_lvl > 0) cout << endl <<
" Output data set: " << idx << endl;
201 type = to_upper(type);
206 Output = OutputTextFile;
207 }
else if (type ==
"TABULAR") {
210 Output = OutputTextFile;
211 }
else if (type ==
"SOCKET") {
213 name +=
":" + port +
"/" + protocol;
214 }
else if (type ==
"FLIGHTGEAR") {
216 name +=
":" + port +
"/" + protocol;
217 }
else if (type ==
"TERMINAL") {
219 }
else if (type !=
string(
"NONE")) {
220 cerr <<
"Unknown type of output specified in config file" << endl;
223 if (!Output)
return false;
231 OutputTypes.push_back(Output);
239bool FGOutput::Load(
Element* document,
const SGPath& dir)
245 if (!FGModel::Upload(document,
false))
248 size_t idx = OutputTypes.size();
252 if (debug_lvl > 0) cout << endl <<
" Output data set: " << idx <<
" " << endl;
254 type = to_upper(type);
258 }
else if (type ==
"TABULAR") {
260 }
else if (type ==
"SOCKET") {
262 }
else if (type ==
"FLIGHTGEAR") {
264 }
else if (type ==
"TERMINAL") {
266 }
else if (type !=
string(
"NONE")) {
267 cerr <<
"Unknown type of output specified in config file" << endl;
270 if (!Output)
return false;
273 Output->PreLoad(document, FDMExec);
274 Output->
Load(document);
275 Output->PostLoad(document, FDMExec);
277 OutputTypes.push_back(Output);
285SGPath FGOutput::FindFullPathName(
const SGPath& path)
const
288 if (!includePath.isNull()) {
289 SGPath name = CheckPathName(includePath, path);
290 if (!name.isNull())
return name;
293 return FGModel::FindFullPathName(path);
315void FGOutput::Debug(
int from)
317 if (debug_lvl <= 0)
return;
326 if (debug_lvl & 2 ) {
327 if (from == 0) cout <<
"Instantiated: FGOutput" << endl;
328 if (from == 1) cout <<
"Destroyed: FGOutput" << endl;
330 if (debug_lvl & 4 ) {
332 if (debug_lvl & 8 ) {
334 if (debug_lvl & 16) {
336 if (debug_lvl & 64) {
std::string GetAttributeValue(const std::string &key)
Retrieves an attribute.
Implements the output to a FlightGear socket.
Implements the output to a socket.
Implements the output to a human readable text file.
void SetDelimiter(const std::string &delim)
Set the delimiter.
Abstract class to provide functions generic to all the output directives.
bool Load(Element *el) override
Init the output directives from an XML file (implement the FGModel interface).
void SetRateHz(double rtHz)
Set the output rate for this output instances.
void SetIdx(unsigned int idx)
Set the idx for this output instance.
virtual void SetOutputName(const std::string &name)
Overwrites the name identifier under which the output will be logged.
void SetSubSystems(int subSystems)
Set the activated subsystems for this output instance.
void SetOutputProperties(std::vector< FGPropertyNode_ptr > &outputProperties)
Set the list of properties that should be output for this output instance.
This class is solely for the purpose of determining what type of file is given on the command line.