mirror of
				https://github.com/mt-mods/plantlife_modpack.git
				synced 2025-10-31 22:05:25 +01:00 
			
		
		
		
	sped up mapgen functions massively. I think it's suitable
for general use now!
This commit is contained in:
		| @@ -72,6 +72,8 @@ function plantslib:search_for_surfaces(minp, maxp, biome) | ||||
| 			  and noise1 > plantlife_limit | ||||
| 			  and noise2 >= biome.temp_min | ||||
| 			  and noise2 <= biome.temp_max | ||||
| 			  and (biome.ncount == nil or table.getn(minetest.env:find_nodes_in_area({x=pos.x-1, y=pos.y, z=pos.z-1}, {x=pos.x+1, y=pos.y, z=pos.z+1}, biome.neighbors)) > biome.ncount) | ||||
| 			  and (biome.near_nodes == nil or table.getn(minetest.env:find_nodes_in_area({x=pos.x-biome.near_nodes_size, y=pos.y-1, z=pos.z-biome.near_nodes_size}, {x=pos.x+biome.near_nodes_size, y=pos.y+1, z=pos.z+biome.near_nodes_size}, biome.near_nodes)) >= biome.near_nodes_count) | ||||
| 			  then | ||||
| 				table.insert(in_biome_nodes, pos) | ||||
| 				num_in_biome_nodes = num_in_biome_nodes + 1 | ||||
| @@ -84,9 +86,6 @@ function plantslib:search_for_surfaces(minp, maxp, biome) | ||||
| 			local pos = in_biome_nodes[i] | ||||
| 			local p_top = { x = pos.x, y = pos.y + 1, z = pos.z } | ||||
| 			if minetest.env:find_node_near(p_top, biome.radius + math.random(-1.5,1.5), biome.avoid) == nil then | ||||
| 				if (biome.ncount == nil or table.getn(minetest.env:find_nodes_in_area({x=pos.x-1, y=pos.y, z=pos.z-1}, {x=pos.x+1, y=pos.y, z=pos.z+1}, biome.neighbors)) > biome.ncount) | ||||
| 				    and (biome.near_nodes == nil or table.getn(minetest.env:find_nodes_in_area({x=pos.x-biome.near_nodes_size, y=pos.y-1, z=pos.z-biome.near_nodes_size}, {x=pos.x+biome.near_nodes_size, y=pos.y+1, z=pos.z+biome.near_nodes_size}, biome.near_nodes)) >= biome.near_nodes_count) | ||||
| 				    then | ||||
| 				print("Call function: "..biome.exec_funct.."("..dump(pos)..")") | ||||
| 				minetest.log("verbose", "Call function: "..biome.exec_funct.."("..dump(pos)..")") | ||||
| 				assert(loadstring(biome.exec_funct.."("..dump(pos)..")"))() | ||||
| @@ -94,7 +93,6 @@ function plantslib:search_for_surfaces(minp, maxp, biome) | ||||
| 		end | ||||
| 	end | ||||
| end | ||||
| end | ||||
|  | ||||
| -- The spawning ABM | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user