2012-02-14 08:37:13 -05:00
|
|
|
#include "Globals.h"
|
2011-10-03 14:41:19 -04:00
|
|
|
#include "cWaterSimulator.h"
|
2011-12-23 20:36:15 -05:00
|
|
|
#include "Defines.h"
|
2012-02-14 08:37:13 -05:00
|
|
|
#include "cWorld.h"
|
2012-01-29 14:28:19 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
2011-12-25 11:20:06 -05:00
|
|
|
cWaterSimulator::cWaterSimulator(cWorld *a_World)
|
|
|
|
: cFluidSimulator(a_World)
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2011-12-25 11:20:06 -05:00
|
|
|
m_FluidBlock = E_BLOCK_WATER;
|
2012-02-14 08:37:13 -05:00
|
|
|
m_StationaryFluidBlock = E_BLOCK_STATIONARY_WATER;
|
2011-12-25 11:20:06 -05:00
|
|
|
m_MaxHeight = 7;
|
|
|
|
m_FlowReduction = 1;
|
2011-10-03 14:41:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-25 11:20:06 -05:00
|
|
|
bool cWaterSimulator::IsAllowedBlock(char a_BlockID)
|
2011-10-03 14:41:19 -04:00
|
|
|
{
|
2011-12-25 11:20:06 -05:00
|
|
|
return IsBlockWater(a_BlockID);
|
2011-10-03 14:41:19 -04:00
|
|
|
}
|
|
|
|
|