diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-06-13 21:01:08 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-06-13 21:01:08 -0400 |
commit | 316df0931c66e43e69f21bda28c77b9bdb1e8bca (patch) | |
tree | d98231e4b41d046a2a60ee9c6f1cc724a9e3837d /include/components/visible.hpp | |
parent | 11b8e727e04ed6095164bb826541409f88047625 (diff) |
component reorginization; entity flashes
Diffstat (limited to 'include/components/visible.hpp')
-rw-r--r-- | include/components/visible.hpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/include/components/visible.hpp b/include/components/visible.hpp new file mode 100644 index 0000000..4785fb0 --- /dev/null +++ b/include/components/visible.hpp @@ -0,0 +1,30 @@ +#ifndef COMPONENTS_VISIBLE_HPP_ +#define COMPONENTS_VISIBLE_HPP_ + +#include "base.hpp" + +/** + * @struct Visible + * @brief If an entity is visible we want to be able to draw it. + */ +struct Visible : public Component { + /** + * @brief Decide what layer to draw the entity on. + * When stuff is drawn, it is drawn on a "layer". This layer gives more of a 3D effect to the world. + * @param z The desired "layer" of the entity. + */ + Visible(float z = 0.0f): z(z) {} + Visible(XMLElement* imp, XMLElement* def) { + fromXML(imp, def); + } + + float z; /**< The value along the z axis the entity will be drawn on */ + + void fromXML(XMLElement* imp, XMLElement* def) final { + (void)imp; + if (def->QueryFloatAttribute("value", &z) != XML_NO_ERROR) + z = 0; + } +}; + +#endif // COMPONENTS_VISIBLE_HPP_ |