summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockOre.h
blob: 9684dbb195f2b0a6e8514eed57b1189c3be06fbf (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80

#pragma once

#include "BlockHandler.h"
#include "../MersenneTwister.h"
#include "../World.h"





class cBlockOreHandler :
	public cBlockHandler
{
public:
	cBlockOreHandler(BLOCKTYPE a_BlockType)
		: cBlockHandler(a_BlockType)
	{
	}

	virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
	{
		short ItemType = m_BlockType;
		char Count = 1;
		short Meta = 0;
		
		MTRand r1;
		switch (m_BlockType)
		{
			case E_BLOCK_LAPIS_ORE:
			{
				ItemType = E_ITEM_DYE;
				Count = 4 + (char)r1.randInt(4);
				Meta = 4;
				break;
			}
			case E_BLOCK_REDSTONE_ORE:
			case E_BLOCK_REDSTONE_ORE_GLOWING:
			{
				Count = 4 + (char)r1.randInt(1);
				break;
			}
			default:
			{
				Count = 1;
				break;
			}
		}

		switch (m_BlockType)
		{
			case E_BLOCK_DIAMOND_ORE:
			{
				ItemType = E_ITEM_DIAMOND;
				break;
			}
			case E_BLOCK_REDSTONE_ORE:
			case E_BLOCK_REDSTONE_ORE_GLOWING:
			{
				ItemType = E_ITEM_REDSTONE_DUST;
				break;
			}
			case E_BLOCK_EMERALD_ORE:
			{
				ItemType = E_ITEM_EMERALD;
				break;
			}
			case E_BLOCK_COAL_ORE:
			{
				ItemType = E_ITEM_COAL;
				break;
			}
		}
		a_Pickups.push_back(cItem(ItemType, Count, Meta));
	}
} ;