9namespace uistream::detail
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>;
24 bool hasWrittenValue =
false;
37 static void Draw(T& obj);
40 static void Clear()
noexcept;
54 static auto CurrentPropertyName()
noexcept;
55 static auto GetRange()
noexcept ->
Vector2;
56 static void Draw(
float& obj);
57 static void Draw(
int& obj);
69 using editor::ImGuiId;
71 ForEachMember<T>([&state = m_state, &obj](
auto&& property)
73 state.currentPropertyBase = property;
74 Draw(obj.*(property.member));
86 return m_state.hasWrittenValue;
91 return std::exchange(m_state.hasWrittenValue,
false);
96 m_state.hasWrittenValue =
false;
99inline auto UIStream::CurrentPropertyName() noexcept
101 return m_state.currentPropertyBase.name;
104inline auto UIStream::GetRange() noexcept ->
Vector2
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;
116 auto [min, max] = GetRange();
117 m_state.hasWrittenValue = m_state.hasWrittenValue || ImGui::DragFloat(CurrentPropertyName(), &obj, 1.0f, min, max);
122 m_state.hasWrittenValue = m_state.hasWrittenValue || ImGui::DragInt(CurrentPropertyName(), &obj);
127 auto [min, max] = GetRange();
128 m_state.hasWrittenValue = m_state.hasWrittenValue || ImGui::DragFloat3(CurrentPropertyName(), &obj.x, 1.0f, min, max);
#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: UIStream.h:12
Definition: UIStream.h:21