30 [[nodiscard]]
static std::string
type() {
return "DynamicData"; }
34 [[nodiscard]] std::string
getType()
const override {
return type(); }
48 std::vector<std::pair<std::string, std::shared_ptr<const NodeData>>>
rawData;
57 std::vector<std::string> descriptors;
58 descriptors.reserve(
data.size());
60 for (
const auto& d :
data)
62 descriptors.push_back(d.description);
70 [[nodiscard]] std::optional<double>
getDynamicDataAt(
const std::string& descriptor)
const override
72 for (
const auto& d :
data)
74 if (descriptor == d.description) {
return d.value; }
80 [[nodiscard]] std::vector<std::pair<std::string, double>>
getDynamicData()
const override
82 std::vector<std::pair<std::string, double>> dynData;
83 dynData.reserve(
data.size());
85 for (
const auto& d :
data)
87 dynData.emplace_back(d.description, d.value);
98 void guiTooltip(
bool detailView,
bool firstOpen,
const char* displayName,
const char*
id,
int* rootWindow)
const override;
101 [[nodiscard]]
bool hasTooltip()
const override {
return true; }
Dynamic Data container.
Definition DynamicData.hpp:26
std::optional< double > getDynamicDataAt(const std::string &descriptor) const override
Get the value for the descriptor.
Definition DynamicData.hpp:70
std::vector< std::pair< std::string, double > > getDynamicData() const override
Returns a vector of data descriptors and values for the dynamic data.
Definition DynamicData.hpp:80
std::string getType() const override
Returns the type of the data class.
Definition DynamicData.hpp:34
static std::string type()
Returns the type of the data class.
Definition DynamicData.hpp:30
bool hasTooltip() const override
Return whether this data has a tooltip.
Definition DynamicData.hpp:101
std::vector< std::string > dynamicDataDescriptors() const override
Returns a vector of data descriptors for the dynamic data.
Definition DynamicData.hpp:55
std::vector< Data > data
Data storage.
Definition DynamicData.hpp:52
static std::vector< std::string > parentTypes()
Returns the parent types of the data class.
Definition DynamicData.hpp:38
void guiTooltip(bool detailView, bool firstOpen, const char *displayName, const char *id, int *rootWindow) const override
Shows a GUI tooltip to look into details of the observation.
Parent class for all data transmitted over Flow pins.
Definition NodeData.hpp:28
static std::string type()
Returns the type of the data class.
Definition NodeData.hpp:45
Data struct.
Definition DynamicData.hpp:45
std::string description
Description.
Definition DynamicData.hpp:46
std::vector< std::pair< std::string, std::shared_ptr< const NodeData > > > rawData
List of raw data (used in this dynamic data)
Definition DynamicData.hpp:48
double value
Value.
Definition DynamicData.hpp:47