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
FGUDPInputSocket.cpp
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Module: FGUDPInputSocket.cpp
4 Author: Dave Culp
5 Date started: 02/19/15
6 Purpose: Manage input of data from a UDP socket
7 Called by: FGInput
8
9 ------------- Copyright (C) 2015 Dave Culp --------------
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 Software
13 Foundation; either version 2 of the License, or (at your option) any later
14 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 with
22 this program; if not, write to the Free Software Foundation, Inc., 59 Temple
23 Place - Suite 330, Boston, MA 02111-1307, USA.
24
25 Further information about the GNU Lesser General Public License can also be found on
26 the world wide web at http://www.gnu.org.
27
28FUNCTIONAL DESCRIPTION
29--------------------------------------------------------------------------------
30This class establishes a UDP socket and reads data from it.
31
32HISTORY
33--------------------------------------------------------------------------------
3402/19/15 DC Created
35
36%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
37INCLUDES
38%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
39
40#include <cstring>
41#include <cstdlib>
42#include <sstream>
43
44#include "FGUDPInputSocket.h"
45#include "FGFDMExec.h"
46#include "input_output/FGXMLElement.h"
47#include "input_output/string_utilities.h"
48
49using namespace std;
50
51namespace JSBSim {
52
53/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
54CLASS IMPLEMENTATION
55%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
56
58 FGInputSocket(fdmex), rate(20), oldTimeStamp(0.0)
59{
60 SockPort = 5139;
61 SockProtocol = FGfdmSocket::ptUDP;
62}
63
64//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
65
67{
68 if (!FGInputSocket::Load(el))
69 return false;
70
71 rate = atoi(el->GetAttributeValue("rate").c_str());
72 SetRate(0.5 + 1.0/(FDMExec->GetDeltaT()*rate));
73
74 Element *property_element = el->FindElement("property");
75
76 while (property_element) {
77 string property_str = property_element->GetDataLine();
78 FGPropertyNode* node = PropertyManager->GetNode(property_str);
79 if (!node) {
80 cerr << fgred << highint << endl << " No property by the name "
81 << property_str << " can be found." << reset << endl;
82 } else {
83 InputProperties.push_back(node);
84 }
85 property_element = el->FindNextElement("property");
86 }
87
88 return true;
89}
90
91//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
92
93void FGUDPInputSocket::Read(bool Holding)
94{
95 if (socket == 0) return;
96
97 data = socket->Receive();
98
99 if (!data.empty()) {
100
101 vector<string> tokens;
102 stringstream ss(data);
103 string temp;
104 while (getline(ss, temp, ',')) {
105 tokens.push_back(temp);
106 }
107
108 vector<double> values;
109
110 try {
111 for (string& token : tokens)
112 values.push_back(atof_locale_c(token));
113 } catch(InvalidNumber& e) {
114 cerr << e.what() << endl;
115 return;
116 }
117
118 if (values[0] < oldTimeStamp) {
119 return;
120 } else {
121 oldTimeStamp = values[0];
122 }
123
124 // the zeroeth value is the time stamp
125 if ((values.size() - 1) != InputProperties.size()) {
126 cerr << endl << "Mismatch between UDP input property and value counts." << endl;
127 return;
128 }
129
130 for (unsigned int i=1; i<values.size(); i++) {
131 InputProperties[i-1]->setDoubleValue(values[i]);
132 }
133 }
134}
135
136}
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.
Definition FGFDMExec.h:184
double GetDeltaT(void) const
Returns the simulation delta T.
Definition FGFDMExec.h:552
Implements the input from a socket.
bool Load(Element *el) override
Init the input directives from an XML file.
static char fgred[6]
red text
Definition FGJSBBase.h:166
static char reset[5]
resets text properties
Definition FGJSBBase.h:156
static char highint[5]
highlights text
Definition FGJSBBase.h:150
void SetRate(unsigned int tt)
Set the ouput rate for the model in frames.
Definition FGModel.h:91
Class wrapper for property handling.
bool Load(Element *el) override
Reads the property names from an XML file.
void Read(bool Holding) override
Reads the socket and updates properties accordingly.
FGUDPInputSocket(FGFDMExec *fdmex)
Constructor.
std::string Receive(void)
Receive data from the socket connection.