#pragma once #include #include #include #include #include #include "util.hpp" #include "map/Octree.h" #include #define _USE_MATH_DEFINES #include struct XYZHasher { std::size_t operator()(const sf::Vector3i& k) const { return ((std::hash()(k.x) ^ (std::hash()(k.y) << 1)) >> 1) ^ (std::hash()(k.z) << 1); } }; class Map { public: Map(uint32_t dimensions); void setVoxel(sf::Vector3i position, int val); bool getVoxelFromOctree(sf::Vector3i position); bool getVoxel(sf::Vector3i pos); Octree octree; bool test(); private: // ======= DEBUG =========== int counter = 0; std::stringstream output_stream; // ========================= void generate_octree(unsigned int dimensions); char* voxel_data; };