|
|
|
@ -14,16 +14,6 @@ biome_lib.fertile_perlin_octaves = 3
|
|
|
|
|
biome_lib.fertile_perlin_persistence = 0.6
|
|
|
|
|
biome_lib.fertile_perlin_scale = 100
|
|
|
|
|
|
|
|
|
|
local temperature_seeddiff = 112
|
|
|
|
|
local temperature_octaves = 3
|
|
|
|
|
local temperature_persistence = 0.5
|
|
|
|
|
local temperature_scale = 150
|
|
|
|
|
|
|
|
|
|
local humidity_seeddiff = 9130
|
|
|
|
|
local humidity_octaves = 3
|
|
|
|
|
local humidity_persistence = 0.5
|
|
|
|
|
local humidity_scale = 250
|
|
|
|
|
|
|
|
|
|
local time_speed = tonumber(minetest.settings:get("time_speed"))
|
|
|
|
|
biome_lib.time_scale = 1
|
|
|
|
|
|
|
|
|
@ -37,21 +27,13 @@ biome_lib.air = {name = "air"}
|
|
|
|
|
-- still specify a wider range if needed.
|
|
|
|
|
biome_lib.mapgen_elevation_limit = { ["min"] = -16, ["max"] = 48 }
|
|
|
|
|
|
|
|
|
|
--PerlinNoise(seed, octaves, persistence, scale)
|
|
|
|
|
|
|
|
|
|
biome_lib.perlin_temperature = PerlinNoise(temperature_seeddiff, temperature_octaves, temperature_persistence, temperature_scale)
|
|
|
|
|
biome_lib.perlin_humidity = PerlinNoise(humidity_seeddiff, humidity_octaves, humidity_persistence, humidity_scale)
|
|
|
|
|
|
|
|
|
|
-- Local functions
|
|
|
|
|
|
|
|
|
|
local function tableize(s)
|
|
|
|
|
return string.split(string.trim(string.gsub(s, " ", "")))
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function biome_lib.dbg(msg, level)
|
|
|
|
|
local l = tonumber(level) or 0
|
|
|
|
|
if biome_lib.debug_log_level >= l then
|
|
|
|
|
print(os.date("%F %H:%M:%S").." [Biome Lib]: "..msg)
|
|
|
|
|
print(os.date("%Y-%m-%d %H:%M:%S").." [Biome Lib]: "..msg)
|
|
|
|
|
minetest.log("verbose", "[Biome Lib]: "..msg)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
@ -59,17 +41,10 @@ end
|
|
|
|
|
local function get_biome_data(pos, perlin_fertile)
|
|
|
|
|
local fertility = perlin_fertile:get_2d({x=pos.x, y=pos.z})
|
|
|
|
|
|
|
|
|
|
if type(minetest.get_biome_data) == "function" then
|
|
|
|
|
local data = minetest.get_biome_data(pos)
|
|
|
|
|
if data then
|
|
|
|
|
return fertility, data.heat / 100, data.humidity / 100
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local temperature = biome_lib.perlin_temperature:get2d({x=pos.x, y=pos.z})
|
|
|
|
|
local humidity = biome_lib.perlin_humidity:get2d({x=pos.x+150, y=pos.z+50})
|
|
|
|
|
|
|
|
|
|
return fertility, temperature, humidity
|
|
|
|
|
local data = minetest.get_biome_data(pos)
|
|
|
|
|
-- Original values this method returned were +1 (lowest) to -1 (highest)
|
|
|
|
|
-- so we need to convert the 0-100 range from get_biome_data() to that.
|
|
|
|
|
return fertility, 1 - (data.heat / 100 * 2), 1 - (data.humidity / 100 * 2)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function biome_lib.is_node_loaded(node_pos)
|
|
|
|
@ -98,7 +73,9 @@ function biome_lib.set_defaults(biome)
|
|
|
|
|
biome.near_nodes_size = biome.near_nodes_size or 0
|
|
|
|
|
biome.near_nodes_count = biome.near_nodes_count or 1
|
|
|
|
|
biome.rarity = biome.rarity or 50
|
|
|
|
|
biome.rarity_fertility = biome.rarity_fertility or 0
|
|
|
|
|
biome.max_count = biome.max_count or 125
|
|
|
|
|
biome.tries = biome.tries or 2
|
|
|
|
|
if biome.check_air ~= false then biome.check_air = true end
|
|
|
|
|
|
|
|
|
|
-- specific to abm spawner
|
|
|
|
@ -128,13 +105,15 @@ function biome_lib.register_on_generate(biomedef, nodes_or_function_or_model)
|
|
|
|
|
if type(nodes_or_function_or_model) == "string"
|
|
|
|
|
and string.find(nodes_or_function_or_model, ":")
|
|
|
|
|
and not minetest.registered_nodes[nodes_or_function_or_model] then
|
|
|
|
|
biome_lib.dbg("Warning: Ignored registration for undefined spawn node: "..dump(nodes_or_function_or_model), 2)
|
|
|
|
|
biome_lib.dbg("Warning: Ignored registration for undefined spawn node: "..
|
|
|
|
|
dump(nodes_or_function_or_model), 2)
|
|
|
|
|
return
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if type(nodes_or_function_or_model) == "string"
|
|
|
|
|
and not string.find(nodes_or_function_or_model, ":") then
|
|
|
|
|
biome_lib.dbg("Warning: Registered function call using deprecated string method: "..dump(nodes_or_function_or_model), 2)
|
|
|
|
|
biome_lib.dbg("Warning: Registered function call using deprecated string method: "..
|
|
|
|
|
dump(nodes_or_function_or_model), 2)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
biome_lib.mapgen_elevation_limit.min = math.min(biomedef.min_elevation or 0, biome_lib.mapgen_elevation_limit.min)
|
|
|
|
@ -143,13 +122,14 @@ function biome_lib.register_on_generate(biomedef, nodes_or_function_or_model)
|
|
|
|
|
local decor_def = biome_lib.can_use_decorations(biomedef, nodes_or_function_or_model)
|
|
|
|
|
|
|
|
|
|
if decor_def then
|
|
|
|
|
biome_lib.dbg("Using engine decorations instead of biome_lib functions for node(s): "..dump(nodes_or_function_or_model), 3)
|
|
|
|
|
biome_lib.dbg("Using engine decorations instead of biome_lib functions for node(s): "..
|
|
|
|
|
dump(nodes_or_function_or_model), 3)
|
|
|
|
|
biome_lib.registered_decorations[#biome_lib.registered_decorations + 1] = nodes_or_function_or_model
|
|
|
|
|
minetest.register_decoration(decor_def)
|
|
|
|
|
return
|
|
|
|
|
elseif biomedef.check_air == false then
|
|
|
|
|
biome_lib.dbg("Register no-air-check mapgen hook: "..dump(nodes_or_function_or_model), 3)
|
|
|
|
|
biome_lib.actionslist_no_aircheck[#biome_lib.actionslist_no_aircheck + 1] = { biomedef, nodes_or_function_or_model }
|
|
|
|
|
biome_lib.actionslist_no_aircheck[#biome_lib.actionslist_no_aircheck + 1] = {biomedef, nodes_or_function_or_model}
|
|
|
|
|
local s = biomedef.surface
|
|
|
|
|
if type(s) == "string" then
|
|
|
|
|
if s and (string.find(s, "^group:") or minetest.registered_nodes[s]) then
|
|
|
|
@ -161,7 +141,7 @@ function biome_lib.register_on_generate(biomedef, nodes_or_function_or_model)
|
|
|
|
|
end
|
|
|
|
|
else
|
|
|
|
|
for i = 1, #biomedef.surface do
|
|
|
|
|
local s = biomedef.surface[i]
|
|
|
|
|
s = biomedef.surface[i]
|
|
|
|
|
if s and (string.find(s, "^group:") or minetest.registered_nodes[s]) then
|
|
|
|
|
if not search_table(biome_lib.surfaceslist_no_aircheck, s) then
|
|
|
|
|
biome_lib.surfaceslist_no_aircheck[#biome_lib.surfaceslist_no_aircheck + 1] = s
|
|
|
|
@ -185,7 +165,7 @@ function biome_lib.register_on_generate(biomedef, nodes_or_function_or_model)
|
|
|
|
|
end
|
|
|
|
|
else
|
|
|
|
|
for i = 1, #biomedef.surface do
|
|
|
|
|
local s = biomedef.surface[i]
|
|
|
|
|
s = biomedef.surface[i]
|
|
|
|
|
if s and (string.find(s, "^group:") or minetest.registered_nodes[s]) then
|
|
|
|
|
if not search_table(biome_lib.surfaceslist_aircheck, s) then
|
|
|
|
|
biome_lib.surfaceslist_aircheck[#biome_lib.surfaceslist_aircheck + 1] = s
|
|
|
|
@ -204,14 +184,18 @@ end
|
|
|
|
|
local function populate_single_surface(biome, pos, perlin_fertile_area, checkair)
|
|
|
|
|
local p_top = { x = pos.x, y = pos.y + 1, z = pos.z }
|
|
|
|
|
|
|
|
|
|
if math.random(1, 100) <= biome.rarity then
|
|
|
|
|
if biome.rarity - biome.rarity_fertility == 100 then
|
|
|
|
|
return
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local fertility, temperature, humidity = get_biome_data(pos, perlin_fertile_area)
|
|
|
|
|
|
|
|
|
|
if math.random() * 100 <= (biome.rarity - ((fertility + 1) / 2 * biome.rarity_fertility)) then
|
|
|
|
|
return
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local pos_biome_ok = pos.y >= biome.min_elevation and pos.y <= biome.max_elevation
|
|
|
|
|
and fertility > biome.plantlife_limit
|
|
|
|
|
and fertility >= biome.plantlife_limit
|
|
|
|
|
and temperature <= biome.temp_min and temperature >= biome.temp_max
|
|
|
|
|
and humidity <= biome.humidity_min and humidity >= biome.humidity_max
|
|
|
|
|
|
|
|
|
@ -287,7 +271,8 @@ function biome_lib.populate_surfaces(b, nodes_or_function_or_model, snodes, chec
|
|
|
|
|
-- filter stage 1 - find nodes from the supplied surfaces that are within the current biome.
|
|
|
|
|
|
|
|
|
|
local in_biome_nodes = {}
|
|
|
|
|
local perlin_fertile_area = minetest.get_perlin(biome.seed_diff, biome_lib.fertile_perlin_octaves, biome_lib.fertile_perlin_persistence, biome_lib.fertile_perlin_scale)
|
|
|
|
|
local perlin_fertile_area = minetest.get_perlin(biome.seed_diff, biome_lib.fertile_perlin_octaves,
|
|
|
|
|
biome_lib.fertile_perlin_persistence, biome_lib.fertile_perlin_scale)
|
|
|
|
|
|
|
|
|
|
for i = 1, #snodes do
|
|
|
|
|
local pos = vector.new(snodes[i])
|
|
|
|
@ -307,14 +292,36 @@ function biome_lib.populate_surfaces(b, nodes_or_function_or_model, snodes, chec
|
|
|
|
|
for i = 1, math.min(math.ceil(biome.max_count/25), num_in_biome_nodes) do
|
|
|
|
|
local tries = 0
|
|
|
|
|
local spawned = false
|
|
|
|
|
while tries < 2 and not spawned do
|
|
|
|
|
while tries < biome.tries and not spawned do
|
|
|
|
|
local pos = in_biome_nodes[math.random(1, num_in_biome_nodes)]
|
|
|
|
|
if biome.spawn_replace_node then
|
|
|
|
|
|
|
|
|
|
local will_place = true
|
|
|
|
|
local fdir = nil
|
|
|
|
|
if biome.random_facedir then
|
|
|
|
|
fdir = math.random(biome.random_facedir[1], biome.random_facedir[2])
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if biome.spawn_on_side then
|
|
|
|
|
local onside = biome_lib.find_open_side(pos)
|
|
|
|
|
if onside then
|
|
|
|
|
pos = onside.newpos
|
|
|
|
|
fdir = onside.facedir
|
|
|
|
|
else
|
|
|
|
|
will_place = false
|
|
|
|
|
end
|
|
|
|
|
elseif biome.spawn_on_bottom then
|
|
|
|
|
if minetest.get_node({x=pos.x, y=pos.y-1, z=pos.z}).name == "air" then
|
|
|
|
|
pos.y = pos.y - 1
|
|
|
|
|
else
|
|
|
|
|
will_place = false
|
|
|
|
|
end
|
|
|
|
|
elseif biome.spawn_replace_node then
|
|
|
|
|
pos.y = pos.y-1
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local p_top = { x = pos.x, y = pos.y + 1, z = pos.z }
|
|
|
|
|
|
|
|
|
|
if not (biome.avoid_nodes and biome.avoid_radius
|
|
|
|
|
if will_place and not (biome.avoid_nodes and biome.avoid_radius
|
|
|
|
|
and minetest.find_node_near(p_top, biome.avoid_radius
|
|
|
|
|
+ math.random(-1.5,2), biome.avoid_nodes)) then
|
|
|
|
|
if biome.delete_above then
|
|
|
|
@ -346,34 +353,30 @@ function biome_lib.populate_surfaces(b, nodes_or_function_or_model, snodes, chec
|
|
|
|
|
biome_lib.dbg("An L-tree was spawned at "..minetest.pos_to_string(p_top), 4)
|
|
|
|
|
spawned = true
|
|
|
|
|
else
|
|
|
|
|
local fdir = nil
|
|
|
|
|
if biome.random_facedir then
|
|
|
|
|
fdir = math.random(biome.random_facedir[1], biome.random_facedir[2])
|
|
|
|
|
end
|
|
|
|
|
local n=nodes_or_function_or_model[math.random(#nodes_or_function_or_model)]
|
|
|
|
|
minetest.swap_node(p_top, { name = n, param2 = fdir })
|
|
|
|
|
biome_lib.dbg("Node \""..n.."\" was randomly picked from a list and placed at "..minetest.pos_to_string(p_top), 4)
|
|
|
|
|
biome_lib.dbg("Node \""..n.."\" was randomly picked from a list and placed at "..
|
|
|
|
|
minetest.pos_to_string(p_top), 4)
|
|
|
|
|
spawned = true
|
|
|
|
|
end
|
|
|
|
|
elseif objtype == "string" and
|
|
|
|
|
minetest.registered_nodes[nodes_or_function_or_model] then
|
|
|
|
|
local fdir = nil
|
|
|
|
|
if biome.random_facedir then
|
|
|
|
|
fdir = math.random(biome.random_facedir[1], biome.random_facedir[2])
|
|
|
|
|
end
|
|
|
|
|
minetest.swap_node(p_top, { name = nodes_or_function_or_model, param2 = fdir })
|
|
|
|
|
biome_lib.dbg("Node \""..nodes_or_function_or_model.."\" was placed at "..minetest.pos_to_string(p_top), 4)
|
|
|
|
|
biome_lib.dbg("Node \""..nodes_or_function_or_model.."\" was placed at "..
|
|
|
|
|
minetest.pos_to_string(p_top), 4)
|
|
|
|
|
spawned = true
|
|
|
|
|
elseif objtype == "function" then
|
|
|
|
|
nodes_or_function_or_model(pos)
|
|
|
|
|
nodes_or_function_or_model(pos, fdir)
|
|
|
|
|
biome_lib.dbg("A function was run on surface node at "..minetest.pos_to_string(pos), 4)
|
|
|
|
|
spawned = true
|
|
|
|
|
elseif objtype == "string" and pcall(loadstring(("return %s(...)"):
|
|
|
|
|
format(nodes_or_function_or_model)),pos) then
|
|
|
|
|
spawned = true
|
|
|
|
|
biome_lib.dbg("An obsolete string-specified function was run on surface node at "..minetest.pos_to_string(p_top), 4)
|
|
|
|
|
biome_lib.dbg("An obsolete string-specified function was run on surface node at "..
|
|
|
|
|
minetest.pos_to_string(p_top), 4)
|
|
|
|
|
else
|
|
|
|
|
biome_lib.dbg("Warning: Ignored invalid definition for object "..dump(nodes_or_function_or_model).." that was pointed at {"..dump(pos).."}", 2)
|
|
|
|
|
biome_lib.dbg("Warning: Ignored invalid definition for object "..
|
|
|
|
|
dump(nodes_or_function_or_model).." that was pointed at {"..dump(pos).."}", 2)
|
|
|
|
|
end
|
|
|
|
|
else
|
|
|
|
|
tries = tries + 1
|
|
|
|
@ -393,7 +396,7 @@ local function confirm_block_surroundings(p)
|
|
|
|
|
for x = -32,32,64 do -- step of 64 causes it to only check the 8 corner blocks
|
|
|
|
|
for y = -32,32,64 do
|
|
|
|
|
for z = -32,32,64 do
|
|
|
|
|
local n=minetest.get_node_or_nil({x=p.x + x, y=p.y + y, z=p.z + z})
|
|
|
|
|
n = minetest.get_node_or_nil({x=p.x + x, y=p.y + y, z=p.z + z})
|
|
|
|
|
if not n or n.name == "ignore" then return false end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
@ -427,7 +430,6 @@ function biome_lib.generate_block(shutting_down)
|
|
|
|
|
local minp = blocklog[1][1]
|
|
|
|
|
local maxp = blocklog[1][2]
|
|
|
|
|
local airflag = blocklog[1][3]
|
|
|
|
|
local pos_hash = minetest.hash_node_position(minp)
|
|
|
|
|
|
|
|
|
|
if not biome_lib.pos_hash then -- we need to read the maplock and get the surfaces list
|
|
|
|
|
local now = minetest.get_us_time()
|
|
|
|
@ -435,7 +437,8 @@ function biome_lib.generate_block(shutting_down)
|
|
|
|
|
minetest.load_area(minp)
|
|
|
|
|
if not confirm_block_surroundings(minp)
|
|
|
|
|
and not shutting_down
|
|
|
|
|
and (blocklog[1][4] + biome_lib.block_timeout) > now then -- if any neighbors appear not to be loaded and the block hasn't expired yet, defer it
|
|
|
|
|
-- if any neighbors appear not to be loaded and the block hasn't expired yet, defer it
|
|
|
|
|
and (blocklog[1][4] + biome_lib.block_timeout) > now then
|
|
|
|
|
|
|
|
|
|
if biome_lib.run_block_recheck_list then
|
|
|
|
|
biome_lib.block_log[#biome_lib.block_log + 1] = table.copy(biome_lib.block_recheck_list[1])
|
|
|
|
@ -544,7 +547,8 @@ function biome_lib.register_active_spawner(sd,sp,sr,sc,ss,sa)
|
|
|
|
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
|
|
|
|
local p_top = { x = pos.x, y = pos.y + 1, z = pos.z }
|
|
|
|
|
local n_top = minetest.get_node(p_top)
|
|
|
|
|
local perlin_fertile_area = minetest.get_perlin(biome.seed_diff, biome_lib.fertile_perlin_octaves, biome_lib.fertile_perlin_persistence, biome_lib.fertile_perlin_scale)
|
|
|
|
|
local perlin_fertile_area = minetest.get_perlin(biome.seed_diff, biome_lib.fertile_perlin_octaves,
|
|
|
|
|
biome_lib.fertile_perlin_persistence, biome_lib.fertile_perlin_scale)
|
|
|
|
|
|
|
|
|
|
local fertility, temperature, humidity = get_biome_data(pos, perlin_fertile_area)
|
|
|
|
|
|
|
|
|
@ -654,12 +658,14 @@ function biome_lib.replace_plant(pos, replacement, grow_function, walldir, seedd
|
|
|
|
|
biome_lib.grow_ltree(pos, grow_function)
|
|
|
|
|
return
|
|
|
|
|
elseif growtype == "function" then
|
|
|
|
|
local perlin_fertile_area = minetest.get_perlin(seeddiff, biome_lib.fertile_perlin_octaves, biome_lib.fertile_perlin_persistence, biome_lib.fertile_perlin_scale)
|
|
|
|
|
local perlin_fertile_area = minetest.get_perlin(seeddiff, biome_lib.fertile_perlin_octaves,
|
|
|
|
|
biome_lib.fertile_perlin_persistence, biome_lib.fertile_perlin_scale)
|
|
|
|
|
local fertility, temperature, _ = get_biome_data(pos, perlin_fertile_area)
|
|
|
|
|
grow_function(pos, fertility, temperature, walldir)
|
|
|
|
|
return
|
|
|
|
|
elseif growtype == "string" then
|
|
|
|
|
local perlin_fertile_area = minetest.get_perlin(seeddiff, biome_lib.fertile_perlin_octaves, biome_lib.fertile_perlin_persistence, biome_lib.fertile_perlin_scale)
|
|
|
|
|
local perlin_fertile_area = minetest.get_perlin(seeddiff, biome_lib.fertile_perlin_octaves,
|
|
|
|
|
biome_lib.fertile_perlin_persistence, biome_lib.fertile_perlin_scale)
|
|
|
|
|
local fertility, temperature, _ = get_biome_data(pos, perlin_fertile_area)
|
|
|
|
|
assert(loadstring(grow_function.."(...)"))(pos, fertility, temperature, walldir)
|
|
|
|
|
return
|
|
|
|
|