summaryrefslogtreecommitdiffstats
path: root/src/Block.hpp
blob: 535ae689333d84452c40cedc90a73605361399a4 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#pragma once

#include <utility>
#include <string>

#include "Vector.hpp"

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

enum BlockFacing {
    Bottom = 0,
    Top,
    North,
    South,
    West,
    East
};

inline bool operator==(const BlockId& lhs, const BlockId &rhs) {
	return (lhs.id == rhs.id) && (lhs.state == rhs.state);
}

inline bool operator<(const BlockId& lhs, const BlockId &rhs) {
	if (lhs.id != rhs.id)
		return lhs.id < rhs.id;
	return lhs.state < rhs.state;
}

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);
        }
    };
}

struct BlockInfo {
	bool collides;
	std::string blockstate;
	std::string variant;	
};

struct LiquidInfo {
    std::string flowTexture;
    std::string stillTexture;
};

void RegisterStaticBlockInfo(BlockId blockId, BlockInfo blockInfo);

void RegisterStaticLiquidInfo(BlockId blockId, LiquidInfo liquidInfo);

BlockInfo* GetBlockInfo(BlockId blockId);

const LiquidInfo& GetBlockLiquidInfo(BlockId blockId);