#ifndef VOXEL_BLOCK_H #define VOXEL_BLOCK_H #include "voxel_buffer.h" #include #include // Internal structure holding a reference to mesh visuals, physics and a block of voxel data. // TODO Voxel data should be separated from this class VoxelBlock { public: Ref voxels; // SIZE*SIZE*SIZE voxels Vector3i pos; static VoxelBlock *create(Vector3i bpos, Ref buffer, unsigned int size); void set_mesh(Ref mesh, Ref world); void enter_world(World *world); void exit_world(); void set_visible(bool visible); private: VoxelBlock(); Vector3i _position_in_voxels; Ref _mesh; RID _mesh_instance; }; #endif // VOXEL_BLOCK_H