3#include <ossia/detail/string_view.hpp>
4#include <ossia/network/value/vec.hpp>
15template <
typename T,
typename U>
16using enable_if_same_dataspace = std::enable_if_t<
17 std::is_same<typename T::dataspace_type, typename U::dataspace_type>::value>;
19template <
typename T,
typename U>
20using enable_if_different_dataspace = std::enable_if_t<
21 !std::is_same<typename T::dataspace_type, typename U::dataspace_type>::value>;
23template <
typename Unit>
24struct strong_value : Unit
26 using unit_type = Unit;
27 using value_type =
typename Unit::value_type;
28 using dataspace_type =
typename Unit::dataspace_type;
29 using neutral_unit =
typename Unit::neutral_unit;
30 value_type dataspace_value;
32 OSSIA_INLINE
constexpr strong_value() noexcept
36 OSSIA_INLINE
constexpr strong_value(
const strong_value& other) noexcept
38 , dataspace_value{other.dataspace_value}
41 OSSIA_INLINE
constexpr strong_value(strong_value&& other) noexcept
43 , dataspace_value{other.dataspace_value}
46 OSSIA_INLINE strong_value& operator=(
const strong_value& other)
noexcept
48 ((Unit&)*
this) = other;
49 dataspace_value = other.dataspace_value;
52 OSSIA_INLINE strong_value& operator=(strong_value&& other)
noexcept
54 ((Unit&)*
this) = other;
55 dataspace_value = other.dataspace_value;
59 OSSIA_INLINE
constexpr strong_value(
float other) noexcept
60 : dataspace_value{other}
63 OSSIA_INLINE
constexpr strong_value(
double other) noexcept
64 : dataspace_value{(float)other}
67 OSSIA_INLINE
constexpr strong_value(
int other) noexcept
68 : dataspace_value{(float)other}
71 OSSIA_INLINE
constexpr strong_value(
char other) noexcept
72 : dataspace_value{(float)other}
75 OSSIA_INLINE
constexpr strong_value(
bool other) noexcept
76 : dataspace_value{(float)other}
79 OSSIA_INLINE
constexpr strong_value(std::array<float, 2> other) noexcept
80 : dataspace_value{other}
83 OSSIA_INLINE
constexpr strong_value(std::array<float, 3> other) noexcept
84 : dataspace_value{other}
87 OSSIA_INLINE
constexpr strong_value(std::array<float, 4> other) noexcept
88 : dataspace_value{other}
91 OSSIA_INLINE
constexpr strong_value(std::array<double, 2> other) noexcept
92 : dataspace_value{(float)other[0], (
float)other[1]}
95 OSSIA_INLINE
constexpr strong_value(std::array<double, 3> other) noexcept
96 : dataspace_value{(float)other[0], (
float)other[1], (float)other[2]}
99 OSSIA_INLINE
constexpr strong_value(std::array<double, 4> other) noexcept
101 (float)other[0], (
float)other[1], (float)other[2], (
float)other[3]}
104 OSSIA_INLINE
constexpr strong_value(
float f0,
float f1) noexcept
105 : dataspace_value{f0, f1}
108 OSSIA_INLINE
constexpr strong_value(
float f0,
float f1,
float f2) noexcept
109 : dataspace_value{f0, f1, f2}
112 OSSIA_INLINE
constexpr strong_value(
float f0,
float f1,
float f2,
float f3) noexcept
113 : dataspace_value{f0, f1, f2, f3}
118 template <
typename U>
119 constexpr strong_value(strong_value<U> other) noexcept
120 : dataspace_value{this->from_neutral(other.to_neutral(other))}
123 std::is_same<dataspace_type, typename U::dataspace_type>::value,
124 "Trying to convert between different dataspaces");
127 OSSIA_INLINE
friend bool operator==(
const strong_value& lhs,
const strong_value& rhs)
129 return lhs.dataspace_value == rhs.dataspace_value;
131 OSSIA_INLINE
friend bool operator!=(
const strong_value& lhs,
const strong_value& rhs)
133 return lhs.dataspace_value != rhs.dataspace_value;
137template <
typename T,
typename Ratio_T>
138struct linear_unit :
public T
140 OSSIA_INLINE
static constexpr strong_value<typename T::neutral_unit>
141 to_neutral(strong_value<typename T::concrete_type> self)
143 return {self.dataspace_value * ratio()};
146 OSSIA_INLINE
static constexpr typename T::value_type
147 from_neutral(strong_value<typename T::neutral_unit> self)
149 return self.dataspace_value / ratio();
152 OSSIA_INLINE
static constexpr double ratio()
154 constexpr_return(
double(Ratio_T::num) /
double(Ratio_T::den));
161 static constexpr auto text() { constexpr_return(T::text()); }
165struct unit_traits<strong_value<T>>
167 static constexpr auto text() { constexpr_return(unit_traits<T>::text()); }