43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
#ifndef Systems_InterpolationSystem_h__
|
|
#define Systems_InterpolationSystem_h__
|
|
|
|
#include <queue>
|
|
#include <unordered_map>
|
|
#include <boost/shared_array.hpp>
|
|
#include <glm/common.hpp>
|
|
|
|
#include "Common.h"
|
|
#include "Core/System.h"
|
|
#include "Core/EventBroker.h"
|
|
|
|
#include "Network/EInterpolate.h"
|
|
|
|
class InterpolationSystem : public PureSystem
|
|
{
|
|
struct Transform {
|
|
glm::vec3 Position;
|
|
glm::vec3 Scale;
|
|
glm::vec3 Orientation;
|
|
double interpolationTime;
|
|
};
|
|
public:
|
|
InterpolationSystem(EventBroker* eventbroker)
|
|
: PureSystem(eventbroker, "Transform")
|
|
{
|
|
EVENT_SUBSCRIBE_MEMBER(m_EInterpolate, &InterpolationSystem::OnInterpolate);
|
|
}
|
|
~InterpolationSystem() { }
|
|
|
|
virtual void UpdateComponent(World* world, ComponentWrapper& transform, double dt) override;
|
|
private:
|
|
//std::unordered_map<EntityID, std::queue<Transform>> m_InterpolationPoints;
|
|
std::unordered_map<EntityID, Transform> m_InterpolationPoints;
|
|
|
|
glm::vec3 vectorInterpolation(glm::vec3 prev, glm::vec3 next, double currentTime);
|
|
|
|
EventRelay<InterpolationSystem, Events::Interpolate> m_EInterpolate;
|
|
bool InterpolationSystem::OnInterpolate(const Events::Interpolate& e);
|
|
};
|
|
|
|
#endif
|