NcEngine
All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages Concepts
UIStream.h
1#pragma once
2
3#include "ui/ImGuiUtility.h"
4
5#include "ncmath/Vector.h"
6
7namespace nc::type
8{
9namespace uistream::detail
10{
11 struct Range
12 {
13 static constexpr auto Default = Vector2{-500.0f, 500.0f};
14 static constexpr auto Nonnegative = Vector2{0.0f, 500.0f};
15 static constexpr auto Position = Vector2{-2000.0f, 2000.0f};
16 static constexpr auto Scale = Vector2{0.0f, 1000.0f};
17 static constexpr auto Angle = Vector2{-2.0f, 2.0f} * std::numbers::pi_v<float>;
18 };
19
21 {
22 PropertyBase currentPropertyBase = PropertyBase{};
23 int calls = 0;
24 bool hasWrittenValue = false;
25 };
26};
27
30{
33
34 public:
36 template<class T>
37 static void Draw(T& obj);
38
40 static void Clear() noexcept;
41
43 static bool GetWriteStatus() noexcept;
44
46 static void ClearWriteStatus() noexcept;
47
49 static bool ExchangeWriteStatus() noexcept;
50
51 private:
52 inline static StreamState m_state = StreamState{};
53
54 static auto CurrentPropertyName() noexcept;
55 static auto GetRange() noexcept -> Vector2;
56 static void Draw(float& obj);
57 static void Draw(int& obj);
58 static void Draw(nc::Vector3& obj);
59};
60
61template<class T>
62void UIStream::Draw(T& obj)
63{
64 ++m_state.calls;
65 ImGui::Text(Type<T>::name);
66
67 if constexpr(Type<T>::propertyCount != 0)
68 {
69 using editor::ImGuiId;
70 IMGUI_SCOPE(ImGuiId, m_state.calls);
71 ForEachMember<T>([&state = m_state, &obj](auto&& property)
72 {
73 state.currentPropertyBase = property;
74 Draw(obj.*(property.member));
75 });
76 }
77}
78
79inline void UIStream::Clear() noexcept
80{
81 m_state = StreamState{};
82}
83
84inline bool UIStream::GetWriteStatus() noexcept
85{
86 return m_state.hasWrittenValue;
87}
88
89inline bool UIStream::ExchangeWriteStatus() noexcept
90{
91 return std::exchange(m_state.hasWrittenValue, false);
92}
93
94inline void UIStream::ClearWriteStatus() noexcept
95{
96 m_state.hasWrittenValue = false;
97}
98
99inline auto UIStream::CurrentPropertyName() noexcept
100{
101 return m_state.currentPropertyBase.name;
102}
103
104inline auto UIStream::GetRange() noexcept -> Vector2
105{
106 const auto flags = m_state.currentPropertyBase.flags;
107 if(flags & PropertyFlags::Position) return Range::Position;
108 if(flags & PropertyFlags::Scale) return Range::Scale;
109 if(flags & PropertyFlags::Angles) return Range::Angle;
110 if(flags & PropertyFlags::Nonnegative) return Range::Nonnegative;
111 return Range::Default;
112}
113
114inline void UIStream::Draw(float& obj)
115{
116 auto [min, max] = GetRange();
117 m_state.hasWrittenValue = m_state.hasWrittenValue || ImGui::DragFloat(CurrentPropertyName(), &obj, 1.0f, min, max);
118}
119
120inline void UIStream::Draw(int& obj)
121{
122 m_state.hasWrittenValue = m_state.hasWrittenValue || ImGui::DragInt(CurrentPropertyName(), &obj);
123}
124
125inline void UIStream::Draw(nc::Vector3& obj)
126{
127 auto [min, max] = GetRange();
128 m_state.hasWrittenValue = m_state.hasWrittenValue || ImGui::DragFloat3(CurrentPropertyName(), &obj.x, 1.0f, min, max);
129}
130} // namespace nc::type
#define IMGUI_SCOPE(Property,...)
Create a variable to hold a scoped property.
Definition: ImGuiUtility.h:32
Definition: UIStream.h:30
static void Clear() noexcept
Definition: UIStream.h:79
static void ClearWriteStatus() noexcept
Definition: UIStream.h:94
static bool GetWriteStatus() noexcept
Definition: UIStream.h:84
static bool ExchangeWriteStatus() noexcept
Definition: UIStream.h:89
static void Draw(T &obj)
Definition: UIStream.h:62
A two component vector.
Definition: Vector.h:13
A three component vector.
Definition: Vector.h:29
Definition: Type.h:48
Definition: Type.h:11
Definition: UIStream.h:12