summaryrefslogtreecommitdiffstats
path: root/source/Simulator/FloodyFluidSimulator.h
blob: d3fa85fce39df863c74da34b33b5d104d1a14992 (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

// FloodyFluidSimulator.h

// Interfaces to the cFloodyFluidSimulator that represents a fluid simulator that tries to flood everything :)
// http://forum.mc-server.org/showthread.php?tid=565





#pragma once

#include "DelayedFluidSimulator.h"





// fwd:
class cBlockArea;





class cFloodyFluidSimulator :
	public cDelayedFluidSimulator
{
	typedef cDelayedFluidSimulator super;
	
public:
	cFloodyFluidSimulator(cWorld * a_World, BLOCKTYPE a_Fluid, BLOCKTYPE a_StationaryFluid, NIBBLETYPE a_Falloff, int a_TickDelay);
	
protected:
	NIBBLETYPE m_Falloff;
	
	// cDelayedFluidSimulator overrides:
	virtual void SimulateBlock(int a_BlockX, int a_BlockY, int a_BlockZ) override;
	
	/// Checks tributaries, if not fed, decreases the block's level and returns true
	bool CheckTributaries(int a_BlockX, int a_BlockY, int a_BlockZ, const cBlockArea & a_Area, NIBBLETYPE a_MyMeta);

	/// Spreads into the specified block, if the block there allows. a_Area is for checking.
	void SpreadToNeighbor(int a_BlockX, int a_BlockY, int a_BlockZ, const cBlockArea & a_Area, NIBBLETYPE a_NewMeta);
} ;