Double.cpp 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-08-14
  6. * Changed: 2023-02-07
  7. *
  8. * */
  9. #include <cmath>
  10. #include <ls-std/boxing/Double.hpp>
  11. #include <ls-std/core/exception/IllegalArgumentException.hpp>
  12. ls::std::boxing::Double::Double() : ls::std::core::Class("Double")
  13. {
  14. this->_assignEpsilon(0.00000001);
  15. }
  16. ls::std::boxing::Double::Double(double _value) : ls::std::core::Class("Double"), value(_value)
  17. {
  18. this->_assignEpsilon(0.00000001);
  19. }
  20. ls::std::boxing::Double::~Double() = default;
  21. ls::std::boxing::Double::operator double() const
  22. {
  23. return this->value;
  24. }
  25. ls::std::boxing::Double &ls::std::boxing::Double::operator=(double _value)
  26. {
  27. this->value = _value;
  28. return *this;
  29. }
  30. double ls::std::boxing::Double::operator-() const
  31. {
  32. return -this->value;
  33. }
  34. double ls::std::boxing::Double::operator+(const ls::std::boxing::Double &_double) const
  35. {
  36. return this->value + _double;
  37. }
  38. double ls::std::boxing::Double::operator+(double _value) const
  39. {
  40. return this->value + _value;
  41. }
  42. double ls::std::boxing::Double::operator*(const ls::std::boxing::Double &_double) const
  43. {
  44. return this->value * _double;
  45. }
  46. double ls::std::boxing::Double::operator*(double _value) const
  47. {
  48. return this->value * _value;
  49. }
  50. double ls::std::boxing::Double::operator-(const ls::std::boxing::Double &_double) const
  51. {
  52. return this->value - _double;
  53. }
  54. double ls::std::boxing::Double::operator-(double _value) const
  55. {
  56. return this->value - _value;
  57. }
  58. double ls::std::boxing::Double::operator/(const ls::std::boxing::Double &_double) const
  59. {
  60. return this->value / _double;
  61. }
  62. double ls::std::boxing::Double::operator/(double _value) const
  63. {
  64. return this->value / _value;
  65. }
  66. ls::std::boxing::Double &ls::std::boxing::Double::operator+=(const ls::std::boxing::Double &_double)
  67. {
  68. this->value += _double;
  69. return *this;
  70. }
  71. ls::std::boxing::Double &ls::std::boxing::Double::operator+=(double _value)
  72. {
  73. this->value += _value;
  74. return *this;
  75. }
  76. ls::std::boxing::Double &ls::std::boxing::Double::operator-=(const ls::std::boxing::Double &_double)
  77. {
  78. this->value -= _double;
  79. return *this;
  80. }
  81. ls::std::boxing::Double &ls::std::boxing::Double::operator-=(double _value)
  82. {
  83. this->value -= _value;
  84. return *this;
  85. }
  86. ls::std::boxing::Double &ls::std::boxing::Double::operator*=(const ls::std::boxing::Double &_double)
  87. {
  88. this->value *= _double;
  89. return *this;
  90. }
  91. ls::std::boxing::Double &ls::std::boxing::Double::operator*=(double _value)
  92. {
  93. this->value *= _value;
  94. return *this;
  95. }
  96. ls::std::boxing::Double &ls::std::boxing::Double::operator/=(const ls::std::boxing::Double &_double)
  97. {
  98. this->value /= _double;
  99. return *this;
  100. }
  101. ls::std::boxing::Double &ls::std::boxing::Double::operator/=(double _value)
  102. {
  103. this->value /= _value;
  104. return *this;
  105. }
  106. bool ls::std::boxing::Double::operator==(const ls::std::boxing::Double &_double) const
  107. {
  108. return ::std::fabs(this->value - _double) < this->epsilon;
  109. }
  110. bool ls::std::boxing::Double::operator==(double _value) const
  111. {
  112. return ::std::fabs(this->value - _value) < this->epsilon;
  113. }
  114. bool ls::std::boxing::Double::operator!=(const ls::std::boxing::Double &_double) const
  115. {
  116. return ::std::fabs(this->value - _double) >= this->epsilon;
  117. }
  118. bool ls::std::boxing::Double::operator!=(double _value) const
  119. {
  120. return ::std::fabs(this->value - _value) >= this->epsilon;
  121. }
  122. bool ls::std::boxing::Double::operator>(const ls::std::boxing::Double &_double) const
  123. {
  124. return this->value > _double;
  125. }
  126. bool ls::std::boxing::Double::operator>(double _value) const
  127. {
  128. return this->value > _value;
  129. }
  130. bool ls::std::boxing::Double::operator>=(const ls::std::boxing::Double &_double) const
  131. {
  132. return this->value >= _double;
  133. }
  134. bool ls::std::boxing::Double::operator>=(double _value) const
  135. {
  136. return this->value >= _value;
  137. }
  138. bool ls::std::boxing::Double::operator<(const ls::std::boxing::Double &_double) const
  139. {
  140. return this->value < _double;
  141. }
  142. bool ls::std::boxing::Double::operator<(double _value) const
  143. {
  144. return this->value < _value;
  145. }
  146. bool ls::std::boxing::Double::operator<=(const ls::std::boxing::Double &_double) const
  147. {
  148. return this->value <= _double;
  149. }
  150. bool ls::std::boxing::Double::operator<=(double _value) const
  151. {
  152. return this->value <= _value;
  153. }
  154. void ls::std::boxing::Double::operator++()
  155. {
  156. this->value += 1.0f;
  157. }
  158. void ls::std::boxing::Double::operator--()
  159. {
  160. this->value -= 1.0f;
  161. }
  162. void ls::std::boxing::Double::parse(::std::string _parseText)
  163. {
  164. this->value = ::std::stod(_parseText);
  165. }
  166. ::std::string ls::std::boxing::Double::toString()
  167. {
  168. return ::std::to_string(this->value);
  169. }
  170. double ls::std::boxing::Double::getEpsilon()
  171. {
  172. return this->epsilon;
  173. }
  174. double ls::std::boxing::Double::getValue()
  175. {
  176. return this->value;
  177. }
  178. void ls::std::boxing::Double::setEpsilon(double _epsilon)
  179. {
  180. this->_assignEpsilon(_epsilon);
  181. }
  182. void ls::std::boxing::Double::_assignEpsilon(double _epsilon)
  183. {
  184. if (_epsilon <= 0.0)
  185. {
  186. throw ls::std::core::IllegalArgumentException{"_epsilon is less than or equal zero"};
  187. }
  188. this->epsilon = _epsilon;
  189. }