3#include <ossia/detail/config.hpp>
5#include <ossia/detail/flat_map.hpp>
6#include <ossia/detail/optional.hpp>
11#include <ossia/network/base/node.hpp>
12#include <ossia/network/base/parameter.hpp>
14#include <ossia/network/value/value.hpp>
30static constexpr auto curve_segment_type_map()
32 if constexpr(std::is_same_v<T, int>)
33 return ossia::curve_segment_type::INT;
34 else if constexpr(std::is_same_v<T, int64_t>)
35 return ossia::curve_segment_type::INT64;
36 else if constexpr(std::is_same_v<T, float>)
37 return ossia::curve_segment_type::FLOAT;
38 else if constexpr(std::is_same_v<T, double>)
39 return ossia::curve_segment_type::DOUBLE;
40 else if constexpr(std::is_same_v<T, bool>)
41 return ossia::curve_segment_type::BOOL;
42 else if constexpr(std::is_same_v<T, ossia::value>)
43 return ossia::curve_segment_type::ANY;
48template <
typename K,
typename V>
49using curve_map = ossia::flat_map<K, V>;
51template <
typename X,
typename Y>
61 using abscissa_type = X;
62 using ordinate_type = Y;
64 using map_type = curve_map<X, std::pair<Y, ossia::curve_segment<Y>>>;
71 m_y0_destination = other.m_y0_destination;
73 m_points = other.m_points;
75 m_y0_cacheUsed =
false;
82 m_y0_destination = std::move(other.m_y0_destination);
84 m_points = std::move(other.m_points);
86 m_y0_cacheUsed =
false;
93 m_y0_destination = other.m_y0_destination;
95 m_points = other.m_points;
97 m_y0_cacheUsed =
false;
104 m_y0_destination = std::move(other.m_y0_destination);
106 m_points = std::move(other.m_points);
108 m_y0_cacheUsed =
false;
171 static Y convert_to_template_type_value(
174 void reserve(std::size_t count) { m_points.reserve(count); }
179 mutable std::optional<ossia::destination> m_y0_destination;
181 mutable map_type m_points;
183 mutable Y m_y0_cache;
185 mutable bool m_y0_cacheUsed =
false;
188template <
typename X,
typename Y>
191 m_y0_cacheUsed =
false;
194template <
typename X,
typename Y>
198 m_points.emplace(abscissa, std::make_pair(
value, std::move(segment)));
203template <
typename X,
typename Y>
206 return m_points.erase(abscissa) > 0;
209template <
typename X,
typename Y>
212 X lastAbscissa = get_x0();
213 Y lastValue = get_y0();
215 auto end = m_points.end();
216 for(
auto it = m_points.begin(); it != end; ++it)
218 if(abscissa > lastAbscissa && abscissa <= it->first)
220 lastValue = it->second.second(
221 ((
double)abscissa - (
double)lastAbscissa)
222 / ((double)it->first - (
double)lastAbscissa),
223 lastValue, it->second.first);
226 else if(abscissa > it->first)
228 lastAbscissa = it->first;
229 lastValue = it->second.first;
238template <
typename X,
typename Y>
241 static constexpr auto type
242 = std::make_pair(curve_segment_type_map<X>(), curve_segment_type_map<Y>());
246template <
typename X,
typename Y>
252template <
typename X,
typename Y>
255 if(!m_y0_destination)
262 const destination& dest = *m_y0_destination;
263 m_y0_cacheUsed =
true;
264 m_y0_cache = convert_to_template_type_value(
265 dest.address().fetch_value(), dest.index.begin());
271template <
typename X,
typename Y>
277template <
typename X,
typename Y>
283template <
typename X,
typename Y>
286 return m_y0_destination;
289template <
typename X,
typename Y>
292 m_y0_destination = destination;
295template <
typename X,
typename Y>
301template <
typename X,
typename Y>
303 const value& v, ossia::destination_index::const_iterator idx)
305 using namespace ossia;
309 destination_index::const_iterator index;
310 Y operator()(int32_t i)
const {
return i; }
311 Y operator()(
float f)
const {
return f; }
312 Y operator()(
bool b)
const {
return b; }
313 Y operator()(
char c)
const {
return c; }
314 Y operator()(vec2f vec)
const {
return vec[*index]; }
315 Y operator()(vec3f vec)
const {
return vec[*index]; }
316 Y operator()(vec4f vec)
const {
return vec[*index]; }
317 Y operator()(
const std::vector<ossia::value>& t)
const
319 auto& val = t[*index];
320 return convert_to_template_type_value(val, index + 1);
322 Y operator()(
const value_map_type& t)
const
324#if defined(__cpp_exceptions)
326 "curve_impl::convertToTemplateTypeValue: "
327 "Cannot convert Map to a numeric type");
332 Y operator()(impulse)
const
334#if defined(__cpp_exceptions)
336 "curve_impl::convertToTemplateTypeValue: "
337 "Cannot convert Impulse to a numeric type");
341 Y operator()(
const std::string& str)
const
343#if defined(__cpp_exceptions)
345 "curve_impl::convertToTemplateTypeValue: "
346 "Cannot convert String to a numeric type");
352#if defined(__cpp_exceptions)
354 "curve_impl::convertToTemplateTypeValue: "
379 : mValue{std::move(v)}
393 return std::make_pair(
394 ossia::curve_segment_type::DOUBLE, ossia::curve_segment_type::ANY);
The constant_curve class A curve that always return a same single value.
Definition curve.hpp:376
void reset() override
Clear internal data structures of the curve.
Definition curve.hpp:397
curve_type get_type() const override
get the type of both coordinates
Definition curve.hpp:391
The curve_abstract class.
Definition curve_abstract.hpp:42
The curve class.
Definition curve.hpp:59
X get_x0() const
get initial point abscissa
Definition curve.hpp:247
void reset() override
Clear internal data structures of the curve.
Definition curve.hpp:189
bool remove_point(X abscissa)
remove a point from the curve
Definition curve.hpp:204
void set_x0(X value)
set initial point abscissa
Definition curve.hpp:272
bool add_point(ossia::curve_segment< Y > &&segment, X abscissa, Y value)
add a segment to reach a target point to the curve
Definition curve.hpp:196
std::optional< destination > get_y0_destination() const
get initial point ordinate destination
Definition curve.hpp:284
map_type get_points() const
get points of the curve
Definition curve.hpp:296
Y value_at(X abscissa) const
get value at an abscissa
Definition curve.hpp:210
void set_y0(Y value)
set initial point ordinate
Definition curve.hpp:278
ossia::curve_type get_type() const override
get the type of both coordinates
Definition curve.hpp:239
virtual ~curve()=default
destructor
void set_y0_destination(const ossia::destination &destination)
set initial curve ordinate using a Destination
Definition curve.hpp:290
Y get_y0() const
get initial point ordinate
Definition curve.hpp:253
The value class.
Definition value.hpp:173
The invalid_value_type_error class.
Definition network/exceptions.hpp:87