2012-05-30 20:20:43 +10:00
|
|
|
/*
|
|
|
|
* 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.
|
2015-01-19 19:13:52 +11:00
|
|
|
*
|
2012-05-30 20:20:43 +10:00
|
|
|
* 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.
|
2015-01-19 19:13:52 +11:00
|
|
|
*
|
2012-05-30 20:20:43 +10:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with libgim. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
2015-01-19 19:13:52 +11:00
|
|
|
* Copyright 2012-2015 Danny Robson <danny@nerdcruft.net>
|
2012-05-30 20:20:43 +10:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __UTIL_COORD_HPP
|
|
|
|
#define __UTIL_COORD_HPP
|
|
|
|
|
2012-06-13 14:43:46 +10:00
|
|
|
#include "../platform.hpp"
|
|
|
|
|
2015-01-13 18:35:18 +11:00
|
|
|
#include <algorithm>
|
|
|
|
#include <iterator>
|
|
|
|
|
|
|
|
#include <cstdlib>
|
|
|
|
|
2012-05-30 20:20:43 +10:00
|
|
|
namespace util {
|
|
|
|
namespace detail {
|
|
|
|
// Disable GCC warnings about validity of anonyous structures in
|
|
|
|
// unions. Push comes to shove I'll manually redsign everything to
|
|
|
|
// keep this syntax anyway.
|
|
|
|
#pragma GCC diagnostic push
|
2012-06-13 14:43:46 +10:00
|
|
|
#if defined(COMPILER_GCC)
|
|
|
|
#pragma GCC diagnostic ignored "-pedantic"
|
|
|
|
#endif
|
|
|
|
#if defined(COMPILER_CLANG)
|
|
|
|
#pragma GCC diagnostic ignored "-Wgnu"
|
|
|
|
#endif
|
2012-05-30 20:20:43 +10:00
|
|
|
|
2015-01-19 19:13:52 +11:00
|
|
|
//---------------------------------------------------------------------
|
|
|
|
// coord types are not really intended to have arbitrary dimension, so
|
|
|
|
// don't add specialisations (or a general case) without a decent
|
|
|
|
// reason.
|
|
|
|
template <size_t S, typename T>
|
|
|
|
struct coord_data;
|
2012-05-30 20:20:43 +10:00
|
|
|
|
2015-01-19 19:13:52 +11:00
|
|
|
//---------------------------------------------------------------------
|
2014-12-15 20:10:56 +11:00
|
|
|
template <typename T>
|
2015-01-19 19:13:52 +11:00
|
|
|
struct coord_data<1, T>
|
|
|
|
{
|
|
|
|
coord_data () = default;
|
|
|
|
coord_data (T v0):
|
|
|
|
data { v0 }
|
2012-05-30 20:20:43 +10:00
|
|
|
{ ; }
|
|
|
|
|
|
|
|
union {
|
2014-12-15 20:10:56 +11:00
|
|
|
T data[1];
|
|
|
|
T x;
|
2012-05-30 20:20:43 +10:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-01-19 19:13:52 +11:00
|
|
|
//---------------------------------------------------------------------
|
|
|
|
template <typename T>
|
|
|
|
struct coord_data<2,T>
|
|
|
|
{
|
|
|
|
coord_data () = default;
|
|
|
|
coord_data (T v0, T v1):
|
|
|
|
data { v0, v1 }
|
2012-05-30 20:20:43 +10:00
|
|
|
{ ; }
|
|
|
|
|
|
|
|
union {
|
2014-12-15 20:10:56 +11:00
|
|
|
T data[2];
|
2015-01-12 15:59:55 +11:00
|
|
|
|
2015-01-19 19:13:52 +11:00
|
|
|
struct { T x, y; };
|
|
|
|
struct { T s, t; };
|
|
|
|
};
|
2012-05-30 20:20:43 +10:00
|
|
|
};
|
|
|
|
|
2015-01-19 19:13:52 +11:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
2014-12-15 20:10:56 +11:00
|
|
|
template <typename T>
|
2015-01-19 19:13:52 +11:00
|
|
|
struct coord_data<3,T>
|
|
|
|
{
|
|
|
|
coord_data () = default;
|
|
|
|
coord_data (T v0, T v1, T v2):
|
|
|
|
data { v0, v1, v2 }
|
|
|
|
{ ; }
|
2015-01-12 15:59:14 +11:00
|
|
|
|
2012-05-30 20:20:43 +10:00
|
|
|
union {
|
2014-12-15 20:10:56 +11:00
|
|
|
T data[3];
|
2015-01-12 15:59:55 +11:00
|
|
|
|
2015-01-19 19:13:52 +11:00
|
|
|
struct { T x, y, z; };
|
|
|
|
struct { T s, t, p; };
|
|
|
|
struct { T r, g, b; };
|
|
|
|
};
|
|
|
|
};
|
2012-05-30 20:20:43 +10:00
|
|
|
|
2014-12-30 01:28:17 +11:00
|
|
|
|
2015-01-19 19:13:52 +11:00
|
|
|
//---------------------------------------------------------------------
|
|
|
|
template <typename T>
|
|
|
|
struct coord_data<4,T>
|
|
|
|
{
|
|
|
|
coord_data () = default;
|
|
|
|
coord_data (T v0, T v1, T v2, T v3):
|
|
|
|
data { v0, v1, v2, v3 }
|
2012-05-30 20:20:43 +10:00
|
|
|
{ ; }
|
2014-12-15 13:29:11 +11:00
|
|
|
|
2015-01-19 19:13:52 +11:00
|
|
|
union {
|
|
|
|
T data[4];
|
2015-01-13 18:34:27 +11:00
|
|
|
|
2015-01-19 19:13:52 +11:00
|
|
|
struct { T x, y, z, w; };
|
|
|
|
struct { T s, t, p, q; };
|
|
|
|
struct { T r, g, b, a; };
|
|
|
|
};
|
2012-05-30 20:20:43 +10:00
|
|
|
};
|
2014-08-18 22:08:32 +10:00
|
|
|
|
2015-01-19 19:13:52 +11:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
2014-12-15 20:10:56 +11:00
|
|
|
template <size_t S, typename T>
|
2015-01-19 19:13:52 +11:00
|
|
|
struct coord : public coord_data<S,T> {
|
|
|
|
static_assert (S > 0, "coord dimensions must be strictly positive");
|
2014-12-15 13:30:02 +11:00
|
|
|
|
2015-01-12 15:59:14 +11:00
|
|
|
typedef T value_type;
|
2015-01-19 19:13:52 +11:00
|
|
|
static constexpr size_t dimension = S;
|
2015-02-17 16:22:12 +11:00
|
|
|
static constexpr size_t elements = S;
|
2015-01-12 15:59:14 +11:00
|
|
|
|
2015-01-19 19:13:52 +11:00
|
|
|
using coord_data<S,T>::coord_data;
|
|
|
|
coord () = default;
|
2014-08-18 22:08:32 +10:00
|
|
|
|
2015-01-13 18:33:52 +11:00
|
|
|
explicit coord (T v)
|
2015-01-19 19:13:52 +11:00
|
|
|
{ std::fill (std::begin (this->data), std::end (this->data), v); }
|
2014-12-15 13:29:11 +11:00
|
|
|
|
2015-01-19 19:13:52 +11:00
|
|
|
coord (const coord<S,T> &rhs) = default;
|
|
|
|
coord& operator= (const coord<S,T> &rhs) = default;
|
2015-01-13 18:34:27 +11:00
|
|
|
|
2015-01-19 19:13:52 +11:00
|
|
|
T& operator[] (size_t i) { return this->data[i]; }
|
|
|
|
T operator[] (size_t i) const { return this->data[i]; }
|
2014-08-18 22:08:32 +10:00
|
|
|
};
|
2015-01-19 19:13:52 +11:00
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
// XXX: Unsure whether this should really be defined for arbitrary
|
|
|
|
// types in a semantic sense, but practicality suggestes this is the
|
|
|
|
// best option; point/vector dot product is too useful.
|
|
|
|
template <size_t S, typename T>
|
|
|
|
T dot (const coord<S,T> &a, const coord<S,T> &b)
|
|
|
|
{
|
|
|
|
return std::inner_product (std::begin (a.data),
|
|
|
|
std::end (a.data),
|
|
|
|
std::begin (b.data),
|
|
|
|
T {0});
|
|
|
|
}
|
2012-05-30 20:20:43 +10:00
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|