1
0
mirror of git://repo.or.cz/rocks.git synced 2024-09-28 23:30:39 +02:00

Added sorting on mapgen init. Split geologica to submodules.

This commit is contained in:
Tomáš Brada 2015-02-08 21:44:04 +01:00
parent f5c693c1de
commit 6d5bfbb42d
4 changed files with 27 additions and 13 deletions

View File

@ -122,3 +122,5 @@ minetest.register_node( "rocks:andesite", {
is_ground_content = true, sounds = default.node_sound_stone_defaults(),
})
rocks.register_layer( "andesite",{ gain=8, height=10, limit=2, seed=4 }, "rocks:andesite")
print("[rocks/geologicaLayers] loaded.")

View File

@ -34,4 +34,4 @@ rocks.register_vein("limestone",{
-- Dolomite Sed med in Rhyolite, Andesite in mountains
-- Quartzite MM/contact vhard sandstone
print("[rocks/geologicaStrata] loaded.")

11
geologicaVeins.lua Normal file
View File

@ -0,0 +1,11 @@
local CcHard=3
local CcStrong=3
local CcMed=3
local CcSoft=3
--
-- Veins
--
print("[rocks/geologicaVeins] loaded.")

View File

@ -21,18 +21,19 @@ rocks.noiseparams_layers = {
dofile(modpath.."/mapgen.lua")
--dofile(modpath.."/testing.lua")
dofile(modpath.."/geologica.lua")
dofile(modpath.."/geologica_nv.lua")
print("[rocks] sorting layers")
print("[rocks] core loaded.")
dofile(modpath.."/geologicaLayers.lua")
dofile(modpath.."/geologicaStrata.lua")
dofile(modpath.."/geologicaVeins.lua")
minetest.register_on_mapgen_init(function(mapgen_params)
print("[rocks] sorting layers ("..#rocks.layers_name..")")
for i,d in pairs(rocks.layers_name) do table.insert(rocks.layers,d) end
table.sort(rocks.layers,function(a,b)
return a.height<b.height
end)
for i,d in pairs(rocks.layers_name) do table.insert(rocks.layers,d) end
table.sort(rocks.layers,function(a,b)
return a.height<b.height
end)
for i,d in pairs(rocks.layers) do
print(" init,layer "..i.." "..minetest.serialize(d))
end
print("[rocks] loaded.")