diff options
author | Andy <drumsetmonkey@gmail.com> | 2016-10-26 08:43:43 -0400 |
---|---|---|
committer | Andy <drumsetmonkey@gmail.com> | 2016-10-26 08:43:43 -0400 |
commit | e0f353be4c21f38978bef83e9651ef9eda886da4 (patch) | |
tree | 343e10ffab515f8141cd010f9f297575ad79b3a9 /include/components.hpp | |
parent | 52de6c2e6c048b84a7665b6fc583b2259bbdd3af (diff) |
Stuff is solid
Diffstat (limited to 'include/components.hpp')
-rw-r--r-- | include/components.hpp | 34 |
1 files changed, 32 insertions, 2 deletions
diff --git a/include/components.hpp b/include/components.hpp index becc839..c0b7110 100644 --- a/include/components.hpp +++ b/include/components.hpp @@ -92,12 +92,16 @@ struct Solid { * @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) {} - Solid(float w = 0.0f, float h = 0.0f, vec2 offset = 0.0f): width(w), height(h), offset(offset) {} + Solid(float w = 0.0f, float h = 0.0f): width(w), height(h) {offset = 0.0f; passable = true; } + //Solid(float w = 0.0f, float h = 0.0f, vec2 offset = 0.0f): width(w), height(h), offset(offset) {passable = true; } + + 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 */ }; struct SpriteData { @@ -153,6 +157,32 @@ struct Sprite { return 0; } + vec2 getSpriteSize() { + vec2 st; /** the start location of the sprite */ + vec2 dim; /** how wide the sprite is */ + + if (sprite.size()) { + st.x = sprite[0].second.x; + st.y = sprite[0].second.y; + } else { + return vec2(0.0f, 0.0f); + } + + for (auto &s : sprite) { + if (s.second.x < st.x) + st.x = s.second.x; + if (s.second.y < st.y) + st.y = s.second.y; + + if (s.second.x + s.first.size.x > dim.x) + dim.x = s.second.x + s.first.size.x; + if (s.second.y + s.first.size.y > dim.y) + dim.y = s.second.y + s.first.size.y; + } + + return dim; + } + std::vector<std::pair<SpriteData, vec2>> sprite; bool faceLeft; }; |