diff --git a/src/dawnrpg/component/world/Chunk.cpp b/src/dawnrpg/component/world/Chunk.cpp index 97f7cb19..afb5d69e 100644 --- a/src/dawnrpg/component/world/Chunk.cpp +++ b/src/dawnrpg/component/world/Chunk.cpp @@ -7,3 +7,10 @@ using namespace Dawn; +Chunk::Chunk() { + +} + +Chunk::~Chunk() { + +} \ No newline at end of file diff --git a/src/dawnrpg/component/world/Chunk.hpp b/src/dawnrpg/component/world/Chunk.hpp index 6abb4f2a..e33071ef 100644 --- a/src/dawnrpg/component/world/Chunk.hpp +++ b/src/dawnrpg/component/world/Chunk.hpp @@ -6,9 +6,31 @@ #pragma once #include "dawnlibs.hpp" +#define CHUNK_WIDTH 32 +#define CHUNK_HEIGHT 32 +#define CHUNK_DEPTH 8 + namespace Dawn { + struct ChunkPosition { + int32_t x; + int32_t y; + int32_t z; + }; + + enum class TileID : uint16_t { + Null = 0, + Test = 1 + }; + + struct Tile { + enum TileID id; + }; + class Chunk { public: + struct ChunkPosition position; + struct Tile tiles[CHUNK_WIDTH][CHUNK_HEIGHT][CHUNK_DEPTH]; Chunk(); + ~Chunk(); }; } \ No newline at end of file diff --git a/src/dawnrpg/component/world/Map.cpp b/src/dawnrpg/component/world/Map.cpp index 87176cb4..bbde1d42 100644 --- a/src/dawnrpg/component/world/Map.cpp +++ b/src/dawnrpg/component/world/Map.cpp @@ -32,6 +32,35 @@ void Map::onInit() { } void Map::onDispose() { + this->chunkOrder.clear(); +} + +void Map::setSize( + const uint8_t width, + const uint8_t height, + const uint8_t depth +) { + this->mapChunkWidth = width; + this->mapChunkHeight = height; + this->mapChunkDepth = depth; + this->chunks = std::make_unique(width * height * depth); + + this->chunkTopLeft.x = 0; + this->chunkTopLeft.y = 0; + this->chunkTopLeft.z = 0; + + this->chunkOrder.clear(); + for(uint8_t z = 0; z < depth; z++) { + for(uint8_t y = 0; y < height; y++) { + for(uint8_t x = 0; x < width; x++) { + this->chunkOrder.push_back(&this->chunks[ + (z * height * width) + + (y * width) + + x + ]); + } + } + } } std::shared_ptr Map::getWorld() { diff --git a/src/dawnrpg/component/world/Map.hpp b/src/dawnrpg/component/world/Map.hpp index 0ab4f40b..bfb83a0f 100644 --- a/src/dawnrpg/component/world/Map.hpp +++ b/src/dawnrpg/component/world/Map.hpp @@ -7,11 +7,17 @@ #include "component/world/World.hpp" #include "component/entity/EntityID.hpp" #include "component/entity/EntityTilePosition.hpp" +#include "Chunk.hpp" namespace Dawn { class Map : public SceneComponent { private: std::unordered_map> entities; + + uint8_t mapChunkWidth, mapChunkHeight, mapChunkDepth; + std::unique_ptr chunks; + std::vector chunkOrder; + struct ChunkPosition chunkTopLeft; /** * Part of the ECS, this function is called when an entity is initialized. @@ -33,6 +39,19 @@ namespace Dawn { void onInit() override; void onDispose() override; + /** + * Sets the size of the map. + * + * @param width The width of the map. + * @param height The height of the map. + * @param depth The depth of the map. + */ + void setSize( + const uint8_t width, + const uint8_t height, + const uint8_t depth + ); + /** * Gets the world that this map belongs to. *