0.3.0
Loading...
Searching...
No Matches
Plot.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// <boost/asio.hpp> needs to be included before <winsock.h> (even though not used in this file)
17// https://stackoverflow.com/questions/9750344/boostasio-winsock-and-winsock-2-compatibility-issue
18#ifdef _WIN32
19 // Set the proper SDK version before including boost/Asio
20 #include <SDKDDKVer.h>
21 // Note boost/ASIO includes Windows.h.
22 #include <boost/asio.hpp>
23#endif //_WIN32
24
25#include <array>
26#include <imgui.h>
27#include <implot.h>
28
29#include <map>
30#include <memory>
31#include <mutex>
32#include <unordered_set>
33
34#include "NodeData/NodeData.hpp"
38
45
60
61namespace NAV
62{
64class Plot : public Node, public CommonLog
65{
66 public:
70 ~Plot() override;
72 Plot(const Plot&) = delete;
74 Plot(Plot&&) = delete;
76 Plot& operator=(const Plot&) = delete;
78 Plot& operator=(Plot&&) = delete;
79
81 [[nodiscard]] static std::string typeStatic();
82
84 [[nodiscard]] std::string type() const override;
85
87 [[nodiscard]] static std::string category();
88
91 void guiConfig() override;
92
94 [[nodiscard]] json save() const override;
95
98 void restore(const json& j) override;
99
103 void afterCreateLink(OutputPin& startPin, InputPin& endPin) override;
104
106 struct PinData
107 {
109 struct PlotData
110 {
112 PlotData() = default;
113
117 PlotData(std::string displayName, size_t size);
118
120 std::string displayName;
124 bool hasData = false;
125
127 bool markedForDelete = false;
129 bool isDynamic = false;
130 };
131
133 enum class PinType : uint8_t
134 {
135 Flow,
136 Bool,
137 Int,
138 Float,
139 Matrix,
140 };
141
143 PinData() = default;
145 ~PinData() = default;
148 PinData(const PinData& other);
149
152 PinData(PinData&& other) noexcept;
153
159 PinData& operator=(PinData&& rhs) noexcept;
160
164 void addPlotDataItem(size_t dataIndex, const std::string& displayName);
165
167 int size = 0;
169 std::string dataIdentifier;
171 std::vector<PlotData> plotData;
177 int stride = 1;
179 std::mutex mutex;
183 std::vector<std::tuple<double, InsTime, std::string, int32_t>> events;
184 };
185
187 struct PlotInfo
188 {
190 struct PlotItem
191 {
193 PlotItem() = default;
194
205
211 PlotItem(size_t pinIndex, size_t dataIndex, std::string displayName, ImAxis axis)
213 {
214 this->axis = axis; // NOLINT(cppcoreguidelines-prefer-member-initializer)
215 }
216
220 constexpr bool operator==(const PlotItem& rhs) const
221 {
222 return pinIndex == rhs.pinIndex && dataIndex == rhs.dataIndex && displayName == rhs.displayName;
223 }
224
225 size_t pinIndex{};
226 size_t dataIndex{};
227 std::string displayName;
228 ImAxis axis{ ImAxis_Y1 };
238
241
243 std::array<ScrollingBuffer<double>, 2> errorBoundsData;
244
246 std::vector<std::tuple<double, double, PlotEventTooltip>> eventTooltips;
247 };
248
250 PlotInfo() = default;
251
255 PlotInfo(const std::string& title, size_t nInputPins)
256 : title(title), headerText(title), selectedXdata(nInputPins, 1) {}
257
259 ImVec2 size{ -1, 300 };
260
262 std::string title;
264 std::string headerText;
266 bool overrideXAxisLabel = false;
268 std::string xAxisLabel;
270 std::string y1AxisLabel;
272 std::string y2AxisLabel;
274 std::string y3AxisLabel;
276 size_t selectedPin = 0;
278 int plotFlags = 0;
280 ImPlotAxisFlags xAxisFlags = ImPlotAxisFlags_AutoFit;
282 ImPlotAxisFlags yAxisFlags = ImPlotAxisFlags_AutoFit;
284 ImPlotScale xAxisScale = ImPlotScale_Linear;
286 std::array<ImPlotScale, 3> yAxesScale = { ImPlotScale_Linear, ImPlotScale_Linear, ImPlotScale_Linear };
288 ImPlotLineFlags lineFlags = ImPlotLineFlags_NoClip | ImPlotLineFlags_SkipNaN;
289
291 std::vector<size_t> selectedXdata;
292
294 std::vector<PlotItem> plotItems;
295
297 float leftPaneWidth = 180.0F;
299 float rightPaneWidth = 400.0F;
300
302 bool visible = true;
303
305 std::vector<PlotTooltip> tooltips;
306 };
307
308 private:
310 bool initialize() override;
311
313 void deinitialize() override;
314
317
320 static void pinAddCallback(Node* node);
324 static void pinDeleteCallback(Node* node, size_t pinIdx);
325
327 size_t GPST_PLOT_IDX = 1;
328
330 std::vector<PinData> _pinData;
331
333 std::vector<PlotInfo> _plots;
334
336 size_t _nPlots = 0;
338 std::vector<std::string> _dataIdentifier = {
339 // General
341 // GNSS
346 // IMU
347 ImuObs::type(),
350 KvhObs::type(),
352 // State
354 Pos::type(),
355 PosVel::type(),
358 // WiFi
360 };
361
364
367
369 std::pair<std::unordered_set<size_t>, ImPlotRange> _forceXaxisRange;
370
372 std::optional<gui::widgets::PositionWithFrame> _originPosition;
373
376
380
386 void addEvent(size_t pinIndex, InsTime insTime, const std::string& text, int32_t dataIndex);
387
392 void addData(size_t pinIndex, size_t dataIndex, double value);
393
399 size_t addData(size_t pinIndex, std::string displayName, double value);
400
404 CommonLog::LocalPosition calcLocalPosition(const Eigen::Vector3d& lla_position);
405
409 void plotBoolean(const InsTime& insTime, size_t pinIdx);
410
414 void plotInteger(const InsTime& insTime, size_t pinIdx);
415
419 void plotFloat(const InsTime& insTime, size_t pinIdx);
420
424 void plotMatrix(const InsTime& insTime, size_t pinIdx);
425
429 void plotFlowData(InputPin::NodeDataQueue& queue, size_t pinIdx);
430
436 template<typename T>
437 void plotData(const std::shared_ptr<const T>& obs, size_t pinIndex, size_t& plotIndex, size_t startIndex = 0)
438 {
439 for (size_t i = startIndex; i < T::GetStaticDescriptorCount(); ++i)
440 {
441 addData(pinIndex, plotIndex++, obs->getValueAtOrNaN(i));
442 }
443 }
444};
445
446} // namespace NAV
Common logging variables like time into run and local positions.
Dynamic Data container.
Inputs pins which can be added dynamically.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
GNSS measurement combinations.
GNSS Observation messages.
Data storage class for simulated IMU observations.
Data storage class for one VectorNavImu observation.
Parent Class for all IMU Observations.
Loosely-coupled Kalman Filter INS/GNSS errors.
Tightly-coupled Kalman Filter INS/GNSS errors.
Data storage class for one KVH Imu observation.
Abstract NodeData Class.
Node Class.
Tooltips for a plot events.
Specifying the look of a certain line in the plot.
Plot Tooltips on hover.
Position, Velocity and Attitude Storage Class.
Position Input GUI widgets.
RTKLIB Pos Observation Class.
A buffer which is overwriting itself from the start when full.
SPP Algorithm output.
Binary Outputs from VectorNav Sensors.
Vector Utility functions.
void move(std::vector< T > &v, size_t sourceIdx, size_t targetIdx)
Moves an element within a vector to a new position.
Definition Vector.hpp:26
WiFi Positioning Algorithm output.
Common logging variables like time into run and local positions.
Definition CommonLog.hpp:31
static std::string type()
Returns the type of the data class.
Definition DynamicData.hpp:30
static std::string type()
Returns the type of the data class.
Definition GnssCombination.hpp:32
static std::string type()
Returns the type of the data class.
Definition GnssObs.hpp:150
static std::string type()
Returns the type of the data class.
Definition ImuObsSimulated.hpp:31
static std::string type()
Returns the type of the data class.
Definition ImuObsWDelta.hpp:32
static std::string type()
Returns the type of the data class.
Definition ImuObs.hpp:34
Input pins of nodes.
Definition Pin.hpp:491
static std::string type()
Returns the type of the data class.
Definition InsGnssLCKFSolution.hpp:30
static std::string type()
Returns the type of the data class.
Definition InsGnssTCKFSolution.hpp:26
The class is responsible for all time-related tasks.
Definition InsTime.hpp:668
static std::string type()
Returns the type of the data class.
Definition KvhObs.hpp:39
Abstract parent class for all nodes.
Definition Node.hpp:86
Output pins of nodes.
Definition Pin.hpp:338
Plot node which plots all kind of observations.
Definition Plot.hpp:65
void plotInteger(const InsTime &insTime, size_t pinIdx)
Plots the data on this port.
gui::widgets::DynamicInputPins _dynamicInputPins
Dynamic input pins.
Definition Plot.hpp:379
size_t _screenshotFrameCnt
Frame counter for taking screenshots (> 0 when screenshot in progress)
Definition Plot.hpp:365
static void pinAddCallback(Node *node)
Function to call to add a new pin.
static void pinDeleteCallback(Node *node, size_t pinIdx)
Function to call to delete a pin.
void restore(const json &j) override
Restores the node from a json object.
void plotData(const std::shared_ptr< const T > &obs, size_t pinIndex, size_t &plotIndex, size_t startIndex=0)
Plot the data.
Definition Plot.hpp:437
Plot(const Plot &)=delete
Copy constructor.
void plotFlowData(InputPin::NodeDataQueue &queue, size_t pinIdx)
Plot the data on this port.
void plotFloat(const InsTime &insTime, size_t pinIdx)
Plots the data on this port.
int _dragAndDropHeaderIndex
Index of the Collapsible Header currently being dragged.
Definition Plot.hpp:363
std::string type() const override
String representation of the Class Type.
bool _overridePositionStartValues
Flag, whether to override the North/East startValues in the GUI.
Definition Plot.hpp:375
Plot & operator=(Plot &&)=delete
Move assignment operator.
std::vector< PinData > _pinData
Data storage for each pin.
Definition Plot.hpp:330
std::optional< gui::widgets::PositionWithFrame > _originPosition
Start position for the calculation of relative North-South and East-West.
Definition Plot.hpp:372
void deinitialize() override
Deinitialize the node.
size_t _screenShotPlotIdx
Plot index a screenshot is taken of.
Definition Plot.hpp:366
void plotMatrix(const InsTime &insTime, size_t pinIdx)
Plots the data on this port.
size_t GPST_PLOT_IDX
Index of the GPST data (unix timestamp)
Definition Plot.hpp:327
Plot()
Default constructor.
Plot & operator=(const Plot &)=delete
Copy assignment operator.
json save() const override
Saves the node into a json object.
CommonLog::LocalPosition calcLocalPosition(const Eigen::Vector3d &lla_position)
Calculate the local position offset from the plot origin.
std::pair< std::unordered_set< size_t >, ImPlotRange > _forceXaxisRange
Values to force the x axis range to and a set of plotIdx to force.
Definition Plot.hpp:369
void addEvent(size_t pinIndex, InsTime insTime, const std::string &text, int32_t dataIndex)
Adds a event to a certain point in time.
void addData(size_t pinIndex, size_t dataIndex, double value)
Add Data to the buffer of the pin.
static std::string typeStatic()
String representation of the Class Type.
void plotBoolean(const InsTime &insTime, size_t pinIdx)
Plots the data on this port.
~Plot() override
Destructor.
void updateNumberOfPlots()
Adds/Deletes Plots depending on the variable nPlots.
void afterCreateLink(OutputPin &startPin, InputPin &endPin) override
Called when a new link was established.
size_t addData(size_t pinIndex, std::string displayName, double value)
Add Data to the buffer of the pin.
static std::string category()
String representation of the Class Category.
std::vector< PlotInfo > _plots
Info for each plot window.
Definition Plot.hpp:333
void guiConfig() override
ImGui config window which is shown on double click.
size_t _nPlots
Amount of plot windows (should equal _plots.size())
Definition Plot.hpp:336
Plot(Plot &&)=delete
Move constructor.
std::vector< std::string > _dataIdentifier
Possible data identifiers to connect.
Definition Plot.hpp:338
bool initialize() override
Initialize the node.
static std::string type()
Returns the type of the data class.
Definition PosVelAtt.hpp:29
static std::string type()
Returns the type of the data class.
Definition PosVel.hpp:27
static std::string type()
Returns the type of the data class.
Definition Pos.hpp:34
static std::string type()
Returns the type of the data class.
Definition RtklibPosObs.hpp:131
A buffer which is overwriting itself from the start when full.
Definition ScrollingBuffer.hpp:29
static std::string type()
Returns the type of the data class.
Definition SppSolution.hpp:40
static std::string type()
Returns the type of the data class.
Definition VectorNavBinaryOutput.hpp:41
static std::string type()
Returns the type of the data class.
Definition WiFiPositioningSolution.hpp:29
Local position offset from a reference point.
Definition CommonLog.hpp:54
Specifying the look of a certain line in the plot.
Definition PlotItemStyle.hpp:30
size_t markerColormapMaskDataCmpIdx
Index of the plot data to compare for the color.
Definition PlotItemStyle.hpp:61
size_t colormapMaskDataCmpIdx
Index of the plot data to compare for the color.
Definition PlotItemStyle.hpp:49
Stores the actual data coming from a pin.
Definition Plot.hpp:110
bool isDynamic
Bool to show if dynamic data.
Definition Plot.hpp:129
PlotData()=default
Default constructor (needed to make serialization with json working)
bool hasData
Flag if data was received, as the buffer contains std::nan("") otherwise.
Definition Plot.hpp:124
bool markedForDelete
When connecting a new link. All data is flagged for delete and only those who are also present in the...
Definition Plot.hpp:127
ScrollingBuffer< double > buffer
Buffer for the data.
Definition Plot.hpp:122
PlotData(std::string displayName, size_t size)
Constructor.
std::string displayName
Display name of the contained data.
Definition Plot.hpp:120
Information needed to plot the data on a certain pin.
Definition Plot.hpp:107
std::mutex mutex
Mutex to lock the buffer so that the GUI thread and the calculation threads don't cause a data race.
Definition Plot.hpp:179
~PinData()=default
Destructor.
PinType
Possible Pin types.
Definition Plot.hpp:134
@ Float
Floating Point Number.
@ Flow
NodeData Trigger.
PinData & operator=(PinData &&rhs) noexcept
Move assignment operator.
std::vector< std::tuple< double, InsTime, std::string, int32_t > > events
Events with relative time, absolute time, tooltip text and data Index (-1 means all)
Definition Plot.hpp:183
PinData(const PinData &other)
Copy constructor.
PinData()=default
Constructor.
int size
Size of all buffers of the plotData elements.
Definition Plot.hpp:167
ScrollingBuffer< std::shared_ptr< const NodeData > > rawNodeData
List with the raw data received.
Definition Plot.hpp:173
int stride
Amount of points to skip for plotting.
Definition Plot.hpp:177
PinType pinType
Pin Type.
Definition Plot.hpp:175
PinData & operator=(const PinData &rhs)
Copy assignment operator.
PinData(PinData &&other) noexcept
Move constructor.
int dynamicDataStartIndex
Dynamic data start index.
Definition Plot.hpp:181
std::vector< PlotData > plotData
List with all the data.
Definition Plot.hpp:171
std::string dataIdentifier
Data Identifier of the connected pin.
Definition Plot.hpp:169
void addPlotDataItem(size_t dataIndex, const std::string &displayName)
Adds a plotData Element to the list.
Info needed to draw a data set.
Definition Plot.hpp:191
std::string displayName
Display name of the data (not changing and unique)
Definition Plot.hpp:227
ScrollingBuffer< ImU32 > markerColormapMaskColors
Buffer for the colormap mask.
Definition Plot.hpp:235
PlotItem()=default
Default constructor (needed to make serialization with json working)
size_t pinIndex
Index of the pin where the data came in.
Definition Plot.hpp:225
std::vector< std::tuple< double, double, PlotEventTooltip > > eventTooltips
List of tooltips (x,y, tooltip)
Definition Plot.hpp:246
ScrollingBuffer< double > eventMarker
Buffer for event markers.
Definition Plot.hpp:240
PlotItem(size_t pinIndex, size_t dataIndex, std::string displayName, ImAxis axis)
Constructor.
Definition Plot.hpp:211
PlotItemStyle style
Definition Plot.hpp:229
ScrollingBuffer< ImU32 > colormapMaskColors
Buffer for the colormap mask.
Definition Plot.hpp:231
size_t colormapMaskVersion
Colormap version (to track updates of the colormap)
Definition Plot.hpp:233
size_t dataIndex
Index of the data on the pin.
Definition Plot.hpp:226
constexpr bool operator==(const PlotItem &rhs) const
Equal comparison operator (needed to search the vector with std::find)
Definition Plot.hpp:220
std::array< ScrollingBuffer< double >, 2 > errorBoundsData
Error bounds lower and upper data.
Definition Plot.hpp:243
size_t markerColormapMaskVersion
Colormap version (to track updates of the colormap)
Definition Plot.hpp:237
PlotItem(size_t pinIndex, size_t dataIndex, std::string displayName)
Constructor.
Definition Plot.hpp:199
ImAxis axis
Axis to plot the data on (Y1, Y2, Y3)
Definition Plot.hpp:228
Information specifying the look of each plot.
Definition Plot.hpp:188
ImVec2 size
Size of the plot.
Definition Plot.hpp:259
bool visible
Flag whether the whole plot is visible. If not, then it should be deleted.
Definition Plot.hpp:302
std::string y2AxisLabel
Y2 axis label.
Definition Plot.hpp:272
std::string headerText
Title of the CollapsingHeader.
Definition Plot.hpp:264
std::array< ImPlotScale, 3 > yAxesScale
Scale for the y-Axes.
Definition Plot.hpp:286
ImPlotLineFlags lineFlags
Line Flags for all items (each item can override the selection)
Definition Plot.hpp:288
ImPlotAxisFlags xAxisFlags
Flags for the x-Axis.
Definition Plot.hpp:280
float leftPaneWidth
Width of plot Data content.
Definition Plot.hpp:297
int plotFlags
Flags which are passed to the plot.
Definition Plot.hpp:278
bool overrideXAxisLabel
Flag, whether to override the x axis label.
Definition Plot.hpp:266
std::vector< PlotTooltip > tooltips
List of tooltip windows to show.
Definition Plot.hpp:305
std::string xAxisLabel
X axis label.
Definition Plot.hpp:268
size_t selectedPin
Selected pin in the GUI for the Drag & Drop Data.
Definition Plot.hpp:276
ImPlotScale xAxisScale
Scale for the x-Axis.
Definition Plot.hpp:284
PlotInfo(const std::string &title, size_t nInputPins)
Constructor.
Definition Plot.hpp:255
PlotInfo()=default
Default constructor.
float rightPaneWidth
Width of the plot.
Definition Plot.hpp:299
std::vector< PlotItem > plotItems
List containing all elements which should be plotted.
Definition Plot.hpp:294
std::vector< size_t > selectedXdata
Key: PinIndex, Value: plotData to use for x-Axis.
Definition Plot.hpp:291
std::string title
Title of the ImPlot.
Definition Plot.hpp:262
std::string y1AxisLabel
Y1 axis label.
Definition Plot.hpp:270
ImPlotAxisFlags yAxisFlags
Flags for the y-Axes.
Definition Plot.hpp:282
std::string y3AxisLabel
Y3 axis label.
Definition Plot.hpp:274
Inputs pins which can be added dynamically.
Definition DynamicInputPins.hpp:29