-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathfixed_number.h
240 lines (192 loc) · 5.1 KB
/
fixed_number.h
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
#pragma once
#include "fixed_math.h"
class fixed_number
{
public:
DEPRECATED("Float may bring uncertain value on different platforms. Please avoid using this to calculate critical values")
constexpr explicit fixed_number(const double& _data)
: data(fixed_dtox(_data))
{}
DEPRECATED("Float may bring uncertain value on different platforms. Please avoid using this to calculate critical values")
constexpr explicit fixed_number(const float& _data)
: data(fixed_dtox(_data))
{}
constexpr explicit fixed_number(const int& _data)
: data(fixed_itox(_data))
{}
constexpr fixed_number()
: data(0)
{}
constexpr fixed_number(const fixed_number& other)
: data(other.data)
{}
constexpr static fixed_number make(const int& ival)
{
return fixed_number(fixed_itox(ival));
}
fixed_number& operator +=(const fixed_number& other)
{
data = fixed_add(data, other.data);
return *this;
}
fixed_number& operator -=(const fixed_number& other)
{
data = fixed_sub(data, other.data);
return *this;
}
fixed_number& operator *=(const fixed_number& other)
{
data = fixed_mul(data, other.data);
return *this;
}
fixed_number& operator /=(const fixed_number& other)
{
data = fixed_div(data, other.data);
return *this;
}
fixed_number& operator %=(const fixed_number& other)
{
data = fixed_mod(data, other.data);
return *this;
}
fixed_number operator+ (const fixed_number& other) const
{
return fixed_number(data) += other;
}
fixed_number operator- (const fixed_number& other) const
{
return fixed_number(data) -= other;
}
fixed_number operator* (const fixed_number& other) const
{
return fixed_number(data) *= other;
}
fixed_number operator/ (const fixed_number& other) const
{
return fixed_number(data) /= other;
}
fixed_number operator% (const fixed_number& other) const
{
return fixed_number(data) %= other;
}
constexpr fixed_number operator -() const
{
return fixed_number(-data);
}
constexpr bool operator > (const fixed_number& other) const
{
return data > other.data;
}
constexpr bool operator >= (const fixed_number& other) const
{
return data >= other.data;
}
constexpr bool operator < (const fixed_number& other) const
{
return data < other.data;
}
constexpr bool operator <= (const fixed_number& other) const
{
return data <= other.data;
}
constexpr bool operator == (const fixed_number& other) const
{
return data == other.data;
}
constexpr bool operator != (const fixed_number& other) const
{
return data != other.data;
}
bool isinf() const
{
return fixed_isinf(data);
}
bool isnan() const
{
return fixed_isnan(data);
}
fixed_number floor() const
{
return fixed_floor(data);
}
fixed_number ceil() const
{
return fixed_ceil(data);
}
fixed_number abs() const
{
return fixed_abs(data);
}
fixed_number sqrt() const
{
return fixed_sqrt(data);
}
fixed_number pow(const fixed_number& other) const
{
return fixed_pow(data, other.data);
}
fixed_number sin() const
{
return fixed_sin(data);
}
fixed_number cos() const
{
return fixed_cos(data);
}
fixed_number tan() const
{
return fixed_tan(data);
}
fixed_number asin() const
{
return fixed_asin(data);
}
fixed_number acos() const
{
return fixed_acos(data);
}
fixed_number atan() const
{
return fixed_atan(data);
}
fixed_number atan(const fixed_number& x) const
{
return fixed_atan2(data, x.data);
}
fixed_number exp() const
{
return fixed_exp(data);
}
fixed_number log() const
{
return fixed_log(data);
}
constexpr explicit operator float() const
{
return fixed_xtod(data);
}
constexpr explicit operator int() const
{
return fixed_xtoi(data);
}
public:
static const fixed_number max;
static const fixed_number epsilon;
static const fixed_number pi;
private:
constexpr fixed_number(const fixed_point& _data)
: data(_data)
{}
friend constexpr fixed_number operator"" _fx(unsigned long long data);
friend constexpr fixed_number operator"" _fx(const char* str, size_t len);
private:
fixed_point data;
};
constexpr fixed_number operator"" _fx(unsigned long long data)
{
return fixed_number(fixed_itox(data));
}
constexpr fixed_number operator"" _fx(const char* str, size_t len)
{
return fixed_number(fixed_natox(str, len));
}