44#include "FGUDPInputSocket.h"
46#include "input_output/FGXMLElement.h"
47#include "input_output/string_utilities.h"
61 SockProtocol = FGfdmSocket::ptUDP;
76 while (property_element) {
77 string property_str = property_element->
GetDataLine();
80 cerr <<
fgred <<
highint << endl <<
" No property by the name "
81 << property_str <<
" can be found." <<
reset << endl;
83 InputProperties.push_back(node);
95 if (socket == 0)
return;
101 vector<string> tokens;
102 stringstream ss(data);
104 while (getline(ss, temp,
',')) {
105 tokens.push_back(temp);
108 vector<double> values;
111 for (
string& token : tokens)
112 values.push_back(atof_locale_c(token));
114 cerr << e.what() << endl;
118 if (values[0] < oldTimeStamp) {
121 oldTimeStamp = values[0];
125 if ((values.size() - 1) != InputProperties.size()) {
126 cerr << endl <<
"Mismatch between UDP input property and value counts." << endl;
130 for (
unsigned int i=1; i<values.size(); i++) {
131 InputProperties[i-1]->setDoubleValue(values[i]);
Element * FindElement(const std::string &el="")
Searches for a specified element.
std::string GetAttributeValue(const std::string &key)
Retrieves an attribute.
std::string GetDataLine(unsigned int i=0)
Gets a line of data belonging to an element.
Element * FindNextElement(const std::string &el="")
Searches for the next element as specified.
Encapsulates the JSBSim simulation executive.
double GetDeltaT(void) const
Returns the simulation delta T.
static char fgred[6]
red text
static char reset[5]
resets text properties
static char highint[5]
highlights text
void SetRate(unsigned int tt)
Set the ouput rate for the model in frames.
Class wrapper for property handling.
std::string Receive(void)
Receive data from the socket connection.