Danny Robson
426fc1c848
two-scalar constructor is too similar to extent and point constructors leading to unexpected initialisation problems.
140 lines
4.2 KiB
C++
140 lines
4.2 KiB
C++
/*
|
|
* This file is part of libgim.
|
|
*
|
|
* libgim is free software: you can redistribute it and/or modify it under the
|
|
* terms of the GNU General Public License as published by the Free Software
|
|
* Foundation, either version 3 of the License, or (at your option) any later
|
|
* version.
|
|
*
|
|
* libgim is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with libgim. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Copyright 2010-2015 Danny Robson <danny@nerdcruft.net>
|
|
*/
|
|
|
|
|
|
#ifndef __UTIL_REGION_HPP
|
|
#define __UTIL_REGION_HPP
|
|
|
|
#include "extent.hpp"
|
|
#include "point.hpp"
|
|
#include "vector.hpp"
|
|
#include "types/traits.hpp"
|
|
|
|
namespace util {
|
|
/**
|
|
* A two-dimensional rectangle, with size and position.
|
|
*/
|
|
template <size_t S, typename T>
|
|
struct region {
|
|
using position_type = T;
|
|
using size_type = typename try_unsigned<T>::type;
|
|
|
|
using extent_t = util::extent<S,size_type>;
|
|
using point_t = util::point<S,position_type>;
|
|
|
|
using value_type = T;
|
|
|
|
//---------------------------------------------------------------------
|
|
static constexpr size_t dimension = S;
|
|
static constexpr size_t elements = extent_t::elements + point_t::elements;
|
|
|
|
#pragma GCC diagnostic push
|
|
#if defined(COMPILER_GCC)
|
|
#pragma GCC diagnostic ignored "-pedantic"
|
|
#endif
|
|
#if defined(COMPILER_CLANG)
|
|
#pragma GCC diagnostic ignored "-Wgnu"
|
|
#endif
|
|
union {
|
|
struct {
|
|
point_t p;
|
|
extent_t e;
|
|
};
|
|
struct {
|
|
T x, y;
|
|
T w, h;
|
|
};
|
|
};
|
|
#pragma GCC diagnostic pop
|
|
|
|
//---------------------------------------------------------------------
|
|
region () = default;
|
|
region (extent_t);
|
|
region (point_t, extent_t);
|
|
region (point_t, point_t);
|
|
region (std::array<T,S*2>);
|
|
|
|
//---------------------------------------------------------------------
|
|
size_type area (void) const;
|
|
size_type diameter (void) const;
|
|
extent_t magnitude (void) const;
|
|
extent_t magnitude (extent_t);
|
|
|
|
void scale (T factor);
|
|
|
|
bool empty (void) const;
|
|
|
|
//---------------------------------------------------------------------
|
|
point_t base (void) const;
|
|
point_t away (void) const;
|
|
point_t centre (void) const;
|
|
point_t closest (point_t) const;
|
|
|
|
//---------------------------------------------------------------------
|
|
// Point and region relation queries
|
|
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
|
|
|
|
// Move a point to be within the region bounds
|
|
void constrain (point_t&) const;
|
|
point_t constrained (point_t) const;
|
|
|
|
// Compute binary region combinations
|
|
region intersection (region<S,T>) const;
|
|
|
|
//---------------------------------------------------------------------
|
|
region& resize (extent<S,T>);
|
|
|
|
// Compute a region `mag` units into the region
|
|
region inset (T mag);
|
|
|
|
region expanded (T mag) const;
|
|
region expanded (vector<S,T>) const;
|
|
|
|
region& expand (T mag);
|
|
region& expand (vector<S,T>);
|
|
|
|
// arithmetic operators
|
|
region operator+ (vector<S,T>) const;
|
|
region operator- (vector<S,T>) const;
|
|
|
|
// Logical comparison operators
|
|
bool operator ==(region<S,T> rhs) const;
|
|
bool operator !=(region<S,T> rhs) const
|
|
{ return !(*this == rhs); }
|
|
|
|
// Utility constants
|
|
static const region<S,T> MAX;
|
|
static const region<S,T> UNIT;
|
|
|
|
void sanity (void) const;
|
|
};
|
|
|
|
typedef region<2,size_t> region2u;
|
|
typedef region<2,intmax_t> region2i;
|
|
typedef region<2,float> region2f;
|
|
typedef region<2,double> region2d;
|
|
|
|
template <size_t S, typename T>
|
|
std::ostream& operator<< (std::ostream&, const util::region<S,T>&);
|
|
}
|
|
|
|
#endif
|