45 [[nodiscard]] std::string
type()
const override;
78 std::array<int, 3>
integer = { 12, -2, 2 };
115 [[nodiscard]] std::shared_ptr<const NodeData>
peekPollData(
bool peek =
false);
119 [[nodiscard]] std::shared_ptr<const NodeData>
pollData();
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Manages a thread which calls a specified function at a specified interval.
Definition CallbackTimer.hpp:22
Demonstrates the basic GUI functionality of nodes.
Definition Demo.hpp:26
bool _fileReaderInsteadSensor
Whether to have a file reader instead of a sensor output pin.
Definition Demo.hpp:125
std::shared_ptr< const NodeData > peekPollData(bool peek=false)
Polls data from the file. This function is needed, if we have multiple output pins,...
int _iPollData
Counter for data Reading.
Definition Demo.hpp:140
static constexpr size_t INPUT_PORT_INDEX_FLOW
Flow.
Definition Demo.hpp:92
static void readSensorDataThread(void *userData)
Function which performs the async data reading.
bool _valueBool
Value which is represented over the Bool pin.
Definition Demo.hpp:144
static constexpr size_t OUTPUT_PORT_INDEX_STRING
String.
Definition Demo.hpp:88
bool onCreateLink(OutputPin &startPin, InputPin &endPin) override
Called when a new link is to be established.
static constexpr size_t OUTPUT_PORT_INDEX_FLOW
Flow.
Definition Demo.hpp:83
CallbackTimer _timer
Timer object to handle async data requests.
Definition Demo.hpp:128
static constexpr size_t INPUT_PORT_INDEX_DOUBLE
Double.
Definition Demo.hpp:96
Demo(Demo &&)=delete
Move constructor.
static constexpr size_t OUTPUT_PORT_INDEX_BOOL
Bool.
Definition Demo.hpp:84
int _receivedDataCnt
Counter how often data was received.
Definition Demo.hpp:137
static constexpr size_t INPUT_PORT_INDEX_DEMO_NODE
Delegate (Demo)
Definition Demo.hpp:91
static constexpr size_t INPUT_PORT_INDEX_STRING
String.
Definition Demo.hpp:97
static constexpr size_t INPUT_PORT_INDEX_FLOAT
Float.
Definition Demo.hpp:95
static constexpr size_t OUTPUT_PORT_INDEX_DEMO_DATA
DemoData.
Definition Demo.hpp:89
float _valueFloat
Value which is represented over the Float pin.
Definition Demo.hpp:146
bool initialize() override
Initialize the node.
static std::string typeStatic()
String representation of the Class Type.
size_t _stringUpdateCounter
Counter of how often the string was updated.
Definition Demo.hpp:151
bool resetNode() override
Resets the node. It is guaranteed that the node is initialized when this is called.
static constexpr size_t INPUT_PORT_INDEX_DEMO_DATA
DemoData.
Definition Demo.hpp:98
void stringUpdatedNotifyFunction(const InsTime &insTime, size_t pinIdx)
Function to call when the string is updated.
static std::string category()
String representation of the Class Category.
void restore(const json &j) override
Restores the node from a json object.
void updateOutputFlowPin()
Updates the output flow pin depending on the GUI selection.
void onDeleteLink(OutputPin &startPin, InputPin &endPin) override
Called when a link is to be deleted.
static constexpr size_t OUTPUT_PORT_INDEX_DOUBLE
Double.
Definition Demo.hpp:87
int _valueInt
Value which is represented over the Int pin.
Definition Demo.hpp:145
static constexpr size_t OUTPUT_PORT_INDEX_INT
Int.
Definition Demo.hpp:85
Eigen::MatrixXd _valueMatrix
Value which is represented over the Matrix pin.
Definition Demo.hpp:150
Demo(const Demo &)=delete
Copy constructor.
static constexpr size_t INPUT_PORT_INDEX_BOOL
Bool.
Definition Demo.hpp:93
Demo & operator=(const Demo &)=delete
Copy assignment operator.
static constexpr size_t OUTPUT_PORT_INDEX_FLOAT
Float.
Definition Demo.hpp:86
void deinitialize() override
Deinitialize the node.
int _nPollData
Amount of Observations to be read.
Definition Demo.hpp:142
std::string type() const override
String representation of the Class Type.
static constexpr size_t INPUT_PORT_INDEX_MATRIX
Matrix.
Definition Demo.hpp:99
std::shared_ptr< const NodeData > pollData()
Polls data from the file.
int _outputFrequency
Output frequency for the simulated sensor data.
Definition Demo.hpp:135
static constexpr size_t OUTPUT_PORT_INDEX_MATRIX
Matrix.
Definition Demo.hpp:90
void receiveData(InputPin::NodeDataQueue &queue, size_t pinIdx)
Receive callback on the Flow pin.
std::string _valueString
Value which is represented over the String pin.
Definition Demo.hpp:148
void guiConfig() override
ImGui config window which is shown on double click.
Demo()
Default constructor.
static constexpr size_t INPUT_PORT_INDEX_INT
Int.
Definition Demo.hpp:94
json save() const override
Saves the node into a json object.
DemoData _valueObject
Value which is represented over the Object pin.
Definition Demo.hpp:149
Demo & operator=(Demo &&)=delete
Move assignment operator.
double _valueDouble
Value which is represented over the Double pin.
Definition Demo.hpp:147
~Demo() override
Destructor.
The class is responsible for all time-related tasks.
Definition InsTime.hpp:668
Abstract parent class for all nodes.
Definition Node.hpp:86
Output pins of nodes.
Definition Pin.hpp:338
Data struct transmitted over an output port.
Definition Demo.hpp:77
std::array< int, 3 > integer
Integer inside the DemoData.
Definition Demo.hpp:78