1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
#pragma once
// ReSharper disable once CppUnusedIncludeDirective
#include "pre.hpp"
// ReSharper disable once CppUnusedIncludeDirective
#include <type_traits>
#include <optional>
namespace cru
{
template <typename T, typename = std::enable_if_t<std::is_arithmetic_v<T>>>
float Coerce(const T n, const std::optional<T> min, const std::optional<T> max)
{
if (min.has_value() && n < min.value())
return min.value();
if (max.has_value() && n > max.value())
return max.value();
return n;
}
template <typename T, typename = std::enable_if_t<std::is_arithmetic_v<T>>>
float Coerce(const T n, const T min, const T max)
{
if (n < min)
return min;
if (n > max)
return max;
return n;
}
template <typename T, typename = std::enable_if_t<std::is_arithmetic_v<T>>>
float Coerce(const T n, const std::nullopt_t, const std::optional<T> max)
{
if (max.has_value() && n > max.value())
return max.value();
return n;
}
template <typename T, typename = std::enable_if_t<std::is_arithmetic_v<T>>>
float Coerce(const T n, const std::optional<T> min, const std::nullopt_t)
{
if (min.has_value() && n < min.value())
return min.value();
return n;
}
template <typename T, typename = std::enable_if_t<std::is_arithmetic_v<T>>>
float Coerce(const T n, const std::nullopt_t, const T max)
{
if (n > max)
return max;
return n;
}
template <typename T, typename = std::enable_if_t<std::is_arithmetic_v<T>>>
float Coerce(const T n, const T min, const std::nullopt_t)
{
if (n < min)
return min;
return n;
}
template <typename T, typename = std::enable_if_t<std::is_arithmetic_v<T>>>
T AtLeast0(const T value)
{
return value < static_cast<T>(0) ? static_cast<T>(0) : value;
}
}
|