This commit is contained in:
2024-10-03 20:07:35 -05:00
parent c770953b2e
commit 2ff1a159bc
4 changed files with 15 additions and 4 deletions

View File

@ -43,6 +43,9 @@ void VNManager::onInit() {
listeners.push_back(getScene()->onUnpausedUpdate.listen([&](const float_t d) { listeners.push_back(getScene()->onUnpausedUpdate.listen([&](const float_t d) {
})); }));
auto w = label->getWidth();
auto cw = container->getWidth();
} }
void VNManager::onDispose() { void VNManager::onDispose() {

View File

@ -14,8 +14,10 @@ void UILabel::getSelfQuads(UICanvas &ctx) {
glm::vec4 quad; glm::vec4 quad;
glm::vec2 pos = glm::vec2(0, this->texture->fontSize); glm::vec2 pos = glm::vec2(0, this->texture->fontSize);
bool_t lastCharWasSpace = false; bool_t lastCharWasSpace = false;
size_t len = Math::min<size_t>(this->text.size(), this->renderCharacterCount);
float_t maxWidth = this->hasExplicitWidth() ? this->size.x : std::numeric_limits<float_t>::max();
for(size_t i = 0; i < text.size(); i++) { for(size_t i = 0; i < len; i++) {
wchar_t c = text[i]; wchar_t c = text[i];
auto info = texture->getCharacterData(c); 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. // Will this character fit on the row? If not the whole word will wrap.
auto info2 = texture->getCharacterData(c); auto info2 = texture->getCharacterData(c);
wordWidth += info.advance.x; wordWidth += info.advance.x;
if(wordWidth > size.x) { if(wordWidth > maxWidth) {
pos.x = 0; pos.x = 0;
pos.y += this->texture->fontSize; pos.y += this->texture->fontSize;
break; break;
@ -172,4 +174,5 @@ void UILabel::setFont(std::shared_ptr<TrueTypeTexture> texture) {
void UILabel::setText(const std::wstring &text) { void UILabel::setText(const std::wstring &text) {
this->text = text; this->text = text;
this->renderCharacterCount = text.size();
} }

View File

@ -19,6 +19,7 @@ namespace Dawn {
public: public:
bool_t wordWrap = true; bool_t wordWrap = true;
struct Color color = COLOR_WHITE; struct Color color = COLOR_WHITE;
size_t renderCharacterCount = 0;
float_t getContentWidth() override; float_t getContentWidth() override;
float_t getContentHeight() override; float_t getContentHeight() override;

View File

@ -20,7 +20,9 @@ using namespace Dawn;
void Dawn::vnScene(Scene &s) { void Dawn::vnScene(Scene &s) {
// Load assets // Load assets
// auto testj = s.getGame()->assetManager.get<json>("test"); // auto testj = s.getGame()->assetManager.get<json>("test");
auto texture = s.getGame()->assetManager.get<TrueTypeTexture>("font_silver", 32); auto texture = s.getGame()->assetManager.get<TrueTypeTexture>(
"font_silver", 32
);
while(!s.getGame()->assetManager.isEverythingLoaded()) { while(!s.getGame()->assetManager.isEverythingLoaded()) {
s.getGame()->assetManager.update(); s.getGame()->assetManager.update();
} }
@ -38,5 +40,7 @@ void Dawn::vnScene(Scene &s) {
auto vnManager = canvasItem->addComponent<VNManager>(); auto vnManager = canvasItem->addComponent<VNManager>();
vnManager->canvas = canvas; vnManager->canvas = canvas;
vnManager->texture = texture; 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;
} }