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

// ClassicFluidSimulator.h

// Interfaces to the cClassicFluidSimulator class representing the original MCServer's fluid simulator





#pragma once

#include "FluidSimulator.h"





class cClassicFluidSimulator :
	public cFluidSimulator
{
public:
	cClassicFluidSimulator(cWorld * a_World, BLOCKTYPE a_Fluid, BLOCKTYPE a_StationaryFluid, NIBBLETYPE a_MaxHeight, NIBBLETYPE a_Falloff);
	~cClassicFluidSimulator();

	// cSimulator overrides:
	virtual void Simulate(float a_Dt) override;
	virtual void AddBlock(int a_BlockX, int a_BlockY, int a_BlockZ) override;
	virtual bool IsAllowedBlock(BLOCKTYPE a_BlockType) override;

	// cFluidSimulator overrides:
	virtual Direction GetFlowingDirection(int a_X, int a_Y, int a_Z, bool a_Over = true) override;
	
	bool CanWashAway (BLOCKTYPE a_BlockType);
	bool IsSolidBlock(BLOCKTYPE a_BlockType);
	bool IsPassableForFluid(BLOCKTYPE a_BlockType);
	
protected:
	NIBBLETYPE GetHighestLevelAround(int a_BlockX, int a_BlockY, int a_BlockZ);

	/// Applies special rules such as generation of water between sources, returns false if it is necessary to apply general rules
	bool UniqueSituation(Vector3i a_Pos);
	
	void ApplyUniqueToNearest(Vector3i a_Pos);

	float m_Timer;

	// fwd: ClassicFluidSimulator.cpp
	class FluidData;
	
	FluidData * m_Data;

	NIBBLETYPE m_MaxHeight;
	NIBBLETYPE m_Falloff;
} ;