diff options
Diffstat (limited to 'src/world.hpp')
-rw-r--r-- | src/world.hpp | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/src/world.hpp b/src/world.hpp index 7a7461f..cea599b 100644 --- a/src/world.hpp +++ b/src/world.hpp @@ -28,6 +28,13 @@ #include "texture.hpp" +struct WorldMeshData +{ + float posX, posY, posZ; + float texX, texY; + float transparency; +}; + struct WorldMaterial { bool passable = false; @@ -59,12 +66,12 @@ private: unsigned int height; unsigned int width; - std::vector<std::vector<std::vector<unsigned int>>> data; + std::vector<std::vector<std::vector<int>>> data; - std::unordered_map<std::string, unsigned int> string_registry; + std::unordered_map<std::string, int> string_registry; std::vector<WorldMaterial> registry; - std::vector<float> mesh; + std::basic_string<WorldMeshData> mesh; public: /* VARS */ sol::function generate; @@ -79,10 +86,6 @@ public: data.clear(); } - /* SEED */ - unsigned int getSeed(); - unsigned int setSeed(unsigned int); - /* REGISTRY */ void registerMaterial(std::string, sol::object); @@ -97,6 +100,10 @@ public: /* RENDERING */ void generateMesh(); + + /* SEED */ + unsigned int getSeed(); + unsigned int setSeed(unsigned int); }; /** |