forked from minetest-mods/technic
perlin improvements
as suggested by @paramat
This commit is contained in:
parent
78f16c3e8e
commit
eb344ad804
|
@ -116,15 +116,18 @@ minetest.register_ore({
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Sulfur
|
-- Sulfur
|
||||||
|
local sulfur_buf = nil
|
||||||
|
local sulfur_noise= nil
|
||||||
|
|
||||||
minetest.register_on_generated(function(minp, maxp, seed)
|
minetest.register_on_generated(function(minp, maxp, seed)
|
||||||
local vm, emin, emax = minetest.get_mapgen_object("voxelmanip")
|
local vm, emin, emax = minetest.get_mapgen_object("voxelmanip")
|
||||||
local a = VoxelArea:new{
|
local a = VoxelArea:new{
|
||||||
MinEdge = {x = emin.x, y = emin.y, z = emin.z},
|
MinEdge = {x = emin.x, y = emin.y, z = emin.z},
|
||||||
MaxEdge = {x = emax.x, y = emax.y, z = emax.z},
|
MaxEdge = {x = emax.x, y = emax.y, z = emax.z},
|
||||||
}
|
}
|
||||||
local data = vm:get_data()
|
local data = vm:get_data(sulfur_buf)
|
||||||
local pr = PseudoRandom(17 * minp.x + 42 * minp.y + 101 * minp.z)
|
local pr = PseudoRandom(17 * minp.x + 42 * minp.y + 101 * minp.z)
|
||||||
local noise = minetest.get_perlin(9876, 3, 0.5, 100)
|
sulfur_noise = sulfur_noise or minetest.get_perlin(9876, 3, 0.5, 100)
|
||||||
|
|
||||||
local c_lava = minetest.get_content_id("default:lava_source")
|
local c_lava = minetest.get_content_id("default:lava_source")
|
||||||
local c_lava_flowing = minetest.get_content_id("default:lava_flowing")
|
local c_lava_flowing = minetest.get_content_id("default:lava_flowing")
|
||||||
|
@ -136,7 +139,7 @@ minetest.register_on_generated(function(minp, maxp, seed)
|
||||||
for y = minp.y + math.floor(grid_size / 2), maxp.y, grid_size do
|
for y = minp.y + math.floor(grid_size / 2), maxp.y, grid_size do
|
||||||
for z = minp.z + math.floor(grid_size / 2), maxp.z, grid_size do
|
for z = minp.z + math.floor(grid_size / 2), maxp.z, grid_size do
|
||||||
local c = data[a:index(x, y, z)]
|
local c = data[a:index(x, y, z)]
|
||||||
if (c == c_lava or c == c_lava_flowing) and noise:get3d({x = x, y = z, z = z}) >= 0.4 then
|
if (c == c_lava or c == c_lava_flowing) and sulfur_noise:get3d({x = x, y = z, z = z}) >= 0.4 then
|
||||||
for xx = math.max(minp.x, x - grid_size), math.min(maxp.x, x + grid_size) do
|
for xx = math.max(minp.x, x - grid_size), math.min(maxp.x, x + grid_size) do
|
||||||
for yy = math.max(minp.y, y - grid_size), math.min(maxp.y, y + grid_size) do
|
for yy = math.max(minp.y, y - grid_size), math.min(maxp.y, y + grid_size) do
|
||||||
for zz = math.max(minp.z, z - grid_size), math.min(maxp.z, z + grid_size) do
|
for zz = math.max(minp.z, z - grid_size), math.min(maxp.z, z + grid_size) do
|
||||||
|
|
Loading…
Reference in New Issue
Block a user