VN textbox event

This commit is contained in:
2023-05-21 15:11:51 -07:00
parent b61c1fc5ba
commit 74cdc66814
16 changed files with 85 additions and 43 deletions

Binary file not shown.

View File

@ -17,10 +17,10 @@
<UILabel <UILabel
text="This is the text box." text="This is the text box."
font="font_main" font="font_main"
fontSize="32" fontSize="48"
alignment="16, 16, 0, 0" alignment="0, 0, 500, 500"
alignX="UI_COMPONENT_ALIGN_STRETCH" alignX="UI_COMPONENT_ALIGN_MIDDLE"
alignY="UI_COMPONENT_ALIGN_STRETCH" alignY="UI_COMPONENT_ALIGN_MIDDLE"
ref="uiLabel" ref="uiLabel"
/> />
</child> </child>

View File

@ -1,4 +0,0 @@
<vnscene name="Scene1Prologue" extend="scenes/SceneBase">
<events>
</events>
</vnscene>

View File

@ -0,0 +1,35 @@
<vnscene name="Scene1Prologue" extend="scenes/SceneBase">
<events>
<text>
<string lang="en">There is a bucket.</string>
</text>
<text>
<string lang="en">It sways above your head like the mouth of a god. You are on Angelwood's best stage, and they are cheering for you, calling you their Queen, their Prom Queen.</string>
</text>
<text>
<string lang="en">And you are dead soon.</string>
</text>
<text>
<string lang="en">It's Prom Day. The metal bucket is swaying. Over you. Drenching your white pristine dress in guts and gore red. They aren't cheering anymore. They're gasping. But not screaming: oh, no, not in respectable Angelwood.</string>
</text>
<text>
<string lang="en">God. You didn't think a pig's intestines could feel so cold.</string>
</text>
<text>
<string lang="en">You are dead when the bucket falls — crushes your skull — caves you open — drenches you and drenches you, drowns you, fells you and kills, kills, kills you.</string>
</text>
<text>
<string lang="en">And the last thing you see ---</string>
</text>
<text>
<string lang="en">Is their eyes.</string>
</text>
</events>
</vnscene>

View File

@ -26,6 +26,10 @@
</item> </item>
</item> </item>
<item ref="vnItem">
<VNManager ref="vnManager" />
</item>
<code type="init"> <code type="init">
useEvent([&]{ useEvent([&]{
assertNotNull(camTexture); assertNotNull(camTexture);

View File

@ -22,17 +22,21 @@ void VNTextboxScroller::onStart() {
this->timeCharacter = 0; this->timeCharacter = 0;
this->label->startQuad = 0; this->label->startQuad = 0;
this->label->quadCount = 0; this->label->quadCount = 0;
this->readyToClose = false;
}; };
x(); x();
useEvent(x, this->label->eventTextChanged);
useEvent([&](float_t delta){ useEvent([&](float_t delta){
auto game = this->getGame(); auto game = this->getGame();
this->timeCharacter += delta; this->timeCharacter += delta;
if(this->hasRevealedAllCurrentCharacters()) { if(this->hasRevealedAllCurrentCharacters()) {
if(this->hasRevealedAllCharacters()) { if(this->hasRevealedAllCharacters()) {
if(game->inputManager.isPressed(INPUT_BIND_ACCEPT)) { if(!this->readyToClose) {
std::cout << "HIDE" << std::endl; this->readyToClose = true;
this->eventReadyToClose.invoke();
} }
} else { } else {
if(game->inputManager.isPressed(INPUT_BIND_ACCEPT)) { if(game->inputManager.isPressed(INPUT_BIND_ACCEPT)) {
@ -43,21 +47,6 @@ void VNTextboxScroller::onStart() {
} }
this->label->quadCount = 0; this->label->quadCount = 0;
this->timeCharacter = 0.0f; this->timeCharacter = 0.0f;
// this->label.setTransform(
// UI_COMPONENT_ALIGN_STRETCH,
// UI_COMPONENT_ALIGN_STRETCH,
// glm::vec4(
// glm::vec2(
// this->border.getBorderSize().x + this->labelPadding.x,
// this->border.getBorderSize().y + this->labelPadding.y -
// this->label.measure.getHeightOfLineCount(this->lineCurrent)
// ),
// this->border.getBorderSize() + this->labelPadding
// ),
// 5.0f
// );
// this->eventNewPage.invoke();
} }
} }
@ -71,8 +60,10 @@ void VNTextboxScroller::onStart() {
this->timeCharacter += game->timeManager.delta * VN_TEXTBOX_SPEED; this->timeCharacter += game->timeManager.delta * VN_TEXTBOX_SPEED;
} }
auto newCount = mathFloor<int32_t>(this->timeCharacter);
if(newCount == this->label->quadCount) return;
this->label->quadCount = mathFloor<int32_t>(this->timeCharacter); this->label->quadCount = mathFloor<int32_t>(this->timeCharacter);
// this->eventCharacterRevealed.invoke(); this->eventCharacterRevealed.invoke();
}, getScene()->eventSceneUpdate); }, getScene()->eventSceneUpdate);
} }

View File

@ -13,17 +13,19 @@
namespace Dawn { namespace Dawn {
class VNTextboxScroller : public SceneItemComponent { class VNTextboxScroller : public SceneItemComponent {
protected:
public: public:
// @optional // @optional
StateProperty<UILabel*> label; StateProperty<UILabel*> label;
StateEvent<> eventReadyToClose;
StateEvent<> eventCharacterRevealed;
bool_t readyToClose = false;
size_t lineCurrent = 0; size_t lineCurrent = 0;
float_t timeCharacter = 0.0f; float_t timeCharacter = 0.0f;
VNTextboxScroller(SceneItem *item); VNTextboxScroller(SceneItem *item);
virtual void onStart() override; virtual void onStart() override;
/** /**

View File

@ -5,6 +5,8 @@
#pragma once #pragma once
#include "VNEvent.hpp" #include "VNEvent.hpp"
#include "scene/Scene.hpp"
#include "games/vn/components/VNTextboxScroller.hpp"
namespace Dawn { namespace Dawn {
class VNTextEvent : public VNEvent { class VNTextEvent : public VNEvent {
@ -12,8 +14,19 @@ namespace Dawn {
std::string text; std::string text;
protected: protected:
VNTextboxScroller *scroller = nullptr;
void onStart() override { void onStart() override {
std::cout << "TEXT: " << text << std::endl; scroller = this->getScene()->findComponent<VNTextboxScroller>();
assertNotNull(scroller);
scroller->label->text = text;
useEvent([&](inputbind_t bind){
if(bind != INPUT_BIND_ACCEPT) return;
if(!scroller->readyToClose) return;
this->next();
}, this->getScene()->game->inputManager.eventBindPressed);
} }
}; };
} }

View File

@ -12,7 +12,7 @@
namespace Dawn { namespace Dawn {
class SceneItemComponent; class SceneItemComponent;
class SceneItem { class SceneItem : public StateOwner {
private: private:
std::vector<SceneItemComponent*> components; std::vector<SceneItemComponent*> components;

View File

@ -111,6 +111,10 @@ void UILabel::onStart() {
alignmentNeedsUpdating = true; alignmentNeedsUpdating = true;
}, { &fontSize, &font, &text, &maxWidth, &startQuad, &quadCount }); }, { &fontSize, &font, &text, &maxWidth, &startQuad, &quadCount });
useEffect([&]{
eventTextChanged.invoke();
}, text);
useEffect([&]{ useEffect([&]{
needsRebuffering = true; needsRebuffering = true;
}, alignmentNeedsUpdating); }, alignmentNeedsUpdating);

View File

@ -45,6 +45,7 @@ namespace Dawn {
StateProperty<int32_t> quadCount; StateProperty<int32_t> quadCount;
StateEvent<> eventFontRebuffered; StateEvent<> eventFontRebuffered;
StateEvent<> eventTextChanged;
struct FontMeasure measure; struct FontMeasure measure;

View File

@ -19,12 +19,12 @@ 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 ${DAWN_ASSETS_DIR}/ark-pixel.ttf) tool_truetype(font_main ${LIMINAL_ASSETS_DIR}/fonts/Ysabeau-Medium.ttf)
tool_texture(texture_eth ${LIMINAL_ASSETS_DIR}/textures/eth.png) tool_texture(texture_eth ${LIMINAL_ASSETS_DIR}/textures/eth.png)
tool_texture(texture_border ${LIMINAL_ASSETS_DIR}/textures/texture_test.png) tool_texture(texture_border ${LIMINAL_ASSETS_DIR}/textures/texture_test.png)
tool_scene(${LIMINAL_ASSETS_DIR}/scenes/SceneBase.xml) tool_scene(${LIMINAL_ASSETS_DIR}/scenes/SceneBase.xml)
tool_vnscene(${LIMINAL_ASSETS_DIR}/scenes/Scene1Prologue.xml) tool_vnscene(${LIMINAL_ASSETS_DIR}/scenes/Scene1Prologue0.xml)
tool_prefab(${LIMINAL_ASSETS_DIR}/prefabs/EthPrefab.xml) tool_prefab(${LIMINAL_ASSETS_DIR}/prefabs/EthPrefab.xml)
tool_prefab(${LIMINAL_ASSETS_DIR}/prefabs/VNTextbox.xml) tool_prefab(${LIMINAL_ASSETS_DIR}/prefabs/VNTextbox.xml)

View File

@ -36,10 +36,10 @@ void Texture::setSize(int32_t width, int32_t height) {
// Setup our preferred texture params, later this will be configurable. // Setup our preferred texture params, later this will be configurable.
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); // glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); // glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
// glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
// glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
// Initialize the texture to blank // Initialize the texture to blank
glTexImage2D( glTexImage2D(

View File

@ -134,7 +134,7 @@ void Xml::load(Xml *xml, std::string data, size_t *j) {
case XML_PARSE_STATE_PARSING_VALUE: case XML_PARSE_STATE_PARSING_VALUE:
// Keep parsing child until we find a < for an opening/closing tag. // Keep parsing child until we find a < for an opening/closing tag.
if(c == '<') { if(c == '<' && !(data[i] == '<' || data[i-2] == '<')) {
// In HTML Spec there could be a child here but not in XML spec. // In HTML Spec there could be a child here but not in XML spec.
doing = XML_PARSE_STATE_PARSING_CLOSE; doing = XML_PARSE_STATE_PARSING_CLOSE;
xml->value = buffer; xml->value = buffer;

View File

@ -168,10 +168,8 @@ void VNSceneGen::generate(
// Events // Events
classInfo.includes.push_back("games/vn/components/VNManager.hpp");
classInfo.includes.push_back("games/vn/events/VNDummyEvent.hpp"); classInfo.includes.push_back("games/vn/events/VNDummyEvent.hpp");
line(&methodInit.body, "auto vnItem = this->createSceneItem();", ""); line(&methodInit.body, "assertNotNull(vnManager);", "");
line(&methodInit.body, "auto vnManager = vnItem->addComponent<VNManager>();", "");
line(&methodInit.body, "VNEvent *previous = vnManager->createEvent<VNDummyEvent>();", ""); line(&methodInit.body, "VNEvent *previous = vnManager->createEvent<VNDummyEvent>();", "");
line(&methodInit.body, "auto eventStart = previous;", ""); line(&methodInit.body, "auto eventStart = previous;", "");

View File

@ -29,8 +29,6 @@ int32_t VNSceneEventsParser::onParse(
Xml *child = *itChildren; Xml *child = *itChildren;
struct VNSceneEvent event; struct VNSceneEvent event;
std::cout << "CHILD: " << child->node << std::endl;
// Parse event(s) // Parse event(s)
if(child->node == "text") { if(child->node == "text") {
event.type = VN_SCENE_EVENT_TYPE_TEXT; event.type = VN_SCENE_EVENT_TYPE_TEXT;