-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathfixed.hpp
370 lines (311 loc) · 6.86 KB
/
fixed.hpp
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
/* fixed.hpp - a small fixed point datatype consisting of one 64 bit integer
with 32 bit for the decimal and real part Author: Robert "burner" Schadek
rburners@gmail.com License: LGPL 3 or higher
*/
#pragma once
#include <stdint.h>
#include <math.h>
#include <type_traits>
#include <ostream>
#include <string>
namespace sweet { class Fixed; }
std::ostream& operator<<(std::ostream&, const sweet::Fixed&);
namespace sweet {
class Fixed {
friend std::ostream& ::operator<<(std::ostream&,const sweet::Fixed&);
public:
//
// Constructor and assignment operator
//
Fixed() noexcept : value(0llu) {}
Fixed(const Fixed&& o) noexcept : value(o.value) {
}
Fixed(const Fixed& o) noexcept : value(o.value) {
}
template<typename T>
Fixed& operator=(T&& t) noexcept {
this->set<T>(t);
return *this;
}
template<typename T>
Fixed(T t) {
this->set(t);
}
//
// Operator
//
template<typename T>
Fixed operator+(T t) const noexcept {
return this->add(t);
}
template<typename T>
Fixed& operator+=(T t) {
*this = this->add(t);
return *this;
}
template<typename T>
Fixed operator-(T t) const noexcept {
return this->minus(t);
}
template<typename T>
Fixed& operator-=(T t) noexcept {
*this = this->minus(t);
return *this;
}
template<typename T>
Fixed operator*(T t) const noexcept {
return this->multiply(t);
}
template<typename T>
Fixed& operator*=(T t) noexcept {
*this = this->multiply(t);
return *this;
}
template<typename T>
Fixed operator/(T t) const noexcept {
return this->multiply(t);
}
template<typename T>
Fixed& operator/=(T t) noexcept {
*this = this->div(t);
return *this;
}
//
// Comparision
//
template<typename T>
bool operator==(T t) const noexcept {
return this->compare(t) == 0;
}
template<typename T>
bool operator<(T t) const noexcept {
return this->compare(t) == -1;
}
template<typename T>
bool operator>(T t) const noexcept {
return this->compare(t) == 1;
}
//
// Cast operator
//
operator int64_t() const noexcept {
return castImpl<int64_t>();
}
operator double() const noexcept {
return castImpl<double>();
}
operator long double() const noexcept {
return castImpl<long double>();
}
int64_t getValue() const noexcept {
return this->value;
}
private:
//
// Cast implementation
//
template<typename T>
T castImpl() const noexcept {
T a(static_cast<T>(this->value));
T b(static_cast<T>(Fixed::ShiftValue));
return a / b;
}
//
// setting the value
//
template<typename T>
void set(T t,
typename std::enable_if<
std::is_same<typename std::remove_reference<T>::type,Fixed>::value
>::type* = 0) noexcept
{
this->value = t.value;
}
template<typename T>
void set(T t,
typename std::enable_if<std::is_integral<T>::value >::type* = 0)
noexcept
{
this->value = static_cast<int64_t>(t) << Fixed::Shift;
}
template<typename T>
void set(T t,
typename std::enable_if<std::is_floating_point<T>::value >::type* = 0)
noexcept
{
double tvv = t * Fixed::ShiftValue;
this->value = tvv + static_cast<int64_t>(tvv + t >= 0 ? 0.5 : -0.5);
}
template<typename T>
void set(T s,
typename std::enable_if<
std::is_same<typename
std::remove_reference<T>::type,std::string
>::value
>::type* = 0)
{
this->setString(s);
}
template<typename T>
void set(T s,
typename std::enable_if<
std::is_same<typename
std::remove_reference<T>::type,const char*
>::value
>::type* = 0)
{
this->setString(s);
}
void setString(const std::string& s) {
auto comma = s.find('.');
this->value = std::stoll(s.substr(0, comma))<<Fixed::Shift;
if(comma != std::string::npos && comma+1 != s.size()) {
this->value += std::stol(s.substr(comma+1, s.size()));
}
}
//
// div
//
template<typename T>
Fixed div(T t,
typename std::enable_if<std::is_same<Fixed,T>::value >::type* = 0)
const noexcept
{
Fixed ret = *this;
ret.value /= t.value;
return ret;
}
template<typename T>
Fixed div(T t,
typename std::enable_if<std::is_integral<T>::value >::type* = 0)
const noexcept
{
return this->div(Fixed(t));
}
template<typename T>
Fixed div(T t,
typename std::enable_if<std::is_floating_point<T>::value >::type* = 0)
const noexcept
{
return this->div(Fixed(t));
}
//
// multiply
//
template<typename T>
Fixed multiply(T t,
typename std::enable_if<std::is_same<Fixed,T>::value >::type* = 0)
const noexcept
{
Fixed ret = *this;
ret.value *= t.value;
return ret;
}
template<typename T>
Fixed multiply(T t,
typename std::enable_if<std::is_integral<T>::value >::type* = 0)
const noexcept
{
return this->multiply(Fixed(t));
}
template<typename T>
Fixed multiply(T t,
typename std::enable_if<std::is_floating_point<T>::value >::type* = 0)
const noexcept
{
return this->multiply(Fixed(t));
}
//
// add
//
template<typename T>
Fixed add(T t,
typename std::enable_if<std::is_same<Fixed,T>::value >::type* = 0)
const noexcept
{
Fixed r;
r.value = this->value + t.value;
return r;
}
template<typename T>
Fixed add(T t,
typename std::enable_if<std::is_integral<T>::value >::type* = 0)
const noexcept
{
return this->add(Fixed(t));
}
template<typename T>
Fixed add(T t,
typename std::enable_if<std::is_floating_point<T>::value >::type* = 0)
const noexcept
{
return this->add(Fixed(t));
}
//
// minus
//
template<typename T>
Fixed minus(T t,
typename std::enable_if<std::is_same<Fixed,T>::value >::type* = 0)
const noexcept
{
Fixed r;
r.value = this->value - t.value;
return r;
}
template<typename T>
Fixed minus(T t,
typename std::enable_if<std::is_integral<T>::value >::type* = 0)
const noexcept
{
return this->minus(Fixed(t));
}
template<typename T>
Fixed minus(T t,
typename std::enable_if<std::is_floating_point<T>::value >::type* = 0)
const noexcept
{
return this->minus(Fixed(t));
}
//
// comparision
//
template<typename T>
int compare(T t,
typename std::enable_if<
std::is_same<typename std::remove_reference<T>::type,Fixed>::value
>::type* = 0) const noexcept
{
return this->value < t.value ? - 1 : this->value == t.value ? 0 : 1;
}
template<typename T>
int compare(T t,
typename std::enable_if<std::is_integral<T>::value >::type* = 0)
const noexcept
{
return this->compare(Fixed(t));
}
template<typename T>
int compare(T t,
typename std::enable_if<std::is_floating_point<T>::value >::type* = 0)
const noexcept
{
return this->compare(Fixed(t));
}
//
// Data member
//
public:
static const int Shift = 32;
static const int64_t ShiftValue = (1llu<<Shift);
static const int64_t ShiftValueMinus1 = ShiftValue-1;
static const int64_t ClearTop = 0x00000000FFFFFFFF;
static const int64_t ClearBottom = 0xFFFFFFFF00000000;
private:
int64_t value;
};
}
inline std::ostream& operator<<(std::ostream& os, const sweet::Fixed& d) {
os<<(d.value >> 32u)<<'.'<<(d.value & sweet::Fixed::ClearTop);
return os;
}