diff options
Diffstat (limited to 'include/components/light.hpp')
-rw-r--r-- | include/components/light.hpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/include/components/light.hpp b/include/components/light.hpp new file mode 100644 index 0000000..95fe6ec --- /dev/null +++ b/include/components/light.hpp @@ -0,0 +1,26 @@ +#ifndef COMPONENTS_LIGHT_HPP_ +#define COMPONENTS_LIGHT_HPP_ + +#include <components/base.hpp> +#include <vector2.hpp> +#include <color.hpp> +#include <systems/light.hpp> + +struct Illuminate : public Component { + int index; + + Illuminate(vec2 pos, float radius, Color color) { + index = LightSystem::addLight(pos, radius, color); + } + Illuminate(XMLElement* imp, XMLElement* def) { + fromXML(imp, def); + } + + void fromXML(XMLElement* imp, XMLElement* def) final { + (void)imp; + float radius = def->FloatAttribute("radius"); + index = LightSystem::addLight(vec2(), radius, Color(1, 1, 0)); + } +}; + +#endif // COMPONENTS_LIGHT_HPP_ |