85 lines
2.7 KiB
C++
85 lines
2.7 KiB
C++
// Copyright (c) 2023 Dominic Masters
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
|
|
#include "FontShader.hpp"
|
|
#include "display/mesh/QuadMesh.hpp"
|
|
|
|
using namespace Dawn;
|
|
|
|
void FontShader::compile() {
|
|
#if DAWN_OPENGL_GLSL
|
|
this->compileShader(
|
|
{
|
|
{ "aPos", 0 },
|
|
{ "aTexCoord", 1 }
|
|
},
|
|
// Vertex Shader
|
|
"#version 330 core\n"
|
|
"layout (location = 0) in vec3 aPos;\n"
|
|
"layout (location = 1) in vec2 aTexCoord;\n"
|
|
|
|
"layout (std140) uniform ub_UICanvas {\n"
|
|
"mat4 u_View;\n"
|
|
"mat4 u_Projection;\n"
|
|
"};"
|
|
|
|
"layout (shared) uniform ub_Font {\n"
|
|
"int u_FontQuadMappings[" MACRO_STRINGIFY(FONT_SHADER_QUADS_MAX) "];\n"
|
|
"int u_FontTextures[" MACRO_STRINGIFY(FONT_SHADER_PARTS_MAX) "];\n"
|
|
"vec4 u_FontColors[" MACRO_STRINGIFY(FONT_SHADER_PARTS_MAX) "];\n"
|
|
"};\n"
|
|
|
|
"uniform mat4 u_Model;\n"
|
|
"out vec2 o_TextCoord;\n"
|
|
"out vec4 o_VertColor;\n"
|
|
"flat out int o_TextIndex;\n"
|
|
|
|
"void main() {\n"
|
|
"gl_Position = u_Projection * u_View * u_Model * vec4(aPos.xy, 0, 1.0);\n"
|
|
"o_TextCoord = vec2(aTexCoord.x, aTexCoord.y);\n"
|
|
"int quadIndex = gl_VertexID / " MACRO_STRINGIFY(QUAD_VERTICE_COUNT) ";\n"
|
|
"int partIndex = u_FontQuadMappings[quadIndex];\n"
|
|
"o_VertColor = u_FontColors[partIndex];\n"
|
|
"o_TextIndex = u_FontTextures[partIndex];\n"
|
|
"}",
|
|
|
|
// Fragment Shader
|
|
"#version 330 core\n"
|
|
"in vec2 o_TextCoord;\n"
|
|
"in vec4 o_VertColor;\n"
|
|
"flat in int o_TextIndex;\n"
|
|
"out vec4 o_Color;\n"
|
|
"uniform sampler2D u_Text0;\n"
|
|
"uniform sampler2D u_Text1;\n"
|
|
"uniform sampler2D u_Text2;\n"
|
|
"uniform sampler2D u_Text3;\n"
|
|
|
|
"void main() {\n"
|
|
"o_Color = o_VertColor;\n"
|
|
"vec4 tColor;"
|
|
"if(o_TextIndex == 0) \n{"
|
|
"tColor = texture(u_Text0, o_TextCoord);\n"
|
|
"} else if(o_TextIndex == 1) \n{"
|
|
"tColor = texture(u_Text1, o_TextCoord);\n"
|
|
"} else if(o_TextIndex == 2) \n{"
|
|
"tColor = texture(u_Text2, o_TextCoord);\n"
|
|
"} else {\n"
|
|
"tColor = texture(u_Text3, o_TextCoord);\n"
|
|
"}\n"
|
|
"o_Color.a *= tColor.r;\n"
|
|
"}\n"
|
|
);
|
|
#else
|
|
#error Shader Type unknown
|
|
#endif
|
|
|
|
this->paramModel = this->getParameterByName("u_Model");
|
|
this->bufferUiCanvas = this->getBufferLocationByName("ub_UICanvas");
|
|
this->bufferFont = this->getBufferLocationByName("ub_Font");
|
|
this->paramTexture0 = this->getParameterByName("u_Text0");
|
|
this->paramTexture1 = this->getParameterByName("u_Text1");
|
|
this->paramTexture2 = this->getParameterByName("u_Text2");
|
|
this->paramTexture3 = this->getParameterByName("u_Text3");
|
|
} |