| 
						
						
						
						 |  | @@ -1,4 +1,4 @@ | 
			
		
	
		
		
			
				
					
					|  |  |  | -- Biome library mod by Vanessa Ezekowitz |  |  |  | -- Biome library mod by VanessaE | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | -- |  |  |  | -- | 
			
		
	
		
		
			
				
					
					|  |  |  | -- I got the temperature map idea from "hmmmm", values used for it came from |  |  |  | -- I got the temperature map idea from "hmmmm", values used for it came from | 
			
		
	
		
		
			
				
					
					|  |  |  | -- Splizard's snow mod. |  |  |  | -- Splizard's snow mod. | 
			
		
	
	
		
		
			
				
					
					|  |  | @@ -9,8 +9,6 @@ | 
			
		
	
		
		
			
				
					
					|  |  |  | biome_lib = {} |  |  |  | biome_lib = {} | 
			
		
	
		
		
			
				
					
					|  |  |  | biome_lib.air = {name = "air"} |  |  |  | biome_lib.air = {name = "air"} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | plantslib = setmetatable({}, { __index=function(t,k) print("Use of deprecated function:", k) return biome_lib[k] end }) |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | biome_lib.blocklist_aircheck = {} |  |  |  | biome_lib.blocklist_aircheck = {} | 
			
		
	
		
		
			
				
					
					|  |  |  | biome_lib.blocklist_no_aircheck = {} |  |  |  | biome_lib.blocklist_no_aircheck = {} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
	
		
		
			
				
					
					|  |  | @@ -32,6 +30,41 @@ biome_lib.total_no_aircheck_calls = 0 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | biome_lib.queue_run_ratio = tonumber(minetest.settings:get("biome_lib_queue_run_ratio")) or 100 |  |  |  | biome_lib.queue_run_ratio = tonumber(minetest.settings:get("biome_lib_queue_run_ratio")) or 100 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | local function tableize(s) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	return string.split(string.trim(string.gsub(s, " ", ""))) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | end | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | local c1 = minetest.settings:get("biome_lib_default_grow_through_nodes") | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | biome_lib.default_grow_through_nodes = {["air"] = true} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | if c1 then | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	for _, i in ipairs(tableize(c1)) do | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		biome_lib.default_grow_through_nodes[i] = true | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	end | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | else | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	biome_lib.default_grow_through_nodes["default:snow"] = true | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | end | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | local c2 = minetest.settings:get("biome_lib_default_water_nodes") | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | biome_lib.default_water_nodes = {} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | if c2 then | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	for _, i in ipairs(tableize(c2)) do | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		biome_lib.default_water_nodes[i] = true | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	end | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | else | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	biome_lib.default_water_nodes["default:water_source"] = true | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	biome_lib.default_water_nodes["default:water_flowing"] = true | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	biome_lib.default_water_nodes["default:river_water_source"] = true | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	biome_lib.default_water_nodes["default:river_water_flowing"] = true | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | end | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | local c3 = minetest.settings:get("biome_lib_default_wet_surfaces") | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | local c4 = minetest.settings:get("biome_lib_default_ground_nodes") | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | local c5 = minetest.settings:get("biome_lib_default_grow_nodes") | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | biome_lib.default_wet_surfaces = c3 and tableize(c3) or {"default:dirt", "default:dirt_with_grass", "default:sand"} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | biome_lib.default_ground_nodes = c4 and tableize(c4) or {"default:dirt_with_grass"} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | biome_lib.default_grow_nodes =   c5 and tableize(c5) or {"default:dirt_with_grass"} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | -- Boilerplate to support localized strings if intllib mod is installed. |  |  |  | -- Boilerplate to support localized strings if intllib mod is installed. | 
			
		
	
		
		
			
				
					
					|  |  |  | local S |  |  |  | local S | 
			
		
	
		
		
			
				
					
					|  |  |  | if minetest.global_exists("intllib") then |  |  |  | if minetest.global_exists("intllib") then | 
			
		
	
	
		
		
			
				
					
					|  |  | @@ -45,12 +78,12 @@ else | 
			
		
	
		
		
			
				
					
					|  |  |  | end |  |  |  | end | 
			
		
	
		
		
			
				
					
					|  |  |  | biome_lib.intllib = S |  |  |  | biome_lib.intllib = S | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | local DEBUG = false --... except if you want to spam the console with debugging info :-) |  |  |  | local DEBUG = minetest.settings:get_bool("biome_lib_debug", false) | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | function biome_lib:dbg(msg) |  |  |  | function biome_lib:dbg(msg) | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if DEBUG then |  |  |  | 	if DEBUG then | 
			
		
	
		
		
			
				
					
					|  |  |  | 		print("[Plantlife] "..msg) |  |  |  | 		print("[Biome Lib] "..msg) | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		minetest.log("verbose", "[Plantlife] "..msg) |  |  |  | 		minetest.log("verbose", "[Biome Lib] "..msg) | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	end |  |  |  | 	end | 
			
		
	
		
		
			
				
					
					|  |  |  | end |  |  |  | end | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
	
		
		
			
				
					
					|  |  | @@ -85,7 +118,7 @@ biome_lib.perlin_humidity = PerlinNoise(humidity_seeddiff, humidity_octaves, hum | 
			
		
	
		
		
			
				
					
					|  |  |  | -- Local functions |  |  |  | -- Local functions | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | local function get_biome_data(pos, perlin_fertile) |  |  |  | local function get_biome_data(pos, perlin_fertile) | 
			
		
	
		
		
			
				
					
					|  |  |  | 	local fertility = perlin_fertile:get2d({x=pos.x, y=pos.z}) |  |  |  | 	local fertility = perlin_fertile:get_2d({x=pos.x, y=pos.z}) | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if type(minetest.get_biome_data) == "function" then |  |  |  | 	if type(minetest.get_biome_data) == "function" then | 
			
		
	
		
		
			
				
					
					|  |  |  | 		local data = minetest.get_biome_data(pos) |  |  |  | 		local data = minetest.get_biome_data(pos) | 
			
		
	
	
		
		
			
				
					
					|  |  | @@ -125,7 +158,7 @@ function biome_lib:set_defaults(biome) | 
			
		
	
		
		
			
				
					
					|  |  |  | 	biome.near_nodes_size = biome.near_nodes_size or 0 |  |  |  | 	biome.near_nodes_size = biome.near_nodes_size or 0 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	biome.near_nodes_count = biome.near_nodes_count or 1 |  |  |  | 	biome.near_nodes_count = biome.near_nodes_count or 1 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	biome.rarity = biome.rarity or 50 |  |  |  | 	biome.rarity = biome.rarity or 50 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	biome.max_count = biome.max_count or 5 |  |  |  | 	biome.max_count = biome.max_count or 125 | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	if biome.check_air ~= false then biome.check_air = true end |  |  |  | 	if biome.check_air ~= false then biome.check_air = true end | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | -- specific to abm spawner |  |  |  | -- specific to abm spawner | 
			
		
	
	
		
		
			
				
					
					|  |  | @@ -296,6 +329,7 @@ local function populate_single_surface(biome, pos, perlin_fertile_area, checkair | 
			
		
	
		
		
			
				
					
					|  |  |  | end |  |  |  | end | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | function biome_lib:populate_surfaces(biome, nodes_or_function_or_model, snodes, checkair) |  |  |  | function biome_lib:populate_surfaces(biome, nodes_or_function_or_model, snodes, checkair) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	local items_added = 0 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	biome_lib:set_defaults(biome) |  |  |  | 	biome_lib:set_defaults(biome) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
	
		
		
			
				
					
					|  |  | @@ -316,10 +350,10 @@ function biome_lib:populate_surfaces(biome, nodes_or_function_or_model, snodes, | 
			
		
	
		
		
			
				
					
					|  |  |  | 	local num_in_biome_nodes = #in_biome_nodes |  |  |  | 	local num_in_biome_nodes = #in_biome_nodes | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if num_in_biome_nodes == 0 then |  |  |  | 	if num_in_biome_nodes == 0 then | 
			
		
	
		
		
			
				
					
					|  |  |  | 		return |  |  |  | 		return 0 | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	end |  |  |  | 	end | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	for i = 1, math.min(biome.max_count, num_in_biome_nodes) do |  |  |  | 	for i = 1, math.min(math.ceil(biome.max_count/25), num_in_biome_nodes) do | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		local tries = 0 |  |  |  | 		local tries = 0 | 
			
		
	
		
		
			
				
					
					|  |  |  | 		local spawned = false |  |  |  | 		local spawned = false | 
			
		
	
		
		
			
				
					
					|  |  |  | 		while tries < 2 and not spawned do |  |  |  | 		while tries < 2 and not spawned do | 
			
		
	
	
		
		
			
				
					
					|  |  | @@ -388,14 +422,28 @@ function biome_lib:populate_surfaces(biome, nodes_or_function_or_model, snodes, | 
			
		
	
		
		
			
				
					
					|  |  |  | 				tries = tries + 1 |  |  |  | 				tries = tries + 1 | 
			
		
	
		
		
			
				
					
					|  |  |  | 			end |  |  |  | 			end | 
			
		
	
		
		
			
				
					
					|  |  |  | 		end |  |  |  | 		end | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		if spawned then items_added = items_added + 1 end | 
			
		
	
		
		
			
				
					
					|  |  |  | 	end |  |  |  | 	end | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	return items_added | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | end | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | -- make sure the target block and all 6 neighbors are actually loaded. | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | local function confirm_block_surroundings(pos) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	return minetest.get_node_or_nil(pos) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	  and minetest.get_node_or_nil({ x=pos.x-16, y=pos.y,   z=pos.z   }) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	  and minetest.get_node_or_nil({ x=pos.x+16, y=pos.y,   z=pos.z   }) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	  and minetest.get_node_or_nil({ x=pos.x,   y=pos.y-16, z=pos.z   }) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	  and minetest.get_node_or_nil({ x=pos.x,   y=pos.y+16, z=pos.z   }) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	  and minetest.get_node_or_nil({ x=pos.x,   y=pos.y,   z=pos.z-16 }) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	  and minetest.get_node_or_nil({ x=pos.x,   y=pos.y,   z=pos.z+16 }) | 
			
		
	
		
		
			
				
					
					|  |  |  | end |  |  |  | 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 biome_lib:generate_block_with_air_checking() |  |  |  | function biome_lib:generate_block_with_air_checking(shutdown) | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	if #biome_lib.blocklist_aircheck == 0 then |  |  |  | 	if not biome_lib.blocklist_aircheck[1] then | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		return |  |  |  | 		return | 
			
		
	
		
		
			
				
					
					|  |  |  | 	end |  |  |  | 	end | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
	
		
		
			
				
					
					|  |  | @@ -407,41 +455,33 @@ function biome_lib:generate_block_with_air_checking() | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	local blockhash =	minetest.hash_node_position(minp) |  |  |  | 	local blockhash =	minetest.hash_node_position(minp) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if not biome_lib.surface_nodes_aircheck.blockhash then |  |  |  | 	if not biome_lib.surface_nodes_aircheck.blockhash then -- read it into the block cache | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		if type(minetest.find_nodes_in_area_under_air) == "function" then -- use newer API call |  |  |  |  | 
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		biome_lib.surface_nodes_aircheck.blockhash = |  |  |  | 		biome_lib.surface_nodes_aircheck.blockhash = | 
			
		
	
		
		
			
				
					
					|  |  |  | 			minetest.find_nodes_in_area_under_air(minp, maxp, biome_lib.surfaceslist_aircheck) |  |  |  | 			minetest.find_nodes_in_area_under_air(minp, maxp, biome_lib.surfaceslist_aircheck) | 
			
		
	
		
		
			
				
					
					|  |  |  | 		else |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 			local search_area = minetest.find_nodes_in_area(minp, maxp, biome_lib.surfaceslist_aircheck) |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 			-- search the generated block for air-bounded surfaces the slow way. |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 			biome_lib.surface_nodes_aircheck.blockhash = {} |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 			for i = 1, #search_area do |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 			local pos = search_area[i] |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 				local p_top = { x=pos.x, y=pos.y+1, z=pos.z } |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 				if minetest.get_node(p_top).name == "air" then |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 					biome_lib.surface_nodes_aircheck.blockhash[#biome_lib.surface_nodes_aircheck.blockhash + 1] = pos |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 				end |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 			end |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		end |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		biome_lib.actioncount_aircheck.blockhash = 1 |  |  |  | 		biome_lib.actioncount_aircheck.blockhash = 1 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		if #biome_lib.surface_nodes_aircheck.blockhash > 0 then | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			biome_lib:dbg("Mapblock at "..minetest.pos_to_string(minp).." added, with "..#biome_lib.surface_nodes_aircheck.blockhash.." surface nodes detected.") | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		end | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	elseif not shutdown and not confirm_block_surroundings(minp) and #biome_lib.blocklist_aircheck > 1 then | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		biome_lib.blocklist_aircheck[#biome_lib.blocklist_aircheck+1] = biome_lib.blocklist_aircheck[1] | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		table.remove(biome_lib.blocklist_aircheck, 1) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		biome_lib:dbg("Mapblock at "..minetest.pos_to_string(minp).." had an unloaded neighbor, moved it to the end of the queue.") | 
			
		
	
		
		
			
				
					
					|  |  |  | 	else |  |  |  | 	else | 
			
		
	
		
		
			
				
					
					|  |  |  | 		if biome_lib.actioncount_aircheck.blockhash <= #biome_lib.actionslist_aircheck then |  |  |  | 		if biome_lib.actionslist_aircheck[biome_lib.actioncount_aircheck.blockhash] then | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 			-- [1] is biome, [2] is node/function/model |  |  |  | 			-- [1] is biome, [2] is node/function/model | 
			
		
	
		
		
			
				
					
					|  |  |  | 			biome_lib:populate_surfaces( |  |  |  | 			local added = biome_lib:populate_surfaces( | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 				biome_lib.actionslist_aircheck[biome_lib.actioncount_aircheck.blockhash][1], |  |  |  | 				biome_lib.actionslist_aircheck[biome_lib.actioncount_aircheck.blockhash][1], | 
			
		
	
		
		
			
				
					
					|  |  |  | 				biome_lib.actionslist_aircheck[biome_lib.actioncount_aircheck.blockhash][2], |  |  |  | 				biome_lib.actionslist_aircheck[biome_lib.actioncount_aircheck.blockhash][2], | 
			
		
	
		
		
			
				
					
					|  |  |  | 				biome_lib.surface_nodes_aircheck.blockhash, true) |  |  |  | 				biome_lib.surface_nodes_aircheck.blockhash, true) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			if added > 0 then | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 				biome_lib:dbg("Ran biome_lib:populate_surfaces for block at "..minetest.pos_to_string(minp).. | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 					".  Entry #"..biome_lib.actioncount_aircheck.blockhash.." added "..added.." items.") | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			end | 
			
		
	
		
		
			
				
					
					|  |  |  | 			biome_lib.actioncount_aircheck.blockhash = biome_lib.actioncount_aircheck.blockhash + 1 |  |  |  | 			biome_lib.actioncount_aircheck.blockhash = biome_lib.actioncount_aircheck.blockhash + 1 | 
			
		
	
		
		
			
				
					
					|  |  |  | 		else |  |  |  | 		else | 
			
		
	
		
		
			
				
					
					|  |  |  | 			if biome_lib.surface_nodes_aircheck.blockhash then |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 			table.remove(biome_lib.blocklist_aircheck, 1) |  |  |  | 			table.remove(biome_lib.blocklist_aircheck, 1) | 
			
		
	
		
		
			
				
					
					|  |  |  | 			biome_lib.surface_nodes_aircheck.blockhash = nil |  |  |  | 			biome_lib.surface_nodes_aircheck.blockhash = nil | 
			
		
	
		
		
			
				
					
					|  |  |  | 			end |  |  |  | 			biome_lib.actioncount_aircheck.blockhash = nil | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		end |  |  |  | 		end | 
			
		
	
		
		
			
				
					
					|  |  |  | 	end |  |  |  | 	end | 
			
		
	
		
		
			
				
					
					|  |  |  | end |  |  |  | end | 
			
		
	
	
		
		
			
				
					
					|  |  | @@ -449,8 +489,8 @@ 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 biome_lib:generate_block_no_aircheck() |  |  |  | function biome_lib:generate_block_no_aircheck(shutdown) | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	if #biome_lib.blocklist_no_aircheck == 0 then |  |  |  | 	if not biome_lib.blocklist_no_aircheck[1] then | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		return |  |  |  | 		return | 
			
		
	
		
		
			
				
					
					|  |  |  | 	end |  |  |  | 	end | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
	
		
		
			
				
					
					|  |  | @@ -460,25 +500,23 @@ function biome_lib:generate_block_no_aircheck() | 
			
		
	
		
		
			
				
					
					|  |  |  | 	local blockhash =	minetest.hash_node_position(minp) |  |  |  | 	local blockhash =	minetest.hash_node_position(minp) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if not biome_lib.surface_nodes_no_aircheck.blockhash then |  |  |  | 	if not biome_lib.surface_nodes_no_aircheck.blockhash then | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		-- directly read the block to be searched into the chunk cache |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		biome_lib.surface_nodes_no_aircheck.blockhash = |  |  |  | 		biome_lib.surface_nodes_no_aircheck.blockhash = | 
			
		
	
		
		
			
				
					
					|  |  |  | 			minetest.find_nodes_in_area(minp, maxp, biome_lib.surfaceslist_no_aircheck) |  |  |  | 			minetest.find_nodes_in_area(minp, maxp, biome_lib.surfaceslist_no_aircheck) | 
			
		
	
		
		
			
				
					
					|  |  |  | 		biome_lib.actioncount_no_aircheck.blockhash = 1 |  |  |  | 		biome_lib.actioncount_no_aircheck.blockhash = 1 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	elseif not shutdown and not confirm_block_surroundings(minp) and #biome_lib.blocklist_no_aircheck > 1 then | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		biome_lib.blocklist_no_aircheck[#biome_lib.blocklist_no_aircheck+1] = biome_lib.blocklist_no_aircheck[1] | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		table.remove(biome_lib.blocklist_no_aircheck, 1) | 
			
		
	
		
		
			
				
					
					|  |  |  | 	else |  |  |  | 	else | 
			
		
	
		
		
			
				
					
					|  |  |  | 		if biome_lib.actioncount_no_aircheck.blockhash <= #biome_lib.actionslist_no_aircheck then |  |  |  | 		if biome_lib.actionslist_no_aircheck[biome_lib.actioncount_no_aircheck.blockhash] then | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 			biome_lib:populate_surfaces( |  |  |  | 			biome_lib:populate_surfaces( | 
			
		
	
		
		
			
				
					
					|  |  |  | 				biome_lib.actionslist_no_aircheck[biome_lib.actioncount_no_aircheck.blockhash][1], |  |  |  | 				biome_lib.actionslist_no_aircheck[biome_lib.actioncount_no_aircheck.blockhash][1], | 
			
		
	
		
		
			
				
					
					|  |  |  | 				biome_lib.actionslist_no_aircheck[biome_lib.actioncount_no_aircheck.blockhash][2], |  |  |  | 				biome_lib.actionslist_no_aircheck[biome_lib.actioncount_no_aircheck.blockhash][2], | 
			
		
	
		
		
			
				
					
					|  |  |  | 				biome_lib.surface_nodes_no_aircheck.blockhash, false) |  |  |  | 				biome_lib.surface_nodes_no_aircheck.blockhash, false) | 
			
		
	
		
		
			
				
					
					|  |  |  | 			biome_lib.actioncount_no_aircheck.blockhash = biome_lib.actioncount_no_aircheck.blockhash + 1 |  |  |  | 			biome_lib.actioncount_no_aircheck.blockhash = biome_lib.actioncount_no_aircheck.blockhash + 1 | 
			
		
	
		
		
			
				
					
					|  |  |  | 		else |  |  |  | 		else | 
			
		
	
		
		
			
				
					
					|  |  |  | 			if biome_lib.surface_nodes_no_aircheck.blockhash then |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 			table.remove(biome_lib.blocklist_no_aircheck, 1) |  |  |  | 			table.remove(biome_lib.blocklist_no_aircheck, 1) | 
			
		
	
		
		
			
				
					
					|  |  |  | 			biome_lib.surface_nodes_no_aircheck.blockhash = nil |  |  |  | 			biome_lib.surface_nodes_no_aircheck.blockhash = nil | 
			
		
	
		
		
			
				
					
					|  |  |  | 			end |  |  |  | 			biome_lib.actioncount_no_aircheck.blockhash = nil | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		end |  |  |  | 		end | 
			
		
	
		
		
			
				
					
					|  |  |  | 	end |  |  |  | 	end | 
			
		
	
		
		
			
				
					
					|  |  |  | end |  |  |  | end | 
			
		
	
	
		
		
			
				
					
					|  |  | @@ -498,10 +536,10 @@ minetest.register_globalstep(function(dtime) | 
			
		
	
		
		
			
				
					
					|  |  |  | 	while (#biome_lib.blocklist_aircheck > 0 or #biome_lib.blocklist_no_aircheck > 0) |  |  |  | 	while (#biome_lib.blocklist_aircheck > 0 or #biome_lib.blocklist_no_aircheck > 0) | 
			
		
	
		
		
			
				
					
					|  |  |  | 	  and biome_lib.globalstep_runtime < 200000 do  -- 0.2 seconds, in uS. |  |  |  | 	  and biome_lib.globalstep_runtime < 200000 do  -- 0.2 seconds, in uS. | 
			
		
	
		
		
			
				
					
					|  |  |  | 		if #biome_lib.blocklist_aircheck > 0 then |  |  |  | 		if #biome_lib.blocklist_aircheck > 0 then | 
			
		
	
		
		
			
				
					
					|  |  |  | 			biome_lib:generate_block_with_air_checking() |  |  |  | 			biome_lib:generate_block_with_air_checking(false) | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		end |  |  |  | 		end | 
			
		
	
		
		
			
				
					
					|  |  |  | 		if #biome_lib.blocklist_no_aircheck > 0 then |  |  |  | 		if #biome_lib.blocklist_no_aircheck > 0 then | 
			
		
	
		
		
			
				
					
					|  |  |  | 			biome_lib:generate_block_no_aircheck() |  |  |  | 			biome_lib:generate_block_no_aircheck(false) | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		end |  |  |  | 		end | 
			
		
	
		
		
			
				
					
					|  |  |  | 		biome_lib.globalstep_runtime = minetest.get_us_time() - biome_lib.globalstep_start_time |  |  |  | 		biome_lib.globalstep_runtime = minetest.get_us_time() - biome_lib.globalstep_start_time | 
			
		
	
		
		
			
				
					
					|  |  |  | 	end |  |  |  | 	end | 
			
		
	
	
		
		
			
				
					
					|  |  | @@ -518,7 +556,7 @@ minetest.register_on_shutdown(function() | 
			
		
	
		
		
			
				
					
					|  |  |  | 	print("[biome_lib] Stand by, playing out the rest of the aircheck mapblock log") |  |  |  | 	print("[biome_lib] Stand by, playing out the rest of the aircheck mapblock log") | 
			
		
	
		
		
			
				
					
					|  |  |  | 	print("(there are "..#biome_lib.blocklist_aircheck.." entries)...") |  |  |  | 	print("(there are "..#biome_lib.blocklist_aircheck.." entries)...") | 
			
		
	
		
		
			
				
					
					|  |  |  | 	while #biome_lib.blocklist_aircheck > 0 do |  |  |  | 	while #biome_lib.blocklist_aircheck > 0 do | 
			
		
	
		
		
			
				
					
					|  |  |  | 		biome_lib:generate_block_with_air_checking(0.1) |  |  |  | 		biome_lib:generate_block_with_air_checking(true) | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	end |  |  |  | 	end | 
			
		
	
		
		
			
				
					
					|  |  |  | end) |  |  |  | end) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
	
		
		
			
				
					
					|  |  | @@ -530,7 +568,7 @@ minetest.register_on_shutdown(function() | 
			
		
	
		
		
			
				
					
					|  |  |  | 	print("[biome_lib] Stand by, playing out the rest of the no-aircheck mapblock log") |  |  |  | 	print("[biome_lib] Stand by, playing out the rest of the no-aircheck mapblock log") | 
			
		
	
		
		
			
				
					
					|  |  |  | 	print("(there are "..#biome_lib.blocklist_no_aircheck.." entries)...") |  |  |  | 	print("(there are "..#biome_lib.blocklist_no_aircheck.." entries)...") | 
			
		
	
		
		
			
				
					
					|  |  |  | 	while #biome_lib.blocklist_no_aircheck > 0 do |  |  |  | 	while #biome_lib.blocklist_no_aircheck > 0 do | 
			
		
	
		
		
			
				
					
					|  |  |  | 		biome_lib:generate_block_no_aircheck(0.1) |  |  |  | 		biome_lib:generate_block_no_aircheck(true) | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	end |  |  |  | 	end | 
			
		
	
		
		
			
				
					
					|  |  |  | end) |  |  |  | end) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
	
		
		
			
				
					
					|  |  | @@ -639,11 +677,11 @@ function biome_lib:spawn_on_surfaces(sd,sp,sr,sc,ss,sa) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 			local currentsurface = minetest.get_node(pos).name |  |  |  | 			local currentsurface = minetest.get_node(pos).name | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 			if currentsurface == "default:water_source" and |  |  |  | 			if biome_lib.default_water_nodes[currentsurface] and | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 					#minetest.find_nodes_in_area( |  |  |  | 					#minetest.find_nodes_in_area( | 
			
		
	
		
		
			
				
					
					|  |  |  | 						{x=pos.x, y=pos.y-biome.depth_max-1, z=pos.z}, |  |  |  | 						{x=pos.x, y=pos.y-biome.depth_max-1, z=pos.z}, | 
			
		
	
		
		
			
				
					
					|  |  |  | 						vector.new(pos), |  |  |  | 						vector.new(pos), | 
			
		
	
		
		
			
				
					
					|  |  |  | 						{"default:dirt", "default:dirt_with_grass", "default:sand"} |  |  |  | 						biome_lib.default_wet_surfaces | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 					) == 0 then |  |  |  | 					) == 0 then | 
			
		
	
		
		
			
				
					
					|  |  |  | 				return -- On water but no ground nearby |  |  |  | 				return -- On water but no ground nearby | 
			
		
	
		
		
			
				
					
					|  |  |  | 			end |  |  |  | 			end | 
			
		
	
	
		
		
			
				
					
					|  |  | @@ -704,12 +742,9 @@ function biome_lib:replace_object(pos, replacement, grow_function, walldir, seed | 
			
		
	
		
		
			
				
					
					|  |  |  | 	end |  |  |  | 	end | 
			
		
	
		
		
			
				
					
					|  |  |  | end |  |  |  | end | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | dofile(biome_lib.modpath .. "/search_functions.lua") |  |  |  | dofile(biome_lib.modpath .. "/search_functions.lua") | 
			
		
	
		
		
			
				
					
					|  |  |  | assert(loadfile(biome_lib.modpath .. "/growth.lua"))(time_scale) |  |  |  | assert(loadfile(biome_lib.modpath .. "/growth.lua"))(time_scale) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | -- Check for infinite stacks |  |  |  | -- Check for infinite stacks | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | if minetest.get_modpath("unified_inventory") or not minetest.settings:get_bool("creative_mode") then |  |  |  | if minetest.get_modpath("unified_inventory") or not minetest.settings:get_bool("creative_mode") then | 
			
		
	
	
		
		
			
				
					
					|  |  | @@ -727,10 +762,29 @@ function biome_lib:get_nodedef_field(nodename, fieldname) | 
			
		
	
		
		
			
				
					
					|  |  |  | 	return minetest.registered_nodes[nodename][fieldname] |  |  |  | 	return minetest.registered_nodes[nodename][fieldname] | 
			
		
	
		
		
			
				
					
					|  |  |  | end |  |  |  | end | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | print("[Biome Lib] Loaded") |  |  |  | if DEBUG then | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	biome_lib.last_count_air = 0 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	biome_lib.last_count_no_air = 0 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	function biome_lib.show_pending_block_counts() | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		if biome_lib.last_count_air ~= #biome_lib.blocklist_aircheck | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			or biome_lib.last_count_no_air ~= #biome_lib.blocklist_no_aircheck then | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			biome_lib:dbg(string.format("Pending block counts,  air: %-7i no-air: %i", | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 				#biome_lib.blocklist_aircheck, #biome_lib.blocklist_no_aircheck)) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			biome_lib.last_count_air = #biome_lib.blocklist_aircheck | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			biome_lib.last_count_no_air = #biome_lib.blocklist_no_aircheck | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		end | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		minetest.after(1, biome_lib.show_pending_block_counts) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	end | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	biome_lib.show_pending_block_counts() | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	minetest.after(0, function() |  |  |  | 	minetest.after(0, function() | 
			
		
	
		
		
			
				
					
					|  |  |  | 	print("[Biome Lib] Registered a total of "..(#biome_lib.surfaceslist_aircheck)+(#biome_lib.surfaceslist_no_aircheck).." surface types to be evaluated, spread") |  |  |  | 		print("Registered a total of "..(#biome_lib.surfaceslist_aircheck)+(#biome_lib.surfaceslist_no_aircheck).." surface types to be evaluated, spread") | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	print("[Biome Lib] across "..#biome_lib.actionslist_aircheck.." actions with air-checking and "..#biome_lib.actionslist_no_aircheck.." actions without.") |  |  |  | 		print("across "..#biome_lib.actionslist_aircheck.." actions with air-checking and "..#biome_lib.actionslist_no_aircheck.." actions without.") | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	end) |  |  |  | 	end) | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | end | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | print("[Biome Lib] Loaded") | 
			
		
	
	
		
		
			
				
					
					| 
						
						
						
						 |  |   |