summaryrefslogtreecommitdiff
path: root/src/ints/wrap.hpp
blob: 2c8cd203855cc7fd089abd65fb58e9e8a3bead3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#pragma once
//    wrap.hpp - basic integer wrapper classes
//
//    Copyright © 2014 Ben Longbons <b.r.longbons@gmail.com>
//
//    This file is part of The Mana World (Athena server)
//
//    This program 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.
//
//    This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.

#include "fwd.hpp"

#include <cstdint>

#include <type_traits>


namespace tmwa
{
namespace ints
{
    namespace wrapped
    {
        template<class R>
        struct Wrapped
        {
            typedef R wrapped_type;
            R _value;
        protected:
            constexpr
            Wrapped(uint32_t v=0)
            : _value(v)
            {}
        public:
            explicit
            operator bool () const { return _value; }
            bool operator !() const { return !_value; }
        };

        template<class W, typename=typename W::wrapped_type>
        bool operator == (W l, W r)
        {
            return l._value == r._value;
        }
        template<class W, typename=typename W::wrapped_type>
        bool operator != (W l, W r)
        {
            return l._value != r._value;
        }
        template<class W, typename=typename W::wrapped_type>
        bool operator < (W l, W r)
        {
            return l._value < r._value;
        }
        template<class W, typename=typename W::wrapped_type>
        bool operator > (W l, W r)
        {
            return l._value > r._value;
        }
        template<class W, typename=typename W::wrapped_type>
        bool operator <= (W l, W r)
        {
            return l._value <= r._value;
        }
        template<class W, typename=typename W::wrapped_type>
        bool operator >= (W l, W r)
        {
            return l._value >= r._value;
        }

        template<class T>
        struct Sub : T
        {
            constexpr
            Sub(typename T::wrapped_type v2)
            : T(v2)
            {}
        };
        template<class T>
        constexpr
        typename T::wrapped_type unwrap(typename std::enable_if<true, T>::type w)
        {
            return w._value;
        }
        template<class T>
        constexpr
        T wrap(typename T::wrapped_type v)
        {
            return Sub<T>(v);
        }

        template<class W>
        constexpr
        W next(W w)
        {
            return wrap<W>(unwrap<W>(w) + 1);
        }
        template<class W>
        constexpr
        W prev(W w)
        {
            return wrap<W>(unwrap<W>(w) - 1);
        }

        template<class R>
        R convert_for_printf(Wrapped<R> w)
        {
            return w._value;
        }
    } // namespace wrapped
} // namespace ints

using ints::wrapped::Wrapped;
using ints::wrapped::unwrap;
using ints::wrapped::wrap;
} // namespace tmwa