TDME2 1.9.121
Texture2DRenderShader.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
9
12
21
22Texture2DRenderShader::Texture2DRenderShader(Renderer* renderer)
23{
24 this->renderer = renderer;
25 initialized = false;
26 isRunning = false;
27}
28
30{
31 Engine::getInstance()->getVBOManager()->removeVBO("texture2d_render_shader.vbo");
32}
33
35{
36 return initialized;
37}
38
40{
41 auto shaderVersion = renderer->getShaderVersion();
44 "shader/" + shaderVersion + "/texture2D",
45 "render_vertexshader.vert"
46 );
47 if (vertexShaderId == 0) return;
48
51 "shader/" + shaderVersion + "/texture2D",
52 "render_fragmentshader.frag"
53 );
54 if (fragmentShaderId == 0) return;
55
62 }
63 if (renderer->linkProgram(programId) == false) return;
64
65 // uniforms
67 if (uniformTextureUnit == -1) return;
68
69 // create vbos
70 auto created = false;
71 auto vboManaged = Engine::getInstance()->getVBOManager()->addVBO("texture2d_render_shader.vbo", 2, false, false, created);
72 vboVertices = (*vboManaged->getVBOIds())[0];
73 vboTextureCoordinates = (*vboManaged->getVBOIds())[1];
74
75 //
76 initialized = true;
77}
78
80{
81 auto contextIdx = renderer->CONTEXTINDEX_DEFAULT;
82 renderer->useProgram(contextIdx, programId);
85 isRunning = true;
86}
87
89{
90 isRunning = false;
91}
92
93void Texture2DRenderShader::renderTexture(Engine* engine, const Vector2& position, const Vector2& dimension, int textureId, int width, int height) {
94 //
95 auto contextIdx = renderer->CONTEXTINDEX_DEFAULT;
96
97 //
98 auto screenWidth = width != -1?width:(engine->getScaledWidth() == -1?engine->getWidth():engine->getScaledWidth());
99 auto screenHeight = height != -1?height:(engine->getScaledHeight() == -1?engine->getHeight():engine->getScaledHeight());
100 float textureLeft = position.getX();
101 float textureTop = position.getY();
102 float textureWidth = dimension.getX();
103 float textureHeight = dimension.getY();
104
105 //
106 auto x0 = ((textureLeft) / (screenWidth / 2.0f)) - 1.0f;
107 auto y0 = ((screenHeight - textureTop) / (screenHeight / 2.0f)) - 1.0f;
108 auto x1 = ((textureLeft + textureWidth) / (screenWidth / 2.0f)) - 1.0f;
109 auto y1 = ((screenHeight - textureTop) / (screenHeight / 2.0f)) - 1.0f;
110 auto x2 = ((textureLeft + textureWidth) / (screenWidth / 2.0f)) - 1.0f;
111 auto y2 = ((screenHeight - textureTop - textureHeight) / (screenHeight / 2.0f)) - 1.0f;
112 auto x3 = ((textureLeft) / (screenWidth / 2.0f)) - 1.0f;
113 auto y3 = ((screenHeight - textureTop - textureHeight) / (screenHeight / 2.0f)) - 1.0f;
114
115 // texture coordinates
116 {
117 auto fbTextureCoordinates = ObjectBuffer::getByteBuffer(contextIdx, 6 * 2 * sizeof(float))->asFloatBuffer();
118
119 if (renderer->getRendererType() == Renderer::RENDERERTYPE_VULKAN) {
120 fbTextureCoordinates.put(+0.0f); fbTextureCoordinates.put(0.0f);
121 fbTextureCoordinates.put(+1.0f); fbTextureCoordinates.put(0.0f);
122 fbTextureCoordinates.put(+1.0f); fbTextureCoordinates.put(1.0f);
123
124 fbTextureCoordinates.put(+1.0f); fbTextureCoordinates.put(1.0f);
125 fbTextureCoordinates.put(+0.0f); fbTextureCoordinates.put(1.0f);
126 fbTextureCoordinates.put(+0.0f); fbTextureCoordinates.put(0.0f);
127 } else {
128 fbTextureCoordinates.put(+0.0f); fbTextureCoordinates.put(+1.0f);
129 fbTextureCoordinates.put(+1.0f); fbTextureCoordinates.put(+1.0f);
130 fbTextureCoordinates.put(+1.0f); fbTextureCoordinates.put(0.0f);
131
132 fbTextureCoordinates.put(+1.0f); fbTextureCoordinates.put(0.0f);
133 fbTextureCoordinates.put(+0.0f); fbTextureCoordinates.put(0.0f);
134 fbTextureCoordinates.put(+0.0f); fbTextureCoordinates.put(+1.0f);
135 }
136
137 renderer->uploadBufferObject(contextIdx, vboTextureCoordinates, fbTextureCoordinates.getPosition() * sizeof(float), &fbTextureCoordinates);
138 }
139
140 // vertices
141 {
142 auto fbVertices = ObjectBuffer::getByteBuffer(contextIdx, 6 * 3 * sizeof(float))->asFloatBuffer();
143
144 fbVertices.put(x0); fbVertices.put(y0); fbVertices.put(0.0f);
145 fbVertices.put(x1); fbVertices.put(y1); fbVertices.put(0.0f);
146 fbVertices.put(x2); fbVertices.put(y2); fbVertices.put(0.0f);
147
148 fbVertices.put(x2); fbVertices.put(y2); fbVertices.put(0.0f);
149 fbVertices.put(x3); fbVertices.put(y3); fbVertices.put(0.0f);
150 fbVertices.put(x0); fbVertices.put(y0); fbVertices.put(0.0f);
151
152 renderer->uploadBufferObject(contextIdx, vboVertices, fbVertices.getPosition() * sizeof(float), &fbVertices);
153 }
154
155 // disable culling
157 renderer->disableCulling(contextIdx);
158
159 // use program
160 useProgram();
161
162 // bind color buffer texture
163 renderer->setTextureUnit(contextIdx, 0);
164 renderer->bindTexture(contextIdx, textureId);
165
166 //
169
170 // draw
171 renderer->drawTrianglesFromBufferObjects(contextIdx, 2, 0);
172
173 // unbind buffers
174 renderer->unbindBufferObjects(contextIdx);
175
176 // unbind texture
177 renderer->bindTexture(contextIdx, renderer->ID_NONE);
178
179 // unuse program
180 unUseProgram();
181
182 // enabe culling
183 renderer->enableCulling(contextIdx);
185
186}
Engine main class.
Definition: Engine.h:122
int32_t getWidth()
Definition: Engine.h:865
int32_t getHeight()
Definition: Engine.h:872
int32_t getScaledWidth()
Definition: Engine.h:879
static Engine * getInstance()
Returns engine instance.
Definition: Engine.h:554
static VBOManager * getVBOManager()
Definition: Engine.h:572
int32_t getScaledHeight()
Definition: Engine.h:886
VBOManager_VBOManaged * addVBO(const string &vboId, int32_t ids, bool useGPUMemory, bool shared, bool &created)
Adds a VBO to manager or retrieve VBO if existing.
Definition: VBOManager.cpp:31
void removeVBO(const string &vboId)
Removes a VBO from manager.
Definition: VBOManager.cpp:73
virtual void setTextureUnit(int contextIdx, int32_t textureUnit)=0
Sets up texture unit.
virtual int32_t loadShader(int32_t type, const string &pathName, const string &fileName, const string &definitions=string(), const string &functions=string())=0
Loads a shader.
virtual void enableCulling(int contextIdx)=0
Enable culling.
virtual void unbindBufferObjects(int contextIdx)=0
Unbind buffer objects.
virtual int32_t createProgram(int type)=0
Creates a shader program.
virtual void setProgramAttributeLocation(int32_t programId, int32_t location, const string &name)=0
Bind attribute to a input location.
virtual void enableBlending()=0
Enables blending.
virtual void disableBlending()=0
Disables blending.
virtual void setProgramUniformInteger(int contextIdx, int32_t uniformId, int32_t value)=0
Set up a integer uniform value.
virtual bool linkProgram(int32_t programId)=0
Links attached shaders to a program.
virtual void bindTexture(int contextIdx, int32_t textureId)=0
Binds a texture with given id or unbinds when using ID_NONE.
void setLighting(int contextIdx, int32_t lighting)
Set current lighting model.
Definition: Renderer.h:503
virtual void attachShaderToProgram(int32_t programId, int32_t shaderId)=0
Attaches a shader to a program.
virtual int32_t getProgramUniformLocation(int32_t programId, const string &name)=0
Returns location of given uniform variable.
virtual void drawTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset)=0
Draw triangles from buffer objects.
virtual void disableCulling(int contextIdx)=0
Disable culling.
virtual void uploadBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, FloatBuffer *data)=0
Uploads buffer data to buffer object.
virtual void bindTextureCoordinatesBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind texture coordinates buffer object.
virtual void useProgram(int contextIdx, int32_t programId)=0
Use shader program.
virtual void bindVerticesBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind vertices buffer object.
Buffers used to transfer data between main memory to graphics board memory.
Definition: ObjectBuffer.h:23
void renderTexture(Engine *engine, const Vector2 &position, const Vector2 &dimension, int textureId, int width=-1, int height=-1)
Render texture.
2D vector 2 class
Definition: Vector2.h:19
float getY() const
Definition: Vector2.h:111
float getX() const
Definition: Vector2.h:94
Byte buffer class.
Definition: ByteBuffer.h:24
Float buffer class.
Definition: FloatBuffer.h:18