diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-10-01 02:01:20 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-10-01 02:01:20 -0400 |
commit | a62d96ad0521b064e6ef61a6f80888e27966502b (patch) | |
tree | d56045d4330314d608c39b5b1f304a4b99f17975 /src/world.hpp | |
parent | 5cceca5ec696e6626cea0ec07f9db1b28bb3b875 (diff) |
Started texture based world definitions
Diffstat (limited to 'src/world.hpp')
-rw-r--r-- | src/world.hpp | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/world.hpp b/src/world.hpp index 9314fa6..acdb533 100644 --- a/src/world.hpp +++ b/src/world.hpp @@ -57,6 +57,41 @@ struct WorldMaterial } }; +class Layer +{ +private: + Texture texture; + Texture normal; + + float drawLayer = 0.0f; + +public: + + Layer(float z, sol::table tab) { + drawLayer = z; + if (tab["texture"] != nullptr) { + sol::object t = tab["texture"]; + texture = Texture(t); + } + if (tab["normal"] != nullptr) { + sol::object n = tab["normal"]; + normal = Texture(n); + } + } +}; + +class SolidLayer : public Layer +{ +private: + // hitbox something something +public: + SolidLayer(float z, sol::table tab) : Layer(z, tab) { + if (tab["hitbox"] != nullptr) { + std::cout << "hitbox: " << std::string(tab["hitbox"]) << std::endl; + } + } +}; + class World { friend class WorldSystem; @@ -72,6 +107,11 @@ private: std::unordered_map<std::string, int> string_registry; std::vector<WorldMaterial> registry; + // NEW + unsigned int unitSize; + std::vector<SolidLayer> solidLayers; + std::vector<Layer> drawLayers; + protected: // RENDER std::basic_string<WorldMeshData> mesh; @@ -115,6 +155,13 @@ public: /* PHYSICS */ double getHeight(double x, double y, double z); + + // NEW + unsigned int getUnitSize() {return unitSize;} + void setUnitSize(unsigned int u) {unitSize = u;} + + void registerLayer(float, sol::object); + void registerDecoLayer(float, sol::object); }; /** |