0.3.0
Loading...
Searching...
No Matches
NodeEditorApplication.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 <array>
17#include <cstdint>
18#include <vector>
19
20#include <application.h>
21#include <imgui.h>
22#include <implot.h>
23
26
27namespace NAV
28{
29class Node;
30class Pin;
31
32namespace gui
33{
35class NodeEditorApplication : public Application
36{
37 private:
38 constexpr static float BOTTOM_VIEW_COLLAPSED_MIN_HEIGHT = 23.0F;
39 constexpr static float BOTTOM_VIEW_UNCOLLAPSED_MIN_HEIGHT = 200.0F;
40
41 public:
45 ~NodeEditorApplication() override = default;
54
56 using Application::Application;
57
58 // static Node* SpawnInputActionNode();
59
60 // static Node* SpawnLessNode();
61
62 // static Node* SpawnGroupBox();
63
65 void OnStart() override;
66
68 void OnStop() override;
69
74 bool OnQuitRequest() override;
75
78 void OnFrame(float deltaTime) override;
79
90 static void ShowRenameNodeRequest(Node*& renameNode);
93 static void ShowRenamePinRequest(Pin*& renamePin);
94
97
99 static inline bool _showQueueSizeOnPins = false;
100
102 static inline std::array<ImTextureID, 2> m_InstinctLogo{ nullptr, nullptr };
103
105 static inline std::array<ImTextureID, 2> m_InsLogo{ nullptr, nullptr };
106
108 static inline ImTextureID m_SaveButtonImage = nullptr;
109
111 static inline ImTextureID m_RoseFigure = nullptr;
112
114 static inline ImPlotStyle imPlotReferenceStyle;
115
116 static inline bool hideLeftPane = false;
117 static inline bool hideFPS = false;
118 inline static float leftPaneWidth = 350.0F;
119 inline static float rightPaneWidth = 850.0F;
120 inline static float menuBarHeight = 20;
121 constexpr static float SPLITTER_THICKNESS = 4.0F;
123
125 static float defaultFontRatio();
127 static float windowFontRatio();
129 static float panelFontRatio();
131 static float monoFontRatio();
133 static float headerFontRatio();
134
142
144 static inline std::vector<ImVec4> m_colors = {
145 { 1.0, 1.0, 1.0, 1.0 }, // GROUP_HEADER_TEXT
146 { 1.0, 1.0, 1.0, 0.25 }, // GROUP_HEADER_BG
147 { 1.0, 1.0, 1.0, 0.25 }, // GROUP_OUTER_BORDER
148 };
150 static inline std::vector<const char*> m_colorsNames = {
151 "GroupHeaderText", // GROUP_HEADER_TEXT
152 "GroupHeaderBg", // GROUP_HEADER_BG
153 "GroupOuterBorder", // GROUP_OUTER_BORDER
154 };
155
156 private:
158 enum class BottomViewTabItem : uint8_t
159 {
160 None,
161 LogOutput,
162 };
163
165
167 ImTextureID m_HeaderBackground = nullptr;
168
170 GlobalActions globalAction = GlobalActions::None; // TODO: Move to the GlobalAction.cpp as a global variable
171
174 friend void windows::ShowFontSizeEditor(bool* show);
175};
176
177} // namespace gui
178} // namespace NAV
Font size chooser window.
Global Gui Actions.
GlobalActions
Possible Global Actions to perform in the GUI.
Definition GlobalActions.hpp:20
@ None
None.
Definition GlobalActions.hpp:21
Abstract parent class for all nodes.
Definition Node.hpp:86
Pins in the GUI for information exchange.
Definition Pin.hpp:43
Application class providing all relevant GUI callbacks.
Definition NodeEditorApplication.hpp:36
static ImPlotStyle imPlotReferenceStyle
Default style of the ImPlot library to compare changes against.
Definition NodeEditorApplication.hpp:114
static float bottomViewHeight
Height of the log viewer.
Definition NodeEditorApplication.hpp:122
static float defaultFontRatio()
Ratio to multiply for default GUI elements.
static std::array< ImTextureID, 2 > m_InstinctLogo
Pointer to the texture for the instinct logo.
Definition NodeEditorApplication.hpp:102
static float leftPaneWidth
Width of the left pane.
Definition NodeEditorApplication.hpp:118
static constexpr float SPLITTER_THICKNESS
Thickness of the splitter between left and right pane.
Definition NodeEditorApplication.hpp:121
NodeEditorApplication & operator=(const NodeEditorApplication &)=delete
Copy assignment operator.
static float windowFontRatio()
Ratio to multiply for GUI window elements.
GlobalActions globalAction
Global action to execute.
Definition NodeEditorApplication.hpp:170
bool OnQuitRequest() override
Called when the user request the application to close.
static std::vector< ImVec4 > m_colors
Color settings.
Definition NodeEditorApplication.hpp:144
static float headerFontRatio()
Ratio to multiply for node header elements.
static bool hideLeftPane
Hide left pane.
Definition NodeEditorApplication.hpp:116
BottomViewTabItem
Tabs displayed in the bottom view.
Definition NodeEditorApplication.hpp:159
@ LogOutput
The log output item is selected.
static ImTextureID m_RoseFigure
Pointer to the texture for the rose figure (ImuSimulator node)
Definition NodeEditorApplication.hpp:111
static std::array< ImTextureID, 2 > m_InsLogo
Pointer to the texture for the INS logo.
Definition NodeEditorApplication.hpp:105
void OnStart() override
Called when the application is started.
static void ShowRenameNodeRequest(Node *&renameNode)
Shows a PopupModal where the user can rename the node.
static float monoFontRatio()
Ratio to multiply for log output GUI elements.
NodeEditorApplication(NodeEditorApplication &&)=delete
Move constructor.
void ShowSaveAsRequested()
Shows a PopupModel where the user can select a path to save his flow to.
NodeEditorApplication(const NodeEditorApplication &)=delete
Copy constructor.
friend void windows::ShowFontSizeEditor(bool *show)
Shows a window for choosing the font size.
static bool _showQueueSizeOnPins
Shows the queue size on the pins (every frame the queue mutex will be locked)
Definition NodeEditorApplication.hpp:99
void ShowLoadRequested()
Shows a PopupModel loading a new flow.
static void ShowRenamePinRequest(Pin *&renamePin)
Shows a PopupModal where the user can rename the pin.
void ShowQuitRequested()
Shows a PopupModal asking the user if he wants to quit with unsaved changes.
void OnStop() override
Called when the application is stopped.
ImTextureID m_HeaderBackground
Pointer to the texture for the node headers.
Definition NodeEditorApplication.hpp:167
NodeEditorApplication()=delete
Default constructor.
void ShowClearNodesRequested()
Shows a PopupModel to clear the current flow.
static std::vector< const char * > m_colorsNames
Color names.
Definition NodeEditorApplication.hpp:150
static float panelFontRatio()
Ratio to multiply for GUI editor elements.
void OnFrame(float deltaTime) override
Called on every frame.
static float rightPaneWidth
Width of the right pane.
Definition NodeEditorApplication.hpp:119
static constexpr float BOTTOM_VIEW_COLLAPSED_MIN_HEIGHT
Minimal height of the bottom view if it is collapsed.
Definition NodeEditorApplication.hpp:38
~NodeEditorApplication() override=default
Destructor.
NodeEditorApplication & operator=(NodeEditorApplication &&)=delete
Move assignment operator.
static constexpr float BOTTOM_VIEW_UNCOLLAPSED_MIN_HEIGHT
Minimal height of the bottom view if it is not collapsed.
Definition NodeEditorApplication.hpp:39
static ImTextureID m_SaveButtonImage
Pointer to the texture for the save button.
Definition NodeEditorApplication.hpp:108
static bool hideFPS
Hide FPS counter.
Definition NodeEditorApplication.hpp:117
int frameCountNavigate
Frame counter to block the navigate to content function till nodes are correctly loaded.
Definition NodeEditorApplication.hpp:96
BottomViewTabItem bottomViewSelectedTab
Selected Tab item in the bottom view.
Definition NodeEditorApplication.hpp:164
Colors
Available color settings.
Definition NodeEditorApplication.hpp:137
@ COLOR_GROUP_OUTER_BORDER
Color of the group outer border.
Definition NodeEditorApplication.hpp:140
@ COLOR_GROUP_HEADER_BG
Color of the group header background.
Definition NodeEditorApplication.hpp:139
@ COLOR_GROUP_HEADER_TEXT
Color of the group header text.
Definition NodeEditorApplication.hpp:138
static float menuBarHeight
Height of the menu bar on top.
Definition NodeEditorApplication.hpp:120