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

#pragma once

#include "Simulator.h"
#include "../BlockEntity.h"





class cFireSimulator : public cSimulator
{
public:
	cFireSimulator( cWorld* a_World );
	~cFireSimulator();

	virtual void Simulate( float a_Dt ) override;

	virtual bool IsAllowedBlock( BLOCKTYPE a_BlockType ) override;

	virtual bool IsBurnable( BLOCKTYPE a_BlockType );
	virtual bool IsForeverBurnable( BLOCKTYPE a_BlockType );
	virtual bool FiresForever( BLOCKTYPE a_BlockType );

protected:
	virtual void AddBlock(int a_BlockX, int a_BlockY, int a_BlockZ, cChunk * a_Chunk) override;
	virtual bool BurnBlockAround(int a_X, int a_Y, int a_Z);
	virtual bool BurnBlock(int a_X, int a_Y, int a_Z);

	typedef std::list <Vector3i> BlockList;
	BlockList *m_Blocks;
	BlockList *m_Buffer;

	BlockList *m_BurningBlocks;
};