TDME2 1.9.121
FrameBuffer.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
8
9using std::string;
10
12
14
15/**
16 * Frame buffer class
17 * @author Andreas Drewke
18 * @version $Id$
19 */
21{
22
23public:
24 static constexpr int32_t FRAMEBUFFER_DEPTHBUFFER { 1 };
25 static constexpr int32_t FRAMEBUFFER_COLORBUFFER { 2 };
26
27 static constexpr int32_t CUBEMAPTEXTUREID_NONE { 0 };
28
29 static constexpr int32_t CUBEMAPTEXTUREINDEX_NONE { 0 };
30 static constexpr int32_t CUBEMAPTEXTUREINDEX_NEGATIVE_X { 1 };
31 static constexpr int32_t CUBEMAPTEXTUREINDEX_POSITIVE_X { 2 };
32 static constexpr int32_t CUBEMAPTEXTUREINDEX_POSITIVE_Y { 3 };
33 static constexpr int32_t CUBEMAPTEXTUREINDEX_NEGATIVE_Y { 4 };
34 static constexpr int32_t CUBEMAPTEXTUREINDEX_POSITIVE_Z { 5 };
35 static constexpr int32_t CUBEMAPTEXTUREINDEX_NEGATIVE_Z { 6 };
36
37private:
38 int32_t width;
39 int32_t height;
43 int32_t buffers;
46
47 /**
48 * Render given depth texture and color buffer texture to screen
49 * @parma engine engine
50 * @param depthBufferTextureId depth buffer texture id
51 * @param colorBufferTextureId color buffer texture id
52 */
53 void renderToScreen(Engine* engine, int32_t depthBufferTextureId, int32_t colorBufferTextureId);
54
55public:
56 /**
57 * Public constructor
58 * @param width width
59 * @param height height
60 * @param buffers buffers (see FrameBuffer::FRAMEBUFFER_*)
61 * @param cubeMapTextureId cube map texture id
62 * @param cubeMapTextureIndex cube map texture index
63 */
65
66 /**
67 * @return width
68 */
69 inline int32_t getWidth() {
70 return width;
71 }
72
73 /**
74 * @return height
75 */
76 inline int32_t getHeight() {
77 return height;
78 }
79
80 /**
81 * @return frame buffer id
82 */
83 inline int32_t getId() {
84 return frameBufferId;
85 }
86
87 /**
88 * @return depth buffer texture id
89 */
90 inline int32_t getDepthBufferTextureId() {
92 }
93
94 /**
95 * @return color buffer texture id
96 */
97 inline int32_t getColorBufferTextureId() {
99 }
100
101 /**
102 * Initialize the frame buffer
103 */
104 void initialize();
105
106 /**
107 * Resize the frame buffer
108 * @param width width
109 * @param height height
110 */
111 void reshape(int32_t width, int32_t height);
112
113 /**
114 * Disposes this frame buffer
115 */
116 void dispose();
117
118 /**
119 * Enables this frame buffer to be rendered
120 */
121 void enableFrameBuffer();
122
123 /**
124 * Switches back to non offscreen main frame buffer to be rendered
125 */
126 static void disableFrameBuffer();
127
128 /**
129 * Bind depth texture
130 * @param contextIdx context index
131 */
132 void bindDepthBufferTexture(int contextIdx);
133
134 /**
135 * Bind color texture
136 * @param contextIdx context index
137 */
138 void bindColorBufferTexture(int contextIdx);
139
140 /**
141 * Render to screen or bound frame buffer
142 * @param engine engine
143 */
144 inline void renderToScreen(Engine* engine) {
146 }
147
148 /**
149 * Render depth buffer to screen or bound frame buffer
150 * @param engine engine
151 */
152 inline void renderDepthBufferToScreen(Engine* engine) {
154 }
155
156 /**
157 * Do post processing into target frame buffer (which can be screen as well when passing nullptr)
158 * @param engine engine
159 * @param source source frame buffer
160 * @param programId post processing shader id
161 * @param shaderId post processing shader id
162 * @param temporary bind additional temporary frame buffer
163 * @param blendToSource target = blendToSource + source
164 */
165 static void doPostProcessing(Engine* engine, FrameBuffer* target, FrameBuffer* source, const string& programId, const string& shaderId, FrameBuffer* temporary = nullptr, FrameBuffer* blendToSource = nullptr);
166
167};
Engine main class.
Definition: Engine.h:122
Frame buffer class.
Definition: FrameBuffer.h:21
void bindColorBufferTexture(int contextIdx)
Bind color texture.
Definition: FrameBuffer.cpp:97
static constexpr int32_t CUBEMAPTEXTUREINDEX_NEGATIVE_Z
Definition: FrameBuffer.h:35
void reshape(int32_t width, int32_t height)
Resize the frame buffer.
Definition: FrameBuffer.cpp:55
void renderToScreen(Engine *engine, int32_t depthBufferTextureId, int32_t colorBufferTextureId)
Render given depth texture and color buffer texture to screen @parma engine engine.
void initialize()
Initialize the frame buffer.
Definition: FrameBuffer.cpp:33
FrameBuffer(int32_t width, int32_t height, int32_t buffers, int32_t cubeMapTextureId=CUBEMAPTEXTUREID_NONE, int32_t cubeMapTextureIndex=CUBEMAPTEXTUREINDEX_NONE)
Public constructor.
Definition: FrameBuffer.cpp:21
static constexpr int32_t CUBEMAPTEXTUREID_NONE
Definition: FrameBuffer.h:27
static constexpr int32_t CUBEMAPTEXTUREINDEX_NEGATIVE_X
Definition: FrameBuffer.h:30
void renderDepthBufferToScreen(Engine *engine)
Render depth buffer to screen or bound frame buffer.
Definition: FrameBuffer.h:152
void renderToScreen(Engine *engine)
Render to screen or bound frame buffer.
Definition: FrameBuffer.h:144
static void disableFrameBuffer()
Switches back to non offscreen main frame buffer to be rendered.
Definition: FrameBuffer.cpp:85
void enableFrameBuffer()
Enables this frame buffer to be rendered.
Definition: FrameBuffer.cpp:78
static constexpr int32_t FRAMEBUFFER_COLORBUFFER
Definition: FrameBuffer.h:25
int32_t getColorBufferTextureId()
Definition: FrameBuffer.h:97
static constexpr int32_t CUBEMAPTEXTUREINDEX_NONE
Definition: FrameBuffer.h:29
static constexpr int32_t CUBEMAPTEXTUREINDEX_POSITIVE_X
Definition: FrameBuffer.h:31
static void doPostProcessing(Engine *engine, FrameBuffer *target, FrameBuffer *source, const string &programId, const string &shaderId, FrameBuffer *temporary=nullptr, FrameBuffer *blendToSource=nullptr)
Do post processing into target frame buffer (which can be screen as well when passing nullptr)
static constexpr int32_t FRAMEBUFFER_DEPTHBUFFER
Definition: FrameBuffer.h:24
void dispose()
Disposes this frame buffer.
Definition: FrameBuffer.cpp:67
static constexpr int32_t CUBEMAPTEXTUREINDEX_NEGATIVE_Y
Definition: FrameBuffer.h:33
static constexpr int32_t CUBEMAPTEXTUREINDEX_POSITIVE_Y
Definition: FrameBuffer.h:32
static constexpr int32_t CUBEMAPTEXTUREINDEX_POSITIVE_Z
Definition: FrameBuffer.h:34
int32_t getDepthBufferTextureId()
Definition: FrameBuffer.h:90
void bindDepthBufferTexture(int contextIdx)
Bind depth texture.
Definition: FrameBuffer.cpp:92