Rivers continuous over faults, new appletree, remove lavacooling abms, tune volcanos

This commit is contained in:
paramat 2014-04-02 11:26:42 +01:00
parent 5ea4bd4918
commit 47c8204d4a
3 changed files with 18 additions and 42 deletions

View File

@ -1,4 +1,4 @@
watershed 0.3.2 by paramat watershed 0.3.3 by paramat
For latest stable Minetest back to 0.4.8 For latest stable Minetest back to 0.4.8
Depends default Depends default
Licenses: code WTFPL Licenses: code WTFPL

View File

@ -3,7 +3,7 @@ function watershed_appletree(x, y, z, area, data)
local c_apple = minetest.get_content_id("default:apple") local c_apple = minetest.get_content_id("default:apple")
local c_wsappleaf = minetest.get_content_id("watershed:appleleaf") local c_wsappleaf = minetest.get_content_id("watershed:appleleaf")
for j = -2, 4 do for j = -2, 4 do
if j == 3 then if j == 2 or j == 3 then
for i = -2, 2 do for i = -2, 2 do
for k = -2, 2 do for k = -2, 2 do
local vil = area:index(x + i, y + j + 1, z + k) local vil = area:index(x + i, y + j + 1, z + k)
@ -14,7 +14,7 @@ function watershed_appletree(x, y, z, area, data)
end end
end end
end end
elseif j == 2 or j == 4 then elseif j == 1 or j == 4 then
for i = -1, 1 do for i = -1, 1 do
for k = -1, 1 do for k = -1, 1 do
if math.random(5) ~= 2 then if math.random(5) ~= 2 then
@ -234,30 +234,6 @@ minetest.register_craft({
replacements = {{"watershed:bucket_lava", "bucket:bucket_empty"}}, replacements = {{"watershed:bucket_lava", "bucket:bucket_empty"}},
}) })
-- Lavacooling
minetest.register_abm({
nodenames = {"watershed:lavaflow"},
neighbors = {"group:water"},
interval = 1,
chance = 11,
action = function(pos, node, active_object_count, active_object_count_wider)
minetest.set_node(pos, {name="watershed:stone"})
minetest.sound_play("default_cool_lava", {pos = pos, gain = 0.25})
end,
})
minetest.register_abm({
nodenames = {"watershed:lava"},
neighbors = {"group:water"},
interval = 1,
chance = 11,
action = function(pos, node, active_object_count, active_object_count_wider)
minetest.set_node(pos, {name="default:obsidian"})
minetest.sound_play("default_cool_lava", {pos = pos, gain = 0.25})
end,
})
-- Singlenode mapgen option -- Singlenode mapgen option
local SINGLENODE = true local SINGLENODE = true
@ -360,10 +336,10 @@ if SINGLENODE then
else else
density = densitybase density = densitybase
+ math.abs(nvals_rough[nixyz] * terblen + math.abs(nvals_rough[nixyz] * terblen
- nvals_smooth[nixyz] * (1 - terblen)) ^ CANEXP * CANAMP + nvals_smooth[nixyz] * (1 - terblen)) ^ CANEXP * CANAMP * 0.7
end end
if y >= 1 and density > -0.01 and density < 0 then if y >= 1 and density > -0.01 and density < 0 then
ysp = y ysp = y + 1
xsp = x xsp = x
zsp = z zsp = z
break break

View File

@ -1,11 +1,12 @@
-- watershed 0.3.2 by paramat -- watershed 0.3.3 by paramat
-- For latest stable Minetest and back to 0.4.8 -- For latest stable Minetest and back to 0.4.8
-- Depends default -- Depends default
-- License: code WTFPL -- License: code WTFPL
-- remove lavacooling abms
-- new appletree
-- rivers continuous over faults
-- TODO -- TODO
-- river continuous over faults?
-- tree heights vary
-- fog -- fog
-- Parameters -- Parameters
@ -27,7 +28,7 @@ local ATANAMP = 1.1 -- Arctan function amplitude, smaller = more and larger floa
local TSTONE = 0.03 -- Density threshold for stone, depth of soil at TERCEN local TSTONE = 0.03 -- Density threshold for stone, depth of soil at TERCEN
local TRIV = -0.02 -- Maximum densitybase threshold for river water local TRIV = -0.02 -- Maximum densitybase threshold for river water
local TSAND = -0.025 -- Maximum densitybase threshold for river sand local TSAND = -0.025 -- Maximum densitybase threshold for river sand
local TLAVA = 2 -- Maximum densitybase threshold for lava local TLAVA = 10 -- Maximum densitybase threshold for lava
local FIST = 0 -- Fissure threshold at surface, controls size of fissure entrances at surface local FIST = 0 -- Fissure threshold at surface, controls size of fissure entrances at surface
local FISEXP = 0.02 -- Fissure expansion rate under surface local FISEXP = 0.02 -- Fissure expansion rate under surface
local ORETHI = 0.001 -- Ore seam thickness tuner local ORETHI = 0.001 -- Ore seam thickness tuner
@ -183,7 +184,7 @@ local np_magma = {
scale = 1, scale = 1,
spread = {x=128, y=128, z=128}, spread = {x=128, y=128, z=128},
seed = -13, seed = -13,
octaves = 3, octaves = 2,
persist = 0.5 persist = 0.5
} }
@ -316,20 +317,21 @@ minetest.register_on_generated(function(minp, maxp, seed)
local n_base = nvals_base[nixz] local n_base = nvals_base[nixz]
local terblen = math.max(1 - math.abs(n_base), 0) local terblen = math.max(1 - math.abs(n_base), 0)
local densitybase = (1 - math.abs(n_base)) * BASAMP + nvals_xlscale[nixz] * XLSAMP + grad local densitybase = (1 - math.abs(n_base)) * BASAMP + nvals_xlscale[nixz] * XLSAMP + grad
--local altprop = (y - YWAT) / (TERCEN + TERSCA - YWAT)
local triv = TRIV * (1 - terblen) local triv = TRIV * (1 - terblen)
local tsand = TSAND * (1 - terblen) local tsand = TSAND * (1 - terblen)
local tstone = TSTONE * (1 + grad) local tstone = TSTONE * (1 + grad)
local tlava = TLAVA * (1 - nvals_magma[nixz] ^ 4 * terblen ^ 16 * 0.7) local tlava = TLAVA * (1 - nvals_magma[nixz] ^ 4 * terblen ^ 16)
local n_temp = nvals_temp[nixyz]
local n_humid = nvals_humid[nixyz]
local density local density
if nvals_fault[nixyz] >= 0 then if nvals_fault[nixyz] >= 0 then
density = densitybase density = densitybase
+ math.abs(nvals_rough[nixyz] * terblen + math.abs(nvals_rough[nixyz] * terblen
+ nvals_smooth[nixyz] * (1 - terblen)) ^ CANEXP * CANAMP + nvals_smooth[nixyz] * (1 - terblen)) ^ CANEXP * CANAMP * (1 + n_temp * 0.5)
else else
density = densitybase density = densitybase
+ math.abs(nvals_rough[nixyz] * terblen + math.abs(nvals_rough[nixyz] * terblen
- nvals_smooth[nixyz] * (1 - terblen)) ^ CANEXP * CANAMP + nvals_smooth[nixyz] * (1 - terblen)) ^ CANEXP * CANAMP * (1 + n_humid * 0.5)
end end
local nofis = false local nofis = false
if density >= 0 then -- if terrain set fissure flag if density >= 0 then -- if terrain set fissure flag
@ -361,8 +363,6 @@ minetest.register_on_generated(function(minp, maxp, seed)
end end
end end
elseif y >= y0 and y <= y1 then -- chunk elseif y >= y0 and y <= y1 then -- chunk
local n_temp = nvals_temp[nixyz] -- get raw temp and humid noise for use with node
local n_humid = nvals_humid[nixyz]
local biome = false -- select biome for node local biome = false -- select biome for node
if n_temp < LOTET then if n_temp < LOTET then
if n_humid < LOHUT then if n_humid < LOHUT then
@ -391,12 +391,12 @@ minetest.register_on_generated(function(minp, maxp, seed)
end end
if densitybase >= tlava then if densitybase >= tlava then
if densitybase >= -0.033 then if densitybase >= 0 then
data[vi] = c_wslava data[vi] = c_wslava
end end
stable[si] = 0 stable[si] = 0
under[si] = 0 under[si] = 0
elseif densitybase >= tlava - math.min(1 + densitybase * 10, 1) then elseif densitybase >= tlava - math.min(2 + density * 20, 2) and density < tstone then
data[vi] = c_obsidian data[vi] = c_obsidian
stable[si] = 1 stable[si] = 1
under[si] = 0 under[si] = 0