X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fworld.hpp;h=83fd3e80738cdcfe2778e5d30b523f4639c131d4;hb=b79bc060068daf80c707f7ca08cb40a716367784;hp=9fb07798c3f976569d4052cb916dc359d702adca;hpb=e7a968ef0ae496d1d45d63a25df59db31f9b966f;p=blank.git diff --git a/src/world.hpp b/src/world.hpp index 9fb0779..83fd3e8 100644 --- a/src/world.hpp +++ b/src/world.hpp @@ -1,8 +1,9 @@ #ifndef BLANK_WORLD_HPP_ #define BLANK_WORLD_HPP_ -#include "model.hpp" #include "geometry.hpp" +#include "model.hpp" +#include "shape.hpp" #include #include @@ -18,16 +19,20 @@ struct BlockType { int id; bool visible; + + const Shape *shape; glm::vec3 color; glm::vec3 outline_color; - constexpr explicit BlockType( + explicit BlockType( bool v = false, const glm::vec3 &color = { 1, 1, 1 }, + const Shape *shape = &DEFAULT_SHAPE, const glm::vec3 &outline_color = { -1, -1, -1 }) - : id(-1), visible(v), color(color), outline_color(outline_color) { } + : id(-1), visible(v), shape(shape), color(color), outline_color(outline_color) { } static const BlockType DEFAULT; + static const CuboidShape DEFAULT_SHAPE; void FillVBO( @@ -178,6 +183,9 @@ private: private: BlockTypeRegistry blockType; + CuboidShape blockShape; + CuboidShape slabShape; + std::list chunks; };