summaryrefslogtreecommitdiffstats
path: root/src/Simulator/IncrementalRedstoneSimulator/RedstoneHandler.h
blob: 788a3c3377bd3d882d41b8e24bcbb178f94dda39 (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121

#pragma once

#include "World.h"





class cRedstoneHandler
{
public:

	cRedstoneHandler() = default;
	DISALLOW_COPY_AND_ASSIGN(cRedstoneHandler);

	struct PoweringData
	{
	public:
		PoweringData(BLOCKTYPE a_PoweringBlock, unsigned char a_PowerLevel) :
			PoweringBlock(a_PoweringBlock),
			PowerLevel(a_PowerLevel)
		{
		}

		PoweringData(void) :
			PoweringBlock(E_BLOCK_AIR),
			PowerLevel(0)
		{
		}

		BLOCKTYPE PoweringBlock;
		unsigned char PowerLevel;

		inline friend bool operator < (const PoweringData & a_Lhs, const PoweringData & a_Rhs)
		{
			return (
				(a_Lhs.PowerLevel < a_Rhs.PowerLevel) ||
				(
					(a_Lhs.PowerLevel == a_Rhs.PowerLevel) &&
					((a_Lhs.PoweringBlock == E_BLOCK_REDSTONE_WIRE) && (a_Rhs.PoweringBlock != E_BLOCK_REDSTONE_WIRE))
				)
			);
		}

		inline friend bool operator == (const PoweringData & a_Lhs, const PoweringData & a_Rhs)
		{
			return (a_Lhs.PowerLevel == a_Rhs.PowerLevel);
		}

		inline friend bool operator != (const PoweringData & a_Lhs, const PoweringData & a_Rhs)
		{
			return !operator ==(a_Lhs, a_Rhs);
		}
	};

	virtual cVector3iArray Update(cWorld & a_World, Vector3i a_Position, BLOCKTYPE a_BlockType, NIBBLETYPE a_Meta, PoweringData a_PoweringData) const = 0;
	virtual unsigned char GetPowerDeliveredToPosition(cWorld & a_World, Vector3i a_Position, BLOCKTYPE a_BlockType, NIBBLETYPE a_Meta, Vector3i a_QueryPosition, BLOCKTYPE a_QueryBlockType) const = 0;
	virtual unsigned char GetPowerLevel(cWorld & a_World, Vector3i a_Position, BLOCKTYPE a_BlockType, NIBBLETYPE a_Meta) const = 0;
	virtual cVector3iArray GetValidSourcePositions(cWorld & a_World, Vector3i a_Position, BLOCKTYPE a_BlockType, NIBBLETYPE a_Meta) const = 0;

	// Force a virtual destructor
	virtual ~cRedstoneHandler() {}

protected:

	template <class Container>
	static Container StaticAppend(const Container & a_Lhs, const Container & a_Rhs)
	{
		Container ToReturn = a_Lhs;
		std::copy(a_Rhs.begin(), a_Rhs.end(), std::back_inserter(ToReturn));
		return ToReturn;
	}

	inline static Vector3i OffsetYP()
	{
		return Vector3i(0, 1, 0);
	}

	inline static Vector3i OffsetYM()
	{
		return Vector3i(0, -1, 0);
	}

	static cVector3iArray GetAdjustedRelatives(Vector3i a_Position, cVector3iArray a_Relatives)
	{
		for (auto & Entry : a_Relatives)
		{
			Entry += a_Position;
		}
		return a_Relatives;
	}

	inline static cVector3iArray GetRelativeAdjacents()
	{
		return
		{
			{
				{ 1, 0, 0 },
				{ -1, 0, 0 },
				{ 0, 1, 0 },
				{ 0, -1, 0 },
				{ 0, 0, 1 },
				{ 0, 0, -1 },
			}
		};
	}

	inline static cVector3iArray GetRelativeLaterals()
	{
		return
		{
			{
				{ 1, 0, 0 },
				{ -1, 0, 0 },
				{ 0, 0, 1 },
				{ 0, 0, -1 },
			}
		};
	}
};