aboutsummaryrefslogtreecommitdiffstats
path: root/include/components/solid.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/components/solid.hpp')
-rw-r--r--include/components/solid.hpp45
1 files changed, 45 insertions, 0 deletions
diff --git a/include/components/solid.hpp b/include/components/solid.hpp
new file mode 100644
index 0000000..35bfcf7
--- /dev/null
+++ b/include/components/solid.hpp
@@ -0,0 +1,45 @@
+#ifndef COMPONENTS_SOLID_HPP_
+#define COMPONENTS_SOLID_HPP_
+
+#include "base.hpp"
+
+#include <vector2.hpp>
+
+/**
+ * @struct Solid
+ * @brief Allows an entity to collide with other objects.
+ * When an entity has this component it can collide with the world and other objects.
+ */
+struct Solid : public Component {
+ /**
+ * Constructor that sets the entities dimensions based on what is passed.
+ * @param w The desired width of the entity.
+ * @param h The desired height of the entity.
+ */
+ Solid(float w = 0.0f, float h = 0.0f)
+ : width(w), height(h), offset(0), passable(true) {}
+ Solid(XMLElement* imp, XMLElement* def) {
+ fromXML(imp, def);
+ }
+
+ void Passable(bool v) { passable = v; }
+ bool Passable(void) { return passable; }
+
+ float width; /**< The width of the entity in units */
+ float height; /**< The height of the entity in units */
+ vec2 offset; /**< This allows us to make the hitbox in any spot */
+ bool passable; /**< This determines whether or not one can pass by the entity */
+
+ void fromXML(XMLElement* imp, XMLElement* def) final {
+ (void)imp;
+ vec2 c;
+ if (def->Attribute("value") != nullptr)
+ c = def->StrAttribute("value");
+ else
+ c = vec2(0, 0);
+
+ width = c.x, height = c.y, offset = 0, passable = true;
+ }
+};
+
+#endif // COMPONENTS_SOLID_HPP_