2012-10-13 05:53:28 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Simulator.h"
|
|
|
|
|
|
|
|
|
2014-09-11 12:48:21 -04:00
|
|
|
class cChunk;
|
|
|
|
class cWorld;
|
2012-10-13 05:53:28 -04:00
|
|
|
|
|
|
|
|
|
|
|
enum Direction
|
|
|
|
{
|
|
|
|
X_PLUS,
|
|
|
|
X_MINUS,
|
|
|
|
Y_PLUS,
|
|
|
|
Y_MINUS,
|
|
|
|
Z_PLUS,
|
|
|
|
Z_MINUS,
|
|
|
|
NONE
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-03-02 10:44:31 -05:00
|
|
|
/** This is a base class for all fluid simulator data classes.
|
|
|
|
Needed so that cChunk can properly delete instances of fluid simulator data, no matter what simulator it's using
|
|
|
|
*/
|
|
|
|
class cFluidSimulatorData
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~cFluidSimulatorData() {}
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-10-13 05:53:28 -04:00
|
|
|
class cFluidSimulator :
|
2014-09-11 12:48:21 -04:00
|
|
|
public cSimulator<cChunk, cWorld>
|
2012-10-13 05:53:28 -04:00
|
|
|
{
|
2014-09-11 12:48:21 -04:00
|
|
|
typedef cSimulator<cChunk, cWorld> super;
|
2012-10-13 05:53:28 -04:00
|
|
|
|
|
|
|
public:
|
2013-02-28 08:39:20 -05:00
|
|
|
cFluidSimulator(cWorld & a_World, BLOCKTYPE a_Fluid, BLOCKTYPE a_StationaryFluid);
|
2012-10-13 05:53:28 -04:00
|
|
|
|
2012-10-14 13:06:21 -04:00
|
|
|
// cSimulator overrides:
|
|
|
|
virtual bool IsAllowedBlock(BLOCKTYPE a_BlockType) override;
|
|
|
|
|
2012-10-13 12:24:50 -04:00
|
|
|
/// Gets the flowing direction. If a_Over is true also the block over the current block affects the direction (standard)
|
|
|
|
virtual Direction GetFlowingDirection(int a_X, int a_Y, int a_Z, bool a_Over = true);
|
2012-10-13 05:53:28 -04:00
|
|
|
|
2013-03-02 10:44:31 -05:00
|
|
|
/// Creates a ChunkData object for the simulator to use. The simulator returns the correct object type.
|
2014-10-20 16:55:07 -04:00
|
|
|
virtual cFluidSimulatorData * CreateChunkData(void) { return nullptr; }
|
2013-03-02 10:44:31 -05:00
|
|
|
|
2012-10-13 05:53:28 -04:00
|
|
|
bool IsFluidBlock (BLOCKTYPE a_BlockType) const { return (a_BlockType == m_FluidBlock); }
|
|
|
|
bool IsStationaryFluidBlock(BLOCKTYPE a_BlockType) const { return (a_BlockType == m_StationaryFluidBlock); }
|
2012-10-14 13:06:21 -04:00
|
|
|
bool IsAnyFluidBlock (BLOCKTYPE a_BlockType) const { return ((a_BlockType == m_FluidBlock) || (a_BlockType == m_StationaryFluidBlock)); }
|
2012-10-13 05:53:28 -04:00
|
|
|
|
2012-10-13 12:24:50 -04:00
|
|
|
static bool CanWashAway(BLOCKTYPE a_BlockType);
|
|
|
|
|
|
|
|
bool IsSolidBlock (BLOCKTYPE a_BlockType);
|
|
|
|
bool IsPassableForFluid(BLOCKTYPE a_BlockType);
|
|
|
|
|
2012-10-14 13:06:21 -04:00
|
|
|
/// Returns true if a_Meta1 is a higher fluid than a_Meta2. Takes source blocks into account.
|
|
|
|
bool IsHigherMeta(NIBBLETYPE a_Meta1, NIBBLETYPE a_Meta2);
|
|
|
|
|
2012-10-13 05:53:28 -04:00
|
|
|
protected:
|
|
|
|
BLOCKTYPE m_FluidBlock; // The fluid block type that needs simulating
|
|
|
|
BLOCKTYPE m_StationaryFluidBlock; // The fluid block type that indicates no simulation is needed
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|