forked from MineClone5/MineClone5
[mapgen] redesign the code
This commit is contained in:
parent
3f20d8c1f0
commit
29727136ac
|
@ -24,97 +24,6 @@ mcl_vars.inventory_header = ""
|
||||||
-- Tool wield size
|
-- Tool wield size
|
||||||
mcl_vars.tool_wield_scale = { x = 1.8, y = 1.8, z = 1 }
|
mcl_vars.tool_wield_scale = { x = 1.8, y = 1.8, z = 1 }
|
||||||
|
|
||||||
-- Mapgen variables
|
|
||||||
local mg_name = minetest.get_mapgen_setting("mg_name")
|
|
||||||
local minecraft_height_limit = 256
|
|
||||||
local superflat = mg_name == "flat" and minetest.get_mapgen_setting("mcl_superflat_classic") == "true"
|
|
||||||
local singlenode = mg_name == "singlenode"
|
|
||||||
|
|
||||||
if not superflat and not singlenode then
|
|
||||||
-- Normal mode
|
|
||||||
--[[ Realm stacking (h is for height)
|
|
||||||
- Overworld (h>=256)
|
|
||||||
- Void (h>=1000)
|
|
||||||
- Realm Barrier (h=11), to allow escaping the End
|
|
||||||
- End (h>=256)
|
|
||||||
- Void (h>=1000)
|
|
||||||
- Nether (h=128)
|
|
||||||
- Void (h>=1000)
|
|
||||||
]]
|
|
||||||
|
|
||||||
-- Overworld
|
|
||||||
mcl_vars.mg_overworld_min = -62
|
|
||||||
mcl_vars.mg_overworld_max_official = mcl_vars.mg_overworld_min + minecraft_height_limit
|
|
||||||
mcl_vars.mg_bedrock_overworld_min = mcl_vars.mg_overworld_min
|
|
||||||
mcl_vars.mg_bedrock_overworld_max = mcl_vars.mg_bedrock_overworld_min + 4
|
|
||||||
mcl_vars.mg_lava_overworld_max = mcl_vars.mg_overworld_min + 10
|
|
||||||
mcl_vars.mg_lava = true
|
|
||||||
mcl_vars.mg_bedrock_is_rough = true
|
|
||||||
|
|
||||||
elseif singlenode then
|
|
||||||
mcl_vars.mg_overworld_min = -66
|
|
||||||
mcl_vars.mg_overworld_max_official = mcl_vars.mg_overworld_min + minecraft_height_limit
|
|
||||||
mcl_vars.mg_bedrock_overworld_min = mcl_vars.mg_overworld_min
|
|
||||||
mcl_vars.mg_bedrock_overworld_max = mcl_vars.mg_bedrock_overworld_min
|
|
||||||
mcl_vars.mg_lava = false
|
|
||||||
mcl_vars.mg_lava_overworld_max = mcl_vars.mg_overworld_min
|
|
||||||
mcl_vars.mg_bedrock_is_rough = false
|
|
||||||
else
|
|
||||||
-- Classic superflat
|
|
||||||
local ground = minetest.get_mapgen_setting("mgflat_ground_level")
|
|
||||||
ground = tonumber(ground)
|
|
||||||
if not ground then
|
|
||||||
ground = 8
|
|
||||||
end
|
|
||||||
mcl_vars.mg_overworld_min = ground - 3
|
|
||||||
mcl_vars.mg_overworld_max_official = mcl_vars.mg_overworld_min + minecraft_height_limit
|
|
||||||
mcl_vars.mg_bedrock_overworld_min = mcl_vars.mg_overworld_min
|
|
||||||
mcl_vars.mg_bedrock_overworld_max = mcl_vars.mg_bedrock_overworld_min
|
|
||||||
mcl_vars.mg_lava = false
|
|
||||||
mcl_vars.mg_lava_overworld_max = mcl_vars.mg_overworld_min
|
|
||||||
mcl_vars.mg_bedrock_is_rough = false
|
|
||||||
end
|
|
||||||
|
|
||||||
mcl_vars.mg_overworld_max = mcl_vars.mapgen_edge_max
|
|
||||||
|
|
||||||
-- The Nether (around Y = -29000)
|
|
||||||
mcl_vars.mg_nether_min = -29067 -- Carefully chosen to be at a mapchunk border
|
|
||||||
mcl_vars.mg_nether_max = mcl_vars.mg_nether_min + 128
|
|
||||||
mcl_vars.mg_bedrock_nether_bottom_min = mcl_vars.mg_nether_min
|
|
||||||
mcl_vars.mg_bedrock_nether_top_max = mcl_vars.mg_nether_max
|
|
||||||
if not superflat then
|
|
||||||
mcl_vars.mg_bedrock_nether_bottom_max = mcl_vars.mg_bedrock_nether_bottom_min + 4
|
|
||||||
mcl_vars.mg_bedrock_nether_top_min = mcl_vars.mg_bedrock_nether_top_max - 4
|
|
||||||
mcl_vars.mg_lava_nether_max = mcl_vars.mg_nether_min + 31
|
|
||||||
else
|
|
||||||
-- Thin bedrock in classic superflat mapgen
|
|
||||||
mcl_vars.mg_bedrock_nether_bottom_max = mcl_vars.mg_bedrock_nether_bottom_min
|
|
||||||
mcl_vars.mg_bedrock_nether_top_min = mcl_vars.mg_bedrock_nether_top_max
|
|
||||||
mcl_vars.mg_lava_nether_max = mcl_vars.mg_nether_min + 2
|
|
||||||
end
|
|
||||||
if mg_name == "flat" then
|
|
||||||
if superflat then
|
|
||||||
mcl_vars.mg_flat_nether_floor = mcl_vars.mg_bedrock_nether_bottom_max + 4
|
|
||||||
mcl_vars.mg_flat_nether_ceiling = mcl_vars.mg_bedrock_nether_bottom_max + 52
|
|
||||||
else
|
|
||||||
mcl_vars.mg_flat_nether_floor = mcl_vars.mg_lava_nether_max + 4
|
|
||||||
mcl_vars.mg_flat_nether_ceiling = mcl_vars.mg_lava_nether_max + 52
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
-- The End (surface at ca. Y = -27000)
|
|
||||||
mcl_vars.mg_end_min = -27073 -- Carefully chosen to be at a mapchunk border
|
|
||||||
mcl_vars.mg_end_max_official = mcl_vars.mg_end_min + minecraft_height_limit
|
|
||||||
mcl_vars.mg_end_max = mcl_vars.mg_overworld_min - 2000
|
|
||||||
mcl_vars.mg_end_platform_pos = { x = 100, y = mcl_vars.mg_end_min + 74, z = 0 }
|
|
||||||
|
|
||||||
-- Realm barrier used to safely separate the End from the void below the Overworld
|
|
||||||
mcl_vars.mg_realm_barrier_overworld_end_max = mcl_vars.mg_end_max
|
|
||||||
mcl_vars.mg_realm_barrier_overworld_end_min = mcl_vars.mg_end_max - 11
|
|
||||||
|
|
||||||
-- Use MineClone 2-style dungeons
|
|
||||||
mcl_vars.mg_dungeons = true
|
|
||||||
|
|
||||||
-- Set default stack sizes
|
-- Set default stack sizes
|
||||||
minetest.nodedef_default.stack_max = 64
|
minetest.nodedef_default.stack_max = 64
|
||||||
minetest.craftitemdef_default.stack_max = 64
|
minetest.craftitemdef_default.stack_max = 64
|
||||||
|
@ -122,86 +31,3 @@ minetest.craftitemdef_default.stack_max = 64
|
||||||
-- Set random seed for all other mods (Remember to make sure no other mod calls this function)
|
-- Set random seed for all other mods (Remember to make sure no other mod calls this function)
|
||||||
math.randomseed(os.time())
|
math.randomseed(os.time())
|
||||||
|
|
||||||
local chunks = {} -- intervals of chunks generated
|
|
||||||
function mcl_vars.add_chunk(pos)
|
|
||||||
local n = mcl_vars.get_chunk_number(pos) -- unsigned int
|
|
||||||
local prev
|
|
||||||
for i, d in pairs(chunks) do
|
|
||||||
if n <= d[2] then -- we've found it
|
|
||||||
if (n == d[2]) or (n >= d[1]) then return end -- already here
|
|
||||||
if n == d[1]-1 then -- right before:
|
|
||||||
if prev and (prev[2] == n-1) then
|
|
||||||
prev[2] = d[2]
|
|
||||||
table.remove(chunks, i)
|
|
||||||
return
|
|
||||||
end
|
|
||||||
d[1] = n
|
|
||||||
return
|
|
||||||
end
|
|
||||||
if prev and (prev[2] == n-1) then --join to previous
|
|
||||||
prev[2] = n
|
|
||||||
return
|
|
||||||
end
|
|
||||||
table.insert(chunks, i, {n, n}) -- insert new interval before i
|
|
||||||
return
|
|
||||||
end
|
|
||||||
prev = d
|
|
||||||
end
|
|
||||||
chunks[#chunks+1] = {n, n}
|
|
||||||
end
|
|
||||||
function mcl_vars.is_generated(pos)
|
|
||||||
local n = mcl_vars.get_chunk_number(pos) -- unsigned int
|
|
||||||
for i, d in pairs(chunks) do
|
|
||||||
if n <= d[2] then
|
|
||||||
return (n >= d[1])
|
|
||||||
end
|
|
||||||
end
|
|
||||||
return false
|
|
||||||
end
|
|
||||||
|
|
||||||
-- "Trivial" (actually NOT) function to just read the node and some stuff to not just return "ignore", like mt 5.4 does.
|
|
||||||
-- p: Position, if it's wrong, {name="error"} node will return.
|
|
||||||
-- force: optional (default: false) - Do the maximum to still read the node within us_timeout.
|
|
||||||
-- us_timeout: optional (default: 244 = 0.000244 s = 1/80/80/80), set it at least to 3000000 to let mapgen to finish its job.
|
|
||||||
--
|
|
||||||
-- returns node definition, eg. {name="air"}. Unfortunately still can return {name="ignore"}.
|
|
||||||
function mcl_vars.get_node(p, force, us_timeout)
|
|
||||||
-- check initial circumstances
|
|
||||||
if not p or not p.x or not p.y or not p.z then return {name="error"} end
|
|
||||||
|
|
||||||
-- try common way
|
|
||||||
local node = minetest.get_node(p)
|
|
||||||
if node.name ~= "ignore" then
|
|
||||||
return node
|
|
||||||
end
|
|
||||||
|
|
||||||
-- copy table to get sure it won't changed by other threads
|
|
||||||
local pos = {x=p.x,y=p.y,z=p.z}
|
|
||||||
|
|
||||||
-- try LVM
|
|
||||||
minetest.get_voxel_manip():read_from_map(pos, pos)
|
|
||||||
node = minetest.get_node(pos)
|
|
||||||
if node.name ~= "ignore" or not force then
|
|
||||||
return node
|
|
||||||
end
|
|
||||||
|
|
||||||
-- all ways failed - need to emerge (or forceload if generated)
|
|
||||||
local us_timeout = us_timeout or 244
|
|
||||||
if mcl_vars.is_generated(pos) then
|
|
||||||
minetest.chat_send_all("IMPOSSIBLE! Please report this to MCL2 issue tracker!")
|
|
||||||
minetest.forceload_block(pos)
|
|
||||||
else
|
|
||||||
minetest.emerge_area(pos, pos)
|
|
||||||
end
|
|
||||||
|
|
||||||
local t = minetest.get_us_time()
|
|
||||||
|
|
||||||
node = minetest.get_node(pos)
|
|
||||||
|
|
||||||
while (not node or node.name == "ignore") and (minetest.get_us_time() - t < us_timeout) do
|
|
||||||
node = minetest.get_node(pos)
|
|
||||||
end
|
|
||||||
|
|
||||||
return node
|
|
||||||
-- it still can return "ignore", LOL, even if force = true, but only after time out
|
|
||||||
end
|
|
||||||
|
|
|
@ -1,212 +1,305 @@
|
||||||
mcl_mapgen = {}
|
mcl_mapgen = {}
|
||||||
|
|
||||||
local lvm_block_queue, lvm_chunk_queue, node_block_queue, node_chunk_queue = {}, {}, {}, {} -- Generators' queues
|
|
||||||
local lvm, block, lvm_block, lvm_chunk, param2, nodes_block, nodes_chunk = 0, 0, 0, 0, 0, 0, 0 -- Requirements: 0 means none; greater than 0 means 'required'
|
-- Calculate mapgen_edge_min/mapgen_edge_max
|
||||||
local lvm_buffer, lvm_param2_buffer = {}, {} -- Static buffer pointers
|
mcl_mapgen.CS = math.max(1, tonumber(minetest.get_mapgen_setting("chunksize")) or 5)
|
||||||
local BS, CS = mcl_vars.MAP_BLOCKSIZE, mcl_vars.chunksize -- Mapblock size (in nodes), Mapchunk size (in blocks)
|
mcl_mapgen.BS = math.max(1, core.MAP_BLOCKSIZE or 16)
|
||||||
local LAST_BLOCK, LAST_NODE = CS - 1, BS - 1 -- First mapblock in chunk (node in mapblock) has number 0, last has THIS number. It's for runtime optimization
|
mcl_mapgen.LIMIT = math.max(1, tonumber(minetest.get_mapgen_setting("mapgen_limit")) or 31000)
|
||||||
local offset = math.floor(mcl_vars.central_chunk_offset_in_nodes / BS) -- Central mapchunk offset (in blocks)
|
mcl_mapgen.MAX_LIMIT = math.max(1, core.MAX_MAP_GENERATION_LIMIT or 31000)
|
||||||
|
mcl_mapgen.OFFSET = - math.floor(mcl_mapgen.CS / 2)
|
||||||
local DEFAULT_PRIORITY = 5000
|
mcl_mapgen.OFFSET_NODES = mcl_mapgen.OFFSET * mcl_mapgen.BS
|
||||||
|
mcl_mapgen.CS_NODES = mcl_mapgen.CS * mcl_mapgen.BS
|
||||||
local minetest_log, math_floor = minetest.log, math.floor
|
|
||||||
|
local central_chunk_min_pos = mcl_mapgen.OFFSET * mcl_mapgen.BS
|
||||||
function mcl_mapgen.register_chunk_generator(callback_function, priority)
|
local central_chunk_max_pos = central_chunk_min_pos + mcl_mapgen.CS_NODES - 1
|
||||||
nodes_chunk = nodes_chunk + 1
|
|
||||||
node_chunk_queue[nodes_chunk] = {i = priority or DEFAULT_PRIORITY, f = callback_function}
|
local ccfmin = central_chunk_min_pos - mcl_mapgen.BS -- Fullminp/fullmaxp of central chunk, in nodes
|
||||||
table.sort(node_chunk_queue, function(a, b) return (a.i <= b.i) end)
|
local ccfmax = central_chunk_max_pos + mcl_mapgen.BS
|
||||||
end
|
|
||||||
function mcl_mapgen.register_chunk_generator_lvm(callback_function, priority)
|
local mapgen_limit_b = math.floor(math.min(mcl_mapgen.LIMIT, mcl_mapgen.MAX_LIMIT) / mcl_mapgen.BS)
|
||||||
lvm = lvm + 1
|
local mapgen_limit_min = - mapgen_limit_b * mcl_mapgen.BS
|
||||||
lvm_chunk_queue[lvm_chunk] = {i = priority or DEFAULT_PRIORITY, f = callback_function}
|
local mapgen_limit_max = (mapgen_limit_b + 1) * mcl_mapgen.BS - 1
|
||||||
table.sort(lvm_chunk_queue, function(a, b) return (a.i <= b.i) end)
|
|
||||||
end
|
local numcmin = math.max(math.floor((ccfmin - mapgen_limit_min) / mcl_vars.chunk_size_in_nodes), 0) -- Number of complete chunks from central chunk
|
||||||
function mcl_mapgen.register_block_generator(callback_function, priority)
|
local numcmax = math.max(math.floor((mapgen_limit_max - ccfmax) / mcl_vars.chunk_size_in_nodes), 0) -- fullminp/fullmaxp to effective mapgen limits.
|
||||||
block = block + 1
|
|
||||||
nodes_block = nodes_block + 1
|
mcl_mapgen.EDGE_MIN = central_chunk_min_pos - numcmin * mcl_mapgen.CS_NODES
|
||||||
node_block_queue[nodes_block] = {i = priority or DEFAULT_PRIORITY, f = callback_function}
|
mcl_mapgen.EDGE_MAX = central_chunk_max_pos + numcmax * mcl_mapgen.CS_NODES
|
||||||
table.sort(node_block_queue, function(a, b) return (a.i <= b.i) end)
|
------------------------------------------
|
||||||
end
|
|
||||||
function mcl_mapgen.register_block_generator_lvm(callback_function, priority)
|
|
||||||
block = block + 1
|
local lvm_block_queue, lvm_chunk_queue, node_block_queue, node_chunk_queue = {}, {}, {}, {} -- Generators' queues
|
||||||
lvm = lvm + 1
|
local lvm, block, lvm_block, lvm_chunk, param2, nodes_block, nodes_chunk = 0, 0, 0, 0, 0, 0, 0 -- Requirements: 0 means none; greater than 0 means 'required'
|
||||||
lvm_block = lvm_block + 1
|
local lvm_buffer, lvm_param2_buffer = {}, {} -- Static buffer pointers
|
||||||
lvm_block_queue[lvm_block] = {i = priority or DEFAULT_PRIORITY, f = callback_function}
|
local BS, CS = mcl_mapgen.BS, mcl_mapgen.CS -- Mapblock size (in nodes), Mapchunk size (in blocks)
|
||||||
table.sort(lvm_block_queue, function(a, b) return (a.i <= b.i) end)
|
local LAST_BLOCK, LAST_NODE = CS - 1, BS - 1 -- First mapblock in chunk (node in mapblock) has number 0, last has THIS number. It's for runtime optimization
|
||||||
end
|
local offset = math.floor(mcl_vars.central_chunk_offset_in_nodes / BS) -- Central mapchunk offset (in blocks)
|
||||||
|
|
||||||
local storage = minetest.get_mod_storage()
|
local DEFAULT_PRIORITY = 5000
|
||||||
local blocks = minetest.deserialize( storage:get_string("mapgen_blocks") or "return {}") or {}
|
|
||||||
minetest.register_on_shutdown(function() storage:set_string("mapgen_blocks", minetest.serialize(blocks)) end)
|
local minetest_log, math_floor = minetest.log, math.floor
|
||||||
|
|
||||||
local vm_context-- here will be many references and flags, like: param2, light_data, heightmap, biomemap, heatmap, humiditymap, gennotify, write_lvm, write_param2, shadow
|
function mcl_mapgen.register_chunk_generator(callback_function, priority)
|
||||||
local data, data2, area
|
nodes_chunk = nodes_chunk + 1
|
||||||
local current_blocks = {}
|
node_chunk_queue[nodes_chunk] = {i = priority or DEFAULT_PRIORITY, f = callback_function}
|
||||||
|
table.sort(node_chunk_queue, function(a, b) return (a.i <= b.i) end)
|
||||||
minetest.register_on_generated(function(minp, maxp, blockseed)
|
end
|
||||||
local minp, maxp, blockseed = minp, maxp, blockseed
|
function mcl_mapgen.register_chunk_generator_lvm(callback_function, priority)
|
||||||
minetest_log("verbose", "[mcl_mapgen] New chunk: minp=" .. minetest.pos_to_string(minp) .. ", maxp=" .. minetest.pos_to_string(maxp) .. ", blockseed=" .. blockseed)
|
lvm = lvm + 1
|
||||||
|
lvm_chunk_queue[lvm_chunk] = {i = priority or DEFAULT_PRIORITY, f = callback_function}
|
||||||
local vm, emin, emax = minetest.get_mapgen_object("voxelmanip")
|
table.sort(lvm_chunk_queue, function(a, b) return (a.i <= b.i) end)
|
||||||
|
end
|
||||||
if lvm > 0 then
|
function mcl_mapgen.register_block_generator(callback_function, priority)
|
||||||
vm_context = {lvm_param2_buffer = lvm_param2_buffer, vm = vm, emin = emin, emax = emax, minp = minp, maxp = maxp, blockseed = blockseed}
|
block = block + 1
|
||||||
data = vm:get_data(lvm_buffer)
|
nodes_block = nodes_block + 1
|
||||||
vm_context.data = data
|
node_block_queue[nodes_block] = {i = priority or DEFAULT_PRIORITY, f = callback_function}
|
||||||
area = VoxelArea:new({MinEdge=emin, MaxEdge=emax})
|
table.sort(node_block_queue, function(a, b) return (a.i <= b.i) end)
|
||||||
vm_context.area = area
|
end
|
||||||
for _, v in pairs(lvm_chunk_queue) do
|
function mcl_mapgen.register_block_generator_lvm(callback_function, priority)
|
||||||
vm_context = v.f(vm_context)
|
block = block + 1
|
||||||
end
|
lvm = lvm + 1
|
||||||
end
|
lvm_block = lvm_block + 1
|
||||||
|
lvm_block_queue[lvm_block] = {i = priority or DEFAULT_PRIORITY, f = callback_function}
|
||||||
if block > 0 then
|
table.sort(lvm_block_queue, function(a, b) return (a.i <= b.i) end)
|
||||||
local x0, y0, z0 = minp.x, minp.y, minp.z
|
end
|
||||||
local bx0, by0, bz0 = math_floor(x0/BS), math_floor(y0/BS), math_floor(z0/BS)
|
|
||||||
local x1, y1, z1, x2, y2, z2 = emin.x, emin.y, emin.z, emax.x, emax.y, emax.z
|
local storage = minetest.get_mod_storage()
|
||||||
local x, y, z = x1, y1, z1 -- iterate 7x7x7 mapchunk, {x,y,z} - first node pos. of mapblock
|
local blocks = minetest.deserialize( storage:get_string("mapgen_blocks") or "return {}") or {}
|
||||||
local bx, by, bz -- block coords (in blocs)
|
minetest.register_on_shutdown(function() storage:set_string("mapgen_blocks", minetest.serialize(blocks)) end)
|
||||||
local box, boy, boz -- block offsets in chunks (in blocks)
|
|
||||||
while x < x2 do
|
local vm_context-- here will be many references and flags, like: param2, light_data, heightmap, biomemap, heatmap, humiditymap, gennotify, write_lvm, write_param2, shadow
|
||||||
bx = math_floor(x/BS)
|
local data, data2, area
|
||||||
local block_pos_offset_removed = bx - offset
|
local current_blocks = {}
|
||||||
box = block_pos_offset_removed % CS
|
|
||||||
if not blocks[bx] then blocks[bx]={} end
|
minetest.register_on_generated(function(minp, maxp, blockseed)
|
||||||
local total_mapgen_block_writes_through_x = (box > 0 and box < LAST_BLOCK) and 4 or 8
|
local minp, maxp, blockseed = minp, maxp, blockseed
|
||||||
while y < y2 do
|
minetest_log("verbose", "[mcl_mapgen] New chunk: minp=" .. minetest.pos_to_string(minp) .. ", maxp=" .. minetest.pos_to_string(maxp) .. ", blockseed=" .. blockseed)
|
||||||
by = math_floor(y/BS)
|
|
||||||
block_pos_offset_removed = by - offset
|
local vm, emin, emax = minetest.get_mapgen_object("voxelmanip")
|
||||||
boy = block_pos_offset_removed % CS
|
|
||||||
if not blocks[bx][by] then blocks[bx][by]={} end
|
if lvm > 0 then
|
||||||
local total_mapgen_block_writes_through_y = (boy > 0 and boy < LAST_BLOCK) and math_floor(total_mapgen_block_writes_through_x / 2) or total_mapgen_block_writes_through_x
|
vm_context = {lvm_param2_buffer = lvm_param2_buffer, vm = vm, emin = emin, emax = emax, minp = minp, maxp = maxp, blockseed = blockseed}
|
||||||
while z < z2 do
|
data = vm:get_data(lvm_buffer)
|
||||||
bz = math_floor(z/BS)
|
vm_context.data = data
|
||||||
block_pos_offset_removed = bz - offset
|
area = VoxelArea:new({MinEdge=emin, MaxEdge=emax})
|
||||||
boz = block_pos_offset_removed % CS
|
vm_context.area = area
|
||||||
local total_mapgen_block_writes = (boz > 0 and boz < LAST_BLOCK) and math_floor(total_mapgen_block_writes_through_y / 2) or total_mapgen_block_writes_through_y
|
for _, v in pairs(lvm_chunk_queue) do
|
||||||
local current_mapgen_block_writes = blocks[bx][by][bz] and (blocks[bx][by][bz] + 1) or 1
|
vm_context = v.f(vm_context)
|
||||||
if current_mapgen_block_writes == total_mapgen_block_writes then
|
end
|
||||||
-- this block shouldn't be overwritten anymore, no need to keep it in memory
|
end
|
||||||
blocks[bx][by][bz] = nil
|
|
||||||
vm_context.seed = blockseed + box * 7 + boy * 243 + boz * 11931
|
if block > 0 then
|
||||||
if lvm_block > 0 then
|
local x0, y0, z0 = minp.x, minp.y, minp.z
|
||||||
vm_context.minp, vm_content.maxp = {x=x, y=y, z=z}, {x=x+LAST_NODE, y=y+LAST_NODE, z=z+LAST_NODE}
|
local bx0, by0, bz0 = math_floor(x0/BS), math_floor(y0/BS), math_floor(z0/BS)
|
||||||
for _, v in pairs(lvm_block_queue) do
|
local x1, y1, z1, x2, y2, z2 = emin.x, emin.y, emin.z, emax.x, emax.y, emax.z
|
||||||
vm_context = v.f(vm_context)
|
local x, y, z = x1, y1, z1 -- iterate 7x7x7 mapchunk, {x,y,z} - first node pos. of mapblock
|
||||||
end
|
local bx, by, bz -- block coords (in blocs)
|
||||||
end
|
local box, boy, boz -- block offsets in chunks (in blocks)
|
||||||
if nodes_block > 0 then
|
while x < x2 do
|
||||||
current_blocks[#current_blocks+1] = { minp = {x=x, y=y, z=z}, maxp = {x=pos.x+LAST_NODE, y=pos.y+LAST_NODE, z=pos.z+LAST_NODE}, seed = seed }
|
bx = math_floor(x/BS)
|
||||||
end
|
local block_pos_offset_removed = bx - offset
|
||||||
else
|
box = block_pos_offset_removed % CS
|
||||||
blocks[bx][by][bz] = current_mapgen_block_writes
|
if not blocks[bx] then blocks[bx]={} end
|
||||||
end
|
local total_mapgen_block_writes_through_x = (box > 0 and box < LAST_BLOCK) and 4 or 8
|
||||||
z = z + BS
|
while y < y2 do
|
||||||
end
|
by = math_floor(y/BS)
|
||||||
if next(blocks[bx][by]) == nil then blocks[bx][by] = nil end
|
block_pos_offset_removed = by - offset
|
||||||
z = z1
|
boy = block_pos_offset_removed % CS
|
||||||
y = y + BS
|
if not blocks[bx][by] then blocks[bx][by]={} end
|
||||||
end
|
local total_mapgen_block_writes_through_y = (boy > 0 and boy < LAST_BLOCK) and math_floor(total_mapgen_block_writes_through_x / 2) or total_mapgen_block_writes_through_x
|
||||||
if next(blocks[bx]) == nil then blocks[bx] = nil end
|
while z < z2 do
|
||||||
y = y1
|
bz = math_floor(z/BS)
|
||||||
x = x + BS
|
block_pos_offset_removed = bz - offset
|
||||||
end
|
boz = block_pos_offset_removed % CS
|
||||||
end
|
local total_mapgen_block_writes = (boz > 0 and boz < LAST_BLOCK) and math_floor(total_mapgen_block_writes_through_y / 2) or total_mapgen_block_writes_through_y
|
||||||
|
local current_mapgen_block_writes = blocks[bx][by][bz] and (blocks[bx][by][bz] + 1) or 1
|
||||||
if vm_context.write then
|
if current_mapgen_block_writes == total_mapgen_block_writes then
|
||||||
vm:set_data(data)
|
-- this block shouldn't be overwritten anymore, no need to keep it in memory
|
||||||
end
|
blocks[bx][by][bz] = nil
|
||||||
if vm_context.write_param2 then
|
vm_context.seed = blockseed + box * 7 + boy * 243 + boz * 11931
|
||||||
vm:set_param2_data(data2)
|
if lvm_block > 0 then
|
||||||
end
|
vm_context.minp, vm_content.maxp = {x=x, y=y, z=z}, {x=x+LAST_NODE, y=y+LAST_NODE, z=z+LAST_NODE}
|
||||||
vm:calc_lighting(p1, p2, shadow)
|
for _, v in pairs(lvm_block_queue) do
|
||||||
vm:write_to_map()
|
vm_context = v.f(vm_context)
|
||||||
vm:update_liquids()
|
end
|
||||||
|
end
|
||||||
for _, v in pairs(node_chunk_queue) do
|
if nodes_block > 0 then
|
||||||
v.f(minp, maxp, blockseed)
|
current_blocks[#current_blocks+1] = { minp = {x=x, y=y, z=z}, maxp = {x=pos.x+LAST_NODE, y=pos.y+LAST_NODE, z=pos.z+LAST_NODE}, seed = seed }
|
||||||
end
|
end
|
||||||
|
else
|
||||||
for i, b in pairs(current_blocks) do
|
blocks[bx][by][bz] = current_mapgen_block_writes
|
||||||
for _, v in pairs(node_block_queue) do
|
end
|
||||||
v.f(b.minp, b.maxp, b.seed)
|
z = z + BS
|
||||||
end
|
end
|
||||||
current_blocks[id] = nil
|
if next(blocks[bx][by]) == nil then blocks[bx][by] = nil end
|
||||||
end
|
z = z1
|
||||||
end)
|
y = y + BS
|
||||||
|
end
|
||||||
minetest.register_on_generated = mcl_mapgen.register_chunk_generator
|
if next(blocks[bx]) == nil then blocks[bx] = nil end
|
||||||
|
y = y1
|
||||||
function mcl_mapgen.get_far_node(p)
|
x = x + BS
|
||||||
local p = p
|
end
|
||||||
local node = minetest_get_node(p)
|
end
|
||||||
if node.name ~= "ignore" then return node end
|
|
||||||
minetest_get_voxel_manip():read_from_map(p, p)
|
if vm_context.write then
|
||||||
return minetest_get_node(p)
|
vm:set_data(data)
|
||||||
end
|
end
|
||||||
|
if vm_context.write_param2 then
|
||||||
-- Calculate mapgen_edge_min/mapgen_edge_max
|
vm:set_param2_data(data2)
|
||||||
local function calculate_mapgen_basics()
|
end
|
||||||
mcl_mapgen.CS = math.max(1, tonumber(minetest.get_mapgen_setting("chunksize")) or 5)
|
vm:calc_lighting(p1, p2, shadow)
|
||||||
mcl_mapgen.BS = math.max(1, core.MAP_BLOCKSIZE or 16)
|
vm:write_to_map()
|
||||||
mcl_mapgen.LIMIT = math.max(1, tonumber(minetest.get_mapgen_setting("mapgen_limit")) or 31000)
|
vm:update_liquids()
|
||||||
mcl_mapgen.MAX_LIMIT = math.max(1, core.MAX_MAP_GENERATION_LIMIT or 31000)
|
|
||||||
mcl_mapgen.OFFSET = - math.floor(mcl_mapgen.CS / 2)
|
for _, v in pairs(node_chunk_queue) do
|
||||||
mcl_mapgen.OFFSET_NODES = mcl_mapgen.OFFSET * mcl_mapgen.BS
|
v.f(minp, maxp, blockseed)
|
||||||
mcl_mapgen.CS_NODES = mcl_mapgen.CS * mcl_mapgen.BS
|
end
|
||||||
|
|
||||||
local central_chunk_min_pos = mcl_mapgen.OFFSET * mcl_mapgen.BS
|
for i, b in pairs(current_blocks) do
|
||||||
local central_chunk_max_pos = central_chunk_min_pos + mcl_mapgen.CS_NODES - 1
|
for _, v in pairs(node_block_queue) do
|
||||||
|
v.f(b.minp, b.maxp, b.seed)
|
||||||
local ccfmin = central_chunk_min_pos - mcl_mapgen.BS -- Fullminp/fullmaxp of central chunk, in nodes
|
end
|
||||||
local ccfmax = central_chunk_max_pos + mcl_mapgen.BS
|
current_blocks[id] = nil
|
||||||
|
end
|
||||||
local mapgen_limit_b = math.floor(math.min(mcl_mapgen.LIMIT, mcl_mapgen.MAX_LIMIT) / mcl_mapgen.BS)
|
end)
|
||||||
local mapgen_limit_min = - mapgen_limit_b * mcl_mapgen.BS
|
|
||||||
local mapgen_limit_max = (mapgen_limit_b + 1) * mcl_mapgen.BS - 1
|
minetest.register_on_generated = mcl_mapgen.register_chunk_generator
|
||||||
|
|
||||||
local numcmin = math.max(math.floor((ccfmin - mapgen_limit_min) / mcl_vars.chunk_size_in_nodes), 0) -- Number of complete chunks from central chunk
|
function mcl_mapgen.get_far_node(p)
|
||||||
local numcmax = math.max(math.floor((mapgen_limit_max - ccfmax) / mcl_vars.chunk_size_in_nodes), 0) -- fullminp/fullmaxp to effective mapgen limits.
|
local p = p
|
||||||
|
local node = minetest_get_node(p)
|
||||||
mcl_mapgen.EDGE_MIN = central_chunk_min_pos - numcmin * mcl_mapgen.CS_NODES
|
if node.name ~= "ignore" then return node end
|
||||||
mcl_mapgen.EDGE_MAX = central_chunk_max_pos + numcmax * mcl_mapgen.CS_NODES
|
minetest_get_voxel_manip():read_from_map(p, p)
|
||||||
end
|
return minetest_get_node(p)
|
||||||
|
end
|
||||||
local function coordinate_to_block(x)
|
|
||||||
return math_floor(x / mcl_mapgen.BS)
|
local function coordinate_to_block(x)
|
||||||
end
|
return math_floor(x / mcl_mapgen.BS)
|
||||||
|
end
|
||||||
local function coordinate_to_chunk(x)
|
|
||||||
return math_floor((coordinate_to_block(x) - central_chunk_offset) / mcl_vars.chunksize)
|
local function coordinate_to_chunk(x)
|
||||||
end
|
return math_floor((coordinate_to_block(x) - central_chunk_offset) / mcl_mapgen.CS)
|
||||||
|
end
|
||||||
function mcl_mapgen.pos_to_block(pos)
|
|
||||||
return {
|
function mcl_mapgen.pos_to_block(pos)
|
||||||
x = coordinate_to_block(pos.x),
|
return {
|
||||||
y = coordinate_to_block(pos.y),
|
x = coordinate_to_block(pos.x),
|
||||||
z = coordinate_to_block(pos.z)
|
y = coordinate_to_block(pos.y),
|
||||||
}
|
z = coordinate_to_block(pos.z)
|
||||||
end
|
}
|
||||||
|
end
|
||||||
function mcl_mapgen.pos_to_chunk(pos)
|
|
||||||
return {
|
function mcl_mapgen.pos_to_chunk(pos)
|
||||||
x = coordinate_to_chunk(pos.x),
|
return {
|
||||||
y = coordinate_to_chunk(pos.y),
|
x = coordinate_to_chunk(pos.x),
|
||||||
z = coordinate_to_chunk(pos.z)
|
y = coordinate_to_chunk(pos.y),
|
||||||
}
|
z = coordinate_to_chunk(pos.z)
|
||||||
end
|
}
|
||||||
|
end
|
||||||
calculate_mapgen_basics()
|
|
||||||
|
local k_positive = math.ceil(mcl_mapgen.MAX_LIMIT / mcl_vars.chunk_size_in_nodes)
|
||||||
local k_positive = math.ceil(mcl_mapgen.MAX_LIMIT / mcl_vars.chunk_size_in_nodes)
|
local k_positive_z = k_positive * 2
|
||||||
local k_positive_z = k_positive * 2
|
local k_positive_y = k_positive_z * k_positive_z
|
||||||
local k_positive_y = k_positive_z * k_positive_z
|
|
||||||
|
function mcl_mapgen.get_chunk_number(pos) -- unsigned int
|
||||||
function mcl_mapgen.get_chunk_number(pos) -- unsigned int
|
local c = mcl_mapgen.pos_to_chunk(pos)
|
||||||
local c = mcl_mapgen.pos_to_chunk(pos)
|
return
|
||||||
return
|
(c.y + k_positive) * k_positive_y +
|
||||||
(c.y + k_positive) * k_positive_y +
|
(c.z + k_positive) * k_positive_z +
|
||||||
(c.z + k_positive) * k_positive_z +
|
c.x + k_positive
|
||||||
c.x + k_positive
|
end
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
-- Mapgen variables
|
||||||
|
local mg_name = minetest.get_mapgen_setting("mg_name")
|
||||||
|
local minecraft_height_limit = 256
|
||||||
|
local superflat = mg_name == "flat" and minetest.get_mapgen_setting("mcl_superflat_classic") == "true"
|
||||||
|
local singlenode = mg_name == "singlenode"
|
||||||
|
|
||||||
|
if not superflat and not singlenode then
|
||||||
|
-- Normal mode
|
||||||
|
--[[ Realm stacking (h is for height)
|
||||||
|
- Overworld (h>=256)
|
||||||
|
- Void (h>=1000)
|
||||||
|
- Realm Barrier (h=11), to allow escaping the End
|
||||||
|
- End (h>=256)
|
||||||
|
- Void (h>=1000)
|
||||||
|
- Nether (h=128)
|
||||||
|
- Void (h>=1000)
|
||||||
|
]]
|
||||||
|
|
||||||
|
-- Overworld
|
||||||
|
mcl_vars.mg_overworld_min = -62
|
||||||
|
mcl_vars.mg_overworld_max_official = mcl_vars.mg_overworld_min + minecraft_height_limit
|
||||||
|
mcl_vars.mg_bedrock_overworld_min = mcl_vars.mg_overworld_min
|
||||||
|
mcl_vars.mg_bedrock_overworld_max = mcl_vars.mg_bedrock_overworld_min + 4
|
||||||
|
mcl_vars.mg_lava_overworld_max = mcl_vars.mg_overworld_min + 10
|
||||||
|
mcl_vars.mg_lava = true
|
||||||
|
mcl_vars.mg_bedrock_is_rough = true
|
||||||
|
|
||||||
|
elseif singlenode then
|
||||||
|
mcl_vars.mg_overworld_min = -66
|
||||||
|
mcl_vars.mg_overworld_max_official = mcl_vars.mg_overworld_min + minecraft_height_limit
|
||||||
|
mcl_vars.mg_bedrock_overworld_min = mcl_vars.mg_overworld_min
|
||||||
|
mcl_vars.mg_bedrock_overworld_max = mcl_vars.mg_bedrock_overworld_min
|
||||||
|
mcl_vars.mg_lava = false
|
||||||
|
mcl_vars.mg_lava_overworld_max = mcl_vars.mg_overworld_min
|
||||||
|
mcl_vars.mg_bedrock_is_rough = false
|
||||||
|
else
|
||||||
|
-- Classic superflat
|
||||||
|
local ground = minetest.get_mapgen_setting("mgflat_ground_level")
|
||||||
|
ground = tonumber(ground)
|
||||||
|
if not ground then
|
||||||
|
ground = 8
|
||||||
|
end
|
||||||
|
mcl_vars.mg_overworld_min = ground - 3
|
||||||
|
mcl_vars.mg_overworld_max_official = mcl_vars.mg_overworld_min + minecraft_height_limit
|
||||||
|
mcl_vars.mg_bedrock_overworld_min = mcl_vars.mg_overworld_min
|
||||||
|
mcl_vars.mg_bedrock_overworld_max = mcl_vars.mg_bedrock_overworld_min
|
||||||
|
mcl_vars.mg_lava = false
|
||||||
|
mcl_vars.mg_lava_overworld_max = mcl_vars.mg_overworld_min
|
||||||
|
mcl_vars.mg_bedrock_is_rough = false
|
||||||
|
end
|
||||||
|
|
||||||
|
mcl_vars.mg_overworld_max = mcl_mapgen.EDGE_MAX
|
||||||
|
|
||||||
|
-- The Nether (around Y = -29000)
|
||||||
|
mcl_vars.mg_nether_min = -29067 -- Carefully chosen to be at a mapchunk border
|
||||||
|
mcl_vars.mg_nether_max = mcl_vars.mg_nether_min + 128
|
||||||
|
mcl_vars.mg_bedrock_nether_bottom_min = mcl_vars.mg_nether_min
|
||||||
|
mcl_vars.mg_bedrock_nether_top_max = mcl_vars.mg_nether_max
|
||||||
|
if not superflat then
|
||||||
|
mcl_vars.mg_bedrock_nether_bottom_max = mcl_vars.mg_bedrock_nether_bottom_min + 4
|
||||||
|
mcl_vars.mg_bedrock_nether_top_min = mcl_vars.mg_bedrock_nether_top_max - 4
|
||||||
|
mcl_vars.mg_lava_nether_max = mcl_vars.mg_nether_min + 31
|
||||||
|
else
|
||||||
|
-- Thin bedrock in classic superflat mapgen
|
||||||
|
mcl_vars.mg_bedrock_nether_bottom_max = mcl_vars.mg_bedrock_nether_bottom_min
|
||||||
|
mcl_vars.mg_bedrock_nether_top_min = mcl_vars.mg_bedrock_nether_top_max
|
||||||
|
mcl_vars.mg_lava_nether_max = mcl_vars.mg_nether_min + 2
|
||||||
|
end
|
||||||
|
if mg_name == "flat" then
|
||||||
|
if superflat then
|
||||||
|
mcl_vars.mg_flat_nether_floor = mcl_vars.mg_bedrock_nether_bottom_max + 4
|
||||||
|
mcl_vars.mg_flat_nether_ceiling = mcl_vars.mg_bedrock_nether_bottom_max + 52
|
||||||
|
else
|
||||||
|
mcl_vars.mg_flat_nether_floor = mcl_vars.mg_lava_nether_max + 4
|
||||||
|
mcl_vars.mg_flat_nether_ceiling = mcl_vars.mg_lava_nether_max + 52
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- The End (surface at ca. Y = -27000)
|
||||||
|
mcl_vars.mg_end_min = -27073 -- Carefully chosen to be at a mapchunk border
|
||||||
|
mcl_vars.mg_end_max_official = mcl_vars.mg_end_min + minecraft_height_limit
|
||||||
|
mcl_vars.mg_end_max = mcl_vars.mg_overworld_min - 2000
|
||||||
|
mcl_vars.mg_end_platform_pos = { x = 100, y = mcl_vars.mg_end_min + 74, z = 0 }
|
||||||
|
|
||||||
|
-- Realm barrier used to safely separate the End from the void below the Overworld
|
||||||
|
mcl_vars.mg_realm_barrier_overworld_end_max = mcl_vars.mg_end_max
|
||||||
|
mcl_vars.mg_realm_barrier_overworld_end_min = mcl_vars.mg_end_max - 11
|
||||||
|
|
||||||
|
-- Use MineClone 2-style dungeons
|
||||||
|
mcl_vars.mg_dungeons = true
|
||||||
|
|
|
@ -919,19 +919,8 @@ end
|
||||||
|
|
||||||
|
|
||||||
-- check if within physical map limits (-30911 to 30927)
|
-- check if within physical map limits (-30911 to 30927)
|
||||||
local within_limits, wmin, wmax = nil, -30913, 30928
|
local wmin, wmax = mcl_mapgen.EDGE_MIN, mcl_mapgen.EDGE_MAX
|
||||||
within_limits = function(pos, radius)
|
local function within_limits(pos, radius)
|
||||||
if mcl_vars then
|
|
||||||
if mcl_vars.mapgen_edge_min and mcl_vars.mapgen_edge_max then
|
|
||||||
wmin, wmax = mcl_vars.mapgen_edge_min, mcl_vars.mapgen_edge_max
|
|
||||||
within_limits = function(pos, radius)
|
|
||||||
return pos
|
|
||||||
and (pos.x - radius) > wmin and (pos.x + radius) < wmax
|
|
||||||
and (pos.y - radius) > wmin and (pos.y + radius) < wmax
|
|
||||||
and (pos.z - radius) > wmin and (pos.z + radius) < wmax
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
return pos
|
return pos
|
||||||
and (pos.x - radius) > wmin and (pos.x + radius) < wmax
|
and (pos.x - radius) > wmin and (pos.x + radius) < wmax
|
||||||
and (pos.y - radius) > wmin and (pos.y + radius) < wmax
|
and (pos.y - radius) > wmin and (pos.y + radius) < wmax
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
name = mcl_mobs
|
name = mcl_mobs
|
||||||
author = PilzAdam
|
author = PilzAdam
|
||||||
description = Adds a mob API for mods to add animals or monsters, etc.
|
description = Adds a mob API for mods to add animals or monsters, etc.
|
||||||
depends = mcl_particles
|
depends = mcl_mapgen, mcl_particles
|
||||||
optional_depends = mcl_weather, mcl_explosions, mcl_hunger, mcl_worlds, invisibility, lucky_block, cmi, doc_identifier, mcl_armor, mcl_portals, mcl_experience
|
optional_depends = mcl_weather, mcl_explosions, mcl_hunger, mcl_worlds, invisibility, lucky_block, cmi, doc_identifier, mcl_armor, mcl_portals, mcl_experience
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
name = mcl_portals
|
name = mcl_portals
|
||||||
description = Adds buildable portals to the Nether and End dimensions.
|
description = Adds buildable portals to the Nether and End dimensions.
|
||||||
depends = mcl_nether, mcl_end, mcl_particles, mcl_spawn
|
depends = mcl_mapgen, mcl_nether, mcl_end, mcl_particles, mcl_spawn
|
||||||
optional_depends = awards, doc
|
optional_depends = awards, doc
|
||||||
|
|
|
@ -19,7 +19,7 @@ local W_MIN, W_MAX = 4, 23
|
||||||
local H_MIN, H_MAX = 5, 23
|
local H_MIN, H_MAX = 5, 23
|
||||||
local N_MIN, N_MAX = 6, (W_MAX-2) * (H_MAX-2)
|
local N_MIN, N_MAX = 6, (W_MAX-2) * (H_MAX-2)
|
||||||
local TRAVEL_X, TRAVEL_Y, TRAVEL_Z = 8, 1, 8
|
local TRAVEL_X, TRAVEL_Y, TRAVEL_Z = 8, 1, 8
|
||||||
local LIM_MIN, LIM_MAX = mcl_vars.mapgen_edge_min, mcl_vars.mapgen_edge_max
|
local LIM_MIN, LIM_MAX = mcl_mapgen.EDGE_MIN, mcl_mapgen.EDGE_MAX
|
||||||
local PLAYER_COOLOFF, MOB_COOLOFF = 3, 14 -- for this many seconds they won't teleported again
|
local PLAYER_COOLOFF, MOB_COOLOFF = 3, 14 -- for this many seconds they won't teleported again
|
||||||
local TOUCH_CHATTER_TIME = 1 -- prevent multiple teleportation attempts caused by multiple portal touches, for this number of seconds
|
local TOUCH_CHATTER_TIME = 1 -- prevent multiple teleportation attempts caused by multiple portal touches, for this number of seconds
|
||||||
local CHATTER_US = TOUCH_CHATTER_TIME * 1000000
|
local CHATTER_US = TOUCH_CHATTER_TIME * 1000000
|
||||||
|
@ -522,8 +522,8 @@ local function create_portal(pos, limit1, limit2, name, obj)
|
||||||
-- so we'll emerge single chunk only: 5x5x5 blocks, 80x80x80 nodes maximum
|
-- so we'll emerge single chunk only: 5x5x5 blocks, 80x80x80 nodes maximum
|
||||||
-- and maybe one more chunk from below if (SCAN_2_MAP_CHUNKS = true)
|
-- and maybe one more chunk from below if (SCAN_2_MAP_CHUNKS = true)
|
||||||
|
|
||||||
local pos1 = add(mul(mcl_vars.pos_to_chunk(pos), mcl_vars.chunk_size_in_nodes), mcl_vars.central_chunk_offset_in_nodes)
|
local pos1 = add(mul(mcl_mapgen.pos_to_chunk(pos), mcl_mapgen.CS_NODES), mcl_mapgen.OFFSET_NODES)
|
||||||
local pos2 = add(pos1, mcl_vars.chunk_size_in_nodes - 1)
|
local pos2 = add(pos1, mcl_mapgen.CS_NODES - 1)
|
||||||
|
|
||||||
if not SCAN_2_MAP_CHUNKS then
|
if not SCAN_2_MAP_CHUNKS then
|
||||||
if limit1 and limit1.x and limit1.y and limit1.z then
|
if limit1 and limit1.x and limit1.y and limit1.z then
|
||||||
|
|
|
@ -40,7 +40,7 @@ local max_y = mcl_vars.mg_overworld_max - 1
|
||||||
-- Calculate the number of dungeon spawn attempts
|
-- Calculate the number of dungeon spawn attempts
|
||||||
-- In Minecraft, there 8 dungeon spawn attempts Minecraft chunk (16*256*16 = 65536 blocks).
|
-- In Minecraft, there 8 dungeon spawn attempts Minecraft chunk (16*256*16 = 65536 blocks).
|
||||||
-- Minetest chunks don't have this size, so scale the number accordingly.
|
-- Minetest chunks don't have this size, so scale the number accordingly.
|
||||||
local attempts = math_ceil(((mcl_vars.chunksize * mcl_vars.MAP_BLOCKSIZE) ^ 3) / 8192) -- 63 = 80*80*80/8192
|
local attempts = math_ceil((mcl_mapgen.CS_NODES ^ 3) / 8192) -- 63 = 80*80*80/8192
|
||||||
|
|
||||||
local dungeonsizes = {
|
local dungeonsizes = {
|
||||||
{ x=5, y=4, z=5},
|
{ x=5, y=4, z=5},
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
name = mcl_dungeons
|
name = mcl_dungeons
|
||||||
author = Wuzzy
|
author = Wuzzy
|
||||||
description = Generates random dungeons in the world
|
description = Generates random dungeons in the world
|
||||||
depends = mcl_init, mcl_core, mcl_chests, mcl_mobs, mcl_mobspawners, mcl_mapgen_core, mobs_mc
|
depends = mcl_mapgen, mcl_core, mcl_chests, mcl_mobs, mcl_mobspawners, mcl_mapgen_core, mobs_mc
|
||||||
|
|
|
@ -1899,7 +1899,7 @@ local function basic(c)
|
||||||
local pr = PseudoRandom(blockseed)
|
local pr = PseudoRandom(blockseed)
|
||||||
|
|
||||||
-- The Void below the Nether:
|
-- The Void below the Nether:
|
||||||
lvm_used = set_layers(data, area, c_void , nil, mcl_vars.mapgen_edge_min , mcl_vars.mg_nether_min -1, minp, maxp, lvm_used, pr)
|
lvm_used = set_layers(data, area, c_void , nil, mcl_mapgen.EDGE_MIN , mcl_vars.mg_nether_min -1, minp, maxp, lvm_used, pr)
|
||||||
|
|
||||||
-- [[ THE NETHER: mcl_vars.mg_nether_min mcl_vars.mg_nether_max ]]
|
-- [[ THE NETHER: mcl_vars.mg_nether_min mcl_vars.mg_nether_max ]]
|
||||||
|
|
||||||
|
|
|
@ -81,7 +81,7 @@ local dir_step = storage:get_int("mcl_spawn_dir_step") or 0
|
||||||
local dir_ind = storage:get_int("mcl_spawn_dir_ind") or 1
|
local dir_ind = storage:get_int("mcl_spawn_dir_ind") or 1
|
||||||
local emerge_pos1, emerge_pos2
|
local emerge_pos1, emerge_pos2
|
||||||
|
|
||||||
local spawn_limit = mcl_vars.mapgen_edge_max
|
local spawn_limit = mcl_mapgen.EDGE_MAX
|
||||||
|
|
||||||
|
|
||||||
--Functions
|
--Functions
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
name = mcl_spawn
|
name = mcl_spawn
|
||||||
author = Wuzzy
|
author = Wuzzy
|
||||||
description = Set and get the player's respawn position
|
description = Set and get the player's respawn position
|
||||||
depends = mcl_init
|
depends = mcl_mapgen
|
||||||
|
|
Loading…
Reference in New Issue