#include "Chunk.h" #include "voxel.h" #include "../lighting/Lightmap.h" Chunk::Chunk(int xpos, int ypos, int zpos) : x(xpos), y(ypos), z(zpos){ voxels = new voxel[CHUNK_VOL]; for (unsigned int i = 0; i < CHUNK_VOL; i++) voxels[i].id = 1; lightmap = new Lightmap(); } Chunk::~Chunk(){ delete lightmap; delete[] voxels; } bool Chunk::isEmpty(){ int id = -1; for (int i = 0; i < CHUNK_VOL; i++){ if (voxels[i].id != id){ if (id != -1) return false; else id = voxels[i].id; } } return true; }