diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-03-14 20:44:27 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-03-14 20:44:27 +0100 |
commit | b18f657ac182155499398c6e7cb4c64af8f86f2e (patch) | |
tree | 82ae758f03560334739db062d4576f52c852305f /source/Simulator/VaporizeFluidSimulator.cpp | |
parent | Added water and lava springs. (diff) | |
download | cuberite-b18f657ac182155499398c6e7cb4c64af8f86f2e.tar cuberite-b18f657ac182155499398c6e7cb4c64af8f86f2e.tar.gz cuberite-b18f657ac182155499398c6e7cb4c64af8f86f2e.tar.bz2 cuberite-b18f657ac182155499398c6e7cb4c64af8f86f2e.tar.lz cuberite-b18f657ac182155499398c6e7cb4c64af8f86f2e.tar.xz cuberite-b18f657ac182155499398c6e7cb4c64af8f86f2e.tar.zst cuberite-b18f657ac182155499398c6e7cb4c64af8f86f2e.zip |
Diffstat (limited to 'source/Simulator/VaporizeFluidSimulator.cpp')
-rw-r--r-- | source/Simulator/VaporizeFluidSimulator.cpp | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/source/Simulator/VaporizeFluidSimulator.cpp b/source/Simulator/VaporizeFluidSimulator.cpp new file mode 100644 index 000000000..10466c454 --- /dev/null +++ b/source/Simulator/VaporizeFluidSimulator.cpp @@ -0,0 +1,52 @@ +
+// VaporizeFluidSimulator.cpp
+
+// Implements the cVaporizeFluidSimulator class representing a fluid simulator that replaces all fluid blocks with air
+
+#include "Globals.h"
+#include "VaporizeFluidSimulator.h"
+#include "../Chunk.h"
+
+
+
+
+
+cVaporizeFluidSimulator::cVaporizeFluidSimulator(cWorld & a_World, BLOCKTYPE a_Fluid, BLOCKTYPE a_StationaryFluid) :
+ super(a_World, a_Fluid, a_StationaryFluid)
+{
+}
+
+
+
+
+
+void cVaporizeFluidSimulator::AddBlock(int a_BlockX, int a_BlockY, int a_BlockZ, cChunk * a_Chunk)
+{
+ if (a_Chunk == NULL)
+ {
+ return;
+ }
+ int RelX = a_BlockX - a_Chunk->GetPosX() * cChunkDef::Width;
+ int RelZ = a_BlockZ - a_Chunk->GetPosZ() * cChunkDef::Width;
+ BLOCKTYPE BlockType = a_Chunk->GetBlock(RelX, a_BlockY, RelZ);
+ if (
+ (BlockType == m_FluidBlock) ||
+ (BlockType == m_StationaryFluidBlock)
+ )
+ {
+ a_Chunk->SetBlock(RelX, a_BlockY, RelZ, E_BLOCK_AIR, 0);
+ }
+}
+
+
+
+
+
+void cVaporizeFluidSimulator::Simulate(float a_Dt)
+{
+ // Nothing needed
+}
+
+
+
+
|