TDME2 1.9.121
EnvironmentMappingRenderer.h
Go to the documentation of this file.
1#pragma once
2
3#include <vector>
4
5#include <tdme/tdme.h>
10#include <tdme/math/Matrix4x4.h>
11#include <tdme/math/Vector3.h>
12
13using std::vector;
14
24
25/**
26 * Environment mapping
27 * @author Andreas Drewke
28 * @version $Id$
29 */
31{
33
34private:
35 Engine* engine { nullptr };
36 Camera* camera { nullptr };
37 int width { -1 };
38 int height { -1 };
39 array<Vector3, 6> forwardVectors;
40 array<Vector3, 6> sideVectors;
41 array<array<FrameBuffer*, 6>, 2> frameBuffers {{
42 {{ nullptr, nullptr, nullptr, nullptr, nullptr, nullptr }},
43 {{ nullptr, nullptr, nullptr, nullptr, nullptr, nullptr }}
44 }};
45 array<int32_t, 2> cubeMapTextureIds { 0, 0 };
46 int64_t timeRenderLast { -1LL };
50 int64_t timeRenderUpdateFrequency { 100LL };
53
54 /**
55 * Init frame buffer
56 */
57 void initialize();
58
59 /**
60 * Reshape frame buffers
61 * @param width width
62 * @param height height
63 */
64 void reshape(int32_t width, int32_t height);
65
66 /**
67 * Disposes this shadow mapping
68 */
69 void dispose();
70
71 /**
72 * Renders given objects in to environment cube map
73 * @param position position
74 */
75 void render(const Vector3& position);
76
77public:
78 /**
79 * Public constructor
80 * @param engine engine
81 * @param width width
82 * @param height height
83 */
85
86 /**
87 * Destructor
88 */
90
91 /**
92 * @return width
93 */
94 inline int32_t getWidth() {
95 return width;
96 }
97
98 /**
99 * @return height
100 */
101 inline int32_t getHeight() {
102 return height;
103 }
104
105 /**
106 * @return render pass mask
107 */
108 inline int32_t getRenderPassMask() {
109 return renderPassMask;
110 }
111
112 /**
113 * Set up render pass mask
114 * @param renderPassMask render pass mask
115 */
116 inline void setRenderPassMask(int32_t renderPassMask) {
117 this->renderPassMask = renderPassMask;
118 }
119
120 /**
121 * @return render update time frequency in milliseconds
122 */
125 }
126
127 /**
128 * Set up render update time frequency
129 * @param frequency frequency in milliseconds
130 */
131 inline void setTimeRenderUpdateFrequency(int64_t frequency) {
132 timeRenderUpdateFrequency = frequency;
133 }
134
135 /**
136 * @return cube map texture id
137 */
138 inline int32_t getCubeMapTextureId() {
140 }
141
142};
Engine main class.
Definition: Engine.h:122
TDME engine entity.
Definition: Entity.h:31
static constexpr int RENDERPASS_ALL
Definition: Entity.h:57
Environment mapping entity.
Frame buffer class.
Definition: FrameBuffer.h:21
Geometry buffer class.
Light representation.
Definition: Light.h:32
Object 3D to be used with engine class.
Definition: Object3D.h:60
void reshape(int32_t width, int32_t height)
Reshape frame buffers.
void setRenderPassMask(int32_t renderPassMask)
Set up render pass mask.
EnvironmentMappingRenderer(Engine *engine, int32_t width, int32_t height)
Public constructor.
void setTimeRenderUpdateFrequency(int64_t frequency)
Set up render update time frequency.
void render(const Vector3 &position)
Renders given objects in to environment cube map.
4x4 3D Matrix class
Definition: Matrix4x4.h:24
3D vector 3 class
Definition: Vector3.h:22
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11