From dd83f2cefa8bec5946e34e2db575d9508104a958 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Tue, 24 Jan 2023 14:49:31 -0800 Subject: [PATCH] Keep on improving fonts. --- lib/SDL | 2 +- src/dawn/display/font/TrueTypeFont.cpp | 15 ++++-- src/dawn/prefabs/SimpleSpinningCubePrefab.hpp | 38 +++++++++++++ src/dawn/ui/UILabel.cpp | 2 +- .../visualnovel/ui/VisualNovelTextbox.cpp | 1 - src/dawnpokergame/game/DawnGame.cpp | 3 +- src/dawnpokergame/scenes/CMakeLists.txt | 1 + src/dawnpokergame/scenes/TestUIScene.cpp | 54 +++++++++++++++++++ src/dawnpokergame/scenes/TestUIScene.hpp | 25 +++++++++ 9 files changed, 133 insertions(+), 8 deletions(-) create mode 100644 src/dawn/prefabs/SimpleSpinningCubePrefab.hpp create mode 100644 src/dawnpokergame/scenes/TestUIScene.cpp create mode 100644 src/dawnpokergame/scenes/TestUIScene.hpp diff --git a/lib/SDL b/lib/SDL index 7b8f0ba8..9670f233 160000 --- a/lib/SDL +++ b/lib/SDL @@ -1 +1 @@ -Subproject commit 7b8f0ba8b796a13a1610cdd323cc8b1f540f5f6a +Subproject commit 9670f233cc42089689212374d3c2cc691cb7f5ea diff --git a/src/dawn/display/font/TrueTypeFont.cpp b/src/dawn/display/font/TrueTypeFont.cpp index 2dcf9f5d..a99d388b 100644 --- a/src/dawn/display/font/TrueTypeFont.cpp +++ b/src/dawn/display/font/TrueTypeFont.cpp @@ -37,17 +37,17 @@ float_t TrueTypeFont::getScale(float_t scale) { float_t TrueTypeFont::getSpaceSize(float_t fontSize) { assertTrue(fontSize > 0); - return mathRound(this->getScale(fontSize) * 18); + return this->getScale(fontSize) * 18; } float_t TrueTypeFont::getInitialLineHeight(float_t fontSize) { assertTrue(fontSize > 0); - return mathRound(42.0f * this->getScale(fontSize)); + return 42.0f * this->getScale(fontSize); } float_t TrueTypeFont::getLineHeight(float_t fontSize) { assertTrue(fontSize > 0); - return mathRound(58.0f * this->getScale(fontSize)); + return 96.0f * this->getScale(fontSize); } void TrueTypeFont::buffer( @@ -105,7 +105,14 @@ void TrueTypeFont::buffer( // Setup the initial loop state, and X/Y coords for the quad. int32_t i = 0; float_t x = 0; - float_t y = this->getInitialLineHeight(fontSize) / scale; + float_t y = 0; + + // Bake the first quad. + this->bakeQuad(quads, &x, &y, 'D'); + y = -(quads->y0); + x = 0; + + // y = this->getInitialLineHeight(fontSize) / scale; float_t wordX = 0; char c; while(c = text[i++]) { diff --git a/src/dawn/prefabs/SimpleSpinningCubePrefab.hpp b/src/dawn/prefabs/SimpleSpinningCubePrefab.hpp new file mode 100644 index 00000000..06cf45e6 --- /dev/null +++ b/src/dawn/prefabs/SimpleSpinningCubePrefab.hpp @@ -0,0 +1,38 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "prefab/SceneItemPrefab.hpp" +#include "display/mesh/CubeMesh.hpp" +#include "scene/components/display/MeshRenderer.hpp" +#include "scene/components/display/MeshHost.hpp" +#include "scene/components/display/material/SimpleTexturedMaterial.hpp" +#include "scene/components/example/ExampleSpin.hpp" + +namespace Dawn { + class SimpleSpinningCubePrefab : + public SceneItemPrefab + { + public: + std::vector prefabAssets(AssetManager *man) { + return std::vector(); + } + + SimpleSpinningCubePrefab(Scene *s, sceneitemid_t i) : + SceneItemPrefab(s, i) + { + } + + void prefabInit(AssetManager *man) override { + auto meshRenderer = this->addComponent(); + auto meshHost = this->addComponent(); + auto spinning = this->addComponent(); + auto material = this->addComponent(); + + meshHost->mesh.createBuffers(CUBE_VERTICE_COUNT, CUBE_INDICE_COUNT); + CubeMesh::buffer(&meshHost->mesh, glm::vec3(-0.5f, -0.5f, -0.5f), glm::vec3(1, 1, 1), 0, 0); + } + }; +} \ No newline at end of file diff --git a/src/dawn/ui/UILabel.cpp b/src/dawn/ui/UILabel.cpp index b10c2b6a..d59a9260 100644 --- a/src/dawn/ui/UILabel.cpp +++ b/src/dawn/ui/UILabel.cpp @@ -91,7 +91,7 @@ std::vector UILabel::getSelfPassItems( this->z ); item.start = this->startQuad * QUAD_INDICE_COUNT; - item.count = this->quadCount * QUAD_INDICE_COUNT; + item.count = this->quadCount == -1 ? -1 : this->quadCount * QUAD_INDICE_COUNT; items.push_back(item); return items; } diff --git a/src/dawn/visualnovel/ui/VisualNovelTextbox.cpp b/src/dawn/visualnovel/ui/VisualNovelTextbox.cpp index 2b4334dd..01c71c14 100644 --- a/src/dawn/visualnovel/ui/VisualNovelTextbox.cpp +++ b/src/dawn/visualnovel/ui/VisualNovelTextbox.cpp @@ -135,7 +135,6 @@ void VisualNovelTextbox::textboxOnSceneUpdate() { } } - if(this->talkSound != nullptr) { auto vnManager = this->getVisualNovelManager(); assertNotNull(vnManager); diff --git a/src/dawnpokergame/game/DawnGame.cpp b/src/dawnpokergame/game/DawnGame.cpp index ba89c229..c834141c 100644 --- a/src/dawnpokergame/game/DawnGame.cpp +++ b/src/dawnpokergame/game/DawnGame.cpp @@ -6,6 +6,7 @@ #include "DawnGame.hpp" #include "scenes/SubSceneRendererScene.hpp" #include "scenes/Scene_1.hpp" +#include "scenes/TestUIScene.hpp" using namespace Dawn; @@ -25,7 +26,7 @@ int32_t DawnGame::init() { this->renderManager.init(); this->audioManager.init(); - this->scene = new Scene_1(this); + this->scene = new TestUIScene(this); return DAWN_GAME_INIT_RESULT_SUCCESS; } diff --git a/src/dawnpokergame/scenes/CMakeLists.txt b/src/dawnpokergame/scenes/CMakeLists.txt index 6e74ccfc..95a37a3b 100644 --- a/src/dawnpokergame/scenes/CMakeLists.txt +++ b/src/dawnpokergame/scenes/CMakeLists.txt @@ -8,4 +8,5 @@ target_sources(${DAWN_TARGET_NAME} PRIVATE PixelVNScene.cpp PokerVNScene.cpp + TestUIScene.cpp ) \ No newline at end of file diff --git a/src/dawnpokergame/scenes/TestUIScene.cpp b/src/dawnpokergame/scenes/TestUIScene.cpp new file mode 100644 index 00000000..7c7060e3 --- /dev/null +++ b/src/dawnpokergame/scenes/TestUIScene.cpp @@ -0,0 +1,54 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "TestUIScene.hpp" + +using namespace Dawn; + +TestUIScene::TestUIScene(DawnGame *game) : Scene(game) { + +} + +std::vector TestUIScene::getRequiredAssets() { + std::vector assets; + AssetManager *man = &this->game->assetManager; + assets.push_back(man->get("truetype_alice")); + assets.push_back(man->get("texture_test")); + return assets; +} + +void TestUIScene::stage() { + AssetManager *man = &this->game->assetManager; + + // Camera + this->camera = Camera::create(this); + this->camera->transform->lookAt(glm::vec3(3, 3, 3), glm::vec3(0, 0, 0)); + + auto testCube = SimpleSpinningCubePrefab::create(this); + + // UI + this->canvas = UICanvas::create(this); + + // auto text = man->get("texture_test"); + // auto border = this->canvas->addElement(); + // border->texture = &text->texture; + // border->setBorderSize(glm::vec2(4, 4)); + // border->setTransform( + // UI_COMPONENT_ALIGN_STRETCH, UI_COMPONENT_ALIGN_STRETCH, + // glm::vec4(0, 0, 0, 0), + // 0.0f + // ); + + auto assetFont = man->get("truetype_alice"); + auto label = this->canvas->addElement(); + label->setFont(&assetFont->font); + label->setText("test.1"); + label->setFontSize(24); + label->setTransform( + UI_COMPONENT_ALIGN_STRETCH, UI_COMPONENT_ALIGN_STRETCH, + glm::vec4(0, 0, 0, 0), + 0.0f + ); +} \ No newline at end of file diff --git a/src/dawnpokergame/scenes/TestUIScene.hpp b/src/dawnpokergame/scenes/TestUIScene.hpp new file mode 100644 index 00000000..8440f4ce --- /dev/null +++ b/src/dawnpokergame/scenes/TestUIScene.hpp @@ -0,0 +1,25 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scene/Scene.hpp" +#include "game/DawnGame.hpp" +#include "scene/components/ui/UICanvas.hpp" +#include "ui/UILabel.hpp" +#include "ui/UIBorder.hpp" +#include "prefabs/SimpleSpinningCubePrefab.hpp" + +namespace Dawn { + class TestUIScene : public Scene { + private: + Camera *camera = nullptr; + UICanvas *canvas = nullptr; + + public: + TestUIScene(DawnGame *game); + std::vector getRequiredAssets() override; + void stage() override; + }; +} \ No newline at end of file