Vector.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. #ifndef VECTOR_H
  2. #define VECTOR_H
  3. #include "utils/StringBuffer.h"
  4. #include <initializer_list>
  5. template<int N>
  6. class Vector final {
  7. float values[N];
  8. public:
  9. Vector() {
  10. for(int i = 0; i < N; i++) {
  11. values[i] = 0.0f;
  12. }
  13. }
  14. template<typename... Args>
  15. Vector(float a, Args&&... args) {
  16. const int size = sizeof...(args) + 1;
  17. float init[size] = {a, args...};
  18. static_assert(N == size, "vector size and amount of float arguments does not match");
  19. for(int i = 0; i < N; i++) {
  20. values[i] = init[i];
  21. }
  22. }
  23. Vector& set(float, float) = delete;
  24. Vector& set(float, float, float) = delete;
  25. Vector& set(float, float, float, float) = delete;
  26. Vector& setAngles(float, float) = delete;
  27. Vector cross(const Vector&) const = delete;
  28. Vector& operator+=(const Vector& other) {
  29. for(int i = 0; i < N; i++) {
  30. values[i] += other.values[i];
  31. }
  32. return *this;
  33. }
  34. Vector operator+(const Vector& other) const {
  35. Vector v = *this;
  36. v += other;
  37. return v;
  38. }
  39. Vector& operator-=(const Vector& other) {
  40. for(int i = 0; i < N; i++) {
  41. values[i] -= other.values[i];
  42. }
  43. return *this;
  44. }
  45. Vector operator-() const {
  46. Vector v = *this;
  47. for(int i = 0; i < N; i++) {
  48. v.values[i] = -v.values[i];
  49. }
  50. return v;
  51. }
  52. Vector operator-(const Vector& other) const {
  53. Vector v = *this;
  54. v -= other;
  55. return v;
  56. }
  57. Vector& operator*=(float factor) {
  58. for(int i = 0; i < N; i++) {
  59. values[i] *= factor;
  60. }
  61. return *this;
  62. }
  63. Vector operator*(float factor) const {
  64. Vector v = *this;
  65. v *= factor;
  66. return v;
  67. }
  68. float dot(const Vector& v) const {
  69. float length = 0.0f;
  70. for(int i = 0; i < N; i++) {
  71. length += values[i] * v.values[i];
  72. }
  73. return length;
  74. }
  75. float squareLength() const {
  76. return dot(*this);
  77. }
  78. float length() const {
  79. return sqrtf(squareLength());
  80. }
  81. Vector& normalize() {
  82. *this *= 1.0f / length();
  83. return *this;
  84. }
  85. float& operator[](int index) {
  86. return values[index];
  87. }
  88. const float& operator[](int index) const {
  89. return values[index];
  90. }
  91. template<int L>
  92. void toString(StringBuffer<L>& s) const {
  93. s.append("[");
  94. for(int i = 0; i < N - 1; i++) {
  95. s.append(values[i]);
  96. s.append(", ");
  97. }
  98. if(N > 0) {
  99. s.append(values[N - 1]);
  100. }
  101. s.append("]");
  102. }
  103. };
  104. template<int N>
  105. Vector<N> operator*(float factor, const Vector<N>& v) {
  106. return v * factor;
  107. }
  108. template<> Vector<3>& Vector<3>::setAngles(float lengthAngle, float widthAngle);
  109. template<> Vector<3> Vector<3>::cross(const Vector<3>& other) const;
  110. typedef Vector<4> Vector4;
  111. typedef Vector<3> Vector3;
  112. typedef Vector<2> Vector2;
  113. #endif