VN textbox event
This commit is contained in:
BIN
assets/games/liminal/fonts/Ysabeau-Medium.ttf
Normal file
BIN
assets/games/liminal/fonts/Ysabeau-Medium.ttf
Normal file
Binary file not shown.
@ -17,10 +17,10 @@
|
||||
<UILabel
|
||||
text="This is the text box."
|
||||
font="font_main"
|
||||
fontSize="32"
|
||||
alignment="16, 16, 0, 0"
|
||||
alignX="UI_COMPONENT_ALIGN_STRETCH"
|
||||
alignY="UI_COMPONENT_ALIGN_STRETCH"
|
||||
fontSize="48"
|
||||
alignment="0, 0, 500, 500"
|
||||
alignX="UI_COMPONENT_ALIGN_MIDDLE"
|
||||
alignY="UI_COMPONENT_ALIGN_MIDDLE"
|
||||
ref="uiLabel"
|
||||
/>
|
||||
</child>
|
||||
|
@ -1,4 +0,0 @@
|
||||
<vnscene name="Scene1Prologue" extend="scenes/SceneBase">
|
||||
<events>
|
||||
</events>
|
||||
</vnscene>
|
35
assets/games/liminal/scenes/Scene1Prologue0.xml
Normal file
35
assets/games/liminal/scenes/Scene1Prologue0.xml
Normal 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>
|
@ -26,6 +26,10 @@
|
||||
</item>
|
||||
</item>
|
||||
|
||||
<item ref="vnItem">
|
||||
<VNManager ref="vnManager" />
|
||||
</item>
|
||||
|
||||
<code type="init">
|
||||
useEvent([&]{
|
||||
assertNotNull(camTexture);
|
||||
|
@ -22,17 +22,21 @@ void VNTextboxScroller::onStart() {
|
||||
this->timeCharacter = 0;
|
||||
this->label->startQuad = 0;
|
||||
this->label->quadCount = 0;
|
||||
this->readyToClose = false;
|
||||
};
|
||||
x();
|
||||
|
||||
useEvent(x, this->label->eventTextChanged);
|
||||
|
||||
useEvent([&](float_t delta){
|
||||
auto game = this->getGame();
|
||||
|
||||
this->timeCharacter += delta;
|
||||
if(this->hasRevealedAllCurrentCharacters()) {
|
||||
if(this->hasRevealedAllCharacters()) {
|
||||
if(game->inputManager.isPressed(INPUT_BIND_ACCEPT)) {
|
||||
std::cout << "HIDE" << std::endl;
|
||||
if(!this->readyToClose) {
|
||||
this->readyToClose = true;
|
||||
this->eventReadyToClose.invoke();
|
||||
}
|
||||
} else {
|
||||
if(game->inputManager.isPressed(INPUT_BIND_ACCEPT)) {
|
||||
@ -43,21 +47,6 @@ void VNTextboxScroller::onStart() {
|
||||
}
|
||||
this->label->quadCount = 0;
|
||||
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;
|
||||
}
|
||||
|
||||
auto newCount = mathFloor<int32_t>(this->timeCharacter);
|
||||
if(newCount == this->label->quadCount) return;
|
||||
this->label->quadCount = mathFloor<int32_t>(this->timeCharacter);
|
||||
// this->eventCharacterRevealed.invoke();
|
||||
this->eventCharacterRevealed.invoke();
|
||||
}, getScene()->eventSceneUpdate);
|
||||
}
|
||||
|
||||
|
@ -13,17 +13,19 @@
|
||||
|
||||
namespace Dawn {
|
||||
class VNTextboxScroller : public SceneItemComponent {
|
||||
protected:
|
||||
|
||||
public:
|
||||
// @optional
|
||||
StateProperty<UILabel*> label;
|
||||
|
||||
StateEvent<> eventReadyToClose;
|
||||
StateEvent<> eventCharacterRevealed;
|
||||
|
||||
bool_t readyToClose = false;
|
||||
|
||||
size_t lineCurrent = 0;
|
||||
float_t timeCharacter = 0.0f;
|
||||
|
||||
VNTextboxScroller(SceneItem *item);
|
||||
|
||||
virtual void onStart() override;
|
||||
|
||||
/**
|
||||
|
@ -5,6 +5,8 @@
|
||||
|
||||
#pragma once
|
||||
#include "VNEvent.hpp"
|
||||
#include "scene/Scene.hpp"
|
||||
#include "games/vn/components/VNTextboxScroller.hpp"
|
||||
|
||||
namespace Dawn {
|
||||
class VNTextEvent : public VNEvent {
|
||||
@ -12,8 +14,19 @@ namespace Dawn {
|
||||
std::string text;
|
||||
|
||||
protected:
|
||||
VNTextboxScroller *scroller = nullptr;
|
||||
|
||||
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);
|
||||
}
|
||||
};
|
||||
}
|
@ -12,7 +12,7 @@
|
||||
namespace Dawn {
|
||||
class SceneItemComponent;
|
||||
|
||||
class SceneItem {
|
||||
class SceneItem : public StateOwner {
|
||||
private:
|
||||
std::vector<SceneItemComponent*> components;
|
||||
|
||||
|
@ -111,6 +111,10 @@ void UILabel::onStart() {
|
||||
alignmentNeedsUpdating = true;
|
||||
}, { &fontSize, &font, &text, &maxWidth, &startQuad, &quadCount });
|
||||
|
||||
useEffect([&]{
|
||||
eventTextChanged.invoke();
|
||||
}, text);
|
||||
|
||||
useEffect([&]{
|
||||
needsRebuffering = true;
|
||||
}, alignmentNeedsUpdating);
|
||||
|
@ -45,6 +45,7 @@ namespace Dawn {
|
||||
StateProperty<int32_t> quadCount;
|
||||
|
||||
StateEvent<> eventFontRebuffered;
|
||||
StateEvent<> eventTextChanged;
|
||||
|
||||
struct FontMeasure measure;
|
||||
|
||||
|
@ -19,12 +19,12 @@ add_subdirectory(save)
|
||||
# Assets
|
||||
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_border ${LIMINAL_ASSETS_DIR}/textures/texture_test.png)
|
||||
|
||||
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/VNTextbox.xml)
|
@ -36,10 +36,10 @@ void Texture::setSize(int32_t width, int32_t height) {
|
||||
// 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_T, GL_REPEAT);
|
||||
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_MIN_FILTER, GL_LINEAR);
|
||||
// glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
||||
// 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_MIN_FILTER, GL_LINEAR);
|
||||
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
||||
|
||||
// Initialize the texture to blank
|
||||
glTexImage2D(
|
||||
|
@ -134,7 +134,7 @@ void Xml::load(Xml *xml, std::string data, size_t *j) {
|
||||
|
||||
case XML_PARSE_STATE_PARSING_VALUE:
|
||||
// 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.
|
||||
doing = XML_PARSE_STATE_PARSING_CLOSE;
|
||||
xml->value = buffer;
|
||||
|
@ -168,10 +168,8 @@ void VNSceneGen::generate(
|
||||
|
||||
|
||||
// Events
|
||||
classInfo.includes.push_back("games/vn/components/VNManager.hpp");
|
||||
classInfo.includes.push_back("games/vn/events/VNDummyEvent.hpp");
|
||||
line(&methodInit.body, "auto vnItem = this->createSceneItem();", "");
|
||||
line(&methodInit.body, "auto vnManager = vnItem->addComponent<VNManager>();", "");
|
||||
line(&methodInit.body, "assertNotNull(vnManager);", "");
|
||||
line(&methodInit.body, "VNEvent *previous = vnManager->createEvent<VNDummyEvent>();", "");
|
||||
line(&methodInit.body, "auto eventStart = previous;", "");
|
||||
|
||||
|
@ -29,8 +29,6 @@ int32_t VNSceneEventsParser::onParse(
|
||||
Xml *child = *itChildren;
|
||||
struct VNSceneEvent event;
|
||||
|
||||
std::cout << "CHILD: " << child->node << std::endl;
|
||||
|
||||
// Parse event(s)
|
||||
if(child->node == "text") {
|
||||
event.type = VN_SCENE_EVENT_TYPE_TEXT;
|
||||
|
Reference in New Issue
Block a user