TDME2 1.9.121
Frustum.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4
5#include <tdme/tdme.h>
12#include <tdme/math/fwd-tdme.h>
13#include <tdme/math/Matrix4x4.h>
14
15using std::array;
16
23
24/**
25 * Frustum class
26 * @author Mark Morley, Andreas Drewke
27 * @version $Id$
28 */
30{
31private:
32 Renderer* renderer { nullptr };
33
37
38 array<Plane, 6> planes;
39
40public:
41 // right, left, bottom, top, far, near
42 static constexpr int32_t PLANE_RIGHT { 0 };
43 static constexpr int32_t PLANE_LEFT { 1 };
44 static constexpr int32_t PLANE_BOTTOM { 2 };
45 static constexpr int32_t PLANE_TOP { 3 };
46 static constexpr int32_t PLANE_FAR { 4 };
47 static constexpr int32_t PLANE_NEAR { 5 };
48
49 /**
50 * Public constructor
51 */
53
54 /**
55 * @return planes
56 */
57 inline const array<Plane, 6>& getPlanes() {
58 return planes;
59 }
60
61 /**
62 * Setups frustum, should be called if frustum did change
63 */
64 void update();
65
66 /**
67 * Checks if given vertex is in frustum
68 * @param vector vector
69 * @return visibility
70 */
71 inline bool isVisible(const Vector3& vertex) {
72 for (auto& p: planes) {
73 if (Vector3::computeDotProduct(p.getNormal(), vertex) + p.getDistance() < 0.0f) {
74 return false;
75 }
76 }
77 return true;
78 }
79
80 /**
81 * Checks if sphere is in frustum
82 * @param s s
83 * @return visibility
84 */
85 inline bool isVisible(Sphere* s) {
86 auto& center = s->getCenter();
87 auto radius = s->getRadius();
88 for (auto& p: planes) {
89 if (Vector3::computeDotProduct(p.getNormal(), center) + p.getDistance() < -radius) {
90 return false;
91 }
92 }
93 return true;
94 }
95
96 /**
97 * Checks if bounding box is in frustum
98 * @param b s
99 * @return visibility
100 */
101 inline bool isVisible(BoundingBox* b) {
102 auto minX = b->getMin()[0];
103 auto minY = b->getMin()[1];
104 auto minZ = b->getMin()[2];
105 auto maxX = b->getMax()[0];
106 auto maxY = b->getMax()[1];
107 auto maxZ = b->getMax()[2];
108 Vector3 point;
109 for (auto& p :planes) {
110 auto& normal = p.getNormal();
111 auto distance = p.getDistance();
112 if (Vector3::computeDotProduct(normal, point.set(minX, minY, minZ)) + distance > 0.0f) continue;
113 if (Vector3::computeDotProduct(normal, point.set(maxX, minY, minZ)) + distance > 0.0f) continue;
114 if (Vector3::computeDotProduct(normal, point.set(minX, maxY, minZ)) + distance > 0.0f) continue;
115 if (Vector3::computeDotProduct(normal, point.set(maxX, maxY, minZ)) + distance > 0.0f) continue;
116 if (Vector3::computeDotProduct(normal, point.set(minX, minY, maxZ)) + distance > 0.0f) continue;
117 if (Vector3::computeDotProduct(normal, point.set(maxX, minY, maxZ)) + distance > 0.0f) continue;
118 if (Vector3::computeDotProduct(normal, point.set(minX, maxY, maxZ)) + distance > 0.0f) continue;
119 if (Vector3::computeDotProduct(normal, point.set(maxX, maxY, maxZ)) + distance > 0.0f) continue;
120 return false;
121 }
122 return true;
123 }
124
125};
Frustum class.
Definition: Frustum.h:30
static constexpr int32_t PLANE_FAR
Definition: Frustum.h:46
static constexpr int32_t PLANE_LEFT
Definition: Frustum.h:43
array< Plane, 6 > planes
Definition: Frustum.h:38
static constexpr int32_t PLANE_RIGHT
Definition: Frustum.h:42
bool isVisible(BoundingBox *b)
Checks if bounding box is in frustum.
Definition: Frustum.h:101
Matrix4x4 modelViewMatrixTransposed
Definition: Frustum.h:35
bool isVisible(const Vector3 &vertex)
Checks if given vertex is in frustum.
Definition: Frustum.h:71
static constexpr int32_t PLANE_BOTTOM
Definition: Frustum.h:44
const array< Plane, 6 > & getPlanes()
Definition: Frustum.h:57
Matrix4x4 frustumMatrix
Definition: Frustum.h:36
static constexpr int32_t PLANE_TOP
Definition: Frustum.h:45
bool isVisible(Sphere *s)
Checks if sphere is in frustum.
Definition: Frustum.h:85
void update()
Setups frustum, should be called if frustum did change.
Definition: Frustum.cpp:30
static constexpr int32_t PLANE_NEAR
Definition: Frustum.h:47
Matrix4x4 projectionMatrixTransposed
Definition: Frustum.h:34
Frustum(Renderer *renderer)
Public constructor.
Definition: Frustum.cpp:25
Renderer * renderer
Definition: Frustum.h:32
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
Plane entity, this is not directly connectable with physics engine.
Definition: Plane.h:16
Sphere physics primitive.
Definition: Sphere.h:18
4x4 3D Matrix class
Definition: Matrix4x4.h:24
3D vector 3 class
Definition: Vector3.h:22
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73