summaryrefslogtreecommitdiffstats
path: root/src/Simulator/RedstoneSimulator.h
blob: cee43db605da3ae07e5d9c52564652db5f8d92c1 (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

#pragma once

#include "Simulator/Simulator.h"





class cRedstoneSimulatorChunkData
{
public:
	virtual ~cRedstoneSimulatorChunkData() = 0;
};

inline cRedstoneSimulatorChunkData::~cRedstoneSimulatorChunkData() {}





class cRedstoneSimulator :
	public cSimulator
{
	typedef cSimulator super;
public:

	cRedstoneSimulator(cWorld & a_World) :
		super(a_World)
	{
	}

	virtual void Simulate(float a_Dt) = 0;
	virtual void SimulateChunk(std::chrono::milliseconds a_Dt, int a_ChunkX, int a_ChunkZ, cChunk * a_Chunk) = 0;
	virtual bool IsAllowedBlock(BLOCKTYPE a_BlockType) = 0;
	virtual void AddBlock(int a_BlockX, int a_BlockY, int a_BlockZ, cChunk * a_Chunk) = 0;

	virtual cRedstoneSimulatorChunkData * CreateChunkData() = 0;

};