summaryrefslogtreecommitdiffstats
path: root/game/shared/chunk_aabb.cc
diff options
context:
space:
mode:
authoruntodesu <kirill@untode.su>2025-03-15 16:22:09 +0500
committeruntodesu <kirill@untode.su>2025-03-15 16:22:09 +0500
commit3bf42c6ff3805a0d42bbc661794a95ff31bedc26 (patch)
tree05049955847504808d6bed2bb7b155f8b03807bb /game/shared/chunk_aabb.cc
parent02294547dcde0d4ad76e229106702261e9f10a51 (diff)
downloadvoxelius-3bf42c6ff3805a0d42bbc661794a95ff31bedc26.tar.bz2
voxelius-3bf42c6ff3805a0d42bbc661794a95ff31bedc26.zip
Add whatever I was working on for the last month
Diffstat (limited to 'game/shared/chunk_aabb.cc')
-rw-r--r--game/shared/chunk_aabb.cc57
1 files changed, 57 insertions, 0 deletions
diff --git a/game/shared/chunk_aabb.cc b/game/shared/chunk_aabb.cc
new file mode 100644
index 0000000..b4e5b82
--- /dev/null
+++ b/game/shared/chunk_aabb.cc
@@ -0,0 +1,57 @@
+#include "shared/pch.hh"
+#include "shared/chunk_aabb.hh"
+
+void ChunkAABB::set_bounds(const chunk_pos &min, const chunk_pos &max)
+{
+ this->min = min;
+ this->max = max;
+}
+
+void ChunkAABB::set_offset(const chunk_pos &base, const chunk_pos &size)
+{
+ this->min = base;
+ this->max = base + size;
+}
+
+bool ChunkAABB::contains(const chunk_pos &point) const
+{
+ if((point.x < min.x) || (point.x > max.x))
+ return false;
+ if((point.y < min.y) || (point.y > max.y))
+ return false;
+ if((point.z < min.z) || (point.z > max.z))
+ return false;
+ return true;
+}
+
+bool ChunkAABB::intersect(const ChunkAABB &other_box) const
+{
+ if((min.x >= other_box.max.x) || (max.x <= other_box.min.x))
+ return false;
+ if((min.y >= other_box.max.y) || (max.y <= other_box.min.y))
+ return false;
+ if((min.z >= other_box.max.z) || (max.z <= other_box.min.z))
+ return false;
+ return true;
+}
+
+ChunkAABB ChunkAABB::combine_with(const ChunkAABB &other_box) const
+{
+ ChunkAABB result;
+ result.set_bounds(min, other_box.max);
+ return result;
+}
+
+ChunkAABB ChunkAABB::multiply_with(const ChunkAABB &other_box) const
+{
+ ChunkAABB result;
+ result.set_bounds(other_box.min, max);
+ return result;
+}
+
+ChunkAABB ChunkAABB::push(const chunk_pos &vector) const
+{
+ ChunkAABB result;
+ result.set_bounds(min + vector, max + vector);
+ return result;
+}