2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
// FloodyFluidSimulator.cpp
|
|
|
|
|
|
|
|
// Interfaces to the cFloodyFluidSimulator that represents a fluid simulator that tries to flood everything :)
|
2016-01-30 19:25:03 -05:00
|
|
|
// https://forum.cuberite.org/thread-565.html
|
2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
#include "Globals.h"
|
|
|
|
|
|
|
|
#include "FloodyFluidSimulator.h"
|
|
|
|
#include "../World.h"
|
|
|
|
#include "../Chunk.h"
|
|
|
|
#include "../BlockArea.h"
|
|
|
|
#include "../Blocks/BlockHandler.h"
|
2014-02-02 09:49:37 -05:00
|
|
|
#include "../BlockInServerPluginInterface.h"
|
2014-09-26 13:13:19 -04:00
|
|
|
#include "../Blocks/ChunkInterface.h"
|
2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Enable or disable detailed logging
|
|
|
|
#if 0
|
2018-09-24 16:33:39 -04:00
|
|
|
#define FLUID_FLOG FLOGD
|
2013-07-29 07:13:03 -04:00
|
|
|
#else
|
2018-09-24 16:33:39 -04:00
|
|
|
#define FLUID_FLOG(...)
|
2013-07-29 07:13:03 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cFloodyFluidSimulator::cFloodyFluidSimulator(
|
|
|
|
cWorld & a_World,
|
|
|
|
BLOCKTYPE a_Fluid,
|
|
|
|
BLOCKTYPE a_StationaryFluid,
|
|
|
|
NIBBLETYPE a_Falloff,
|
|
|
|
int a_TickDelay,
|
|
|
|
int a_NumNeighborsForSource
|
|
|
|
) :
|
|
|
|
super(a_World, a_Fluid, a_StationaryFluid, a_TickDelay),
|
|
|
|
m_Falloff(a_Falloff),
|
|
|
|
m_NumNeighborsForSource(a_NumNeighborsForSource)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cFloodyFluidSimulator::SimulateBlock(cChunk * a_Chunk, int a_RelX, int a_RelY, int a_RelZ)
|
|
|
|
{
|
2018-09-24 16:33:39 -04:00
|
|
|
FLUID_FLOG("Simulating block {0}: block {1}, meta {2}",
|
|
|
|
a_Chunk->PositionToWorldPosition(a_RelX, a_RelY, a_RelZ),
|
2013-07-29 07:13:03 -04:00
|
|
|
a_Chunk->GetBlock(a_RelX, a_RelY, a_RelZ),
|
|
|
|
a_Chunk->GetMeta(a_RelX, a_RelY, a_RelZ)
|
|
|
|
);
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-03-07 08:42:03 -05:00
|
|
|
BLOCKTYPE MyBlock; NIBBLETYPE MyMeta;
|
|
|
|
a_Chunk->GetBlockTypeMeta(a_RelX, a_RelY, a_RelZ, MyBlock, MyMeta);
|
|
|
|
|
|
|
|
if (!IsAnyFluidBlock(MyBlock))
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
// Can happen - if a block is scheduled for simulating and gets replaced in the meantime.
|
2018-09-24 16:33:39 -04:00
|
|
|
FLUID_FLOG(" BadBlockType exit");
|
2013-07-29 07:13:03 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-03-07 13:49:40 -05:00
|
|
|
// When in contact with water, lava should harden
|
2014-03-07 08:42:03 -05:00
|
|
|
if (HardenBlock(a_Chunk, a_RelX, a_RelY, a_RelZ, MyBlock, MyMeta))
|
|
|
|
{
|
2014-03-07 13:49:40 -05:00
|
|
|
// Block was changed, bail out
|
2014-03-07 08:42:03 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
if (MyMeta != 0)
|
|
|
|
{
|
|
|
|
// Source blocks aren't checked for tributaries, others are.
|
|
|
|
if (CheckTributaries(a_Chunk, a_RelX, a_RelY, a_RelZ, MyMeta))
|
|
|
|
{
|
|
|
|
// Has no tributary, has been decreased (in CheckTributaries()),
|
|
|
|
// no more processing needed (neighbors have been scheduled by the decrease)
|
2018-09-24 16:33:39 -04:00
|
|
|
FLUID_FLOG(" CheckTributaries exit");
|
2013-07-29 07:13:03 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2014-12-16 16:38:57 -05:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
// New meta for the spreading to neighbors:
|
|
|
|
// If this is a source block or was falling, the new meta is just the falloff
|
|
|
|
// Otherwise it is the current meta plus falloff (may be larger than max height, will be checked later)
|
|
|
|
NIBBLETYPE NewMeta = ((MyMeta == 0) || ((MyMeta & 0x08) != 0)) ? m_Falloff : (MyMeta + m_Falloff);
|
|
|
|
if (a_RelY > 0)
|
|
|
|
{
|
2015-12-16 13:31:57 -05:00
|
|
|
bool SpreadFurther = true;
|
2013-07-29 07:13:03 -04:00
|
|
|
BLOCKTYPE Below = a_Chunk->GetBlock(a_RelX, a_RelY - 1, a_RelZ);
|
|
|
|
if (IsPassableForFluid(Below) || IsBlockLava(Below) || IsBlockWater(Below))
|
|
|
|
{
|
|
|
|
// Spread only down, possibly washing away what's there or turning lava to stone / cobble / obsidian:
|
|
|
|
SpreadToNeighbor(a_Chunk, a_RelX, a_RelY - 1, a_RelZ, 8);
|
2014-03-05 08:54:38 -05:00
|
|
|
|
|
|
|
// Source blocks spread both downwards and sideways
|
|
|
|
if (MyMeta != 0)
|
|
|
|
{
|
|
|
|
SpreadFurther = false;
|
|
|
|
}
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
2014-12-16 16:38:57 -05:00
|
|
|
// Spread to the neighbors:
|
|
|
|
if (SpreadFurther && (NewMeta < 8))
|
2014-12-24 18:44:09 -05:00
|
|
|
{
|
2014-12-16 16:38:57 -05:00
|
|
|
SpreadXZ(a_Chunk, a_RelX, a_RelY, a_RelZ, NewMeta);
|
|
|
|
}
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
// If source creation is on, check for it here:
|
2015-03-19 08:23:03 -04:00
|
|
|
if (
|
2015-07-15 16:14:05 -04:00
|
|
|
(m_NumNeighborsForSource > 0) && // Source creation is on
|
|
|
|
(MyMeta == m_Falloff) && // Only exactly one block away from a source (fast bail-out)
|
|
|
|
(
|
|
|
|
!IsPassableForFluid(Below) || // Only exactly 1 block deep
|
|
|
|
(Below == m_StationaryFluidBlock) // Or a source block underneath
|
|
|
|
) &&
|
2013-07-29 07:13:03 -04:00
|
|
|
CheckNeighborsForSource(a_Chunk, a_RelX, a_RelY, a_RelZ) // Did we create a source?
|
|
|
|
)
|
|
|
|
{
|
|
|
|
// We created a source, no more spreading is to be done now
|
|
|
|
// Also has been re-scheduled for ticking in the next wave, so no marking is needed
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2014-12-16 16:38:57 -05:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
// Mark as processed:
|
|
|
|
a_Chunk->FastSetBlock(a_RelX, a_RelY, a_RelZ, m_StationaryFluidBlock, MyMeta);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-05-02 16:07:30 -04:00
|
|
|
void cFloodyFluidSimulator::SpreadXZ(cChunk * a_Chunk, int a_RelX, int a_RelY, int a_RelZ, NIBBLETYPE a_NewMeta)
|
2014-03-05 08:54:38 -05:00
|
|
|
{
|
|
|
|
SpreadToNeighbor(a_Chunk, a_RelX - 1, a_RelY, a_RelZ, a_NewMeta);
|
|
|
|
SpreadToNeighbor(a_Chunk, a_RelX + 1, a_RelY, a_RelZ, a_NewMeta);
|
|
|
|
SpreadToNeighbor(a_Chunk, a_RelX, a_RelY, a_RelZ - 1, a_NewMeta);
|
|
|
|
SpreadToNeighbor(a_Chunk, a_RelX, a_RelY, a_RelZ + 1, a_NewMeta);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-07-26 17:24:36 -04:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
bool cFloodyFluidSimulator::CheckTributaries(cChunk * a_Chunk, int a_RelX, int a_RelY, int a_RelZ, NIBBLETYPE a_MyMeta)
|
|
|
|
{
|
|
|
|
// If we have a section above, check if there's fluid above this block that would feed it:
|
|
|
|
if (a_RelY < cChunkDef::Height - 1)
|
|
|
|
{
|
|
|
|
if (IsAnyFluidBlock(a_Chunk->GetBlock(a_RelX, a_RelY + 1, a_RelZ)))
|
|
|
|
{
|
|
|
|
// This block is fed from above, no more processing needed
|
2018-09-24 16:33:39 -04:00
|
|
|
FLUID_FLOG(" Fed from above");
|
2013-07-29 07:13:03 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Not fed from above, check if there's a feed from the side (but not if it's a downward-flowing block):
|
|
|
|
if (a_MyMeta != 8)
|
|
|
|
{
|
|
|
|
BLOCKTYPE BlockType;
|
|
|
|
NIBBLETYPE BlockMeta;
|
|
|
|
static const Vector3i Coords[] =
|
|
|
|
{
|
|
|
|
Vector3i( 1, 0, 0),
|
|
|
|
Vector3i(-1, 0, 0),
|
|
|
|
Vector3i( 0, 0, 1),
|
|
|
|
Vector3i( 0, 0, -1),
|
|
|
|
} ;
|
2013-12-20 10:01:34 -05:00
|
|
|
for (size_t i = 0; i < ARRAYCOUNT(Coords); i++)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
if (!a_Chunk->UnboundedRelGetBlock(a_RelX + Coords[i].x, a_RelY, a_RelZ + Coords[i].z, BlockType, BlockMeta))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (IsAllowedBlock(BlockType) && IsHigherMeta(BlockMeta, a_MyMeta))
|
|
|
|
{
|
|
|
|
// This block is fed, no more processing needed
|
2018-09-24 16:33:39 -04:00
|
|
|
FLUID_FLOG(" Fed from {0}, type {1}, meta {2}",
|
|
|
|
a_Chunk->PositionToWorldPosition(a_RelX+ Coords[i].x, a_RelY, a_RelZ + Coords[i].z),
|
2013-07-29 07:13:03 -04:00
|
|
|
BlockType, BlockMeta
|
|
|
|
);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} // for i - Coords[]
|
|
|
|
} // if not fed from above
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
// Block is not fed, decrease by m_Falloff levels:
|
|
|
|
if (a_MyMeta >= 8)
|
|
|
|
{
|
2018-09-24 16:33:39 -04:00
|
|
|
FLUID_FLOG(" Not fed and downwards, turning into non-downwards meta {0}", m_Falloff);
|
2013-07-29 07:13:03 -04:00
|
|
|
a_Chunk->SetBlock(a_RelX, a_RelY, a_RelZ, m_StationaryFluidBlock, m_Falloff);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
a_MyMeta += m_Falloff;
|
|
|
|
if (a_MyMeta < 8)
|
|
|
|
{
|
2018-09-24 16:33:39 -04:00
|
|
|
FLUID_FLOG(" Not fed, decreasing from {0} to {1}", a_MyMeta - m_Falloff, a_MyMeta);
|
2013-07-29 07:13:03 -04:00
|
|
|
a_Chunk->SetBlock(a_RelX, a_RelY, a_RelZ, m_StationaryFluidBlock, a_MyMeta);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-09-24 16:33:39 -04:00
|
|
|
FLUID_FLOG(" Not fed, meta {0}, erasing altogether", a_MyMeta);
|
2013-07-29 07:13:03 -04:00
|
|
|
a_Chunk->SetBlock(a_RelX, a_RelY, a_RelZ, E_BLOCK_AIR, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cFloodyFluidSimulator::SpreadToNeighbor(cChunk * a_NearChunk, int a_RelX, int a_RelY, int a_RelZ, NIBBLETYPE a_NewMeta)
|
|
|
|
{
|
|
|
|
ASSERT(a_NewMeta <= 8); // Invalid meta values
|
|
|
|
ASSERT(a_NewMeta > 0); // Source blocks aren't spread
|
2014-06-27 18:16:37 -04:00
|
|
|
|
|
|
|
a_NearChunk = a_NearChunk->GetRelNeighborChunkAdjustCoords(a_RelX, a_RelZ);
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((a_NearChunk == nullptr) || (!a_NearChunk->IsValid()))
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
// Chunk not available
|
|
|
|
return;
|
|
|
|
}
|
2014-06-27 18:16:37 -04:00
|
|
|
|
|
|
|
const int BlockX = a_NearChunk->GetPosX() * cChunkDef::Width + a_RelX;
|
|
|
|
const int BlockZ = a_NearChunk->GetPosZ() * cChunkDef::Width + a_RelZ;
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-06-27 18:16:37 -04:00
|
|
|
BLOCKTYPE BlockType;
|
|
|
|
NIBBLETYPE BlockMeta;
|
|
|
|
a_NearChunk->GetBlockTypeMeta(a_RelX, a_RelY, a_RelZ, BlockType, BlockMeta);
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
if (IsAllowedBlock(BlockType))
|
|
|
|
{
|
|
|
|
if ((BlockMeta == a_NewMeta) || IsHigherMeta(BlockMeta, a_NewMeta))
|
|
|
|
{
|
|
|
|
// Don't spread there, there's already a higher or same level there
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check water - lava interaction:
|
|
|
|
if (m_FluidBlock == E_BLOCK_LAVA)
|
|
|
|
{
|
|
|
|
if (IsBlockWater(BlockType))
|
|
|
|
{
|
|
|
|
// Lava flowing into water, change to stone / cobblestone based on direction:
|
|
|
|
BLOCKTYPE NewBlock = (a_NewMeta == 8) ? E_BLOCK_STONE : E_BLOCK_COBBLESTONE;
|
2018-09-24 16:33:39 -04:00
|
|
|
FLUID_FLOG(" Lava flowing into water, turning water at rel {0} into {1}",
|
|
|
|
Vector3i{a_RelX, a_RelY, a_RelZ}, ItemTypeToString(NewBlock)
|
2013-07-29 07:13:03 -04:00
|
|
|
);
|
2014-06-27 18:16:37 -04:00
|
|
|
a_NearChunk->SetBlock(a_RelX, a_RelY, a_RelZ, NewBlock, 0);
|
2013-12-09 19:29:59 -05:00
|
|
|
|
2018-07-24 17:30:49 -04:00
|
|
|
m_World.BroadcastSoundEffect(
|
2017-02-15 00:05:24 -05:00
|
|
|
"block.lava.extinguish",
|
2017-09-19 10:12:54 -04:00
|
|
|
Vector3d(BlockX, a_RelY, BlockZ),
|
2015-05-28 07:29:26 -04:00
|
|
|
0.5f,
|
|
|
|
1.5f
|
|
|
|
);
|
2013-07-29 07:13:03 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (m_FluidBlock == E_BLOCK_WATER)
|
|
|
|
{
|
|
|
|
if (IsBlockLava(BlockType))
|
|
|
|
{
|
|
|
|
// Water flowing into lava, change to cobblestone / obsidian based on dest block:
|
|
|
|
BLOCKTYPE NewBlock = (BlockMeta == 0) ? E_BLOCK_OBSIDIAN : E_BLOCK_COBBLESTONE;
|
2018-09-24 16:33:39 -04:00
|
|
|
FLUID_FLOG(" Water flowing into lava, turning lava at rel {0} into {1}",
|
|
|
|
Vector3i{a_RelX, a_RelY, a_RelZ}, ItemTypeToString(NewBlock)
|
2013-07-29 07:13:03 -04:00
|
|
|
);
|
2014-06-27 18:16:37 -04:00
|
|
|
a_NearChunk->SetBlock(a_RelX, a_RelY, a_RelZ, NewBlock, 0);
|
2013-12-09 19:29:59 -05:00
|
|
|
|
2018-07-24 17:30:49 -04:00
|
|
|
m_World.BroadcastSoundEffect(
|
2017-02-15 00:05:24 -05:00
|
|
|
"block.lava.extinguish",
|
2017-09-19 10:12:54 -04:00
|
|
|
Vector3d(BlockX, a_RelY, BlockZ),
|
2015-05-28 07:29:26 -04:00
|
|
|
0.5f,
|
|
|
|
1.5f
|
|
|
|
);
|
2013-07-29 07:13:03 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ASSERT(!"Unknown fluid!");
|
|
|
|
}
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
if (!IsPassableForFluid(BlockType))
|
|
|
|
{
|
|
|
|
// Can't spread there
|
|
|
|
return;
|
|
|
|
}
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
// Wash away the block there, if possible:
|
|
|
|
if (CanWashAway(BlockType))
|
|
|
|
{
|
|
|
|
cBlockHandler * Handler = BlockHandler(BlockType);
|
|
|
|
if (Handler->DoesDropOnUnsuitable())
|
|
|
|
{
|
2014-02-02 09:49:37 -05:00
|
|
|
cChunkInterface ChunkInterface(m_World.GetChunkMap());
|
|
|
|
cBlockInServerPluginInterface PluginInterface(m_World);
|
2013-07-29 07:13:03 -04:00
|
|
|
Handler->DropBlock(
|
2014-02-02 09:49:37 -05:00
|
|
|
ChunkInterface,
|
|
|
|
m_World,
|
|
|
|
PluginInterface,
|
2014-10-20 16:55:07 -04:00
|
|
|
nullptr,
|
2014-07-17 16:50:58 -04:00
|
|
|
BlockX,
|
2013-07-29 07:13:03 -04:00
|
|
|
a_RelY,
|
2014-06-27 18:16:37 -04:00
|
|
|
BlockZ
|
2013-07-29 07:13:03 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
} // if (CanWashAway)
|
2014-06-27 18:16:37 -04:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
// Spread:
|
2018-09-24 16:33:39 -04:00
|
|
|
FLUID_FLOG(" Spreading to {0} with meta {1}", Vector3i{BlockX, a_RelY, BlockZ}, a_NewMeta);
|
2014-06-27 18:16:37 -04:00
|
|
|
a_NearChunk->SetBlock(a_RelX, a_RelY, a_RelZ, m_FluidBlock, a_NewMeta);
|
2017-08-17 09:48:38 -04:00
|
|
|
m_World.GetSimulatorManager()->WakeUp({BlockX, a_RelY, BlockZ}, a_NearChunk);
|
2014-03-07 08:42:03 -05:00
|
|
|
|
|
|
|
HardenBlock(a_NearChunk, a_RelX, a_RelY, a_RelZ, m_FluidBlock, a_NewMeta);
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cFloodyFluidSimulator::CheckNeighborsForSource(cChunk * a_Chunk, int a_RelX, int a_RelY, int a_RelZ)
|
|
|
|
{
|
2018-09-24 16:33:39 -04:00
|
|
|
FLUID_FLOG(" Checking neighbors for source creation");
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
static const Vector3i NeighborCoords[] =
|
|
|
|
{
|
|
|
|
Vector3i(-1, 0, 0),
|
|
|
|
Vector3i( 1, 0, 0),
|
|
|
|
Vector3i( 0, 0, -1),
|
|
|
|
Vector3i( 0, 0, 1),
|
|
|
|
} ;
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
int NumNeeded = m_NumNeighborsForSource;
|
2013-12-20 10:01:34 -05:00
|
|
|
for (size_t i = 0; i < ARRAYCOUNT(NeighborCoords); i++)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
int x = a_RelX + NeighborCoords[i].x;
|
|
|
|
int y = a_RelY + NeighborCoords[i].y;
|
|
|
|
int z = a_RelZ + NeighborCoords[i].z;
|
|
|
|
BLOCKTYPE BlockType;
|
|
|
|
NIBBLETYPE BlockMeta;
|
|
|
|
if (!a_Chunk->UnboundedRelGetBlock(x, y, z, BlockType, BlockMeta))
|
|
|
|
{
|
|
|
|
// Neighbor not available, skip it
|
|
|
|
continue;
|
|
|
|
}
|
2018-09-24 16:33:39 -04:00
|
|
|
// FLUID_FLOG(" Neighbor at {0}: {1}", Vector3i{x, y, z}, ItemToFullString(cItem(BlockType, 1, BlockMeta)));
|
2013-07-29 07:13:03 -04:00
|
|
|
if ((BlockMeta == 0) && IsAnyFluidBlock(BlockType))
|
|
|
|
{
|
|
|
|
NumNeeded--;
|
2018-09-24 16:33:39 -04:00
|
|
|
// FLUID_FLOG(" Found a neighbor source at {0}, NumNeeded := {1}", Vector3i{x, y, z}, NumNeeded);
|
2013-07-29 07:13:03 -04:00
|
|
|
if (NumNeeded == 0)
|
|
|
|
{
|
|
|
|
// Found enough, turn into a source and bail out
|
2018-09-24 16:33:39 -04:00
|
|
|
// FLUID_FLOG(" Found enough neighbor sources, turning into a source");
|
2013-07-29 07:13:03 -04:00
|
|
|
a_Chunk->SetBlock(a_RelX, a_RelY, a_RelZ, m_FluidBlock, 0);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-09-24 16:33:39 -04:00
|
|
|
// FLUID_FLOG(" Not enough neighbors for turning into a source, NumNeeded = {0}", NumNeeded);
|
2013-07-29 07:13:03 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-03-07 08:42:03 -05:00
|
|
|
|
|
|
|
bool cFloodyFluidSimulator::HardenBlock(cChunk * a_Chunk, int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_Meta)
|
|
|
|
{
|
|
|
|
// Only lava blocks can harden
|
|
|
|
if (!IsBlockLava(a_BlockType))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ShouldHarden = false;
|
|
|
|
|
|
|
|
BLOCKTYPE BlockType;
|
|
|
|
NIBBLETYPE BlockMeta;
|
|
|
|
static const Vector3i Coords[] =
|
|
|
|
{
|
|
|
|
Vector3i( 1, 0, 0),
|
|
|
|
Vector3i(-1, 0, 0),
|
|
|
|
Vector3i( 0, 0, 1),
|
|
|
|
Vector3i( 0, 0, -1),
|
|
|
|
};
|
|
|
|
for (size_t i = 0; i < ARRAYCOUNT(Coords); i++)
|
|
|
|
{
|
|
|
|
if (!a_Chunk->UnboundedRelGetBlock(a_RelX + Coords[i].x, a_RelY, a_RelZ + Coords[i].z, BlockType, BlockMeta))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (IsBlockWater(BlockType))
|
|
|
|
{
|
|
|
|
ShouldHarden = true;
|
|
|
|
}
|
|
|
|
} // for i - Coords[]
|
|
|
|
|
|
|
|
if (ShouldHarden)
|
|
|
|
{
|
|
|
|
if (a_Meta == 0)
|
|
|
|
{
|
|
|
|
// Source lava block
|
2014-06-27 18:16:37 -04:00
|
|
|
a_Chunk->SetBlock(a_RelX, a_RelY, a_RelZ, E_BLOCK_OBSIDIAN, 0);
|
2014-03-07 08:42:03 -05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// Ignore last lava level
|
|
|
|
else if (a_Meta <= 4)
|
|
|
|
{
|
2014-06-27 18:16:37 -04:00
|
|
|
a_Chunk->SetBlock(a_RelX, a_RelY, a_RelZ, E_BLOCK_COBBLESTONE, 0);
|
2014-03-07 08:42:03 -05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|