VNEvents
This commit is contained in:
49
src/dawn/games/vn/events/VNAnimateEvent.hpp
Normal file
49
src/dawn/games/vn/events/VNAnimateEvent.hpp
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
// Copyright (c) 2023 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
#include "VNEvent.hpp"
|
||||||
|
#include "display/animation/SimplerCallbackAnimation.hpp"
|
||||||
|
|
||||||
|
namespace Dawn {
|
||||||
|
template<typename T>
|
||||||
|
class VNAnimateEvent : public VNEvent {
|
||||||
|
public:
|
||||||
|
T from;
|
||||||
|
T to;
|
||||||
|
float_t duration;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
SimplerCallbackAnimation<T> animation;
|
||||||
|
|
||||||
|
void onStart() override {
|
||||||
|
if(duration > 0) {
|
||||||
|
animation.clear();
|
||||||
|
|
||||||
|
animation.addKeyframe(0, from);
|
||||||
|
animation.addKeyframe(duration, to);
|
||||||
|
|
||||||
|
|
||||||
|
animation.callback = [&](T v){
|
||||||
|
this->setValue(v);
|
||||||
|
};
|
||||||
|
|
||||||
|
// On-end
|
||||||
|
useEvent([&]() {
|
||||||
|
this->next();
|
||||||
|
}, animation.event2AnimationEnd);
|
||||||
|
|
||||||
|
useEvent([&](float_t delta) {
|
||||||
|
animation.tick(delta);
|
||||||
|
}, getScene()->eventSceneUpdate);
|
||||||
|
} else {
|
||||||
|
this->setValue(to);
|
||||||
|
this->next();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
virtual void setValue(T value) = 0;
|
||||||
|
};
|
||||||
|
}
|
@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "games/vn/components/VNManager.hpp"
|
#include "games/vn/components/VNManager.hpp"
|
||||||
|
#include "scene/SceneItem.hpp"
|
||||||
|
|
||||||
namespace Dawn {
|
namespace Dawn {
|
||||||
class VNEvent : public StateOwner {
|
class VNEvent : public StateOwner {
|
||||||
|
@ -4,20 +4,27 @@
|
|||||||
// https://opensource.org/licenses/MIT
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "VNEvent.hpp"
|
#include "VNAnimateEvent.hpp"
|
||||||
#include "scene/SceneItem.hpp"
|
|
||||||
#include "display/animation/SimplerCallbackAnimation.hpp"
|
|
||||||
|
|
||||||
#define VN_POSITION_EVENT_VALUE_UNCHANGED -123456789
|
#define VN_POSITION_EVENT_VALUE_UNCHANGED std::numeric_limits<float>::min()
|
||||||
|
|
||||||
namespace Dawn {
|
namespace Dawn {
|
||||||
class VNPositionEvent : public VNEvent {
|
class VNPositionEvent : public VNAnimateEvent<glm::vec3> {
|
||||||
public:
|
public:
|
||||||
float_t x = VN_POSITION_EVENT_VALUE_UNCHANGED;
|
|
||||||
float_t y = VN_POSITION_EVENT_VALUE_UNCHANGED;
|
|
||||||
float_t z = VN_POSITION_EVENT_VALUE_UNCHANGED;
|
|
||||||
SceneItem *item = nullptr;
|
SceneItem *item = nullptr;
|
||||||
float_t duration;
|
|
||||||
|
VNPositionEvent() {
|
||||||
|
from = glm::vec3(
|
||||||
|
VN_POSITION_EVENT_VALUE_UNCHANGED,
|
||||||
|
VN_POSITION_EVENT_VALUE_UNCHANGED,
|
||||||
|
VN_POSITION_EVENT_VALUE_UNCHANGED
|
||||||
|
);
|
||||||
|
to = glm::vec3(
|
||||||
|
VN_POSITION_EVENT_VALUE_UNCHANGED,
|
||||||
|
VN_POSITION_EVENT_VALUE_UNCHANGED,
|
||||||
|
VN_POSITION_EVENT_VALUE_UNCHANGED
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
SimplerCallbackAnimation<glm::vec3> animation;
|
SimplerCallbackAnimation<glm::vec3> animation;
|
||||||
@ -26,33 +33,19 @@ namespace Dawn {
|
|||||||
assertNotNull(item);
|
assertNotNull(item);
|
||||||
|
|
||||||
auto start = item->transform.getLocalPosition();
|
auto start = item->transform.getLocalPosition();
|
||||||
auto destination = glm::vec3(
|
if(from.x == VN_POSITION_EVENT_VALUE_UNCHANGED) start.x = from.x;
|
||||||
x == VN_POSITION_EVENT_VALUE_UNCHANGED ? start.x : x,
|
if(from.y == VN_POSITION_EVENT_VALUE_UNCHANGED) start.y = from.y;
|
||||||
y == VN_POSITION_EVENT_VALUE_UNCHANGED ? start.y : y,
|
if(from.z == VN_POSITION_EVENT_VALUE_UNCHANGED) start.z = from.z;
|
||||||
z == VN_POSITION_EVENT_VALUE_UNCHANGED ? start.z : z
|
|
||||||
);
|
|
||||||
|
|
||||||
if(duration > 0) {
|
if(to.x == VN_POSITION_EVENT_VALUE_UNCHANGED) to.x = start.x;
|
||||||
animation.clear();
|
if(to.y == VN_POSITION_EVENT_VALUE_UNCHANGED) to.y = start.y;
|
||||||
|
if(to.z == VN_POSITION_EVENT_VALUE_UNCHANGED) to.z = start.z;
|
||||||
|
|
||||||
animation.addKeyframe(0, start);
|
VNAnimateEvent::onStart();
|
||||||
animation.addKeyframe(duration, destination);
|
|
||||||
|
|
||||||
animation.callback = [&](glm::vec3 v){
|
|
||||||
this->item->transform.setLocalPosition(v);
|
|
||||||
};
|
|
||||||
|
|
||||||
useEvent([&]() {
|
|
||||||
this->next();
|
|
||||||
}, animation.event2AnimationEnd);
|
|
||||||
|
|
||||||
useEvent([&](float_t delta) {
|
|
||||||
animation.tick(delta);
|
|
||||||
}, getScene()->eventSceneUpdate);
|
|
||||||
} else {
|
|
||||||
this->item->transform.setLocalPosition(destination);
|
|
||||||
this->next();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void setValue(glm::vec3 value) override {
|
||||||
|
this->item->transform.setLocalPosition(value);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
27
src/dawn/games/vn/events/VNSetEvent.hpp
Normal file
27
src/dawn/games/vn/events/VNSetEvent.hpp
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
// Copyright (c) 2023 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
#include "VNAnimateEvent.hpp"
|
||||||
|
|
||||||
|
namespace Dawn {
|
||||||
|
template<typename T>
|
||||||
|
class VNSetEvent : public VNAnimateEvent<T> {
|
||||||
|
public:
|
||||||
|
T *modifies = nullptr;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void onStart() override {
|
||||||
|
assertNotNull(this->modifies);
|
||||||
|
this->from = *modifies;
|
||||||
|
|
||||||
|
VNAnimateEvent<T>::onStart();
|
||||||
|
}
|
||||||
|
|
||||||
|
void setValue(T value) override {
|
||||||
|
*modifies = value;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
20
src/dawn/games/vn/events/VNTextEvent.hpp
Normal file
20
src/dawn/games/vn/events/VNTextEvent.hpp
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
// Copyright (c) 2023 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
#include "VNEvent.hpp"
|
||||||
|
|
||||||
|
namespace Dawn {
|
||||||
|
class VNTextEvent : public VNEvent {
|
||||||
|
public:
|
||||||
|
std::string text;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void onStart() override {
|
||||||
|
std::cout << "TEXT: " << text << std::endl;
|
||||||
|
this->next();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
18
src/dawn/games/vn/events/VNWaitEvent.hpp
Normal file
18
src/dawn/games/vn/events/VNWaitEvent.hpp
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
// Copyright (c) 2023 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
#include "VNAnimateEvent.hpp"
|
||||||
|
|
||||||
|
namespace Dawn {
|
||||||
|
class VNWaitEvent : public VNAnimateEvent<float_t> {
|
||||||
|
public:
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void setValue(T value) override {
|
||||||
|
// Do nothing
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
@ -9,7 +9,9 @@
|
|||||||
#include "prefabs/SimpleSpinningCubePrefab.hpp"
|
#include "prefabs/SimpleSpinningCubePrefab.hpp"
|
||||||
#include "games/vn/components/VNManager.hpp"
|
#include "games/vn/components/VNManager.hpp"
|
||||||
#include "games/vn/events/VNDummyEvent.hpp"
|
#include "games/vn/events/VNDummyEvent.hpp"
|
||||||
|
#include "games/vn/events/VNTextEvent.hpp"
|
||||||
#include "games/vn/events/VNPositionEvent.hpp"
|
#include "games/vn/events/VNPositionEvent.hpp"
|
||||||
|
#include "games/vn/events/VNSetEvent.hpp"
|
||||||
|
|
||||||
namespace Dawn {
|
namespace Dawn {
|
||||||
class HelloWorldScene : public Scene {
|
class HelloWorldScene : public Scene {
|
||||||
@ -17,6 +19,8 @@ namespace Dawn {
|
|||||||
Camera *camera;
|
Camera *camera;
|
||||||
UICanvas *canvas;
|
UICanvas *canvas;
|
||||||
|
|
||||||
|
int32_t test = 0;
|
||||||
|
|
||||||
void stage() override {
|
void stage() override {
|
||||||
canvas = UICanvas::create(this);
|
canvas = UICanvas::create(this);
|
||||||
|
|
||||||
@ -32,14 +36,21 @@ namespace Dawn {
|
|||||||
auto eventTest = vnManager->createEvent<VNDummyEvent>();
|
auto eventTest = vnManager->createEvent<VNDummyEvent>();
|
||||||
|
|
||||||
auto positionEvent = vnManager->createEvent<VNPositionEvent>();
|
auto positionEvent = vnManager->createEvent<VNPositionEvent>();
|
||||||
positionEvent->x = 2.0f;
|
positionEvent->to.x = 2.0f;
|
||||||
positionEvent->item = cube;
|
positionEvent->item = cube;
|
||||||
positionEvent->duration = 3.0f;
|
positionEvent->duration = 3.0f;
|
||||||
|
|
||||||
|
auto vnTextEvent = vnManager->createEvent<VNTextEvent>();
|
||||||
|
vnTextEvent->text = "Hello World!";
|
||||||
|
|
||||||
|
auto setPropertyEvent = vnManager->createEvent<VNSetEvent<int32_t>>();
|
||||||
|
setPropertyEvent->modifies = &test;
|
||||||
|
setPropertyEvent->to = 10;
|
||||||
|
|
||||||
eventTest
|
eventTest
|
||||||
->then(positionEvent)
|
->then(positionEvent)
|
||||||
->then(vnManager->createEvent<VNDummyEvent>())
|
->then(vnTextEvent)
|
||||||
->then(vnManager->createEvent<VNDummyEvent>())
|
->then(setPropertyEvent)
|
||||||
;
|
;
|
||||||
vnManager->setEvent(eventTest);
|
vnManager->setEvent(eventTest);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user