libcruft-util/range.hpp

107 lines
3.1 KiB
C++
Raw Normal View History

2011-05-23 17:18:52 +10:00
/*
2015-04-13 18:05:28 +10:00
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
2011-05-23 17:18:52 +10:00
*
2015-04-13 18:05:28 +10:00
* http://www.apache.org/licenses/LICENSE-2.0
2011-05-23 17:18:52 +10:00
*
2015-04-13 18:05:28 +10:00
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
2011-05-23 17:18:52 +10:00
*
* Copyright 2010-2015 Danny Robson <danny@nerdcruft.net>
2011-05-23 17:18:52 +10:00
*/
#ifndef __UTIL_RANGE_HPP
#define __UTIL_RANGE_HPP
2015-02-20 21:53:16 +11:00
#include <cstdint>
#include <ostream>
2011-08-15 20:11:42 +10:00
namespace util {
/**
* Represents a continuous range of values. Contains convenience functions
* and debugging checks.
*/
template <typename T>
struct range {
T min;
T max;
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
/// 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.
template <typename U>
U normalise (T val) const;
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.
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
2012-06-15 16:38:10 +10:00
static const range<T> UNLIMITED;
static const range<T> MAX;
2011-08-15 20:11:42 +10:00
/// A range which only contains elements between 0 and 1 inclusive
2012-06-15 16:38:10 +10:00
static const range<T> UNIT;
2011-08-15 20:11:42 +10:00
void sanity (void) const;
};
2015-02-20 21:53:16 +11:00
// convenience typedefs
typedef util::range<float> rangef;
typedef util::range<uintmax_t> rangeu;
typedef util::range<intmax_t> rangei;
// ostream operators
2011-08-15 20:11:42 +10:00
template <typename T>
std::ostream&
operator <<(std::ostream &os, const range<T> &rhs) {
os << '[' << rhs.min << ", " << rhs.max << ']';
return os;
}
2011-05-23 17:18:52 +10:00
}
#include "range.ipp"
2011-05-23 17:18:52 +10:00
#endif