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
|
|
|
*
|
2017-08-21 18:48:52 +10:00
|
|
|
* Copyright 2010-2017 Danny Robson <danny@nerdcruft.net>
|
2011-05-23 17:18:52 +10:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2017-08-21 18:48:52 +10:00
|
|
|
#ifndef CRUFT_UTIL_REGION_HPP
|
|
|
|
#define CRUFT_UTIL_REGION_HPP
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2017-08-21 18:48:52 +10:00
|
|
|
#include "./extent.hpp"
|
|
|
|
#include "./point.hpp"
|
|
|
|
#include "./vector.hpp"
|
|
|
|
#include "./types/traits.hpp"
|
2011-10-17 17:20:17 +11:00
|
|
|
|
2016-03-11 13:01:57 +11:00
|
|
|
#include <ostream>
|
|
|
|
|
2011-08-15 20:10:43 +10:00
|
|
|
namespace util {
|
|
|
|
/**
|
|
|
|
* A two-dimensional rectangle, with size and position.
|
|
|
|
*/
|
2015-03-03 04:13:29 +11:00
|
|
|
template <size_t S, typename T>
|
2011-08-29 14:40:05 +10:00
|
|
|
struct region {
|
2016-10-25 17:47:30 +11:00
|
|
|
using extent_t = util::extent<S,T>;
|
|
|
|
using point_t = util::point<S,T>;
|
2015-03-02 18:48:09 +11:00
|
|
|
|
2015-03-06 01:09:37 +11:00
|
|
|
using value_type = T;
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
static constexpr size_t dimension = S;
|
|
|
|
static constexpr size_t elements = extent_t::elements + point_t::elements;
|
2012-05-25 15:30:28 +10:00
|
|
|
|
2016-10-25 19:59:53 +11:00
|
|
|
point_t p;
|
|
|
|
extent_t e;
|
2015-03-06 01:09:37 +11:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
2015-01-22 15:00:20 +11:00
|
|
|
region () = default;
|
2015-09-09 18:37:26 +10:00
|
|
|
explicit region (extent_t);
|
2015-03-03 04:13:29 +11:00
|
|
|
region (point_t, extent_t);
|
|
|
|
region (point_t, point_t);
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2015-09-21 15:33:58 +10:00
|
|
|
//---------------------------------------------------------------------
|
|
|
|
template <typename U>
|
|
|
|
constexpr region<S,U> cast (void) const;
|
|
|
|
|
2015-03-06 01:09:37 +11:00
|
|
|
//---------------------------------------------------------------------
|
2016-10-25 17:47:30 +11:00
|
|
|
T area (void) const;
|
|
|
|
T diameter (void) const;
|
2015-03-02 18:48:09 +11:00
|
|
|
extent_t magnitude (void) const;
|
|
|
|
extent_t magnitude (extent_t);
|
2015-02-17 16:24:16 +11:00
|
|
|
|
2011-08-15 20:10:43 +10:00
|
|
|
bool empty (void) const;
|
2011-10-24 19:55:51 +11:00
|
|
|
|
2015-03-06 01:09:37 +11:00
|
|
|
//---------------------------------------------------------------------
|
2015-03-03 04:13:29 +11:00
|
|
|
point_t base (void) const;
|
|
|
|
point_t away (void) const;
|
|
|
|
point_t centre (void) const;
|
|
|
|
point_t closest (point_t) const;
|
2011-10-17 17:20:17 +11:00
|
|
|
|
2015-03-06 01:09:37 +11:00
|
|
|
//---------------------------------------------------------------------
|
2017-08-11 15:15:44 +10:00
|
|
|
// exclusive of borders
|
|
|
|
bool intersects (region<S,T>) const;
|
2015-01-21 23:33:35 +11:00
|
|
|
// Compute binary region combinations
|
2015-03-03 04:13:29 +11:00
|
|
|
region intersection (region<S,T>) const;
|
2012-05-11 12:22:23 +10:00
|
|
|
|
2017-08-11 14:39:46 +10:00
|
|
|
// Test if a region lies completely within our space
|
2017-08-11 15:15:44 +10:00
|
|
|
bool covers (region<S,T>) const noexcept;
|
|
|
|
// Test if a point lies within out space. Inclusive of borders
|
|
|
|
bool covers (point<S,T>) const noexcept;
|
|
|
|
|
|
|
|
// Move a point to be within the region bounds
|
2017-08-11 15:19:14 +10:00
|
|
|
point_t constrain (point_t) const noexcept;
|
2017-08-11 14:39:46 +10:00
|
|
|
|
2015-03-06 01:09:37 +11:00
|
|
|
//---------------------------------------------------------------------
|
2015-01-21 23:37:00 +11:00
|
|
|
// Compute a region `mag` units into the region
|
2017-08-09 17:17:55 +10:00
|
|
|
region inset (T mag) const;
|
|
|
|
region inset (vector<S,T> mag) const;
|
2015-02-04 15:44:51 +11:00
|
|
|
|
2017-08-09 17:28:53 +10:00
|
|
|
region expand (T mag) const;
|
|
|
|
region expand (vector<S,T>) const;
|
2015-01-21 23:37:00 +11:00
|
|
|
|
2015-02-20 15:26:59 +11:00
|
|
|
// arithmetic operators
|
2015-03-03 04:13:29 +11:00
|
|
|
region operator+ (vector<S,T>) const;
|
|
|
|
region operator- (vector<S,T>) const;
|
2015-02-20 15:26:59 +11:00
|
|
|
|
2015-01-21 23:33:35 +11:00
|
|
|
// Logical comparison operators
|
2015-03-03 04:13:29 +11:00
|
|
|
bool operator ==(region<S,T> rhs) const;
|
|
|
|
bool operator !=(region<S,T> rhs) const
|
2011-08-15 20:10:43 +10:00
|
|
|
{ return !(*this == rhs); }
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2015-01-21 23:33:35 +11:00
|
|
|
// Utility constants
|
2016-12-12 17:07:53 +11:00
|
|
|
static constexpr region<S,T> max (void);
|
|
|
|
static constexpr region<S,T> unit (void);
|
2012-06-15 16:38:57 +10:00
|
|
|
|
2017-08-16 17:25:56 +10:00
|
|
|
static constexpr region<S,T> zero (void)
|
|
|
|
{ return { point_t {0}, extent_t {0} }; }
|
|
|
|
|
2011-08-15 20:10:43 +10:00
|
|
|
void sanity (void) const;
|
|
|
|
};
|
2012-06-13 14:41:53 +10:00
|
|
|
|
2017-07-31 15:42:05 +10:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
/// constructs the minimal region that encompasses a region and a point.
|
|
|
|
template <typename T, size_t S>
|
|
|
|
region<S,T>
|
|
|
|
make_union (region<S,T> r, point<S,T> p)
|
|
|
|
{
|
|
|
|
const auto p0 = select (r.p < p, r.p, p);
|
|
|
|
const auto p1 = select (r.away () > p, r.away (), p);
|
|
|
|
return { p0, p1 };
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-08-21 18:48:52 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
/// construct a point iterator across a given region, generating each
|
|
|
|
/// valid point in row-major sequence.
|
|
|
|
///
|
|
|
|
/// this is only defined for integral types as it's not clear how to
|
|
|
|
/// handle floats; it's _super_ unlikely anyone actually wants to visit
|
|
|
|
/// every single floating point value for a region (and if so they can
|
|
|
|
/// damn well code that monstrosity themselves).
|
|
|
|
template <
|
|
|
|
typename T,
|
|
|
|
std::size_t S,
|
|
|
|
typename = std::enable_if_t<
|
|
|
|
std::is_integral_v<T>, void
|
|
|
|
>
|
|
|
|
>
|
|
|
|
auto
|
|
|
|
make_range (region<S,T> r)
|
|
|
|
{
|
|
|
|
using region_t = region<S,T>;
|
|
|
|
using point_t = typename region_t::point_t;
|
|
|
|
using vector_t = util::vector<S,T>;
|
|
|
|
|
|
|
|
// this range object is mostly a wrapper around the existing
|
|
|
|
// extent_range object with a constant offset. it's not going to be as
|
|
|
|
// performant, but when we discover this is an issue we can do write a
|
|
|
|
// better version of this object & iterator.
|
|
|
|
class region_range {
|
|
|
|
public:
|
|
|
|
class iterator : public std::iterator<std::forward_iterator_tag, point_t, size_t> {
|
|
|
|
public:
|
|
|
|
iterator (typename extent_range<S,T>::iterator _inner, vector_t _offset):
|
|
|
|
m_inner (_inner),
|
|
|
|
m_offset (_offset)
|
|
|
|
{ ; }
|
|
|
|
|
|
|
|
|
|
|
|
point_t operator* (void) const { return *m_inner + m_offset; }
|
|
|
|
|
|
|
|
iterator&
|
|
|
|
operator++ (void)
|
|
|
|
{
|
|
|
|
++m_inner;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool operator== (const iterator &rhs) const
|
|
|
|
{
|
|
|
|
assert (m_offset == rhs.m_offset);
|
|
|
|
return m_inner == rhs.m_inner;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool operator!= (const iterator &rhs) const
|
|
|
|
{ return !(*this == rhs); }
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
typename extent_range<S,T>::iterator m_inner;
|
|
|
|
vector_t m_offset;
|
|
|
|
};
|
|
|
|
|
|
|
|
region_range (region_t _r):
|
|
|
|
m_range { _r.e + T{1} },
|
|
|
|
m_offset { _r.p.template as<util::vector> () }
|
|
|
|
{ ; }
|
|
|
|
|
|
|
|
iterator begin (void) const { return { m_range.begin (), m_offset }; }
|
|
|
|
iterator end (void) const { return { m_range.end (), m_offset }; }
|
|
|
|
|
|
|
|
iterator cbegin (void) const { return begin (); }
|
|
|
|
iterator cend (void) const { return end (); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
const extent_range<S,T> m_range;
|
|
|
|
const vector_t m_offset;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
return region_range { r };
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-10-25 20:02:19 +11:00
|
|
|
template <typename T> using region2 = region<2,T>;
|
|
|
|
template <typename T> using region3 = region<3,T>;
|
|
|
|
|
|
|
|
using region2u = region2<unsigned>;
|
|
|
|
using region2i = region2<int>;
|
|
|
|
using region2f = region2<float>;
|
|
|
|
using region2d = region2<double>;
|
2012-06-13 14:41:53 +10:00
|
|
|
|
2015-03-03 04:13:29 +11:00
|
|
|
template <size_t S, typename T>
|
|
|
|
std::ostream& operator<< (std::ostream&, const util::region<S,T>&);
|
2011-08-15 20:10:43 +10:00
|
|
|
}
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2015-09-21 15:33:58 +10:00
|
|
|
#include "region.ipp"
|
|
|
|
|
2015-01-16 14:42:56 +11:00
|
|
|
#endif
|