18 #include <SDKDDKVer.h>
20 #include <boost/asio.hpp>
22 #include <boost/asio.hpp>
53 [[nodiscard]] std::string
type()
const override;
87 std::array<int, 4>
_ip{};
93 static constexpr std::array<int, 2>
IP_LIMITS = { 0, 255 };
95 static constexpr std::array<int, 2>
PORT_LIMITS = { 0, 65535 };
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Position, Velocity and Attitude Storage Class.
Abstract parent class for all nodes.
Definition Node.hpp:86
UDP Client.
Definition udpSend.hpp:34
boost::asio::ip::udp::resolver::results_type _endpoints
Boost udp endpoint.
Definition udpSend.hpp:104
UdpSend & operator=(UdpSend &&)=delete
Move assignment operator.
static constexpr size_t INPUT_PORT_INDEX_NODE_DATA
Object (NodeData)
Definition udpSend.hpp:73
bool initialize() override
Initialize the node.
UdpSend()
Default constructor.
static constexpr std::array< int, 2 > IP_LIMITS
Range an IPv4 address can be in [0, 2^8-1].
Definition udpSend.hpp:93
boost::asio::ip::udp::resolver _resolver
Boost udp resolver.
Definition udpSend.hpp:102
bool resetNode() override
Resets the node. Moves the read cursor to the start.
void deinitialize() override
Deinitialize the node.
std::string type() const override
String representation of the Class Type.
boost::asio::io_context _io_context
Asynchronous receive fct.
Definition udpSend.hpp:98
void restore(const json &j) override
Restores the node from a json object.
void guiConfig() override
ImGui config window which is shown on double click.
UdpSend(UdpSend &&)=delete
Move constructor.
static constexpr std::array< int, 2 > PORT_LIMITS
Range a port can be in [0, 2^16-1].
Definition udpSend.hpp:95
UdpSend(const UdpSend &)=delete
Copy constructor.
static std::string category()
String representation of the Class Category.
UdpSend & operator=(const UdpSend &)=delete
Copy assignment operator.
void receivePosVelAtt(InputPin::NodeDataQueue &queue, size_t pinIdx)
Callback when receiving data on a port.
int _port
UDP port number.
Definition udpSend.hpp:90
boost::asio::ip::udp::socket _socket
Boost udp socket.
Definition udpSend.hpp:100
std::array< int, 4 > _ip
IPv4 address.
Definition udpSend.hpp:87
json save() const override
Saves the node into a json object.
~UdpSend() override
Destructor.
static std::string typeStatic()
String representation of the Class Type.