diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-03-07 00:43:25 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-03-11 01:13:59 +0000 |
commit | d0aceb54752078200bc75a96888ffaf7483678cb (patch) | |
tree | b28332738e1446771c42c8ddd37261bdf380b14b /gfx/frustum.cpp | |
parent | Position is moved to Frustum (diff) | |
download | ilt-d0aceb54752078200bc75a96888ffaf7483678cb.tar.bz2 ilt-d0aceb54752078200bc75a96888ffaf7483678cb.tar.xz ilt-d0aceb54752078200bc75a96888ffaf7483678cb.zip |
Add function to test if an AABB is visible in a frustum
Diffstat (limited to 'gfx/frustum.cpp')
-rw-r--r-- | gfx/frustum.cpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gfx/frustum.cpp b/gfx/frustum.cpp index a9dbdf0..8031d85 100644 --- a/gfx/frustum.cpp +++ b/gfx/frustum.cpp @@ -1,4 +1,5 @@ #include "frustum.h" +#include "aabb.h" #include <algorithm> #include <collections.h> #include <glm/ext/matrix_transform.hpp> @@ -18,6 +19,31 @@ Frustum::updateView(const glm::mat4 & newView) updateCache(); } +bool +Frustum::contains(const AxisAlignedBoundingBox & aabb) const +{ + static constexpr auto EXTENT_CORNER_IDXS = [] { + using Extent = GlobalPosition3D AxisAlignedBoundingBox::*; + constexpr auto EXTENTS = std::array {&AxisAlignedBoundingBox::min, &AxisAlignedBoundingBox::max}; + std::array<glm::vec<3, Extent>, 2ZU * 2ZU * 2ZU> out {}; + std::ranges::copy(std::views::cartesian_product(EXTENTS, EXTENTS, EXTENTS) + | std::views::transform( + std::make_from_tuple<glm::vec<3, Extent>, std::tuple<Extent, Extent, Extent>>), + out.begin()); + return out; + }(); + + const std::array<RelativePosition4D, 8> corners + = EXTENT_CORNER_IDXS * [relativeAabb = aabb - position](auto idxs) -> glm::vec4 { + return {(relativeAabb.*(idxs.x)).x, (relativeAabb.*(idxs.y)).y, (relativeAabb.*(idxs.z)).z, 1.F}; + }; + return std::ranges::none_of(planes, [&corners](const auto & frustumPlane) { + return (std::ranges::all_of(corners, [&frustumPlane](const auto & corner) { + return glm::dot(frustumPlane, corner) < 0.F; + })); + }); +} + void Frustum::updateCache() { |