Prepping UI Label
This commit is contained in:
@ -51,7 +51,7 @@ std::vector<std::shared_ptr<IRenderPass>> UICanvas::getPasses(
|
|||||||
auto component = *itComponents;
|
auto component = *itComponents;
|
||||||
|
|
||||||
// Get this components' quads.
|
// Get this components' quads.
|
||||||
auto quads = component->getQuads(glm::mat4(1.0));
|
auto quads = component->getQuads({ 0, 0 });
|
||||||
for(auto quad : quads) {
|
for(auto quad : quads) {
|
||||||
data.quads[quadCount++] = quad;
|
data.quads[quadCount++] = quad;
|
||||||
assertTrue(quadCount <= UI_SHADER_QUAD_COUNT, "Too many UI quads!");
|
assertTrue(quadCount <= UI_SHADER_QUAD_COUNT, "Too many UI quads!");
|
||||||
@ -68,7 +68,8 @@ std::vector<std::shared_ptr<IRenderPass>> UICanvas::getPasses(
|
|||||||
textures,
|
textures,
|
||||||
mesh,
|
mesh,
|
||||||
MeshDrawMode::TRIANGLES,
|
MeshDrawMode::TRIANGLES,
|
||||||
0, quadCount * QUAD_INDICE_COUNT
|
0,
|
||||||
|
quadCount * QUAD_INDICE_COUNT
|
||||||
);
|
);
|
||||||
passes.push_back(pass);
|
passes.push_back(pass);
|
||||||
|
|
||||||
|
@ -7,4 +7,5 @@ target_sources(${DAWN_TARGET_NAME}
|
|||||||
PRIVATE
|
PRIVATE
|
||||||
UIComponent.cpp
|
UIComponent.cpp
|
||||||
UIRectangle.cpp
|
UIRectangle.cpp
|
||||||
|
UILabel.cpp
|
||||||
)
|
)
|
@ -11,22 +11,10 @@ std::vector<std::shared_ptr<UIComponent>> UIComponent::getChildren() {
|
|||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<struct UIShaderQuad> UIComponent::getQuads(
|
std::vector<struct UIShaderQuad> UIComponent::getQuads(const glm::vec2 parent) {
|
||||||
const glm::mat4 parent
|
glm::vec2 transform = parent + position;
|
||||||
) {
|
|
||||||
// Get self transform
|
|
||||||
glm::mat4 transform = glm::translate(
|
|
||||||
glm::mat4(1.0f),
|
|
||||||
glm::vec3(position, 0.0f)
|
|
||||||
);
|
|
||||||
|
|
||||||
// Add parent transform
|
|
||||||
transform = parent * transform;
|
|
||||||
|
|
||||||
// Get self quads and insert new transform.
|
|
||||||
std::vector<struct UIShaderQuad> quads = this->getSelfQuads(transform);
|
std::vector<struct UIShaderQuad> quads = this->getSelfQuads(transform);
|
||||||
|
|
||||||
// Get children
|
|
||||||
auto children = getChildren();
|
auto children = getChildren();
|
||||||
for(auto &c : children) {
|
for(auto &c : children) {
|
||||||
auto childQuads = c->getQuads(transform);
|
auto childQuads = c->getQuads(transform);
|
||||||
|
@ -13,14 +13,12 @@ namespace Dawn {
|
|||||||
class UIComponent {
|
class UIComponent {
|
||||||
protected:
|
protected:
|
||||||
virtual std::vector<struct UIShaderQuad> getSelfQuads(
|
virtual std::vector<struct UIShaderQuad> getSelfQuads(
|
||||||
const glm::mat4 transform
|
const glm::vec2 t
|
||||||
) = 0;
|
) = 0;
|
||||||
|
|
||||||
virtual std::vector<std::shared_ptr<UIComponent>> getChildren();
|
virtual std::vector<std::shared_ptr<UIComponent>> getChildren();
|
||||||
|
|
||||||
std::vector<struct UIShaderQuad> getQuads(
|
std::vector<struct UIShaderQuad> getQuads(const glm::vec2 parent);
|
||||||
const glm::mat4 parent
|
|
||||||
);
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
glm::vec2 position;
|
glm::vec2 position;
|
||||||
|
38
src/dawn/ui/UILabel.cpp
Normal file
38
src/dawn/ui/UILabel.cpp
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
// Copyright (c) 2023 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#include "UILabel.hpp"
|
||||||
|
|
||||||
|
using namespace Dawn;
|
||||||
|
|
||||||
|
std::vector<struct UIShaderQuad> UILabel::getSelfQuads(const glm::vec2 t) {
|
||||||
|
std::vector<struct UIShaderQuad> quads;
|
||||||
|
if(this->texture == nullptr) return quads;
|
||||||
|
|
||||||
|
const std::wstring text = L"Hello World!";
|
||||||
|
glm::vec2 position = t;
|
||||||
|
glm::vec4 quad;
|
||||||
|
|
||||||
|
for(wchar_t c : text) {
|
||||||
|
auto info = texture->getCharacterData(c);
|
||||||
|
quads.push_back({
|
||||||
|
.quad = {
|
||||||
|
position.x,
|
||||||
|
position.y,
|
||||||
|
position.x + info.size.x,
|
||||||
|
position.y + info.size.y
|
||||||
|
},
|
||||||
|
.uv = info.quad,
|
||||||
|
.color = COLOR_WHITE
|
||||||
|
});
|
||||||
|
position += info.advance;
|
||||||
|
}
|
||||||
|
|
||||||
|
return quads;
|
||||||
|
}
|
||||||
|
|
||||||
|
void UILabel::setFont(std::shared_ptr<TrueTypeTexture> texture) {
|
||||||
|
this->texture = texture;
|
||||||
|
}
|
21
src/dawn/ui/UILabel.hpp
Normal file
21
src/dawn/ui/UILabel.hpp
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
// Copyright (c) 2023 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
#include "ui/UIComponent.hpp"
|
||||||
|
#include "display/font/TrueTypeTexture.hpp"
|
||||||
|
|
||||||
|
namespace Dawn {
|
||||||
|
class UILabel final : public UIComponent {
|
||||||
|
private:
|
||||||
|
std::shared_ptr<TrueTypeTexture> texture = nullptr;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
std::vector<struct UIShaderQuad> getSelfQuads(const glm::vec2 t) override;
|
||||||
|
|
||||||
|
public:
|
||||||
|
void setFont(std::shared_ptr<TrueTypeTexture> texture);
|
||||||
|
};
|
||||||
|
}
|
@ -7,13 +7,10 @@
|
|||||||
|
|
||||||
using namespace Dawn;
|
using namespace Dawn;
|
||||||
|
|
||||||
std::vector<struct UIShaderQuad> UIRectangle::getSelfQuads(
|
std::vector<struct UIShaderQuad> UIRectangle::getSelfQuads(const glm::vec2 t) {
|
||||||
const glm::mat4 transform
|
|
||||||
) {
|
|
||||||
std::vector<struct UIShaderQuad> quads;
|
std::vector<struct UIShaderQuad> quads;
|
||||||
quads.push_back({
|
quads.push_back({
|
||||||
transform,
|
glm::vec4(t, t + size),
|
||||||
glm::vec4(0, 0, size.x, size.y),
|
|
||||||
uv,
|
uv,
|
||||||
color
|
color
|
||||||
});
|
});
|
||||||
|
@ -9,9 +9,7 @@
|
|||||||
namespace Dawn {
|
namespace Dawn {
|
||||||
class UIRectangle final : public UIComponent {
|
class UIRectangle final : public UIComponent {
|
||||||
protected:
|
protected:
|
||||||
std::vector<struct UIShaderQuad> getSelfQuads(
|
std::vector<struct UIShaderQuad> getSelfQuads(const glm::vec2 t) override;
|
||||||
const glm::mat4 transform
|
|
||||||
) override;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
struct Color color = COLOR_WHITE;
|
struct Color color = COLOR_WHITE;
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
|
|
||||||
#include "component/ui/UICanvas.hpp"
|
#include "component/ui/UICanvas.hpp"
|
||||||
#include "ui/UIRectangle.hpp"
|
#include "ui/UIRectangle.hpp"
|
||||||
|
#include "ui/UILabel.hpp"
|
||||||
|
|
||||||
#include <ft2build.h>
|
#include <ft2build.h>
|
||||||
#include FT_FREETYPE_H
|
#include FT_FREETYPE_H
|
||||||
@ -21,7 +22,7 @@ using namespace Dawn;
|
|||||||
std::shared_ptr<TrueTypeTexture> texture;
|
std::shared_ptr<TrueTypeTexture> texture;
|
||||||
|
|
||||||
void Dawn::helloWorldScene(Scene &s) {
|
void Dawn::helloWorldScene(Scene &s) {
|
||||||
texture = s.getGame()->assetManager.get<TrueTypeTexture>("ysabeau_regular", 32);
|
texture = s.getGame()->assetManager.get<TrueTypeTexture>("ysabeau_regular", 16);
|
||||||
|
|
||||||
while(!s.getGame()->assetManager.isLoaded("ysabeau_regular")) {
|
while(!s.getGame()->assetManager.isLoaded("ysabeau_regular")) {
|
||||||
s.getGame()->assetManager.update();
|
s.getGame()->assetManager.update();
|
||||||
@ -48,16 +49,15 @@ void Dawn::helloWorldScene(Scene &s) {
|
|||||||
// auto quadMaterial = quad->addComponent<SimpleTexturedMaterial>();
|
// auto quadMaterial = quad->addComponent<SimpleTexturedMaterial>();
|
||||||
// quadMaterial->setTexture(texture->texture);
|
// quadMaterial->setTexture(texture->texture);
|
||||||
|
|
||||||
|
|
||||||
auto uiCanvasItem = s.createSceneItem();
|
auto uiCanvasItem = s.createSceneItem();
|
||||||
auto uiCanvas = uiCanvasItem->addComponent<UICanvas>();
|
auto uiCanvas = uiCanvasItem->addComponent<UICanvas>();
|
||||||
|
|
||||||
auto rect = std::make_shared<UIRectangle>();
|
auto rect = std::make_shared<UIRectangle>();
|
||||||
rect->position = { -32, -32 };
|
rect->position = { -32, -32 };
|
||||||
|
rect->color = COLOR_MAGENTA;
|
||||||
uiCanvas->components.push_back(rect);
|
uiCanvas->components.push_back(rect);
|
||||||
|
|
||||||
auto rect2 = std::make_shared<UIRectangle>();
|
auto label = std::make_shared<UILabel>();
|
||||||
rect2->color = COLOR_MAGENTA;
|
label->setFont(texture);
|
||||||
rect2->position = { 10, 10 };
|
uiCanvas->components.push_back(label);
|
||||||
uiCanvas->components.push_back(rect2);
|
|
||||||
}
|
}
|
@ -30,7 +30,6 @@ void UIShader::getStages(
|
|||||||
"uniform mat4 u_View;\n"
|
"uniform mat4 u_View;\n"
|
||||||
"uniform mat4 u_Model;\n"
|
"uniform mat4 u_Model;\n"
|
||||||
"struct UIShaderQuad {\n"
|
"struct UIShaderQuad {\n"
|
||||||
"mat4 transform;\n"
|
|
||||||
"vec4 quad;\n"
|
"vec4 quad;\n"
|
||||||
"vec4 uv;\n"
|
"vec4 uv;\n"
|
||||||
"vec4 color;\n"
|
"vec4 color;\n"
|
||||||
@ -70,7 +69,7 @@ void UIShader::getStages(
|
|||||||
"}\n"
|
"}\n"
|
||||||
"pos.z = 0;\n"
|
"pos.z = 0;\n"
|
||||||
"pos.w = 1;\n"
|
"pos.w = 1;\n"
|
||||||
"gl_Position = u_Projection * u_View * u_Model * quad.transform * pos;\n"
|
"gl_Position = u_Projection * u_View * u_Model * pos;\n"
|
||||||
"o_TextCoord = coord;\n"
|
"o_TextCoord = coord;\n"
|
||||||
"v_Color = quad.color;\n"
|
"v_Color = quad.color;\n"
|
||||||
"}"
|
"}"
|
||||||
@ -120,12 +119,6 @@ void UIShader::getStages(
|
|||||||
&rel->quads,
|
&rel->quads,
|
||||||
ShaderOpenGLStructureType::STD140,
|
ShaderOpenGLStructureType::STD140,
|
||||||
[&](const struct UIShaderQuad &rel, std::vector<struct ShaderParameter> ¶meters) {
|
[&](const struct UIShaderQuad &rel, std::vector<struct ShaderParameter> ¶meters) {
|
||||||
parameters.push_back(ShaderParameter(
|
|
||||||
"u_Transform",
|
|
||||||
&rel.transform,
|
|
||||||
ShaderParameterType::MAT4
|
|
||||||
));
|
|
||||||
|
|
||||||
parameters.push_back(ShaderParameter(
|
parameters.push_back(ShaderParameter(
|
||||||
"u_Quad",
|
"u_Quad",
|
||||||
&rel.quad,
|
&rel.quad,
|
||||||
@ -144,6 +137,6 @@ void UIShader::getStages(
|
|||||||
ShaderParameterType::COLOR
|
ShaderParameterType::COLOR
|
||||||
));
|
));
|
||||||
},
|
},
|
||||||
2
|
UI_SHADER_QUAD_COUNT
|
||||||
));
|
));
|
||||||
}
|
}
|
@ -10,7 +10,6 @@ namespace Dawn {
|
|||||||
#define UI_SHADER_QUAD_COUNT 32
|
#define UI_SHADER_QUAD_COUNT 32
|
||||||
|
|
||||||
struct UIShaderQuad {
|
struct UIShaderQuad {
|
||||||
glm::mat4 transform;
|
|
||||||
glm::vec4 quad;
|
glm::vec4 quad;
|
||||||
glm::vec4 uv;
|
glm::vec4 uv;
|
||||||
struct Color color;
|
struct Color color;
|
||||||
|
Reference in New Issue
Block a user