osb/source/game/StarEffectEmitter.hpp

42 lines
918 B
C++
Raw Permalink Normal View History

#pragma once
2023-06-20 04:33:09 +00:00
#include "StarNetElementSystem.hpp"
#include "StarEffectSourceDatabase.hpp"
#include "StarGameTypes.hpp"
namespace Star {
STAR_CLASS(RenderCallback);
STAR_CLASS(EffectEmitter);
class EffectEmitter : public NetElementGroup {
public:
EffectEmitter();
void addEffectSources(String const& position, StringSet effectSources);
void setSourcePosition(String name, Vec2F const& position);
void setDirection(Direction direction);
void setBaseVelocity(Vec2F const& velocity);
void tick(float dt, EntityMode mode);
2023-06-20 04:33:09 +00:00
void reset();
void render(RenderCallback* renderCallback);
Json toJson() const;
void fromJson(Json const& diskStore);
private:
Set<pair<String, String>> m_newSources;
List<EffectSourcePtr> m_sources;
NetElementData<Set<pair<String, String>>> m_activeSources;
StringMap<Vec2F> m_positions;
Direction m_direction;
Vec2F m_baseVelocity;
bool m_renders;
};
}