]> git.localhorst.tv Git - blank.git/blobdiff - src/world/BlockType.hpp
special treatment for players
[blank.git] / src / world / BlockType.hpp
index caccb8f4b7ec237a014086195c6b065c875e2107..bdc4721e96dea3b4762cc219190b4d0c49379ff6 100644 (file)
@@ -3,7 +3,7 @@
 
 #include "Block.hpp"
 #include "../model/BlockModel.hpp"
-#include "../model/Model.hpp"
+#include "../model/EntityModel.hpp"
 #include "../model/OutlineModel.hpp"
 #include "../model/shapes.hpp"
 
@@ -17,6 +17,7 @@ namespace blank {
 struct BlockType {
 
        const Shape *shape;
+       float texture;
        glm::vec3 color;
        glm::vec3 outline_color;
 
@@ -63,21 +64,17 @@ struct BlockType {
                return fill[block.OrientedFace(face)];
        }
 
-       void FillModel(
-               Model::Buffer &m,
+       void FillEntityModel(
+               EntityModel::Buffer &m,
                const glm::mat4 &transform = glm::mat4(1.0f),
-               Model::Index idx_offset = 0
+               EntityModel::Index idx_offset = 0
        ) const noexcept;
        void FillBlockModel(
                BlockModel::Buffer &m,
                const glm::mat4 &transform = glm::mat4(1.0f),
                BlockModel::Index idx_offset = 0
        ) const noexcept;
-       void FillOutlineModel(
-               OutlineModel &m,
-               const glm::vec3 &pos_offset = { 0, 0, 0 },
-               OutlineModel::Index idx_offset = 0
-       ) const noexcept;
+       void FillOutlineModel(OutlineModel::Buffer &m) const noexcept;
 
 };