This commit is contained in:
Aria 2025-03-21 22:23:30 +11:00
commit 9c94d113d3
Signed by untrusted user who does not match committer: aria
GPG key ID: 19AB7AA462B8AB3B
10260 changed files with 1237388 additions and 0 deletions

View file

@ -0,0 +1,44 @@
#ifndef STAR_EFFECT_EMITTER_HPP
#define STAR_EFFECT_EMITTER_HPP
#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(EntityMode mode);
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;
};
}
#endif