diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-10-08 03:03:16 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-10-08 03:03:16 -0400 |
commit | a422f32613441b5313e4a3bb0fab61f8cb87914c (patch) | |
tree | 0a6c8f17e6a8df0b6c377813fa700064f68ced93 /src/world.hpp | |
parent | 5f53889d4357d8dba6e726ed38358eca96dbeb47 (diff) | |
parent | 5b1c22529a946a782a8376de2b34c28348d078d1 (diff) |
Using polymorphism for world layer storage now, and added demo backdrops
Diffstat (limited to 'src/world.hpp')
-rw-r--r-- | src/world.hpp | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/world.hpp b/src/world.hpp index 66d9e3f..0c1275e 100644 --- a/src/world.hpp +++ b/src/world.hpp @@ -31,6 +31,11 @@ #include "texture.hpp" #include "events/render.hpp" +#include <components/Position.hpp> // For entity position +#include <components/Velocity.hpp> // For entity velocity +#include <components/Physics.hpp> // For entity hitbox(es) + + struct WorldMaterial { bool passable = false; @@ -120,8 +125,11 @@ private: unsigned int layers; unsigned int unitSize; - std::vector<SolidLayer> solidLayers; - std::vector<Layer> drawLayers; + std::vector<std::shared_ptr<SolidLayer>> solidLayers; + std::vector<std::shared_ptr<Layer>> drawLayers; + + std::vector<std::pair<glm::vec2, glm::vec2>> + getIntersectingPlanes(glm::vec2 origin, glm::vec2 dir); protected: // RENDER @@ -150,6 +158,7 @@ public: /* PHYSICS */ double getHeight(double x, double y, double z); + glm::vec3 collide(glm::vec3 &start, glm::vec3 &end, Physics &phys); // NEW unsigned int getUnitSize() {return unitSize;} |