This commit is contained in:
2022-12-12 10:55:02 -08:00
parent a2ee1e139d
commit 8bbf05dcf0
13 changed files with 165 additions and 13 deletions

3
.gitignore vendored
View File

@ -74,4 +74,5 @@ oldsrc
node_modules node_modules
yarn.lock yarn.lock
*.log *.log
assets/borrowed

View File

@ -71,11 +71,9 @@ void TiledSprite::setSize(glm::vec2 size) {
} }
std::vector<SceneItemComponent*> TiledSprite::getDependencies() { std::vector<SceneItemComponent*> TiledSprite::getDependencies() {
this->renderer = this->item->getComponent<MeshRenderer>();
this->host = this->item->getComponent<MeshHost>(); this->host = this->item->getComponent<MeshHost>();
return std::vector<SceneItemComponent*>{ return std::vector<SceneItemComponent*>{
this->renderer,
this->host this->host
}; };
} }

View File

@ -16,7 +16,6 @@
namespace Dawn { namespace Dawn {
class TiledSprite : public SceneItemComponent { class TiledSprite : public SceneItemComponent {
protected: protected:
MeshRenderer *renderer = nullptr;
MeshHost *host = nullptr; MeshHost *host = nullptr;
Tileset *tileset = nullptr; Tileset *tileset = nullptr;
flag_t flipState = TILED_SPRITE_FLIP_Y; flag_t flipState = TILED_SPRITE_FLIP_Y;

View File

@ -26,7 +26,7 @@ void UISprite::drawSelf(UIShader *uiShader, glm::mat4 selfTransform) {
uiShader->setUITexture(nullptr); uiShader->setUITexture(nullptr);
uiShader->setUIModel(selfTransform); uiShader->setUIModel(selfTransform);
uiShader->setUIModel(glm::mat4(1.0f)); uiShader->setUIModel(glm::mat4(1.0f));
uiShader->setUIColor(COLOR_WHITE); uiShader->setUIColor(this->color);
uiShader->setUITexture(this->texture); uiShader->setUITexture(this->texture);
this->mesh.draw(MESH_DRAW_MODE_TRIANGLES, 0, -1); this->mesh.draw(MESH_DRAW_MODE_TRIANGLES, 0, -1);

View File

@ -16,7 +16,8 @@ namespace Dawn {
public: public:
Mesh mesh; Mesh mesh;
Texture *texture; struct Color color = COLOR_WHITE;
Texture *texture = nullptr;
/** /**
* UI Sprite Constructor, use the UIElement / UIComponent create instead. * UI Sprite Constructor, use the UIElement / UIComponent create instead.

View File

@ -10,8 +10,6 @@ using namespace Dawn;
VisualNovelManager::VisualNovelManager(SceneItem *item) : VisualNovelManager::VisualNovelManager(SceneItem *item) :
SceneItemComponent(item) SceneItemComponent(item)
{ {
this->uiCanvas = nullptr;
this->textBox = nullptr;
} }
void VisualNovelManager::onStart() { void VisualNovelManager::onStart() {
@ -21,7 +19,10 @@ void VisualNovelManager::onStart() {
assertNotNull(this->uiCanvas); assertNotNull(this->uiCanvas);
this->textBox = this->uiCanvas->findElement<VisualNovelTextbox>(); this->textBox = this->uiCanvas->findElement<VisualNovelTextbox>();
this->fader = this->uiCanvas->findElement<VisualNovelFader>();
assertNotNull(this->textBox); assertNotNull(this->textBox);
assertNotNull(this->fader);
this->getScene()->eventSceneUnpausedUpdate.addListener(this, &VisualNovelManager::onUnpausedUpdate); this->getScene()->eventSceneUnpausedUpdate.addListener(this, &VisualNovelManager::onUnpausedUpdate);
} }

View File

@ -6,22 +6,23 @@
#pragma once #pragma once
#include "scene/SceneItemComponent.hpp" #include "scene/SceneItemComponent.hpp"
#include "visualnovel/ui/VisualNovelTextbox.hpp" #include "visualnovel/ui/VisualNovelTextbox.hpp"
#include "visualnovel/ui/VisualNovelFader.hpp"
namespace Dawn { namespace Dawn {
class IVisualNovelEvent; class IVisualNovelEvent;
class VisualNovelManager : public SceneItemComponent { class VisualNovelManager : public SceneItemComponent {
private: private:
UICanvas *uiCanvas;
IVisualNovelEvent* currentEvent = nullptr; IVisualNovelEvent* currentEvent = nullptr;
public: public:
UICanvas *uiCanvas = nullptr;
VisualNovelTextbox *textBox = nullptr;
VisualNovelFader *fader = nullptr;
/** Event listener for unpaused scene updates. */ /** Event listener for unpaused scene updates. */
void onUnpausedUpdate(); void onUnpausedUpdate();
VisualNovelTextbox *textBox;
/** /**
* Constructs a visual novel manager, scene item component. * Constructs a visual novel manager, scene item component.
* *

View File

@ -0,0 +1,34 @@
// Copyright (c) 2022 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "visualnovel/VisualNovelManager.hpp"
#include "display/animation/Animation.hpp"
namespace Dawn {
class VisualNovelAnimationEvent : public IVisualNovelEvent {
protected:
void onStart(IVisualNovelEvent *previous) override {
}
bool_t onUpdate() override {
this->animation->tick(this->manager->getGame()->timeManager.delta);
return this->animation->finished;
}
void onEnd() override {
}
public:
struct Animation *animation;
VisualNovelAnimationEvent(VisualNovelManager *manager) :
IVisualNovelEvent(manager)
{
}
};
}

View File

@ -0,0 +1,46 @@
// Copyright (c) 2022 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "VisualNovelSimpleAnimationEvent.hpp"
namespace Dawn {
class VisualNovelFadeEvent :
public VisualNovelSimpleAnimationEvent<float_t>
{
protected:
struct Color color;
bool_t fadeIn;
float_t duration;
void onStart(IVisualNovelEvent *previous) override {
VisualNovelSimpleAnimationEvent::onStart(previous);
this->simpleAnimation = SimpleAnimation<float_t>(&this->manager->fader->color.a);
this->manager->fader->color = this->color;
this->manager->fader->color.a = this->fadeIn ? 0.0f : 1.0f;
this->simpleAnimation.addKeyframe(
0.0f, this->fadeIn ? 0.0f : 1.0f
);
this->simpleAnimation.addKeyframe(
this->duration, this->fadeIn ? 1.0f : 0.0f
);
}
public:
VisualNovelFadeEvent(
VisualNovelManager *man,
struct Color color,
bool_t fadeIn,
easefunction_t *ease,
float_t duration
) : VisualNovelSimpleAnimationEvent(man, &duration) {
this->color = color;
this->fadeIn = fadeIn;
this->duration = duration;
this->simpleAnimation.easing = ease;
}
};
}

View File

@ -0,0 +1,26 @@
// Copyright (c) 2022 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "VisualNovelAnimationEvent.hpp"
#include "display/animation/SimpleAnimation.hpp"
namespace Dawn {
template<typename T>
class VisualNovelSimpleAnimationEvent : public VisualNovelAnimationEvent {
public:
struct SimpleAnimation<T> simpleAnimation;
VisualNovelSimpleAnimationEvent(
VisualNovelManager *man,
T *modifies
) :
VisualNovelAnimationEvent(man),
simpleAnimation(modifies)
{
this->animation = &this->simpleAnimation;
}
};
}

View File

@ -0,0 +1,29 @@
// Copyright (c) 2022 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "ui/UISprite.hpp"
#include "ui/UIEmpty.hpp"
namespace Dawn {
class VisualNovelFader : public UISprite {
private:
public:
static VisualNovelFader * create(UICanvas *canvas) {
assertNotNull(canvas);
auto item = canvas->addElement<VisualNovelFader>();
item->setTransform(
UI_COMPONENT_ALIGN_STRETCH, UI_COMPONENT_ALIGN_STRETCH,
glm::vec4(0, 0, 0, 0),
0.0f
);
return item;
}
VisualNovelFader(UICanvas *canvas) : UISprite(canvas) {
}
};
}

View File

@ -23,7 +23,12 @@ add_subdirectory(visualnovel)
# Assets # Assets
tool_texture(texture_test texture_test.png) tool_texture(texture_test texture_test.png)
# tool_texture(texture_penny characters/penny/penny-blink.png) tool_texture(texture_city_day borrowed/city_day.png)
tool_texture(texture_city_night borrowed/city_night.png)
tool_texture(texture_tavern_day borrowed/tavern_day.png)
tool_texture(texture_tavern_morning borrowed/tavern_morning.png)
tool_texture(texture_tavern_night borrowed/tavern_night.png)
tool_texture(texture_village_day borrowed/village_day.png)
tool_tileset(tileset_penny texture_penny characters/penny/penny-blink.png 1 22) tool_tileset(tileset_penny texture_penny characters/penny/penny-blink.png 1 22)
tool_truetype(truetype_ark tool_truetype(truetype_ark
ark-pixel.ttf ark-pixel.ttf
@ -37,4 +42,10 @@ add_dependencies(${DAWN_TARGET_NAME}
texture_test texture_test
tileset_penny tileset_penny
truetype_ark truetype_ark
texture_city_day
texture_city_night
texture_tavern_day
texture_tavern_morning
texture_tavern_night
texture_village_day
) )

View File

@ -11,6 +11,7 @@
#include "ui/PokerGameTextbox.hpp" #include "ui/PokerGameTextbox.hpp"
#include "visualnovel/VisualNovelManager.hpp" #include "visualnovel/VisualNovelManager.hpp"
#include "visualnovel/events/VisualNovelTextboxEvent.hpp" #include "visualnovel/events/VisualNovelTextboxEvent.hpp"
#include "visualnovel/events/VisualNovelFadeEvent.hpp"
#include "poker/PokerGame.hpp" #include "poker/PokerGame.hpp"
#include "visualnovel/events/PokerBetLoopEvent.hpp" #include "visualnovel/events/PokerBetLoopEvent.hpp"
#include "visualnovel/events/PokerInitialEvent.hpp" #include "visualnovel/events/PokerInitialEvent.hpp"
@ -44,6 +45,7 @@ namespace Dawn {
// UI // UI
auto canvas = UICanvas::createCanvas(this); auto canvas = UICanvas::createCanvas(this);
auto textbox = PokerGameTextbox::create(canvas); auto textbox = PokerGameTextbox::create(canvas);
auto vnFader = VisualNovelFader::create(canvas);
// VN Manager // VN Manager
auto vnManagerItem = this->createSceneItem(); auto vnManagerItem = this->createSceneItem();
@ -62,7 +64,10 @@ namespace Dawn {
} }
auto betting = vnManager auto betting = vnManager
->setEvent(new VisualNovelTextboxEvent(vnManager, "Starting Game")) ->setEvent(new VisualNovelFadeEvent(
vnManager, COLOR_BLACK, true, &easeOutCubic, 5.0f
))
->then(new VisualNovelTextboxEvent(vnManager, "Starting Game"))
->then(new PokerNewGameEvent(vnManager)) ->then(new PokerNewGameEvent(vnManager))
->then(new VisualNovelTextboxEvent(vnManager, "Game Started")) ->then(new VisualNovelTextboxEvent(vnManager, "Game Started"))
->then(new PokerInitialEvent(vnManager)) ->then(new PokerInitialEvent(vnManager))