From 316df0931c66e43e69f21bda28c77b9bdb1e8bca Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 13 Jun 2017 21:01:08 -0400 Subject: component reorginization; entity flashes --- include/components/health.hpp | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 include/components/health.hpp (limited to 'include/components/health.hpp') diff --git a/include/components/health.hpp b/include/components/health.hpp new file mode 100644 index 0000000..eacaaa5 --- /dev/null +++ b/include/components/health.hpp @@ -0,0 +1,34 @@ +#ifndef COMPONENTS_HEALTH_HPP_ +#define COMPONENTS_HEALTH_HPP_ + +#include "base.hpp" + +/** + * @struct Health + * @brief Gives and entity health and stuff. + */ +struct Health : public Component { + /** + * Constructor that sets the variables, with 1 health as default. + */ + Health(int m = 1, int h = 0) + : health(h != 0 ? h : m), maxHealth(m) {} + Health(XMLElement* imp, XMLElement* def) { + fromXML(imp, def); + } + + int health; /**< The current amount of health */ + int maxHealth; /**< The maximum amount of health */ + + void fromXML(XMLElement* imp, XMLElement* def) final { + (void)imp; + (void)def; + // TODO + if (def->QueryIntAttribute("value", &health) != XML_NO_ERROR) + health = 1; + maxHealth = health; + } +}; + + +#endif // COMPONENTS_HEALTH_HPP_ -- cgit v1.2.3