Wed, 30 May 2018 22:31:06 +0300
added draw plane feature (doesn't work with circle draw quite right yet)
1319 | 1 | #pragma once |
2 | #include <functional> | |
3 | #include <cmath> | |
4 | #include "../basics.h" | |
5 | ||
6 | using std::abs; | |
1353 | 7 | using std::acos; |
8 | using std::asin; | |
9 | using std::atan; | |
1320
bdb4804bc09c
Moved includes, added squared() function
Teemu Piippo <teemu@hecknology.net>
parents:
1319
diff
changeset
|
10 | using std::atan2; |
1319 | 11 | using std::ceil; |
12 | using std::cos; | |
13 | using std::floor; | |
1353 | 14 | using std::function; |
1319 | 15 | using std::hypot; |
1353 | 16 | using std::log; |
17 | using std::log2; | |
18 | using std::log10; | |
1320
bdb4804bc09c
Moved includes, added squared() function
Teemu Piippo <teemu@hecknology.net>
parents:
1319
diff
changeset
|
19 | using std::pow; |
1319 | 20 | using std::sin; |
1320
bdb4804bc09c
Moved includes, added squared() function
Teemu Piippo <teemu@hecknology.net>
parents:
1319
diff
changeset
|
21 | using std::sort; |
1319 | 22 | using std::sqrt; |
23 | ||
24 | /* | |
25 | * Returns whether the argument is reasonably close to zero. | |
26 | */ | |
27 | template<typename T> | |
28 | bool isZero(T a) | |
29 | { | |
30 | return qFuzzyCompare(a + 1.0, 1.0); | |
31 | } | |
32 | ||
33 | template<typename T> | |
34 | bool isInteger(T a) | |
35 | { | |
36 | return (::abs(a - ::floor(a)) < 0.00001) or (::abs(a - ::ceil(a)) < 0.00001); | |
37 | } | |
38 | ||
1320
bdb4804bc09c
Moved includes, added squared() function
Teemu Piippo <teemu@hecknology.net>
parents:
1319
diff
changeset
|
39 | template<typename T> |
bdb4804bc09c
Moved includes, added squared() function
Teemu Piippo <teemu@hecknology.net>
parents:
1319
diff
changeset
|
40 | T squared(T value) |
bdb4804bc09c
Moved includes, added squared() function
Teemu Piippo <teemu@hecknology.net>
parents:
1319
diff
changeset
|
41 | { |
bdb4804bc09c
Moved includes, added squared() function
Teemu Piippo <teemu@hecknology.net>
parents:
1319
diff
changeset
|
42 | return ::pow(value, 2); |
bdb4804bc09c
Moved includes, added squared() function
Teemu Piippo <teemu@hecknology.net>
parents:
1319
diff
changeset
|
43 | } |
bdb4804bc09c
Moved includes, added squared() function
Teemu Piippo <teemu@hecknology.net>
parents:
1319
diff
changeset
|
44 | |
bdb4804bc09c
Moved includes, added squared() function
Teemu Piippo <teemu@hecknology.net>
parents:
1319
diff
changeset
|
45 | template<> |
bdb4804bc09c
Moved includes, added squared() function
Teemu Piippo <teemu@hecknology.net>
parents:
1319
diff
changeset
|
46 | inline int squared<int>(int value) |
bdb4804bc09c
Moved includes, added squared() function
Teemu Piippo <teemu@hecknology.net>
parents:
1319
diff
changeset
|
47 | { |
bdb4804bc09c
Moved includes, added squared() function
Teemu Piippo <teemu@hecknology.net>
parents:
1319
diff
changeset
|
48 | return value * value; |
bdb4804bc09c
Moved includes, added squared() function
Teemu Piippo <teemu@hecknology.net>
parents:
1319
diff
changeset
|
49 | } |
bdb4804bc09c
Moved includes, added squared() function
Teemu Piippo <teemu@hecknology.net>
parents:
1319
diff
changeset
|
50 | |
1319 | 51 | // |
52 | // Returns true if first arg is equal to any of the other args | |
53 | // | |
54 | template<typename T, typename Arg, typename... Args> | |
55 | bool isOneOf(const T& needle, const Arg& arg, const Args&... args) | |
56 | { | |
57 | if (needle == arg) | |
58 | return true; | |
59 | else | |
60 | return isOneOf(needle, args...); | |
61 | } | |
62 | ||
63 | template<typename T> | |
64 | bool isOneOf(const T&) | |
65 | { | |
66 | return false; | |
67 | } | |
68 | ||
69 | // http://stackoverflow.com/a/18204188/3629665 | |
70 | template<typename T> | |
71 | inline int rotl10(T x) | |
72 | { | |
73 | return (((x) << 10) | (((x) >> 22) & 0x000000ff)); | |
74 | } | |
75 | ||
76 | template<typename T> | |
77 | inline int rotl20(T x) | |
78 | { | |
79 | return (((x) << 20) | (((x) >> 12) & 0x000000ff)); | |
80 | } | |
81 | ||
82 | // | |
83 | // Get the amount of elements in something. | |
84 | // | |
85 | template<typename T, size_t N> | |
86 | int countof(T(&)[N]) | |
87 | { | |
88 | return N; | |
89 | } | |
90 | ||
91 | static inline int countof(const QString& string) | |
92 | { | |
93 | return string.length(); | |
94 | } | |
95 | ||
96 | template<typename T> | |
97 | int countof(const QVector<T>& vector) | |
98 | { | |
99 | return vector.size(); | |
100 | } | |
101 | ||
102 | template<typename T> | |
103 | int countof(const QList<T>& vector) | |
104 | { | |
105 | return vector.size(); | |
106 | } | |
107 | ||
108 | template<typename T> | |
109 | int countof(const QSet<T>& set) | |
110 | { | |
111 | return set.size(); | |
112 | } | |
113 | ||
114 | template<typename T> | |
115 | int countof(const std::initializer_list<T>& vector) | |
116 | { | |
117 | return vector.size(); | |
118 | } | |
119 | ||
120 | /* | |
121 | * Extracts the sign of x. | |
122 | */ | |
123 | template<typename T> | |
124 | T sign(T x) | |
125 | { | |
126 | if (isZero(x)) | |
127 | return {}; | |
128 | else | |
129 | return x / qAbs(x); | |
130 | } | |
131 | ||
132 | template<> | |
133 | inline int sign(int x) | |
134 | { | |
135 | if (x == 0) | |
136 | return 0; | |
137 | else | |
138 | return x / qAbs(x); | |
139 | } | |
140 | ||
141 | /* | |
142 | * Returns the maximum of a single parameter (the parameter itself). | |
143 | */ | |
144 | template <typename T> | |
145 | T max(T a) | |
146 | { | |
147 | return a; | |
148 | } | |
149 | ||
150 | /* | |
151 | * Returns the maximum of two parameters. | |
152 | */ | |
153 | template <typename T> | |
154 | T max(T a, T b) | |
155 | { | |
156 | return a > b ? a : b; | |
157 | } | |
158 | ||
159 | /* | |
160 | * Returns the maximum of n parameters. | |
161 | */ | |
162 | template <typename T, typename... Rest> | |
163 | T max(T a, Rest&&... rest) | |
164 | { | |
165 | return max(a, max(rest...)); | |
166 | } | |
167 | ||
168 | /* | |
169 | * Returns the minimum of a single parameter (the parameter itself). | |
170 | */ | |
171 | template <typename T> | |
172 | T min(T a) | |
173 | { | |
174 | return a; | |
175 | } | |
176 | ||
177 | /* | |
178 | * Returns the minimum of two parameters. | |
179 | */ | |
180 | template <typename T> | |
181 | T min(T a, T b) | |
182 | { | |
183 | return a < b ? a : b; | |
184 | } | |
185 | ||
186 | /* | |
187 | * Returns the minimum of n parameters. | |
188 | */ | |
189 | template <typename T, typename... Rest> | |
190 | T min(T a, Rest&&... rest) | |
191 | { | |
192 | return min(a, min(rest...)); | |
193 | } | |
194 | ||
195 | /* | |
196 | * Assigns the value of a single flag in a flagset | |
197 | */ | |
198 | template<int Flag, typename T> | |
199 | void assignFlag(QFlags<T>& flagset, bool value) | |
200 | { | |
201 | if (value) | |
202 | flagset |= static_cast<T>(Flag); | |
203 | else | |
204 | flagset &= ~static_cast<T>(Flag); | |
205 | } | |
206 | ||
207 | /* | |
208 | * Returns a singleton of type T, useful for providing a valid but unused | |
209 | * pointer. | |
210 | */ | |
211 | template<typename T> | |
1322
d8935cdb24c0
renamed sink() to singleton()
Teemu Piippo <teemu@hecknology.net>
parents:
1320
diff
changeset
|
212 | inline T& singleton() |
1319 | 213 | { |
214 | static T result; | |
215 | return result; | |
216 | } | |
217 | ||
218 | /* | |
219 | * Rounds the input value to the nearest multiple of the provided interval. | |
220 | */ | |
221 | template<typename T> | |
222 | T roundToInterval(T value, double interval) | |
223 | { | |
224 | return static_cast<T>(round(value / interval) * interval); | |
225 | } | |
226 | ||
1390
3eace926af7f
added draw plane feature (doesn't work with circle draw quite right yet)
Teemu Piippo <teemu@hecknology.net>
parents:
1353
diff
changeset
|
227 | /* |
3eace926af7f
added draw plane feature (doesn't work with circle draw quite right yet)
Teemu Piippo <teemu@hecknology.net>
parents:
1353
diff
changeset
|
228 | * Returns the empty sum. (recursion base) |
3eace926af7f
added draw plane feature (doesn't work with circle draw quite right yet)
Teemu Piippo <teemu@hecknology.net>
parents:
1353
diff
changeset
|
229 | */ |
3eace926af7f
added draw plane feature (doesn't work with circle draw quite right yet)
Teemu Piippo <teemu@hecknology.net>
parents:
1353
diff
changeset
|
230 | template<typename T> |
3eace926af7f
added draw plane feature (doesn't work with circle draw quite right yet)
Teemu Piippo <teemu@hecknology.net>
parents:
1353
diff
changeset
|
231 | T sum() |
3eace926af7f
added draw plane feature (doesn't work with circle draw quite right yet)
Teemu Piippo <teemu@hecknology.net>
parents:
1353
diff
changeset
|
232 | { |
3eace926af7f
added draw plane feature (doesn't work with circle draw quite right yet)
Teemu Piippo <teemu@hecknology.net>
parents:
1353
diff
changeset
|
233 | return {}; |
3eace926af7f
added draw plane feature (doesn't work with circle draw quite right yet)
Teemu Piippo <teemu@hecknology.net>
parents:
1353
diff
changeset
|
234 | } |
3eace926af7f
added draw plane feature (doesn't work with circle draw quite right yet)
Teemu Piippo <teemu@hecknology.net>
parents:
1353
diff
changeset
|
235 | |
3eace926af7f
added draw plane feature (doesn't work with circle draw quite right yet)
Teemu Piippo <teemu@hecknology.net>
parents:
1353
diff
changeset
|
236 | /* |
3eace926af7f
added draw plane feature (doesn't work with circle draw quite right yet)
Teemu Piippo <teemu@hecknology.net>
parents:
1353
diff
changeset
|
237 | * Returns the sum of n arguments. |
3eace926af7f
added draw plane feature (doesn't work with circle draw quite right yet)
Teemu Piippo <teemu@hecknology.net>
parents:
1353
diff
changeset
|
238 | */ |
3eace926af7f
added draw plane feature (doesn't work with circle draw quite right yet)
Teemu Piippo <teemu@hecknology.net>
parents:
1353
diff
changeset
|
239 | template<typename T, typename... Rest> |
3eace926af7f
added draw plane feature (doesn't work with circle draw quite right yet)
Teemu Piippo <teemu@hecknology.net>
parents:
1353
diff
changeset
|
240 | T sum(const T& arg, Rest&&... rest) |
3eace926af7f
added draw plane feature (doesn't work with circle draw quite right yet)
Teemu Piippo <teemu@hecknology.net>
parents:
1353
diff
changeset
|
241 | { |
3eace926af7f
added draw plane feature (doesn't work with circle draw quite right yet)
Teemu Piippo <teemu@hecknology.net>
parents:
1353
diff
changeset
|
242 | return arg + sum<T>(rest...); |
3eace926af7f
added draw plane feature (doesn't work with circle draw quite right yet)
Teemu Piippo <teemu@hecknology.net>
parents:
1353
diff
changeset
|
243 | } |
3eace926af7f
added draw plane feature (doesn't work with circle draw quite right yet)
Teemu Piippo <teemu@hecknology.net>
parents:
1353
diff
changeset
|
244 | |
1319 | 245 | // Copy of qOverload so as to drop Qt version requirement from 5.7 to 5.5. |
246 | #if (QT_VERSION < QT_VERSION_CHECK(5, 7, 0)) | |
247 | template <typename... Args> | |
248 | struct QNonConstOverload | |
249 | { | |
250 | template <typename R, typename T> | |
251 | Q_DECL_CONSTEXPR auto operator()(R (T::*ptr)(Args...)) const Q_DECL_NOTHROW -> decltype(ptr) | |
252 | { return ptr; } | |
253 | template <typename R, typename T> | |
254 | static Q_DECL_CONSTEXPR auto of(R (T::*ptr)(Args...)) Q_DECL_NOTHROW -> decltype(ptr) | |
255 | { return ptr; } | |
256 | }; | |
257 | template <typename... Args> | |
258 | struct QConstOverload | |
259 | { | |
260 | template <typename R, typename T> | |
261 | Q_DECL_CONSTEXPR auto operator()(R (T::*ptr)(Args...) const) const Q_DECL_NOTHROW -> decltype(ptr) | |
262 | { return ptr; } | |
263 | template <typename R, typename T> | |
264 | static Q_DECL_CONSTEXPR auto of(R (T::*ptr)(Args...) const) Q_DECL_NOTHROW -> decltype(ptr) | |
265 | { return ptr; } | |
266 | }; | |
267 | template <typename... Args> | |
268 | struct QOverload : QConstOverload<Args...>, QNonConstOverload<Args...> | |
269 | { | |
270 | using QConstOverload<Args...>::of; | |
271 | using QConstOverload<Args...>::operator(); | |
272 | using QNonConstOverload<Args...>::of; | |
273 | using QNonConstOverload<Args...>::operator(); | |
274 | template <typename R> | |
275 | Q_DECL_CONSTEXPR auto operator()(R (*ptr)(Args...)) const Q_DECL_NOTHROW -> decltype(ptr) | |
276 | { return ptr; } | |
277 | template <typename R> | |
278 | static Q_DECL_CONSTEXPR auto of(R (*ptr)(Args...)) Q_DECL_NOTHROW -> decltype(ptr) | |
279 | { return ptr; } | |
280 | }; | |
281 | template <typename... Args> Q_CONSTEXPR Q_DECL_UNUSED QOverload<Args...> qOverload = {}; | |
282 | template <typename... Args> Q_CONSTEXPR Q_DECL_UNUSED QConstOverload<Args...> qConstOverload = {}; | |
283 | template <typename... Args> Q_CONSTEXPR Q_DECL_UNUSED QNonConstOverload<Args...> qNonConstOverload = {}; | |
284 | #endif |