]> git.localhorst.tv Git - blank.git/commitdiff
decrease block id size
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Tue, 10 Mar 2015 17:39:05 +0000 (18:39 +0100)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Tue, 10 Mar 2015 17:39:05 +0000 (18:39 +0100)
src/block.cpp
src/block.hpp

index 50c4a4ffd9040c136f6bfcdebff4704dc8fcdb33..b0de21aff95bf52d1538ec703b4cf55d6fc82f19 100644 (file)
@@ -28,7 +28,7 @@ BlockTypeRegistry::BlockTypeRegistry() {
        Add(BlockType());
 }
 
-int BlockTypeRegistry::Add(const BlockType &t) {
+Block::Type BlockTypeRegistry::Add(const BlockType &t) {
        int id = types.size();
        types.push_back(t);
        types.back().id = id;
index 1c1dddb10c3e4377f6e5d1b6617be38eedf00674..5d8e7e70c5404f5b3e201b49beb23584860cbf23 100644 (file)
 
 namespace blank {
 
+/// single 1x1x1 cube
+struct Block {
+
+       using Type = unsigned short;
+       using Pos = glm::vec3;
+
+       Type type;
+
+       constexpr explicit Block(Type type = 0)
+       : type(type) { }
+
+};
+
+
 /// attributes of a type of block
 struct BlockType {
 
-       int id;
+       Block::Type id;
 
        bool visible;
 
@@ -27,7 +41,7 @@ struct BlockType {
                const glm::vec3 &color = { 1, 1, 1 },
                const Shape *shape = &DEFAULT_SHAPE,
                const glm::vec3 &outline_color = { -1, -1, -1 })
-       : id(-1), visible(v), shape(shape), color(color), outline_color(outline_color) { }
+       : id(0), visible(v), shape(shape), color(color), outline_color(outline_color) { }
 
        static const NullShape DEFAULT_SHAPE;
 
@@ -52,31 +66,18 @@ public:
        BlockTypeRegistry();
 
 public:
-       int Add(const BlockType &);
+       Block::Type Add(const BlockType &);
 
        size_t Size() const { return types.size(); }
 
-       BlockType *operator [](int id) { return &types[id]; }
-       const BlockType *Get(int id) const { return &types[id]; }
+       BlockType *operator [](Block::Type id) { return &types[id]; }
+       const BlockType *Get(Block::Type id) const { return &types[id]; }
 
 private:
        std::vector<BlockType> types;
 
 };
 
-
-/// single 1x1x1 cube
-struct Block {
-
-       using Pos = glm::vec3;
-
-       int type;
-
-       constexpr explicit Block(int type = 0)
-       : type(type) { }
-
-};
-
 }
 
 #endif