summaryrefslogtreecommitdiffstats
path: root/src/Simulator/IncrementalRedstoneSimulator/RedstoneHandler.cpp
blob: 63da4c0dc6b524ecb9144bfc83fcf48608f898e8 (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
122

#include "Globals.h"

#include "RedstoneHandler.h"
#include "RedstoneDataHelper.h"
#include "ForEachSourceCallback.h"

#include "CommandBlockHandler.h"
#include "DaylightSensorHandler.h"
#include "DoorHandler.h"
#include "RedstoneTorchHandler.h"
#include "RedstoneWireHandler.h"
#include "RedstoneRepeaterHandler.h"
#include "RedstoneToggleHandler.h"
#include "RedstoneLampHandler.h"
#include "RedstoneBlockHandler.h"
#include "PistonHandler.h"
#include "SmallGateHandler.h"
#include "NoteBlockHandler.h"
#include "ObserverHandler.h"
#include "TNTHandler.h"
#include "PoweredRailHandler.h"
#include "PressurePlateHandler.h"
#include "TripwireHookHandler.h"
#include "DropSpenserHandler.h"
#include "RedstoneComparatorHandler.h"
#include "TrappedChestHandler.h"
#include "HopperHandler.h"





#define INVOKE_FOR_HANDLERS(Callback) \
	do \
	{ \
		switch (BlockType) \
		{ \
			case E_BLOCK_ACTIVATOR_RAIL:                                                       \
			case E_BLOCK_DETECTOR_RAIL:                                                        \
			case E_BLOCK_POWERED_RAIL:             return PoweredRailHandler::Callback;        \
			case E_BLOCK_ACTIVE_COMPARATOR:                                                    \
			case E_BLOCK_INACTIVE_COMPARATOR:      return RedstoneComparatorHandler::Callback; \
			case E_BLOCK_DISPENSER:                                                            \
			case E_BLOCK_DROPPER:                  return DropSpenserHandler::Callback;        \
			case E_BLOCK_HEAVY_WEIGHTED_PRESSURE_PLATE:                                        \
			case E_BLOCK_LIGHT_WEIGHTED_PRESSURE_PLATE:                                        \
			case E_BLOCK_STONE_PRESSURE_PLATE:                                                 \
			case E_BLOCK_WOODEN_PRESSURE_PLATE:    return PressurePlateHandler::Callback;      \
			case E_BLOCK_ACACIA_FENCE_GATE:                                                    \
			case E_BLOCK_BIRCH_FENCE_GATE:                                                     \
			case E_BLOCK_DARK_OAK_FENCE_GATE:                                                  \
			case E_BLOCK_FENCE_GATE:                                                           \
			case E_BLOCK_IRON_TRAPDOOR:                                                        \
			case E_BLOCK_JUNGLE_FENCE_GATE:                                                    \
			case E_BLOCK_SPRUCE_FENCE_GATE:                                                    \
			case E_BLOCK_TRAPDOOR:                 return SmallGateHandler::Callback;          \
			case E_BLOCK_REDSTONE_LAMP_OFF:                                                    \
			case E_BLOCK_REDSTONE_LAMP_ON:         return RedstoneLampHandler::Callback;       \
			case E_BLOCK_REDSTONE_REPEATER_OFF:                                                \
			case E_BLOCK_REDSTONE_REPEATER_ON:     return RedstoneRepeaterHandler::Callback;   \
			case E_BLOCK_REDSTONE_TORCH_OFF:                                                   \
			case E_BLOCK_REDSTONE_TORCH_ON:        return RedstoneTorchHandler::Callback;      \
			case E_BLOCK_OBSERVER:                 return ObserverHandler::Callback;           \
			case E_BLOCK_PISTON:                                                               \
			case E_BLOCK_STICKY_PISTON:            return PistonHandler::Callback;             \
			case E_BLOCK_DAYLIGHT_SENSOR:                                                      \
			case E_BLOCK_INVERTED_DAYLIGHT_SENSOR: return DaylightSensorHandler::Callback;     \
			case E_BLOCK_LEVER:                                                                \
			case E_BLOCK_STONE_BUTTON:                                                         \
			case E_BLOCK_WOODEN_BUTTON:            return RedstoneToggleHandler::Callback;     \
			case E_BLOCK_BLOCK_OF_REDSTONE:        return RedstoneBlockHandler::Callback;      \
			case E_BLOCK_COMMAND_BLOCK:            return CommandBlockHandler::Callback;       \
			case E_BLOCK_HOPPER:                   return HopperHandler::Callback;             \
			case E_BLOCK_NOTE_BLOCK:               return NoteBlockHandler::Callback;          \
			case E_BLOCK_REDSTONE_WIRE:            return RedstoneWireHandler::Callback;       \
			case E_BLOCK_TNT:                      return TNTHandler::Callback;                \
			case E_BLOCK_TRAPPED_CHEST:            return TrappedChestHandler::Callback;       \
			case E_BLOCK_TRIPWIRE_HOOK:            return TripwireHookHandler::Callback;       \
			default:                                                                           \
			{ \
				if (cBlockDoorHandler::IsDoorBlockType(BlockType)) \
				{ \
					return DoorHandler::Callback; \
				} \
			} \
		} \
	} while (false)





namespace RedstoneHandler
{
	PowerLevel GetPowerDeliveredToPosition(const cChunk & Chunk, const Vector3i Position, const BLOCKTYPE BlockType, const Vector3i QueryPosition, const BLOCKTYPE QueryBlockType, const bool IsLinked)
	{
		INVOKE_FOR_HANDLERS(GetPowerDeliveredToPosition(Chunk, Position, BlockType, QueryPosition, QueryBlockType, IsLinked));

		// Fell through the switch statement
		// Block at Position doesn't have a corresponding redstone handler
		// ErasePowerData will have been called in AddBlock

		// Default:
		return 0;
	}

	void Update(cChunk & Chunk, cChunk & CurrentlyTicking, const Vector3i Position, const BLOCKTYPE BlockType, const NIBBLETYPE Meta, const PowerLevel PowerLevel)
	{
		INVOKE_FOR_HANDLERS(Update(Chunk, CurrentlyTicking, Position, BlockType, Meta, PowerLevel));
	}

	void ForValidSourcePositions(const cChunk & Chunk, const Vector3i Position, const BLOCKTYPE BlockType, const NIBBLETYPE Meta, ForEachSourceCallback & Callback)
	{
		INVOKE_FOR_HANDLERS(ForValidSourcePositions(Chunk, Position, BlockType, Meta, Callback));
	}

	void SetWireState(const cChunk & Chunk, const Vector3i Position)
	{
		RedstoneWireHandler::SetWireState(Chunk, Position);
	}
}