2#include <ossia/detail/small_vector.hpp>
5#include <ossia/network/value/value.hpp>
9using vec_behavior = ossia::static_vector<curve<double, float>*, 4>;
10static vec_behavior list_convertible_to_vec(
const std::vector<ossia::behavior>& t)
12 const auto n = t.size();
18 for(
const ossia::behavior& v : t)
20 auto target = v.target<std::shared_ptr<ossia::curve_abstract>>();
29 if(t.first == ossia::curve_segment_type::DOUBLE
30 && t.second == ossia::curve_segment_type::FLOAT)
57 case ossia::curve_segment_type::FLOAT: {
58 auto c =
static_cast<curve<double, float>*
>(base_curve);
59 return fill_vec<N>(
float(c->value_at(position)));
61 case ossia::curve_segment_type::INT: {
62 auto c =
static_cast<curve<double, int>*
>(base_curve);
63 return fill_vec<N>(
int(c->value_at(position)));
65 case ossia::curve_segment_type::BOOL: {
66 auto c =
static_cast<curve<double, bool>*
>(base_curve);
67 return fill_vec<N>(
bool(c->value_at(position)));
69 case ossia::curve_segment_type::DOUBLE:
70 case ossia::curve_segment_type::INT64:
71 case ossia::curve_segment_type::ANY:
78struct compute_value_uninformed_visitor
84 throw invalid_value_type_error(
85 "computeValue_visitor: "
86 "Unhandled drive value type.");
100 auto base_curve = c.get();
103 throw invalid_value_type_error(
104 "computeValue_visitor: "
112 case ossia::curve_segment_type::FLOAT:
113 return float{
static_cast<curve<double, float>*
>(base_curve)->value_at(position)};
114 case ossia::curve_segment_type::INT:
115 return int32_t{
static_cast<curve<double, int>*
>(base_curve)->value_at(position)};
116 case ossia::curve_segment_type::BOOL:
117 return bool{
static_cast<curve<double, bool>*
>(base_curve)->value_at(position)};
118 case ossia::curve_segment_type::DOUBLE:
120 case ossia::curve_segment_type::INT64:
122 case ossia::curve_segment_type::ANY:
124 return static_cast<constant_curve*
>(base_curve)->value();
127 throw invalid_value_type_error(
128 "computeValue_visitor: "
129 "drive curve type is not DOUBLE");
133 ossia::value operator()(
const std::vector<ossia::behavior>& b)
135 vec_behavior arr = list_convertible_to_vec(b);
141 return ossia::make_vec(arr[0]->value_at(position), arr[1]->value_at(position));
143 return ossia::make_vec(
144 arr[0]->value_at(position), arr[1]->value_at(position),
145 arr[2]->value_at(position));
147 return ossia::make_vec(
148 arr[0]->value_at(position), arr[1]->value_at(position),
149 arr[2]->value_at(position), arr[3]->value_at(position));
155 std::vector<ossia::value> t;
158 for(
const auto& e : b)
161 t.push_back(ossia::apply_nonnull(*
this, e));
170struct compute_value_visitor
177 throw invalid_value_type_error(
178 "computeValue_visitor: "
179 "Unhandled drive value type.");
183 template <
typename T>
193 auto base_curve = c.get();
196 throw invalid_value_type_error(
197 "computeValue_visitor: "
203 if(t.first == ossia::curve_segment_type::DOUBLE)
207 case ossia::val_type::FLOAT:
212 case ossia::curve_segment_type::FLOAT:
214 static_cast<curve<double, float>*
>(base_curve)->value_at(position)};
215 case ossia::curve_segment_type::INT:
217 static_cast<curve<double, int>*
>(base_curve)->value_at(position)};
218 case ossia::curve_segment_type::BOOL:
220 static_cast<curve<double, bool>*
>(base_curve)->value_at(position)};
221 case ossia::curve_segment_type::DOUBLE:
223 case ossia::curve_segment_type::INT64:
225 case ossia::curve_segment_type::ANY:
227 return static_cast<constant_curve*
>(base_curve)->value();
232 return make_filled_vec<2>(base_curve, t.second, position);
234 return make_filled_vec<3>(base_curve, t.second, position);
236 return make_filled_vec<4>(base_curve, t.second, position);
246 throw invalid_value_type_error(
247 "computeValue_visitor: "
248 "drive curve type is not DOUBLE");
252 ossia::value operator()(
const std::vector<ossia::behavior>& b)
254 vec_behavior arr = list_convertible_to_vec(b);
260 return ossia::make_vec(arr[0]->value_at(position), arr[1]->value_at(position));
262 return ossia::make_vec(
263 arr[0]->value_at(position), arr[1]->value_at(position),
264 arr[2]->value_at(position));
266 return ossia::make_vec(
267 arr[0]->value_at(position), arr[1]->value_at(position),
268 arr[2]->value_at(position), arr[3]->value_at(position));
274 std::vector<ossia::value> t;
277 for(
const auto& e : b)
280 t.push_back(ossia::apply_nonnull(compute_value_uninformed_visitor{position}, e));
The curve_abstract class.
Definition curve_abstract.hpp:42
virtual curve_type get_type() const =0
get the type of both coordinates
The curve class.
Definition curve.hpp:59
The value class.
Definition value.hpp:173
Definition transitive_closure.hpp:27
val_type
Enum to represent the types that a value can take.
Definition parameter_properties.hpp:16
curve_segment_type
The curve_segment_type enum.
Definition curve_abstract.hpp:18