libcruft-util/fixed.hpp

93 lines
3.3 KiB
C++
Raw Normal View History

/*
* 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/>.
*
2015-02-06 16:34:30 +11:00
* Copyright 2011-2014 Danny Robson <danny@nerdcruft.net>
*/
#ifndef __UTIL_FIXED_HPP
#define __UTIL_FIXED_HPP
#include "types/bits.hpp"
#include <cstdint>
2015-02-06 16:35:23 +11:00
#include <iostream>
2014-12-05 13:20:05 +11:00
namespace util {
2015-02-06 20:01:26 +11:00
template <typename T, unsigned I, unsigned E>
2014-12-05 13:20:05 +11:00
class fixed {
public:
2015-02-06 20:01:26 +11:00
typedef typename std::conditional<
std::is_signed<T>::value,
typename bits_type<I+E>::sint,
typename bits_type<I+E>::uint
>::type native_t;
typedef native_t integer_t;
2015-02-06 16:34:30 +11:00
fixed (double);
fixed (float);
2015-02-06 20:01:26 +11:00
fixed (native_t);
2015-02-06 20:01:26 +11:00
double to_double (void) const;
float to_float (void) const;
integer_t to_integer (void) const;
native_t to_native (void) const;
2015-02-06 20:01:26 +11:00
static fixed<T,I,E> from_native (native_t);
static integer_t to_integer (native_t);
2015-01-15 13:59:28 +11:00
2015-02-06 20:01:26 +11:00
fixed<T,I,E>& operator +=(const fixed<T,I,E>);
fixed<T,I,E>& operator -=(const fixed<T,I,E>);
fixed<T,I,E>& operator *=(const fixed<T,I,E>);
fixed<T,I,E>& operator /=(const fixed<T,I,E>);
2015-01-15 13:59:28 +11:00
2015-02-06 20:01:26 +11:00
fixed<T,I,E> operator +(const fixed<T,I,E>) const;
fixed<T,I,E> operator -(const fixed<T,I,E>) const;
fixed<T,I,E> operator *(const fixed<T,I,E>) const;
fixed<T,I,E> operator /(const fixed<T,I,E>) const;
2015-02-06 20:01:26 +11:00
fixed<T,I,E>& operator +=(integer_t);
fixed<T,I,E>& operator -=(integer_t);
fixed<T,I,E>& operator *=(integer_t);
fixed<T,I,E>& operator /=(integer_t);
2015-02-06 20:01:26 +11:00
fixed<T,I,E> operator +(integer_t) const;
fixed<T,I,E> operator -(integer_t) const;
fixed<T,I,E> operator *(integer_t) const;
fixed<T,I,E> operator /(integer_t) const;
2015-02-06 16:34:30 +11:00
private:
fixed () = default;
2015-02-06 20:01:26 +11:00
native_t m_value;
2014-12-05 13:20:05 +11:00
};
2015-02-06 16:35:11 +11:00
2015-02-06 20:01:26 +11:00
template <typename T, unsigned I, unsigned E> bool operator== (util::fixed<T,I,E>, util::fixed<T,I,E>);
template <typename T, unsigned I, unsigned E> bool operator!= (util::fixed<T,I,E>, util::fixed<T,I,E>);
2015-02-06 16:35:11 +11:00
2015-02-06 20:01:26 +11:00
template <typename T, unsigned I, unsigned E> bool operator< (util::fixed<T,I,E>, util::fixed<T,I,E>);
template <typename T, unsigned I, unsigned E> bool operator<= (util::fixed<T,I,E>, util::fixed<T,I,E>);
template <typename T, unsigned I, unsigned E> bool operator> (util::fixed<T,I,E>, util::fixed<T,I,E>);
template <typename T, unsigned I, unsigned E> bool operator>= (util::fixed<T,I,E>, util::fixed<T,I,E>);
2015-02-06 16:35:23 +11:00
2015-02-06 20:01:26 +11:00
template <typename T, unsigned I, unsigned E>
std::ostream& operator<< (std::ostream&, fixed<T,I,E>);
2014-12-05 13:20:05 +11:00
}
2015-02-06 16:36:05 +11:00
#endif // __UTIL_FIXED_HPP