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

// cSimulatorManager.h




#pragma once




#include "Simulator.h"





// fwd: Chunk.h
class cChunk;

// fwd: World.h
class cWorld;





class cSimulatorManager
{
public:
	cSimulatorManager(cWorld & a_World);
	~cSimulatorManager();

	void Simulate(float a_Dt);

	void SimulateChunk(std::chrono::milliseconds a_DT, int a_ChunkX, int a_ChunkZ, cChunk * a_Chunk);

	/* Called when a single block changes, wakes all simulators up for the block and its face-neighbors. */
	void WakeUp(int a_BlockX, int a_BlockY, int a_BlockZ, cChunk * a_Chunk);

	/** Does the same processing as WakeUp, but for all blocks within the specified area.
	Has better performance than calling WakeUp for each block individually, due to neighbor-checking.
	All chunks intersected by the area should be valid (outputs a warning if not).
	Note that, unlike WakeUp(), this call adds blocks not only face-neighboring, but also edge-neighboring and
	corner-neighboring the specified area. So far none of the simulators care about that. */
	void WakeUpArea(const cCuboid & a_Area);

	void RegisterSimulator(cSimulator * a_Simulator, int a_Rate);  // Takes ownership of the simulator object!

protected:
	typedef std::vector <std::pair<cSimulator *, int> > cSimulators;

	cWorld & m_World;
	cSimulators m_Simulators;
	long long   m_Ticks;
};