OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
domain_functions.hpp
1#pragma once
2#include <ossia/detail/config.hpp>
3
4#include <ossia/detail/small_vector.hpp>
5#include <ossia/detail/span.hpp>
6#include <ossia/network/common/parameter_properties.hpp>
7#include <ossia/network/value/value_base.hpp>
8
9#include <optional>
10#include <utility>
11#include <vector>
12namespace ossia
13{
14class value;
15template <typename T>
16struct domain_base;
17struct domain;
18struct vector_domain;
19template <std::size_t N>
20struct vecf_domain;
21
22OSSIA_EXPORT value
23apply_domain(const domain& dom, bounding_mode b, const ossia::value& val);
24OSSIA_EXPORT value apply_domain(const domain& dom, bounding_mode b, ossia::value&& val);
25
26OSSIA_EXPORT value get_min(const domain& dom);
27OSSIA_EXPORT value get_max(const domain& dom);
28OSSIA_EXPORT std::pair<std::optional<float>, std::optional<float>>
29get_float_minmax(const domain& dom);
30
31OSSIA_EXPORT void set_min(domain& dom, const ossia::value& val);
32OSSIA_EXPORT void set_max(domain& dom, const ossia::value& val);
33
34OSSIA_EXPORT void set_values(domain& dom, const std::vector<ossia::value>& val);
35OSSIA_EXPORT std::vector<ossia::value> get_values(const ossia::domain& dom);
36
37// TODO we should find a way to prevent invalid domains here, e.g. min=int,
38// max=float
39OSSIA_EXPORT
40domain make_domain(const ossia::value& lhs, const ossia::value& rhs);
41
42OSSIA_EXPORT domain make_domain(std::vector<std::string> s);
43OSSIA_EXPORT domain make_domain(tcb::span<const char*>);
44
45OSSIA_EXPORT domain make_domain_from_osc(
46 const ossia::small_vector<ossia::value, 2>& val, const ossia::value& cur);
47OSSIA_EXPORT domain make_domain(
48 const ossia::value& min, const ossia::value& max,
49 const std::vector<ossia::value>& vals);
50OSSIA_EXPORT domain make_domain(const std::vector<ossia::value>& vals);
51
52OSSIA_EXPORT
53ossia::domain make_domain_from_minmax(
54 const std::vector<ossia::value>& min, const std::vector<ossia::value>& max,
56
57OSSIA_EXPORT domain init_domain(ossia::val_type type);
58
59template <typename T>
60bool operator!=(const domain_base<T>& lhs, const domain_base<T>& rhs)
61{
62 return !(lhs == rhs);
63}
64}
65
66OSSIA_EXPORT
67std::ostream& operator<<(std::ostream&, const ossia::domain&);
The value class.
Definition value.hpp:173
Definition git_info.h:7
OSSIA_INLINE constexpr auto min(const T a, const U b) noexcept -> typename std::conditional<(sizeof(T) > sizeof(U)), T, U >::type
min function tailored for values
Definition math.hpp:125
val_type
Enum to represent the types that a value can take.
Definition parameter_properties.hpp:16
bounding_mode
Address behaviors at crossing domain boundaries.
Definition parameter_properties.hpp:56
OSSIA_INLINE constexpr auto max(const T a, const U b) noexcept -> typename std::conditional<(sizeof(T) > sizeof(U)), T, U >::type
max function tailored for values
Definition math.hpp:96
domain A domain of values
Definition domain_base.hpp:23