add debug world generator visualization

This commit is contained in:
MihailRis
2024-09-30 15:14:34 +03:00
parent 88752806e6
commit 75d66b644b
11 changed files with 116 additions and 9 deletions
+11
View File
@@ -34,6 +34,14 @@ struct ChunkPrototype {
std::vector<StructurePlacement> structures;
};
struct WorldGenDebugInfo {
int areaOffsetX;
int areaOffsetY;
uint areaWidth;
uint areaHeight;
std::unique_ptr<ubyte[]> areaLevels;
};
/// @brief High-level world generation controller
class WorldGenerator {
/// @param def generator definition
@@ -80,5 +88,8 @@ public:
/// @param z chunk position Y divided by CHUNK_D
void generate(voxel* voxels, int x, int z);
WorldGenDebugInfo createDebugInfo() const;
/// @brief Default generator name // TODO: move to config
inline static std::string DEFAULT = "core:default";
};