diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-03-31 21:05:41 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-03-31 21:05:41 +0200 |
commit | 41e0927843a8060fc381e7695faf4cf8d3c875e6 (patch) | |
tree | 4eaf4693230410109dc89cefc14c7dc580137c2c /source/Generating/ChunkDesc.h | |
parent | MineShafts: Limited the mineshafts generation into a settable-size cuboid (diff) | |
download | cuberite-41e0927843a8060fc381e7695faf4cf8d3c875e6.tar cuberite-41e0927843a8060fc381e7695faf4cf8d3c875e6.tar.gz cuberite-41e0927843a8060fc381e7695faf4cf8d3c875e6.tar.bz2 cuberite-41e0927843a8060fc381e7695faf4cf8d3c875e6.tar.lz cuberite-41e0927843a8060fc381e7695faf4cf8d3c875e6.tar.xz cuberite-41e0927843a8060fc381e7695faf4cf8d3c875e6.tar.zst cuberite-41e0927843a8060fc381e7695faf4cf8d3c875e6.zip |
Diffstat (limited to '')
-rw-r--r-- | source/Generating/ChunkDesc.h | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/source/Generating/ChunkDesc.h b/source/Generating/ChunkDesc.h index a18b26142..5ec3759a9 100644 --- a/source/Generating/ChunkDesc.h +++ b/source/Generating/ChunkDesc.h @@ -142,7 +142,31 @@ public: a_DstType, a_DstMeta ); } - + + /// Fills the relative cuboid with specified block with a random chance; allows cuboid out of range of this chunk + void RandomFillRelCuboid( + int a_MinX, int a_MaxX, + int a_MinY, int a_MaxY, + int a_MinZ, int a_MaxZ, + BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, + int a_RandomSeed, int a_ChanceOutOf10k + ); + + /// Fills the relative cuboid with specified block with a random chance; allows cuboid out of range of this chunk + void RandomFillRelCuboid( + const cCuboid & a_RelCuboid, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, + int a_RandomSeed, int a_ChanceOutOf10k + ) + { + RandomFillRelCuboid( + a_RelCuboid.p1.x, a_RelCuboid.p2.x, + a_RelCuboid.p1.y, a_RelCuboid.p2.y, + a_RelCuboid.p1.z, a_RelCuboid.p2.z, + a_BlockType, a_BlockMeta, + a_RandomSeed, a_ChanceOutOf10k + ); + } + // tolua_end |