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
|
|
|
*
|
2015-01-15 14:01:05 +11:00
|
|
|
* Copyright 2010-2015 Danny Robson <danny@nerdcruft.net>
|
2011-05-23 17:18:52 +10:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __UTIL_REGION_HPP
|
|
|
|
#define __UTIL_REGION_HPP
|
|
|
|
|
2015-01-15 14:01:05 +11:00
|
|
|
#include "extent.hpp"
|
2011-10-17 17:20:17 +11:00
|
|
|
#include "point.hpp"
|
2015-02-20 15:26:59 +11:00
|
|
|
#include "vector.hpp"
|
2012-05-25 15:30:28 +10:00
|
|
|
#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 {
|
2015-02-17 16:23:34 +11:00
|
|
|
using position_type = T;
|
|
|
|
using size_type = typename try_unsigned<T>::type;
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2015-03-03 04:13:29 +11:00
|
|
|
using extent_t = util::extent<S,size_type>;
|
|
|
|
using point_t = util::point<S,position_type>;
|
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
|
|
|
|
2015-03-06 01:09:37 +11:00
|
|
|
#if defined(COMPILER_CLANG)
|
2016-04-28 16:08:20 +10:00
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wgnu-anonymous-struct"
|
2015-03-06 01:09:37 +11:00
|
|
|
#endif
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
point_t p;
|
|
|
|
extent_t e;
|
|
|
|
};
|
|
|
|
struct {
|
|
|
|
T x, y;
|
|
|
|
T w, h;
|
|
|
|
};
|
|
|
|
};
|
2016-04-28 16:08:20 +10:00
|
|
|
#if defined(COMPILER_CLANG)
|
2015-03-06 01:09:37 +11:00
|
|
|
#pragma GCC diagnostic pop
|
2016-04-28 16:08:20 +10:00
|
|
|
#endif
|
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);
|
2015-09-09 18:37:26 +10:00
|
|
|
explicit region (std::array<T,S*2>);
|
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
|
|
|
//---------------------------------------------------------------------
|
2012-05-25 15:30:28 +10:00
|
|
|
size_type area (void) const;
|
|
|
|
size_type 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
|
|
|
|
2015-10-19 17:08:08 +11:00
|
|
|
void scale (size_type factor);
|
2011-10-24 19:55:51 +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
|
|
|
//---------------------------------------------------------------------
|
2015-01-21 23:33:35 +11:00
|
|
|
// Point and region relation queries
|
2015-03-03 04:13:29 +11:00
|
|
|
bool includes (point_t) const; // inclusive of borders
|
|
|
|
bool contains (point_t) const; // exclusive of borders
|
|
|
|
bool intersects (region<S,T>) const; // exclusive of borders
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2015-01-21 23:33:35 +11:00
|
|
|
// Move a point to be within the region bounds
|
2015-03-03 04:13:29 +11:00
|
|
|
void constrain (point_t&) const;
|
|
|
|
point_t constrained (point_t) const;
|
2013-07-30 23:52:09 +10:00
|
|
|
|
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
|
|
|
|
2015-03-06 01:09:37 +11:00
|
|
|
//---------------------------------------------------------------------
|
|
|
|
region& resize (extent<S,T>);
|
|
|
|
|
2015-01-21 23:37:00 +11:00
|
|
|
// Compute a region `mag` units into the region
|
|
|
|
region inset (T mag);
|
2015-02-04 15:44:51 +11:00
|
|
|
|
2015-01-22 14:58:29 +11:00
|
|
|
region expanded (T mag) const;
|
2015-03-06 01:09:37 +11:00
|
|
|
region expanded (vector<S,T>) const;
|
2015-02-04 15:44:51 +11:00
|
|
|
|
2015-01-22 14:58:29 +11:00
|
|
|
region& expand (T mag);
|
2015-03-06 01:09:37 +11:00
|
|
|
region& expand (vector<S,T>);
|
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
|
2015-03-03 04:13:29 +11:00
|
|
|
static const region<S,T> MAX;
|
|
|
|
static const region<S,T> UNIT;
|
2012-06-15 16:38:57 +10:00
|
|
|
|
2011-08-15 20:10:43 +10:00
|
|
|
void sanity (void) const;
|
|
|
|
};
|
2012-06-13 14:41:53 +10:00
|
|
|
|
2015-03-03 04:13:29 +11:00
|
|
|
typedef region<2,size_t> region2u;
|
|
|
|
typedef region<2,intmax_t> region2i;
|
|
|
|
typedef region<2,float> region2f;
|
|
|
|
typedef region<2,double> region2d;
|
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
|