From 2ff1a159bc80bcb1d239c389a03722a368b3d65e Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Thu, 3 Oct 2024 20:07:35 -0500 Subject: [PATCH] idk --- src/dawn/component/vn/VNManager.cpp | 3 +++ src/dawn/ui/elements/UILabel.cpp | 7 +++++-- src/dawn/ui/elements/UILabel.hpp | 1 + src/dawnrpg/scenes/VNScene.cpp | 8 ++++++-- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/src/dawn/component/vn/VNManager.cpp b/src/dawn/component/vn/VNManager.cpp index a2c0f5db..a4e758b7 100644 --- a/src/dawn/component/vn/VNManager.cpp +++ b/src/dawn/component/vn/VNManager.cpp @@ -43,6 +43,9 @@ void VNManager::onInit() { listeners.push_back(getScene()->onUnpausedUpdate.listen([&](const float_t d) { })); + + auto w = label->getWidth(); + auto cw = container->getWidth(); } void VNManager::onDispose() { diff --git a/src/dawn/ui/elements/UILabel.cpp b/src/dawn/ui/elements/UILabel.cpp index 31bb630b..cdc21960 100644 --- a/src/dawn/ui/elements/UILabel.cpp +++ b/src/dawn/ui/elements/UILabel.cpp @@ -14,8 +14,10 @@ void UILabel::getSelfQuads(UICanvas &ctx) { glm::vec4 quad; glm::vec2 pos = glm::vec2(0, this->texture->fontSize); bool_t lastCharWasSpace = false; + size_t len = Math::min(this->text.size(), this->renderCharacterCount); + float_t maxWidth = this->hasExplicitWidth() ? this->size.x : std::numeric_limits::max(); - for(size_t i = 0; i < text.size(); i++) { + for(size_t i = 0; i < len; i++) { wchar_t c = text[i]; auto info = texture->getCharacterData(c); @@ -47,7 +49,7 @@ void UILabel::getSelfQuads(UICanvas &ctx) { // Will this character fit on the row? If not the whole word will wrap. auto info2 = texture->getCharacterData(c); wordWidth += info.advance.x; - if(wordWidth > size.x) { + if(wordWidth > maxWidth) { pos.x = 0; pos.y += this->texture->fontSize; break; @@ -172,4 +174,5 @@ void UILabel::setFont(std::shared_ptr texture) { void UILabel::setText(const std::wstring &text) { this->text = text; + this->renderCharacterCount = text.size(); } \ No newline at end of file diff --git a/src/dawn/ui/elements/UILabel.hpp b/src/dawn/ui/elements/UILabel.hpp index 0205aa82..5823d39b 100644 --- a/src/dawn/ui/elements/UILabel.hpp +++ b/src/dawn/ui/elements/UILabel.hpp @@ -19,6 +19,7 @@ namespace Dawn { public: bool_t wordWrap = true; struct Color color = COLOR_WHITE; + size_t renderCharacterCount = 0; float_t getContentWidth() override; float_t getContentHeight() override; diff --git a/src/dawnrpg/scenes/VNScene.cpp b/src/dawnrpg/scenes/VNScene.cpp index 8697ce1f..9cbb6b2d 100644 --- a/src/dawnrpg/scenes/VNScene.cpp +++ b/src/dawnrpg/scenes/VNScene.cpp @@ -20,7 +20,9 @@ using namespace Dawn; void Dawn::vnScene(Scene &s) { // Load assets // auto testj = s.getGame()->assetManager.get("test"); - auto texture = s.getGame()->assetManager.get("font_silver", 32); + auto texture = s.getGame()->assetManager.get( + "font_silver", 32 + ); while(!s.getGame()->assetManager.isEverythingLoaded()) { s.getGame()->assetManager.update(); } @@ -38,5 +40,7 @@ void Dawn::vnScene(Scene &s) { auto vnManager = canvasItem->addComponent(); vnManager->canvas = canvas; vnManager->texture = texture; - vnManager->setText(L"broivvoib"); + vnManager->setText(L"The quick brown fox jumps over the lazy dog. It does this by flapping its little wings and flying away into the sunset. The quick brown fox jumps over the lazy dog. It does this by flapping its little wings and flying away into the sunset. The quick brown fox jumps over the lazy dog. It does this by flapping its little wings and flying away into the sunset."); + + std::cout << "VN Scene Loaded" << std::endl; } \ No newline at end of file