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/physics.hpp | |
parent | 11b8e727e04ed6095164bb826541409f88047625 (diff) |
component reorginization; entity flashes
Diffstat (limited to 'include/components/physics.hpp')
-rw-r--r-- | include/components/physics.hpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/include/components/physics.hpp b/include/components/physics.hpp new file mode 100644 index 0000000..8e462a9 --- /dev/null +++ b/include/components/physics.hpp @@ -0,0 +1,31 @@ +#ifndef COMPONENTS_PHYSICS_HPP_ +#define COMPONENTS_PHYSICS_HPP_ + +#include "base.hpp" + +/** + * @struct Physics + * @brief Allows and entity to react to gravity and frictions. + * When an entity inherits this component it will react with gravity and move with friction. + */ +struct Physics : public Component { + /** + * Constructor that sets the gravity constant, if not specified it becomes 0. + * @param g The non default gravity constant. + */ + Physics(float g = 0.2f): g(g) {} + Physics(XMLElement* imp, XMLElement* def) { + fromXML(imp, def); + } + + float g; /**< The gravity constant, how fast the object falls */ + + void fromXML(XMLElement* imp, XMLElement* def) final { + if (imp->QueryFloatAttribute("gravity", &g) != XML_NO_ERROR) { + if (def->QueryFloatAttribute("value", &g) != XML_NO_ERROR) + g = 0.2f; + } + } +}; + +#endif // COMPONENTS_PHYSICS_HPP_ |