diff --git a/src/dawn/display/font/TrueTypeTexture.cpp b/src/dawn/display/font/TrueTypeTexture.cpp index 7b85f745..ffc7ee91 100644 --- a/src/dawn/display/font/TrueTypeTexture.cpp +++ b/src/dawn/display/font/TrueTypeTexture.cpp @@ -6,6 +6,7 @@ #include "TrueTypeTexture.hpp" #include "assert/assert.hpp" #include "util/Math.hpp" +#include "display/mesh/QuadMesh.hpp" using namespace Dawn; @@ -129,5 +130,66 @@ struct TrueTypeCharacter TrueTypeTexture::getCharacterData(wchar_t c) { return this->characterData[c]; } +glm::vec2 TrueTypeTexture::bufferStringToMesh( + std::shared_ptr mesh, + const std::wstring text, + glm::vec2 position, + bool_t flipY +) { + assertNotNull(mesh, "Mesh must be supplied and not null"); + assertTrue(text.size() > 0, "Text must be at least one character long."); + + // Create mesh buffers + mesh->createBuffers( + text.length() * QUAD_VERTICE_COUNT, + text.length() * QUAD_INDICE_COUNT + ); + + // Foreach char + size_t i = 0; + glm::vec2 size = { 0, 0 }; + for(wchar_t c : text) { + // Get the character data + auto info = this->getCharacterData(c); + + // Buffer the quad + glm::vec4 quad = glm::vec4( + position.x, + position.y, + position.x + info.size.x, + position.y + info.size.y + ); + if(flipY) { + QuadMesh::buffer( + mesh, + quad, + glm::vec4( + info.quad.x, + info.quad.w, + info.quad.z, + info.quad.y + ), + i * QUAD_VERTICE_COUNT, + i * QUAD_INDICE_COUNT + ); + } else { + QuadMesh::buffer( + mesh, + quad, + info.quad, + i * QUAD_VERTICE_COUNT, + i * QUAD_INDICE_COUNT + ); + } + position += info.advance; + size += info.advance; + + // Increment i + i++; + } + + return size; +} + TrueTypeTexture::~TrueTypeTexture() { } \ No newline at end of file diff --git a/src/dawn/display/font/TrueTypeTexture.hpp b/src/dawn/display/font/TrueTypeTexture.hpp index 169d8e61..c63f8fff 100644 --- a/src/dawn/display/font/TrueTypeTexture.hpp +++ b/src/dawn/display/font/TrueTypeTexture.hpp @@ -6,6 +6,7 @@ #pragma once #include "display/Texture.hpp" #include "TrueTypeCharacter.hpp" +#include "display/mesh/Mesh.hpp" #include #include FT_FREETYPE_H @@ -41,6 +42,22 @@ namespace Dawn { */ struct TrueTypeCharacter getCharacterData(wchar_t c); + /** + * Buffers a string to the given mesh. + * + * @param mesh Mesh to buffer to. + * @param text Text to buffer. + * @param position Position to buffer to. + * @param flipY Whether or not to flip the Y axis. + * @return The size of the string. + */ + glm::vec2 bufferStringToMesh( + std::shared_ptr mesh, + const std::wstring text, + glm::vec2 &position, + bool_t flipY = false + ); + /** * Destroys this true type face texture. */ diff --git a/src/dawnhelloworld/scene/HelloWorldScene.cpp b/src/dawnhelloworld/scene/HelloWorldScene.cpp index 18e1e414..b7a15edd 100644 --- a/src/dawnhelloworld/scene/HelloWorldScene.cpp +++ b/src/dawnhelloworld/scene/HelloWorldScene.cpp @@ -18,7 +18,7 @@ using namespace Dawn; std::shared_ptr texture; void Dawn::helloWorldScene(Scene &s) { - texture = s.getGame()->assetManager.get("ysabeau_regular", 12); + texture = s.getGame()->assetManager.get("ysabeau_regular", 32); while(!s.getGame()->assetManager.isLoaded("ysabeau_regular")) { s.getGame()->assetManager.update(); @@ -26,18 +26,19 @@ void Dawn::helloWorldScene(Scene &s) { auto cameraItem = s.createSceneItem(); auto camera = cameraItem->addComponent(); - cameraItem->lookAt({ 5, 5, 5 }, { 0, 0, 0 }, { 0, 1, 0 }); + cameraItem->lookAt({ 120, 120, 120 }, { 0, 0, 0 }, { 0, 1, 0 }); auto quad = s.createSceneItem(); auto quadMesh = std::make_shared(); - quadMesh->createBuffers(QUAD_VERTICE_COUNT, QUAD_INDICE_COUNT); - QuadMesh::buffer( + + glm::vec2 position = { 0, 0 }; + glm::vec2 size = texture->bufferStringToMesh( quadMesh, - glm::vec4(-1, -1, 1, 1), - glm::vec4(0, 1, 1, 0), - 0, - 0 + L"Hello World!", + position, + true ); + auto quadRenderer = quad->addComponent(); quadRenderer->mesh = quadMesh; diff --git a/src/dawnopengl/display/mesh/Mesh.cpp b/src/dawnopengl/display/mesh/Mesh.cpp index 3d3e76d9..d1959f10 100644 --- a/src/dawnopengl/display/mesh/Mesh.cpp +++ b/src/dawnopengl/display/mesh/Mesh.cpp @@ -16,6 +16,12 @@ void Mesh::createBuffers( assertTrue(verticeCount > 0, "Vertice count must be greater than zero."); assertTrue(indiceCount > 0, "Indice count must be greater than zero."); + // Can we re-use the buffers? + if( + verticeCount <= this->verticeCount && + indiceCount <= this->indiceCount + ) return; + this->disposeBuffers(); this->verticeCount = verticeCount;