OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
value_bounding.hpp
1
#pragma once
2
#include <ossia/network/domain/domain.hpp>
3
#include <ossia/network/value/value.hpp>
4
5
namespace
ossia
6
{
7
8
template
<
typename
Value_T>
9
inline
ossia::value
10
bound_value(
const
ossia::domain
& dom, Value_T&& base_val,
ossia::bounding_mode
mode)
11
{
12
if
(dom)
13
{
14
auto
res = ossia::apply_domain(dom, mode, std::forward<Value_T>(base_val));
15
if
(res.valid())
16
return
res;
17
else
18
return
{};
19
}
20
else
21
{
22
return
std::forward<Value_T>(base_val);
23
}
24
}
25
26
template
<
typename
Addr_T>
27
inline
ossia::value
bound_value(
const
Addr_T& addr,
const
ossia::value
& v)
28
{
29
auto
val = bound_value(addr.get_domain(), v, addr.get_bounding());
30
auto
filtered = addr.filter_value(val);
31
if
(!filtered)
32
return
val;
33
return
{};
34
}
35
36
template
<
typename
Addr_T>
37
inline
ossia::value
bound_value(
const
Addr_T& addr,
ossia::value
&& v)
38
{
39
auto
val = bound_value(addr.get_domain(), std::move(v), addr.get_bounding());
40
auto
filtered = addr.filter_value(val);
41
if
(!filtered)
42
return
val;
43
return
{};
44
}
45
46
}
ossia::value
The value class.
Definition
value.hpp:173
ossia
Definition
git_info.h:7
ossia::bounding_mode
bounding_mode
Address behaviors at crossing domain boundaries.
Definition
parameter_properties.hpp:56
ossia::domain
domain A domain of values
Definition
domain_base.hpp:23
src
ossia
network
common
value_bounding.hpp
Generated on Mon Mar 31 2025 23:58:28 for OSSIA by
1.9.8