summaryrefslogtreecommitdiffstats
path: root/src/Block.hpp
blob: dfd6762db8a8dc08c7fdfdf982f4ec4c6c2a09d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#pragma once

#include <functional>

struct Block {
    Block();
    Block(unsigned short id, unsigned char state,
          unsigned char light, unsigned char sky);
    ~Block();

    unsigned short id : 13;
    unsigned char state : 4;
    unsigned char light : 4;
    unsigned char sky : 4;
};

struct BlockId {
    unsigned short id : 13;
    unsigned char state : 4;
};

bool operator==(const BlockId& lhs, const BlockId &rhs);

bool operator<(const BlockId& lhs, const BlockId &rhs);

namespace std {
    template <>
    struct hash<BlockId> {
        std::size_t operator()(const BlockId& k) const {
            size_t id = std::hash<unsigned short>()(k.id);
            size_t state = std::hash<unsigned char>()(k.state);

            return (id & state << 1);
        }
    };
}