0.3.0
Loading...
Searching...
No Matches
DynamicData.hpp
Go to the documentation of this file.
1// This file is part of INSTINCT, the INS Toolkit for Integrated
2// Navigation Concepts and Training by the Institute of Navigation of
3// the University of Stuttgart, Germany.
4//
5// This Source Code Form is subject to the terms of the Mozilla Public
6// License, v. 2.0. If a copy of the MPL was not distributed with this
7// file, You can obtain one at https://mozilla.org/MPL/2.0/.
8
13
14#pragma once
15
16#include <memory>
17#include <vector>
18#include <string>
19
20#include "NodeData/NodeData.hpp"
21
22namespace NAV
23{
25class DynamicData : public NodeData
26{
27 public:
30 [[nodiscard]] static std::string type() { return "DynamicData"; }
31
34 [[nodiscard]] std::string getType() const override { return type(); }
35
38 [[nodiscard]] static std::vector<std::string> parentTypes()
39 {
40 return { NodeData::type() };
41 }
42
44 struct Data
45 {
46 std::string description;
47 double value;
48 std::vector<std::pair<std::string, std::shared_ptr<const NodeData>>> rawData;
49 };
50
52 std::vector<Data> data;
53
55 [[nodiscard]] std::vector<std::string> dynamicDataDescriptors() const override
56 {
57 std::vector<std::string> descriptors;
58 descriptors.reserve(data.size());
59
60 for (const auto& d : data)
61 {
62 descriptors.push_back(d.description);
63 }
64
65 return descriptors;
66 }
67
70 [[nodiscard]] std::optional<double> getDynamicDataAt(const std::string& descriptor) const override
71 {
72 for (const auto& d : data)
73 {
74 if (descriptor == d.description) { return d.value; }
75 }
76 return std::nullopt;
77 }
78
80 [[nodiscard]] std::vector<std::pair<std::string, double>> getDynamicData() const override
81 {
82 std::vector<std::pair<std::string, double>> dynData;
83 dynData.reserve(data.size());
84
85 for (const auto& d : data)
86 {
87 dynData.emplace_back(d.description, d.value);
88 }
89 return dynData;
90 }
91
98 void guiTooltip(bool detailView, bool firstOpen, const char* displayName, const char* id, int* rootWindow) const override;
99
101 [[nodiscard]] bool hasTooltip() const override { return true; }
102};
103
104} // namespace NAV
Abstract NodeData Class.
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