summaryrefslogblamecommitdiffstats
path: root/source/Simulator/FireSimulator.h
blob: 2a510d27649f95c76f5d1bb52bf128c6bc7c519b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13


            
                      
                           







                                        
                                         

                          
                                                     
 
                                                                      
 


                                                                

          
                                                                                                   












                                                                

#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;
};