Fixed bug with empty string, allowing local fonts to be loaded.

This commit is contained in:
2023-06-17 22:15:57 -07:00
parent 6a202edf23
commit 0ea7f1d749
5 changed files with 38 additions and 17 deletions

View File

@ -36,6 +36,11 @@ void VNTextboxScroller::onStart() {
this->timeCharacter += delta; this->timeCharacter += delta;
if(this->hasRevealedAllCurrentCharacters()) { if(this->hasRevealedAllCurrentCharacters()) {
if(this->hasRevealedAllCharacters()) { if(this->hasRevealedAllCharacters()) {
if(!this->label->lines.empty()) {
this->label->quadStart = this->label->lines[this->lineCurrent].quadStart;
}
this->label->quadCount = this->getTotalQuadsToBeRevealed();
if(!this->readyToClose) { if(!this->readyToClose) {
this->readyToClose = true; this->readyToClose = true;
this->eventReadyToClose.invoke(); this->eventReadyToClose.invoke();
@ -43,7 +48,9 @@ void VNTextboxScroller::onStart() {
} else { } else {
if(game->inputManager.isPressed(INPUT_BIND_ACCEPT)) { if(game->inputManager.isPressed(INPUT_BIND_ACCEPT)) {
this->lineCurrent += this->visibleLines; this->lineCurrent += this->visibleLines;
this->label->quadStart = this->label->lines[this->lineCurrent].quadStart; if(!this->label->lines.empty()) {
this->label->quadStart = this->label->lines[this->lineCurrent].quadStart;
}
this->label->quadCount = 0; this->label->quadCount = 0;
this->timeCharacter = 0.0f; this->timeCharacter = 0.0f;
@ -69,7 +76,7 @@ void VNTextboxScroller::onStart() {
}, getScene()->eventSceneUpdate); }, getScene()->eventSceneUpdate);
} }
bool_t VNTextboxScroller::hasRevealedAllCurrentCharacters() { int32_t VNTextboxScroller::getTotalQuadsToBeRevealed() {
int32_t quadsTotal = 0; int32_t quadsTotal = 0;
for( for(
size_t i = this->lineCurrent; size_t i = this->lineCurrent;
@ -81,7 +88,11 @@ bool_t VNTextboxScroller::hasRevealedAllCurrentCharacters() {
) { ) {
quadsTotal += this->label->lines[i].quadCount; quadsTotal += this->label->lines[i].quadCount;
} }
return mathFloor<int32_t>(this->timeCharacter) >= quadsTotal; return quadsTotal;
}
bool_t VNTextboxScroller::hasRevealedAllCurrentCharacters() {
return mathFloor<int32_t>(this->timeCharacter) >= this->getTotalQuadsToBeRevealed();
} }
bool_t VNTextboxScroller::hasRevealedAllCharacters() { bool_t VNTextboxScroller::hasRevealedAllCharacters() {

View File

@ -31,6 +31,14 @@ namespace Dawn {
VNTextboxScroller(SceneItem *item); VNTextboxScroller(SceneItem *item);
virtual void onStart() override; virtual void onStart() override;
/**
* Returns the count of quads, relative to the current visible line to be
* revealed based on the current time.
*
* @return The count of quads to be revealed.
*/
int32_t getTotalQuadsToBeRevealed();
/** /**
* Returns true if all of the characters that can be made visible for the * Returns true if all of the characters that can be made visible for the
* current textbox size have finished revealing, or false if not. * current textbox size have finished revealing, or false if not.

View File

@ -296,6 +296,8 @@ void UILabel::rebufferQuads(const std::vector<struct UILabelText> newTexts) {
realNewTexts.push_back(realText); realNewTexts.push_back(realText);
} }
lines.push_back(currentLine);
// Create mesh // Create mesh
if(!vertices.empty()) { if(!vertices.empty()) {
this->mesh.createBuffers( this->mesh.createBuffers(

View File

@ -19,20 +19,10 @@ add_subdirectory(save)
# Assets # Assets
set(LIMINAL_ASSETS_DIR ${DAWN_ASSETS_DIR}/games/liminal) set(LIMINAL_ASSETS_DIR ${DAWN_ASSETS_DIR}/games/liminal)
# tool_truetype(font_main FILE=${LIMINAL_ASSETS_DIR}/fonts/Ysabeau-Medium.ttf)
tool_texture(texture_eth FILE=${LIMINAL_ASSETS_DIR}/textures/eth.png) tool_texture(texture_eth FILE=${LIMINAL_ASSETS_DIR}/textures/eth.png)
tool_texture(texture_border FILE=${LIMINAL_ASSETS_DIR}/textures/texture_test.png) tool_texture(texture_border FILE=${LIMINAL_ASSETS_DIR}/textures/texture_test.png)
tool_truetype(font_main
tool_truetype(font_arial REGULAR=${LIMINAL_ASSETS_DIR}/fonts/Ysabeau-Medium.ttf
REGULAR="/usr/share/fonts/TTF/arial.ttf"
BOLD="/usr/share/fonts/TTF/arialbd.ttf"
ITALICS="/usr/share/fonts/TTF/ariali.ttf"
BOLD_ITALICS="/usr/share/fonts/TTF/arialbi.ttf"
# REGULAR="C:\\Windows\\Fonts\\arial.ttf"
# BOLD="C:\\Windows\\Fonts\\arialbd.ttf"
# ITALICS="C:\\Windows\\Fonts\\ariali.ttf"
# BOLD_ITALICS="C:\\Windows\\Fonts\\arialbi.ttf"
) )
tool_scene(${LIMINAL_ASSETS_DIR}/scenes/SceneBase.xml) tool_scene(${LIMINAL_ASSETS_DIR}/scenes/SceneBase.xml)

View File

@ -48,13 +48,23 @@ function(tool_truetype target)
endif() endif()
endforeach() endforeach()
# Check for missing args
set(DEPS "") set(DEPS "")
if(DAWN_BUILD_TOOLS) if(DAWN_BUILD_TOOLS)
set(DEPS truetypetool) set(DEPS truetypetool)
endif() endif()
if(DEFINED REGULAR)
set(REGULAR "${DAWN_ASSETS_SOURCE_DIR}/${REGULAR}")
endif()
if(DEFINED BOLD)
set(BOLD "${DAWN_ASSETS_SOURCE_DIR}/${BOLD}")
endif()
if(DEFINED ITALICS)
set(ITALICS "${DAWN_ASSETS_SOURCE_DIR}/${ITALICS}")
endif()
if(DEFINED BOLD_ITALICS)
set(BOLD_ITALICS "${DAWN_ASSETS_SOURCE_DIR}/${BOLD_ITALICS}")
endif()
add_custom_target(${target} add_custom_target(${target}
COMMAND truetypetool COMMAND truetypetool