mirror of
https://github.com/mt-mods/plantlife_modpack.git
synced 2024-11-05 09:50:27 +01:00
record chunk generate events, but populate the results gradually during
globalstep rather than on-generate without-air-checking code does not work correctly yet.
This commit is contained in:
parent
c1f7fb784b
commit
077c985388
|
@ -10,10 +10,25 @@
|
||||||
|
|
||||||
plantslib = {}
|
plantslib = {}
|
||||||
|
|
||||||
|
plantslib.blocklist_aircheck = {}
|
||||||
|
plantslib.blocklist_no_aircheck = {}
|
||||||
|
|
||||||
|
plantslib.surface_nodes_aircheck = {}
|
||||||
|
plantslib.surface_nodes_no_aircheck = {}
|
||||||
|
|
||||||
|
plantslib.surfaceslist_aircheck = {}
|
||||||
|
plantslib.surfaceslist_no_aircheck = {}
|
||||||
|
|
||||||
|
plantslib.actioncount_aircheck = {}
|
||||||
|
plantslib.actioncount_no_aircheck = {}
|
||||||
|
|
||||||
|
plantslib.actionslist_aircheck = {}
|
||||||
|
plantslib.actionslist_no_aircheck = {}
|
||||||
|
|
||||||
plantslib.modpath = minetest.get_modpath("plants_lib")
|
plantslib.modpath = minetest.get_modpath("plants_lib")
|
||||||
plantslib.intllib_modpath = minetest.get_modpath("intllib")
|
plantslib.intllib_modpath = minetest.get_modpath("intllib")
|
||||||
|
|
||||||
plantslib.total_no_air_check_calls = 0
|
plantslib.total_no_aircheck_calls = 0
|
||||||
|
|
||||||
local S
|
local S
|
||||||
if plantslib.intllib_modpath then
|
if plantslib.intllib_modpath then
|
||||||
|
@ -98,12 +113,6 @@ function plantslib:set_defaults(biome)
|
||||||
biome.facedir = biome.facedir or 0
|
biome.facedir = biome.facedir or 0
|
||||||
end
|
end
|
||||||
|
|
||||||
plantslib.surfaces_list = {}
|
|
||||||
plantslib.actions_list = {}
|
|
||||||
|
|
||||||
plantslib.surfaces_list_noaircheck = {}
|
|
||||||
plantslib.actions_list_noaircheck = {}
|
|
||||||
|
|
||||||
local function search_table(t, s)
|
local function search_table(t, s)
|
||||||
for i = 1, #t do
|
for i = 1, #t do
|
||||||
if t[i] == s then return true end
|
if t[i] == s then return true end
|
||||||
|
@ -133,12 +142,12 @@ function plantslib:register_generate_plant(biomedef, nodes_or_function_or_model)
|
||||||
|
|
||||||
if biomedef.check_air == false then
|
if biomedef.check_air == false then
|
||||||
plantslib:dbg("Register no-air-check mapgen hook: "..dump(nodes_or_function_or_model))
|
plantslib:dbg("Register no-air-check mapgen hook: "..dump(nodes_or_function_or_model))
|
||||||
plantslib.actions_list_noaircheck[#plantslib.actions_list_noaircheck + 1] = { biomedef, nodes_or_function_or_model }
|
plantslib.actionslist_no_aircheck[#plantslib.actionslist_no_aircheck + 1] = { biomedef, nodes_or_function_or_model }
|
||||||
local s = biomedef.surface
|
local s = biomedef.surface
|
||||||
if type(s) == "string" then
|
if type(s) == "string" then
|
||||||
if s and minetest.registered_nodes[s] then
|
if s and minetest.registered_nodes[s] then
|
||||||
if not search_table(plantslib.surfaces_list_noaircheck, s) then
|
if not search_table(plantslib.surfaceslist_no_aircheck, s) then
|
||||||
plantslib.surfaces_list_noaircheck[#plantslib.surfaces_list_noaircheck + 1] = s
|
plantslib.surfaceslist_no_aircheck[#plantslib.surfaceslist_no_aircheck + 1] = s
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
plantslib:dbg("Warning: Ignored no-air-check registration for undefined surface node: "..dump(s))
|
plantslib:dbg("Warning: Ignored no-air-check registration for undefined surface node: "..dump(s))
|
||||||
|
@ -147,8 +156,8 @@ function plantslib:register_generate_plant(biomedef, nodes_or_function_or_model)
|
||||||
for i = 1, #biomedef.surface do
|
for i = 1, #biomedef.surface do
|
||||||
local s = biomedef.surface[i]
|
local s = biomedef.surface[i]
|
||||||
if s and minetest.registered_nodes[s] then
|
if s and minetest.registered_nodes[s] then
|
||||||
if not search_table(plantslib.surfaces_list_noaircheck, s) then
|
if not search_table(plantslib.surfaceslist_no_aircheck, s) then
|
||||||
plantslib.surfaces_list_noaircheck[#plantslib.surfaces_list_noaircheck + 1] = s
|
plantslib.surfaceslist_no_aircheck[#plantslib.surfaceslist_no_aircheck + 1] = s
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
plantslib:dbg("Warning: Ignored no-air-check registration for undefined surface node: "..dump(s))
|
plantslib:dbg("Warning: Ignored no-air-check registration for undefined surface node: "..dump(s))
|
||||||
|
@ -157,12 +166,12 @@ function plantslib:register_generate_plant(biomedef, nodes_or_function_or_model)
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
plantslib:dbg("Register with-air-checking mapgen hook: "..dump(nodes_or_function_or_model))
|
plantslib:dbg("Register with-air-checking mapgen hook: "..dump(nodes_or_function_or_model))
|
||||||
plantslib.actions_list[#plantslib.actions_list + 1] = { biomedef, nodes_or_function_or_model }
|
plantslib.actionslist_aircheck[#plantslib.actionslist_aircheck + 1] = { biomedef, nodes_or_function_or_model }
|
||||||
local s = biomedef.surface
|
local s = biomedef.surface
|
||||||
if type(s) == "string" then
|
if type(s) == "string" then
|
||||||
if s and minetest.registered_nodes[s] then
|
if s and minetest.registered_nodes[s] then
|
||||||
if not search_table(plantslib.surfaces_list, s) then
|
if not search_table(plantslib.surfaceslist_aircheck, s) then
|
||||||
plantslib.surfaces_list[#plantslib.surfaces_list + 1] = s
|
plantslib.surfaceslist_aircheck[#plantslib.surfaceslist_aircheck + 1] = s
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
plantslib:dbg("Warning: Ignored with-air-checking registration for undefined surface node: "..dump(s))
|
plantslib:dbg("Warning: Ignored with-air-checking registration for undefined surface node: "..dump(s))
|
||||||
|
@ -171,8 +180,8 @@ function plantslib:register_generate_plant(biomedef, nodes_or_function_or_model)
|
||||||
for i = 1, #biomedef.surface do
|
for i = 1, #biomedef.surface do
|
||||||
local s = biomedef.surface[i]
|
local s = biomedef.surface[i]
|
||||||
if s and minetest.registered_nodes[s] then
|
if s and minetest.registered_nodes[s] then
|
||||||
if not search_table(plantslib.surfaces_list, s) then
|
if not search_table(plantslib.surfaceslist_aircheck, s) then
|
||||||
plantslib.surfaces_list[#plantslib.surfaces_list + 1] = s
|
plantslib.surfaceslist_aircheck[#plantslib.surfaceslist_aircheck + 1] = s
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
plantslib:dbg("Warning: Ignored with-air-checking registration for undefined surface node: "..dump(s))
|
plantslib:dbg("Warning: Ignored with-air-checking registration for undefined surface node: "..dump(s))
|
||||||
|
@ -182,7 +191,7 @@ function plantslib:register_generate_plant(biomedef, nodes_or_function_or_model)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function plantslib:populate_surfaces(minp, maxp, blockseed, biome, nodes_or_function_or_model, surface_nodes, checkair)
|
function plantslib:populate_surfaces(biome, nodes_or_function_or_model, snodes, checkair)
|
||||||
|
|
||||||
plantslib:set_defaults(biome)
|
plantslib:set_defaults(biome)
|
||||||
|
|
||||||
|
@ -191,8 +200,8 @@ function plantslib:populate_surfaces(minp, maxp, blockseed, biome, nodes_or_func
|
||||||
local in_biome_nodes = {}
|
local in_biome_nodes = {}
|
||||||
local perlin_fertile_area = minetest.get_perlin(biome.seed_diff, perlin_octaves, perlin_persistence, perlin_scale)
|
local perlin_fertile_area = minetest.get_perlin(biome.seed_diff, perlin_octaves, perlin_persistence, perlin_scale)
|
||||||
|
|
||||||
for i = 1, #surface_nodes.blockhash do
|
for i = 1, #snodes do
|
||||||
local pos = surface_nodes.blockhash[i]
|
local pos = snodes[i]
|
||||||
local p_top = { x = pos.x, y = pos.y + 1, z = pos.z }
|
local p_top = { x = pos.x, y = pos.y + 1, z = pos.z }
|
||||||
local noise1 = perlin_fertile_area:get2d({x=pos.x, y=pos.z})
|
local noise1 = perlin_fertile_area:get2d({x=pos.x, y=pos.z})
|
||||||
local noise2 = plantslib.perlin_temperature:get2d({x=pos.x, y=pos.z})
|
local noise2 = plantslib.perlin_temperature:get2d({x=pos.x, y=pos.z})
|
||||||
|
@ -295,31 +304,49 @@ end
|
||||||
-- Primary mapgen spawner, for mods that can work with air checking enabled on
|
-- Primary mapgen spawner, for mods that can work with air checking enabled on
|
||||||
-- a surface during the initial map read stage.
|
-- a surface during the initial map read stage.
|
||||||
|
|
||||||
function plantslib:generate_block_with_air_checking(minp, maxp, blockseed)
|
function plantslib:generate_block_with_air_checking(dtime)
|
||||||
return function(minp, maxp, blockseed)
|
|
||||||
|
|
||||||
-- use the block hash as a unique key into the surface_nodes
|
if #plantslib.blocklist_aircheck > 0 then
|
||||||
-- table, so that we can write the table thread-safely later.
|
|
||||||
|
local minp = plantslib.blocklist_aircheck[1][1]
|
||||||
|
local maxp = plantslib.blocklist_aircheck[1][2]
|
||||||
|
|
||||||
|
-- use the block hash as a unique key into the surface nodes
|
||||||
|
-- tables, so that we can write the tables thread-safely.
|
||||||
|
|
||||||
local blockhash = minetest.hash_node_position(minp)
|
local blockhash = minetest.hash_node_position(minp)
|
||||||
local search_area = minetest.find_nodes_in_area(minp, maxp, plantslib.surfaces_list)
|
|
||||||
|
if not plantslib.surface_nodes_aircheck.blockhash then
|
||||||
|
|
||||||
|
local search_area = minetest.find_nodes_in_area(minp, maxp, plantslib.surfaceslist_aircheck)
|
||||||
|
|
||||||
-- search the generated block for air-bounded surfaces
|
-- search the generated block for air-bounded surfaces
|
||||||
|
|
||||||
local surface_nodes = {}
|
plantslib.surface_nodes_aircheck.blockhash = {}
|
||||||
surface_nodes.blockhash = {}
|
|
||||||
|
|
||||||
for i = 1, #search_area do
|
for i = 1, #search_area do
|
||||||
local pos = search_area[i]
|
local pos = search_area[i]
|
||||||
local p_top = { x=pos.x, y=pos.y+1, z=pos.z }
|
local p_top = { x=pos.x, y=pos.y+1, z=pos.z }
|
||||||
if minetest.get_node(p_top).name == "air" then
|
if minetest.get_node(p_top).name == "air" then
|
||||||
surface_nodes.blockhash[#surface_nodes.blockhash + 1] = pos
|
plantslib.surface_nodes_aircheck.blockhash[#plantslib.surface_nodes_aircheck.blockhash + 1] = pos
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
plantslib.actioncount_aircheck.blockhash = 1
|
||||||
|
|
||||||
for action = 1, #plantslib.actions_list do
|
else
|
||||||
plantslib:populate_surfaces(minp, maxp, blockseed, plantslib.actions_list[action][1],
|
if plantslib.actioncount_aircheck.blockhash <= #plantslib.actionslist_aircheck then
|
||||||
plantslib.actions_list[action][2], surface_nodes, true) -- [1] is biome, [2] is node/function/model
|
-- [1] is biome, [2] is node/function/model
|
||||||
|
plantslib:populate_surfaces(
|
||||||
|
plantslib.actionslist_aircheck[plantslib.actioncount_aircheck.blockhash][1],
|
||||||
|
plantslib.actionslist_aircheck[plantslib.actioncount_aircheck.blockhash][2],
|
||||||
|
plantslib.surface_nodes_aircheck.blockhash, true)
|
||||||
|
plantslib.actioncount_aircheck.blockhash = plantslib.actioncount_aircheck.blockhash + 1
|
||||||
|
else
|
||||||
|
if plantslib.surface_nodes_aircheck.blockhash then
|
||||||
|
table.remove(plantslib.blocklist_aircheck, 1)
|
||||||
|
plantslib.surface_nodes_aircheck.blockhash = nil
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -327,32 +354,60 @@ end
|
||||||
-- Secondary mapgen spawner, for mods that require disabling of
|
-- Secondary mapgen spawner, for mods that require disabling of
|
||||||
-- checking for air during the initial map read stage.
|
-- checking for air during the initial map read stage.
|
||||||
|
|
||||||
function plantslib:generate_block_no_air_check(minp, maxp, blockseed)
|
function plantslib:generate_block_no_aircheck(dtime)
|
||||||
return function(minp, maxp, blockseed)
|
|
||||||
|
if #plantslib.blocklist_no_aircheck > 0 then
|
||||||
|
|
||||||
|
local minp = plantslib.blocklist_no_aircheck[1][1]
|
||||||
|
local maxp = plantslib.blocklist_no_aircheck[1][2]
|
||||||
|
|
||||||
local blockhash = minetest.hash_node_position(minp)
|
local blockhash = minetest.hash_node_position(minp)
|
||||||
|
|
||||||
-- read the generated block directly into the block cache, filtered just for "surfaces"
|
if not plantslib.surface_nodes_no_aircheck.blockhash then
|
||||||
|
|
||||||
local surface_nodes = {}
|
-- directly read the block to be searched into the chunk cache
|
||||||
surface_nodes.blockhash = minetest.find_nodes_in_area(minp, maxp, plantslib.surfaces_list_noaircheck)
|
|
||||||
|
|
||||||
for action = 1, #plantslib.actions_list_noaircheck do
|
plantslib.surface_nodes_no_aircheck.blockhash =
|
||||||
plantslib:populate_surfaces(minp, maxp, blockseed, plantslib.actions_list_noaircheck[action][1],
|
minetest.find_nodes_in_area(minp, maxp, plantslib.surfaceslist_no_aircheck)
|
||||||
plantslib.actions_list_noaircheck[action][2], surface_nodes, false)
|
plantslib.actioncount_no_aircheck.blockhash = 1
|
||||||
|
|
||||||
|
else
|
||||||
|
if plantslib.actioncount_no_aircheck.blockhash <= #plantslib.actionslist_no_aircheck then
|
||||||
|
local action = plantslib.actioncount_no_aircheck.blockhash
|
||||||
|
plantslib:populate_surfaces(
|
||||||
|
plantslib.actionslist_no_aircheck[plantslib.actioncount_no_aircheck.blockhash][1],
|
||||||
|
plantslib.actionslist_no_aircheck[plantslib.actioncount_no_aircheck.blockhash][2],
|
||||||
|
plantslib.surface_nodes_no_aircheck.blockhash, false)
|
||||||
|
plantslib.actioncount_no_aircheck.blockhash = plantslib.actioncount_no_aircheck.blockhash + 1
|
||||||
|
else
|
||||||
|
if plantslib.surface_nodes_no_aircheck.blockhash then
|
||||||
|
table.remove(plantslib.blocklist_no_aircheck, 1)
|
||||||
|
plantslib.surface_nodes_no_aircheck.blockhash = nil
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- And here we actually register the mapgen hooks with the engine
|
-- "Record" the chunks being generated by the core mapgen
|
||||||
|
|
||||||
minetest.register_on_generated(
|
minetest.register_on_generated(function(minp, maxp, blockseed)
|
||||||
plantslib:generate_block_with_air_checking(minp, maxp, blockseed)
|
plantslib.blocklist_aircheck[#plantslib.blocklist_aircheck + 1] = { minp, maxp }
|
||||||
)
|
end)
|
||||||
|
|
||||||
minetest.register_on_generated(
|
minetest.register_on_generated(function(minp, maxp, blockseed)
|
||||||
plantslib:generate_block_no_air_check(minp, maxp, blockseed)
|
plantslib.blocklist_no_aircheck[#plantslib.blocklist_no_aircheck + 1] = { minp, maxp }
|
||||||
)
|
end)
|
||||||
|
|
||||||
|
-- "Play" them back, populating them with new stuff in the process
|
||||||
|
|
||||||
|
minetest.register_globalstep(function(dtime)
|
||||||
|
plantslib:generate_block_with_air_checking(dtime)
|
||||||
|
end)
|
||||||
|
|
||||||
|
minetest.register_globalstep(function(dtime)
|
||||||
|
plantslib:generate_block_no_aircheck(dtime)
|
||||||
|
end)
|
||||||
|
|
||||||
-- The spawning ABM
|
-- The spawning ABM
|
||||||
|
|
||||||
|
@ -608,7 +663,7 @@ end
|
||||||
print("[Plants Lib] Loaded")
|
print("[Plants Lib] Loaded")
|
||||||
|
|
||||||
minetest.after(0, function()
|
minetest.after(0, function()
|
||||||
print("[Plants Lib] Registered a total of "..(#plantslib.surfaces_list)+(#plantslib.surfaces_list_noaircheck).." surface types to be evaluated, spread")
|
print("[Plants Lib] Registered a total of "..(#plantslib.surfaceslist_aircheck)+(#plantslib.surfaceslist_no_aircheck).." surface types to be evaluated, spread")
|
||||||
print("[Plants Lib] across "..#plantslib.actions_list.." actions with air-checking and "..#plantslib.actions_list_noaircheck.." actions without.")
|
print("[Plants Lib] across "..#plantslib.actionslist_aircheck.." actions with air-checking and "..#plantslib.actionslist_no_aircheck.." actions without.")
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user