Progress
This commit is contained in:
2
lib/SDL
2
lib/SDL
Submodule lib/SDL updated: 87a83787a3...c9aec268fa
Submodule lib/openal-soft updated: d66107e9f0...fde74453a6
@ -7,8 +7,6 @@
|
||||
#include "state/State.hpp"
|
||||
|
||||
namespace Dawn {
|
||||
class SceneItemComponent;
|
||||
|
||||
template<typename D, typename...A>
|
||||
struct StateListener {
|
||||
std::function<void(A...)> callback;
|
||||
@ -17,37 +15,34 @@ namespace Dawn {
|
||||
|
||||
template<typename D, typename...A>
|
||||
struct StateProviderSet {
|
||||
private:
|
||||
public:
|
||||
std::vector<StateListener<D,A...>> listeners;
|
||||
|
||||
public:
|
||||
/**
|
||||
* Attaches an effect listener that is invoked by a provider.
|
||||
*
|
||||
* @tparam T Context Type, usually the state listener itself.
|
||||
* @param callback Callback method to be invoked by the provider.
|
||||
* @param data Data to be stored with the StateListener.
|
||||
* @param context Context for the state object.
|
||||
* @return The unsubscribe method, when invoked, unsubs from the provider.
|
||||
*/
|
||||
template<class T>
|
||||
std::function<void()> addEffect(
|
||||
std::function<void(A...)> callback,
|
||||
D data
|
||||
D data,
|
||||
T *context
|
||||
) {
|
||||
struct StateListener<D, A...> l;
|
||||
l.callback = callback;
|
||||
l.data = data;
|
||||
this->listeners.push_back(l);
|
||||
|
||||
l.callback();
|
||||
|
||||
return std::bind([&](struct StateListener<D, A...> listener) {
|
||||
assertUnreachable();
|
||||
auto it = std::find(listeners.begin(), listeners.end(), listener);
|
||||
assertFalse(it == listeners.end());
|
||||
listeners.erase(it);
|
||||
}, l);
|
||||
}
|
||||
};
|
||||
|
||||
class TimeProvider {
|
||||
public:
|
||||
StateProviderSet<float_t> effect;
|
||||
};
|
||||
|
||||
std::function<void()> useTimeout(
|
||||
std::function<void()> someCallback,
|
||||
float_t timeout,
|
||||
SceneItemComponent *context
|
||||
) {
|
||||
return (TimeProvider()).effect.addEffect(someCallback, timeout);
|
||||
}
|
||||
}
|
@ -1,32 +1,57 @@
|
||||
// Copyright (c) 2022 Dominic Masters
|
||||
//
|
||||
// This software is released under the MIT License.
|
||||
// https://opensource.org/licenses/MIT
|
||||
|
||||
#include "ITimeManager.hpp"
|
||||
|
||||
using namespace Dawn;
|
||||
|
||||
ITimeManager::ITimeManager() {
|
||||
|
||||
}
|
||||
|
||||
void ITimeManager::update(float_t delta) {
|
||||
this->delta = delta;
|
||||
this->time += delta;
|
||||
if(!this->isPaused) {
|
||||
this->unpausedTime += delta;
|
||||
}
|
||||
}
|
||||
|
||||
void ITimeManager::pause() {
|
||||
if(this->isPaused) return;
|
||||
this->isPaused = true;
|
||||
this->eventTimePaused.invoke();
|
||||
}
|
||||
|
||||
void ITimeManager::resume() {
|
||||
if(!this->isPaused) return;
|
||||
this->isPaused = false;
|
||||
this->eventTimeResumed.invoke();
|
||||
// Copyright (c) 2022 Dominic Masters
|
||||
//
|
||||
// This software is released under the MIT License.
|
||||
// https://opensource.org/licenses/MIT
|
||||
|
||||
#include "ITimeManager.hpp"
|
||||
|
||||
using namespace Dawn;
|
||||
|
||||
ITimeManager::ITimeManager() {
|
||||
|
||||
}
|
||||
|
||||
void ITimeManager::update(float_t delta) {
|
||||
this->delta = delta;
|
||||
this->time += delta;
|
||||
|
||||
if(!this->isPaused) {
|
||||
this->unpausedTime += delta;
|
||||
|
||||
// Timeout effect provider
|
||||
auto itEffect = this->timeoutProvider.listeners.begin();
|
||||
while(itEffect != this->timeoutProvider.listeners.end()) {
|
||||
itEffect->data -= delta;
|
||||
if(itEffect->data <= 0) {
|
||||
itEffect->callback();
|
||||
itEffect = this->timeoutProvider.listeners.erase(itEffect);
|
||||
continue;
|
||||
}
|
||||
++itEffect;
|
||||
}
|
||||
|
||||
|
||||
// Interval provider
|
||||
auto itInterval = this->intervalProvider.listeners.begin();
|
||||
while(itInterval != this->intervalProvider.listeners.end()) {
|
||||
itInterval->data.second += delta;
|
||||
if(itInterval->data.second >= itInterval->data.first) {
|
||||
itInterval->callback();
|
||||
itInterval->data.second = 0;
|
||||
}
|
||||
++itInterval;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void ITimeManager::pause() {
|
||||
if(this->isPaused) return;
|
||||
this->isPaused = true;
|
||||
this->eventTimePaused.invoke();
|
||||
}
|
||||
|
||||
void ITimeManager::resume() {
|
||||
if(!this->isPaused) return;
|
||||
this->isPaused = false;
|
||||
this->eventTimeResumed.invoke();
|
||||
}
|
@ -1,50 +1,85 @@
|
||||
// Copyright (c) 2022 Dominic Masters
|
||||
//
|
||||
// This software is released under the MIT License.
|
||||
// https://opensource.org/licenses/MIT
|
||||
|
||||
#pragma once
|
||||
#include "dawnlibs.hpp"
|
||||
#include "event/Event.hpp"
|
||||
|
||||
namespace Dawn {
|
||||
class ITimeManager {
|
||||
public:
|
||||
float_t time = 0.0f;
|
||||
float_t unpausedTime = 0.0f;
|
||||
float_t delta = 0.016f;
|
||||
bool_t isPaused = false;
|
||||
|
||||
Event<> eventTimePaused;
|
||||
Event<> eventTimeResumed;
|
||||
|
||||
/**
|
||||
* Constructor for the Time Manager.
|
||||
*/
|
||||
ITimeManager();
|
||||
|
||||
/**
|
||||
* Updates / Ticks the time manager instance.
|
||||
*
|
||||
* @param delta Time in seconds to tick the instance by.
|
||||
*/
|
||||
void update(float_t delta);
|
||||
|
||||
/**
|
||||
* Pauses the game.
|
||||
*/
|
||||
void pause();
|
||||
|
||||
/**
|
||||
* Resumes the game.
|
||||
*/
|
||||
void resume();
|
||||
|
||||
/**
|
||||
* Returns the current system timestamp.
|
||||
*
|
||||
* @return Current timestamp.
|
||||
*/
|
||||
virtual int64_t getTimestamp() = 0;
|
||||
};
|
||||
// Copyright (c) 2022 Dominic Masters
|
||||
//
|
||||
// This software is released under the MIT License.
|
||||
// https://opensource.org/licenses/MIT
|
||||
|
||||
#pragma once
|
||||
#include "dawnlibs.hpp"
|
||||
#include "event/Event.hpp"
|
||||
#include "state/StateProvider.hpp"
|
||||
|
||||
namespace Dawn {
|
||||
class ITimeManager {
|
||||
public:
|
||||
float_t time = 0.0f;
|
||||
float_t unpausedTime = 0.0f;
|
||||
float_t delta = 0.016f;
|
||||
bool_t isPaused = false;
|
||||
|
||||
StateProviderSet<float_t> timeoutProvider;
|
||||
StateProviderSet<std::pair<float_t, float_t>> intervalProvider;
|
||||
|
||||
Event<> eventTimePaused;
|
||||
Event<> eventTimeResumed;
|
||||
|
||||
/**
|
||||
* Constructor for the Time Manager.
|
||||
*/
|
||||
ITimeManager();
|
||||
|
||||
/**
|
||||
* Updates / Ticks the time manager instance.
|
||||
*
|
||||
* @param delta Time in seconds to tick the instance by.
|
||||
*/
|
||||
void update(float_t delta);
|
||||
|
||||
/**
|
||||
* Pauses the game.
|
||||
*/
|
||||
void pause();
|
||||
|
||||
/**
|
||||
* Resumes the game.
|
||||
*/
|
||||
void resume();
|
||||
|
||||
/**
|
||||
* Returns the current system timestamp.
|
||||
*
|
||||
* @return Current timestamp.
|
||||
*/
|
||||
virtual int64_t getTimestamp() = 0;
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Use timeout provider method. Invokes your callback after some specified
|
||||
* time has passed.
|
||||
*
|
||||
* @tparam T Your context type (usually SceneItemComponent).
|
||||
* @param someCallback Callback to be invoked.
|
||||
* @param timeout Timeout to wait before the method is invoked.
|
||||
* @param context Context of the component, just use (this).
|
||||
* @return Method that when invoked will unsubscribe from the timeout.
|
||||
*/
|
||||
template<class T>
|
||||
std::function<void()> useTimeout(
|
||||
std::function<void()> someCallback,
|
||||
float_t timeout,
|
||||
T *context
|
||||
) {
|
||||
return context->getGame()->timeManager.timeoutProvider.addEffect(someCallback, timeout, context);
|
||||
}
|
||||
|
||||
template<class T>
|
||||
std::function<void()> useInterval(
|
||||
std::function<void()> callback,
|
||||
float_t interval,
|
||||
T *context
|
||||
) {
|
||||
return context->getGame()->timeManager.intervalProvider.addEffect(
|
||||
callback, std::pair<float_t, float_t>({ interval, 0 }), context
|
||||
);
|
||||
}
|
||||
}
|
@ -30,9 +30,9 @@ void TicTacToeGame::onStart() {
|
||||
++itTiles;
|
||||
}
|
||||
|
||||
useTimeout([&]{
|
||||
std::cout << "Timeout" << std::endl;
|
||||
}, 1000, this)();
|
||||
useInterval([&]{
|
||||
std::cout << "Interval" << std::endl;
|
||||
}, 1.0f, this);
|
||||
|
||||
useEffect([&]{
|
||||
if(!gameOver) return;
|
||||
|
Reference in New Issue
Block a user