-
Notifications
You must be signed in to change notification settings - Fork 0
/
DMath.h
689 lines (535 loc) · 17.3 KB
/
DMath.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
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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
/*****************************************************************************
********************************** DMath.h ***********************************
*****************************************************************************/
#if !defined(__DMATH_H__)
#define __DMATH_H__
/*****************************************************************************
****************************** I N C L U D E *******************************
*****************************************************************************/
#include <cmath>
#include <boost/serialization/base_object.hpp>
#include <boost/serialization/version.hpp>
#include <boost/serialization/serialization.hpp>
#include <boost/archive/xml_iarchive.hpp>
#include <boost/archive/xml_oarchive.hpp>
//#include "DConfig.h"
const double dSqrt2 = sqrt(2.0);
template <typename T>
T round(T Num)
{
return ((Num > 0.0) ? floor(Num + 0.5) : ceil(Num - 0.5));
}
/*****************************************************************************
***************************** Angle Conversions ******************************
*****************************************************************************/
const double dPI = 3.14159265358979323846;
const float fPI = 3.141593f;
const double dRadToDeg = 180.0 / dPI;
const float fRadToDeg = 180.0f / fPI;
const double dDegToRad = dPI / 180.0;
const float fDegToRad = fPI / 180.0f;
inline double RadToDeg(double dRad)
{
return (dRad * dRadToDeg);
}
inline double DegToRad(double dDeg)
{
return (dDeg * dDegToRad);
}
inline float RadToDeg(float fRad)
{
return (fRad * fRadToDeg);
}
inline float DegToRad(float fDeg)
{
return (fDeg * fDegToRad);
}
/*****************************************************************************
****************************** class DThreshold ******************************
*****************************************************************************/
/*
Abstract base class for doing simple comparisons. Encapsulates the
threhshold value to which comparisons are made. The type T must implement
the needed operator for that type. Since the Apply function is virtual,
collections of differing threshold operations may be handled through
pointers.
*/
template <typename T>
class DThreshold
{
public :
static const unsigned int m_nVersion = 0;
DThreshold() = default;
explicit DThreshold(T Threshold) : m_Threshold(Threshold)
{
return;
}
DThreshold(const DThreshold& src) : m_Threshold(src.m_Threshold)
{
return;
}
virtual ~DThreshold() = default;
DThreshold& operator=(const DThreshold& rhs)
{
if (this != &rhs)
{
m_Threshold = rhs.m_Threshold;
} // end if
return (*this);
}
bool operator==(const DThreshold& rhs) const
{
return (m_Threshold == rhs.m_Threshold);
}
bool operator<(const DThreshold& rhs) const
{
return (m_Threshold < rhs.m_Threshold);
}
bool operator>(const DThreshold& rhs) const
{
return (m_Threshold > rhs.m_Threshold);
}
bool operator<=(const DThreshold& rhs) const
{
return (m_Threshold <= rhs.m_Threshold);
}
bool operator>=(const DThreshold& rhs) const
{
return (m_Threshold >= rhs.m_Threshold);
}
T GetThreshold() const
{
return (m_Threshold);
}
void SetThreshold(T Threshold)
{
m_Threshold = Threshold;
}
virtual bool Apply(T Test) const = 0;
template<class Archive>
void serialize(Archive& ar, const unsigned int /* nVersion */)
{
ar & boost::serialization::make_nvp("Threshold", m_Threshold);
return;
}
protected :
T m_Threshold;
private :
}; // End of class DThreshold
//BOOST_SERIALIZATION_ASSUME_ABSTRACT(DThreshold<T>);
/* Handle the version information */
namespace boost {
namespace serialization {
#if 0
template <typename T>
struct is_wrapper<DThreshold<T>> : mpl::false_
{
};
#endif
template<typename T>
struct version<DThreshold<T>>
{
typedef mpl::int_<DThreshold<T>::m_nVersion> type;
typedef mpl::integral_c_tag tag;
BOOST_STATIC_CONSTANT(unsigned int, value = version::type::value);
};
template<typename T>
const unsigned int version<DThreshold<T>>::value;
} // end namespace serialization
} // end namespace boost
/*****************************************************************************
***************************** class DThresholdLT *****************************
*****************************************************************************/
template <typename T>
class DThresholdLT : public DThreshold<T>
{
public :
static const unsigned int m_nVersion = 0;
DThresholdLT() = default;
explicit DThresholdLT(T Threshold) : DThreshold<T>(Threshold)
{
return;
}
DThresholdLT(const DThresholdLT& src) : DThreshold<T>(src)
{
return;
}
virtual ~DThresholdLT() = default;
DThresholdLT& operator=(const DThresholdLT& rhs)
{
DThreshold<T>::operator=(rhs);
return (*this);
}
virtual bool Apply(T Test) const
{
return (Test < this->m_Threshold);
}
template<class Archive>
void serialize(Archive& ar, const unsigned int /* nVersion */)
{
ar & boost::serialization::make_nvp( "DThreshold",
boost::serialization::base_object<DThreshold<T>>(*this));
return;
}
protected :
private :
}; // End of class DThresholdLT
/* Handle the version information */
namespace boost {
namespace serialization {
template<typename T>
struct version<DThresholdLT<T>>
{
typedef mpl::int_<DThresholdLT<T>::m_nVersion> type;
typedef mpl::integral_c_tag tag;
BOOST_STATIC_CONSTANT(unsigned int, value = version::type::value);
};
template<typename T>
const unsigned int version<DThresholdLT<T>>::value;
} // end namespace serialization
} // end namespace boost
/*****************************************************************************
***************************** class DThresholdLE *****************************
*****************************************************************************/
template <typename T>
class DThresholdLE : public DThreshold<T>
{
public :
static const unsigned int m_nVersion = 0;
DThresholdLE() = default;
explicit DThresholdLE(T Threshold) : DThreshold<T>(Threshold)
{
return;
}
DThresholdLE(const DThresholdLE& src) : DThreshold<T>(src)
{
return;
}
virtual ~DThresholdLE() = default;
DThresholdLE& operator=(const DThresholdLE& rhs)
{
DThreshold<T>::operator=(rhs);
return (*this);
}
virtual bool Apply(T Test) const
{
return (Test <= this->m_Threshold);
}
template<class Archive>
void serialize(Archive& ar, const unsigned int /* nVersion */)
{
ar & boost::serialization::make_nvp( "DThreshold",
boost::serialization::base_object<DThreshold<T>>(*this));
return;
}
protected :
private :
}; // End of class DThresholdLE
/* Handle the version information */
namespace boost {
namespace serialization {
template <typename T>
struct is_wrapper<DThresholdLE<T>> : mpl::false_
{
};
template<typename T>
struct version<DThresholdLE<T>>
{
typedef mpl::int_<DThresholdLE<T>::m_nVersion> type;
typedef mpl::integral_c_tag tag;
BOOST_STATIC_CONSTANT(unsigned int, value = version::type::value);
};
template<typename T>
const unsigned int version<DThresholdLE<T>>::value;
} // end namespace serialization
} // end namespace boost
/*****************************************************************************
***************************** class DThresholdGE *****************************
*****************************************************************************/
template <typename T>
class DThresholdGE : public DThreshold<T>
{
public :
static const unsigned int m_nVersion = 0;
DThresholdGE() = default;
explicit DThresholdGE(T Threshold) : DThreshold<T>(Threshold)
{
return;
}
DThresholdGE(const DThresholdGE& src) : DThreshold<T>(src)
{
return;
}
virtual ~DThresholdGE() = default;
DThresholdGE& operator=(const DThresholdGE& rhs)
{
if (this != &rhs)
{
DThreshold<T>::operator=(rhs);
} // end if
return (*this);
}
virtual bool Apply(T Test) const
{
return (Test >= this->m_Threshold);
}
template<class Archive>
void serialize(Archive& ar, const unsigned int /* nVersion */)
{
ar & boost::serialization::make_nvp( "DThreshold",
boost::serialization::base_object<DThreshold<T>>(*this));
return;
}
protected :
private :
}; // End of class DThresholdGE
/* Handle the version information */
namespace boost {
namespace serialization {
template <typename T>
struct is_wrapper<DThresholdGE<T>> : mpl::false_
{
};
template<typename T>
struct version<DThresholdGE<T>>
{
typedef mpl::int_<DThresholdGE<T>::m_nVersion> type;
typedef mpl::integral_c_tag tag;
BOOST_STATIC_CONSTANT(unsigned int, value = version::type::value);
};
template<typename T>
const unsigned int version<DThresholdGE<T>>::value;
} // end namespace serialization
} // end namespace boost
/*****************************************************************************
***************************** class DThresholdGT *****************************
*****************************************************************************/
template <typename T>
class DThresholdGT : public DThreshold<T>
{
public :
static const unsigned int m_nVersion = 0;
DThresholdGT() = default;
explicit DThresholdGT(T Threshold) : DThreshold<T>(Threshold)
{
return;
}
DThresholdGT(const DThresholdGT& src) : DThreshold<T>(src)
{
return;
}
virtual ~DThresholdGT() = default;
DThresholdGT& operator=(const DThresholdGT& rhs)
{
if (this != &rhs)
{
DThreshold<T>::operator=(rhs);
} // end if
return (*this);
}
virtual bool Apply(T Test) const
{
return (Test > this->m_Threshold);
}
template<class Archive>
void serialize(Archive& ar, const unsigned int /* nVersion */)
{
ar & boost::serialization::make_nvp( "DThreshold",
boost::serialization::base_object<DThreshold<T>>(*this));
return;
}
protected :
private :
}; // End of class DThresholdGT
/* Handle the version information */
namespace boost {
namespace serialization {
template<typename T>
struct version<DThresholdGT<T>>
{
typedef mpl::int_<DThresholdGT<T>::m_nVersion> type;
typedef mpl::integral_c_tag tag;
BOOST_STATIC_CONSTANT(unsigned int, value = version::type::value);
};
template<typename T>
const unsigned int version<DThresholdGT<T>>::value;
} // end namespace serialization
} // end namespace boost
/*****************************************************************************
****************************** class DRangeTest ******************************
*****************************************************************************/
/*
Class to provide checking if a value for a type is between the lower and
upper limits. If lower is greater than upper, the range becomes "circular"
or "not".
*/
template <typename T>
class DRangeTest
{
public :
static const unsigned int m_nVersion = 0;
DRangeTest() : m_bCircular(false)
{
return;
}
DRangeTest(T Lower, T Upper, bool bCircular = false)
: m_Lower(Lower), m_Upper(Upper), m_bCircular(bCircular)
{
return;
}
virtual ~DRangeTest() = default;
DRangeTest(const DRangeTest& src) : m_Lower(src.m_Lower),
m_Upper(src.m_Upper), m_bCircular(src.m_bCircular)
{
return;
}
DRangeTest& operator=(const DRangeTest& rhs)
{
if (this != &rhs)
{
m_Lower = rhs.m_Lower;
m_Upper = rhs.m_Upper;
m_bCircular = rhs.m_bCircular;
} // end if
return (*this);
}
void SetRange(T Lower, T Upper)
{
m_Lower.SetThreshold(Lower);
m_Upper.SetThreshold(Upper);
return;
}
void SetLower(T Lower)
{
m_Lower.SetThreshold(Lower);
return;
}
void SetUpper(T Upper)
{
m_Upper.SetThreshold(Upper);
return;
}
T GetLower() const
{
return (m_Lower.GetThreshold());
}
T GetUpper() const
{
return (m_Upper.GetThreshold());
}
bool IsCircular() const
{
return (m_bCircular);
}
void SetCircular(bool bCircular)
{
m_bCircular = bCircular;
return;
}
virtual bool Apply(T Test) const
{
bool bRet = false;
if (m_bCircular && (m_Lower > m_Upper))
{
bRet = (m_Lower.Apply(Test) || m_Upper.Apply(Test));
} // end if
else
{
bRet = (m_Lower.Apply(Test) && m_Upper.Apply(Test));
} // end else
return (bRet);
}
template<class Archive>
void serialize(Archive& ar, const unsigned int /* nVersion */)
{
ar & boost::serialization::make_nvp("Lower", m_Lower);
ar & boost::serialization::make_nvp("Upper", m_Upper);
ar & boost::serialization::make_nvp("Circular", m_bCircular);
return;
}
protected :
DThresholdGE<T> m_Lower;
DThresholdLE<T> m_Upper;
bool m_bCircular;
private :
}; // End of class DRangeTest
/* Handle the version information */
namespace boost {
namespace serialization {
template<typename T>
struct version<DRangeTest<T>>
{
typedef mpl::int_<DRangeTest<T>::m_nVersion> type;
typedef mpl::integral_c_tag tag;
BOOST_STATIC_CONSTANT(unsigned int, value = version::type::value);
};
template<typename T>
const unsigned int version<DRangeTest<T>>::value;
} // end namespace serialization
} // end namespace boost
#if 0
/*****************************************************************************
************************** class DCircularRangeTest **************************
*****************************************************************************/
template <typename T>
class DCircularRangeTest : public DRangeTest<T>
{
public :
DCircularRangeTest(T Lower = 0, T Upper = 0, T Min = 0, T Max = 0)
: DRangeTest(Lower, Upper), m_Min(Min), m_Max(Max)
{
return;
}
DCircularRangeTest(const DCircularRangeTest& src)
: DRangeTest(src)
{
m_Min = src.m_Min;
m_Max = src.m_Max;
return;
}
~DCircularRangeTest()
{
return;
}
DCircularRangeTest& operator=(const DCircularRangeTest& rhs)
{
DRangeTest::operator=(rhs);
m_Min = rhs.m_Min;
m_Max = rhs.m_Max;
return;
}
void SetMinMax(T Min, T Max)
{
m_Min = Min;
m_Max = Max;
return;
}
void SetMin(T Min)
{
m_Min = Min;
return;
}
void SetMax(T Max)
{
m_Max = Max;
return;
}
T GetMin() const
{
return (m_Min);
}
T GetMax() const
{
return (m_Max);
}
virtual bool Apply(T Test) const
{
return (m_Lower.Apply(Test) && m_Upper.Apply(Test));
}
protected :
T m_Min;
T m_Max;
private :
}; // End of class DCircularRangeTest
#endif
#endif // __DMATH_H__