123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- #ifndef BOOST_QVM_VEC_TRAITS_ARRAY_HPP_INCLUDED
- #define BOOST_QVM_VEC_TRAITS_ARRAY_HPP_INCLUDED
- // Copyright 2008-2022 Emil Dotchevski and Reverge Studios, Inc.
- // Distributed under the Boost Software License, Version 1.0. (See accompanying
- // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
- #include <boost/qvm/config.hpp>
- #include <boost/qvm/deduce_vec.hpp>
- #include <boost/qvm/assert.hpp>
- #if __cplusplus > 199711L
- #include <array>
- namespace boost { namespace qvm {
- template <class T,std::size_t M,std::size_t N>
- struct
- vec_traits<std::array<std::array<T,M>,N> >
- {
- static int const dim=0;
- typedef void scalar_type;
- };
- template <class T,std::size_t Dim>
- struct
- vec_traits<std::array<T, Dim> >
- {
- typedef std::array<T, Dim> this_vector;
- typedef T scalar_type;
- static int const dim=int(Dim);
- template <int I>
- static
- BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL
- scalar_type
- read_element( this_vector const & x )
- {
- BOOST_QVM_STATIC_ASSERT(I>=0);
- BOOST_QVM_STATIC_ASSERT(I<int(Dim));
- return x[I];
- }
- template <int I>
- static
- BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL
- scalar_type &
- write_element( this_vector & x )
- {
- BOOST_QVM_STATIC_ASSERT(I>=0);
- BOOST_QVM_STATIC_ASSERT(I<int(Dim));
- return x[I];
- }
- static
- BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL
- scalar_type
- read_element_idx( int i, this_vector const & x )
- {
- BOOST_QVM_ASSERT(i>=0);
- BOOST_QVM_ASSERT(i<int(Dim));
- return x[i];
- }
- static
- BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL
- scalar_type &
- write_element_idx( int i, this_vector & x )
- {
- BOOST_QVM_ASSERT(i>=0);
- BOOST_QVM_ASSERT(i<int(Dim));
- return x[i];
- }
- };
- template <class T,std::size_t Dim>
- struct
- vec_traits<std::array<T, Dim> const>
- {
- typedef std::array<T, Dim> const this_vector;
- typedef T scalar_type;
- static int const dim=int(Dim);
- template <int I>
- static
- BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL
- scalar_type
- read_element( this_vector & x )
- {
- BOOST_QVM_STATIC_ASSERT(I>=0);
- BOOST_QVM_STATIC_ASSERT(I<int(Dim));
- return x[I];
- }
- static
- BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL
- scalar_type
- read_element_idx( int i, this_vector & x )
- {
- BOOST_QVM_ASSERT(i>=0);
- BOOST_QVM_ASSERT(i<int(Dim));
- return x[i];
- }
- };
- template <class T,std::size_t Dim,int D>
- struct
- deduce_vec<std::array<T,Dim>,D>
- {
- typedef vec<T,D> type;
- };
- template <class T,std::size_t Dim,int D>
- struct
- deduce_vec<std::array<T,Dim> const,D>
- {
- typedef vec<T,D> type;
- };
- template <class T1,class T2,std::size_t Dim,int D>
- struct
- deduce_vec2<std::array<T1,Dim>,std::array<T2,Dim>,D>
- {
- typedef vec<typename deduce_scalar<T1,T2>::type,D> type;
- };
- template <class T1,class T2,std::size_t Dim,int D>
- struct
- deduce_vec2<std::array<T1,Dim> const,std::array<T2,Dim>,D>
- {
- typedef vec<typename deduce_scalar<T1,T2>::type,D> type;
- };
- template <class T1,class T2,std::size_t Dim,int D>
- struct
- deduce_vec2<std::array<T1,Dim>,std::array<T2,Dim> const,D>
- {
- typedef vec<typename deduce_scalar<T1,T2>::type,D> type;
- };
- template <class T1,class T2,std::size_t Dim,int D>
- struct
- deduce_vec2<std::array<T1,Dim> const,std::array<T2,Dim> const,D>
- {
- typedef vec<typename deduce_scalar<T1,T2>::type,D> type;
- };
- } }
- #endif
- namespace boost { namespace qvm {
- template <class T,int M,int N>
- struct
- vec_traits<T[M][N]>
- {
- static int const dim=0;
- typedef void scalar_type;
- };
- template <class T,int Dim>
- struct
- vec_traits<T[Dim]>
- {
- typedef T this_vector[Dim];
- typedef T scalar_type;
- static int const dim=Dim;
- template <int I>
- static
- BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL
- scalar_type
- read_element( this_vector const & x )
- {
- BOOST_QVM_STATIC_ASSERT(I>=0);
- BOOST_QVM_STATIC_ASSERT(I<Dim);
- return x[I];
- }
- template <int I>
- static
- BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL
- scalar_type &
- write_element( this_vector & x )
- {
- BOOST_QVM_STATIC_ASSERT(I>=0);
- BOOST_QVM_STATIC_ASSERT(I<Dim);
- return x[I];
- }
- static
- BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL
- scalar_type
- read_element_idx( int i, this_vector const & x )
- {
- BOOST_QVM_ASSERT(i>=0);
- BOOST_QVM_ASSERT(i<Dim);
- return x[i];
- }
- static
- BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL
- scalar_type &
- write_element_idx( int i, this_vector & x )
- {
- BOOST_QVM_ASSERT(i>=0);
- BOOST_QVM_ASSERT(i<Dim);
- return x[i];
- }
- };
- template <class T,int Dim,int D>
- struct
- deduce_vec<T[Dim],D>
- {
- typedef vec<T,D> type;
- };
- template <class T,int Dim,int D>
- struct
- deduce_vec<T const[Dim],D>
- {
- typedef vec<T,D> type;
- };
- template <class T1,class T2,int Dim,int D>
- struct
- deduce_vec2<T1[Dim],T2[Dim],D>
- {
- typedef vec<typename deduce_scalar<T1,T2>::type,D> type;
- };
- template <int Dim,class T>
- T (&ptr_vref( T * ptr ))[Dim]
- {
- return *reinterpret_cast<T (*)[Dim]>(ptr);
- }
- } }
- #endif
|