summaryrefslogtreecommitdiff
path: root/themes/src/Windfield.cpp
diff options
context:
space:
mode:
authormattkae <mattkae@protonmail.com>2023-04-03 06:35:27 -0400
committermattkae <mattkae@protonmail.com>2023-04-03 06:35:27 -0400
commit5d3ff36045bfb11af0f373d5ecee7c9b54e4c4f9 (patch)
tree1877c85fc652603312c1093ff31678ab807616b2 /themes/src/Windfield.cpp
parent9e21251ea16e594c8ef416cf8a6b8ebbbb42a858 (diff)
Folderized all of the seasons and loading the shaders from a remote source
Diffstat (limited to 'themes/src/Windfield.cpp')
-rw-r--r--themes/src/Windfield.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/themes/src/Windfield.cpp b/themes/src/Windfield.cpp
deleted file mode 100644
index 3a7563f..0000000
--- a/themes/src/Windfield.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
-#include "Windfield.hpp"
-
-
-template <i32 Width, i32 Height, i32 CellDimension>
-void WindField<Width, Height, CellDimension>::load(f32 ttl, Vector2 origin) {
- this->ttl = ttl;
- this->origin = origin;
- this->end = this->origin + Vector2(Width * CellDimension, Height * CellDimension);
-}
-
-template <i32 Width, i32 Height, i32 CellDimension>
-bool WindField<Width, Height, CellDimension>::addVector(i32 x, i32 y, Vector2& v) {
- field[x][y] = v;
- return false;
-}
-
-template <i32 Width, i32 Height, i32 CellDimension>
-Vector2 WindField<Width, Height, CellDimension>::getWindFactor(Vector2& v) {
- if (v.x >= origin.x && v.x <= end.x
- && v.y >= origin.y && v.y <= end.y) {
- Vector2 positionInField = v - this->origin;
- i32 cellX = static_cast<i32>(Width / positionInField.x);
- i32 cellY = static_cast<i32>(Height / positionInField.y);
- return field[cellX, cellY];
- }
-
- return Vector2();
-}