2011-05-23 17:18:52 +10:00
|
|
|
/*
|
2018-08-04 15:14:06 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2011-05-23 17:18:52 +10:00
|
|
|
*
|
2020-11-23 13:00:44 +11:00
|
|
|
* Copyright 2010-2020 Danny Robson <danny@nerdcruft.net>
|
2011-05-23 17:18:52 +10:00
|
|
|
*/
|
|
|
|
|
2020-11-23 13:00:44 +11:00
|
|
|
#pragma once
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2015-02-20 21:53:16 +11:00
|
|
|
#include <cstdint>
|
2018-02-28 11:49:13 +11:00
|
|
|
#include <limits>
|
|
|
|
#include <type_traits>
|
2020-11-23 13:00:44 +11:00
|
|
|
#include <iosfwd>
|
2014-03-06 15:22:47 +11:00
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
namespace cruft {
|
2011-08-15 20:11:42 +10:00
|
|
|
/**
|
|
|
|
* Represents a continuous range of values. Contains convenience functions
|
|
|
|
* and debugging checks.
|
|
|
|
*/
|
|
|
|
template <typename T>
|
|
|
|
struct range {
|
2016-12-21 16:44:48 +11:00
|
|
|
T lo;
|
|
|
|
T hi;
|
2011-08-15 20:11:42 +10:00
|
|
|
|
|
|
|
range (T _min, T _max);
|
|
|
|
|
2015-02-20 20:49:41 +11:00
|
|
|
T magnitude (void) const;
|
|
|
|
|
2011-08-15 20:11:42 +10:00
|
|
|
/// Check whether value falls within this range (inclusive)
|
|
|
|
bool contains (T val) const;
|
|
|
|
/// Check whether a range falls completely within (inclusive) this range
|
|
|
|
bool contains (const range <T> &r) const;
|
|
|
|
/// Check whether a range falls partially within (inclusive) this range
|
|
|
|
//bool includes (const range <T> &r) const;
|
|
|
|
|
2015-03-11 16:27:37 +11:00
|
|
|
/// interpolate between min-max using the unit position
|
|
|
|
T at (float) const;
|
|
|
|
|
2011-08-15 20:11:42 +10:00
|
|
|
/// Return the closest number that falls within the range.
|
|
|
|
T clamp (T val) const;
|
|
|
|
|
2012-05-22 14:12:06 +10:00
|
|
|
/// Expand the range to include this value if necessary
|
2012-05-23 17:01:54 +10:00
|
|
|
void expand (T val);
|
2012-05-24 15:03:26 +10:00
|
|
|
|
2014-02-18 16:00:48 +11:00
|
|
|
/// Normalise a number to [0, 1] within the range. Does not check
|
|
|
|
/// bounds, it is the caller's responsibility to clamp the result if
|
|
|
|
/// needed.
|
2015-02-17 16:18:55 +11:00
|
|
|
template <typename U>
|
2018-02-28 11:49:13 +11:00
|
|
|
U
|
|
|
|
normalise (T val) const
|
|
|
|
{
|
|
|
|
static_assert (std::is_floating_point<U>::value,
|
|
|
|
"normalise isn't implemented for integer types");
|
|
|
|
|
|
|
|
return static_cast<U> (val - lo) /
|
|
|
|
static_cast<U> ( hi - lo);
|
|
|
|
}
|
2011-08-15 20:11:42 +10:00
|
|
|
|
2012-05-24 15:03:26 +10:00
|
|
|
range& operator*= (T);
|
|
|
|
range operator* (T) const;
|
|
|
|
|
|
|
|
range& operator/= (T);
|
|
|
|
range operator/ (T) const;
|
|
|
|
|
|
|
|
range& operator+= (T);
|
|
|
|
range operator+ (T) const;
|
|
|
|
|
|
|
|
range& operator-= (T);
|
|
|
|
range operator- (T) const;
|
|
|
|
|
2011-08-15 20:11:42 +10:00
|
|
|
/// Return a pseudo-random uniformly distributed value within the range.
|
2015-04-13 18:06:08 +10:00
|
|
|
/// There are no statistical randomness guarantees whatsoever.
|
2011-10-03 19:20:14 +11:00
|
|
|
T random (void) const;
|
2011-08-15 20:11:42 +10:00
|
|
|
|
|
|
|
bool operator ==(const range<T>& rhs) const;
|
|
|
|
bool operator !=(const range<T>& rhs) const
|
|
|
|
{ return !(*this == rhs); }
|
|
|
|
|
|
|
|
/// A range which is guaranteed to contain all elements type T
|
2018-02-28 11:49:13 +11:00
|
|
|
static constexpr range<T> unlimited (void)
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
std::numeric_limits<T>::has_infinity ? -std::numeric_limits<T>::infinity () :
|
|
|
|
std::numeric_limits<T>::lowest (),
|
|
|
|
std::numeric_limits<T>::has_infinity ? std::numeric_limits<T>::infinity () :
|
|
|
|
std::numeric_limits<T>::max ()
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
static constexpr range<T> max (void)
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
std::numeric_limits<T>::lowest (),
|
|
|
|
std::numeric_limits<T>::max ()
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2011-08-15 20:11:42 +10:00
|
|
|
/// A range which only contains elements between 0 and 1 inclusive
|
2018-02-28 11:49:13 +11:00
|
|
|
static constexpr range<T> unit (void)
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
T {0}, T {1}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2011-08-15 20:11:42 +10:00
|
|
|
|
|
|
|
void sanity (void) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-02-20 21:53:16 +11:00
|
|
|
// convenience typedefs
|
2018-08-05 14:42:02 +10:00
|
|
|
typedef cruft::range<float> rangef;
|
|
|
|
typedef cruft::range<uintmax_t> rangeu;
|
|
|
|
typedef cruft::range<intmax_t> rangei;
|
2015-02-20 21:53:16 +11:00
|
|
|
|
|
|
|
// ostream operators
|
2011-08-15 20:11:42 +10:00
|
|
|
template <typename T>
|
|
|
|
std::ostream&
|
2020-11-23 13:00:44 +11:00
|
|
|
operator <<(std::ostream &os, const range<T> &);
|
2011-05-23 17:18:52 +10:00
|
|
|
}
|