2017-05-16 21:05:17 +02:00
|
|
|
|
2015-09-01 17:15:24 +02:00
|
|
|
--
|
|
|
|
-- Single village generation
|
|
|
|
--
|
|
|
|
|
|
|
|
village.villages = {}
|
|
|
|
|
2017-05-16 21:05:17 +02:00
|
|
|
-- Savefile
|
|
|
|
|
2017-05-12 06:24:54 +02:00
|
|
|
local village_file = minetest.get_worldpath() .. "/villages.dat"
|
2015-10-02 22:58:37 +02:00
|
|
|
|
2017-05-16 21:05:17 +02:00
|
|
|
local modpath = minetest.get_modpath("village")
|
2019-09-21 16:36:53 +02:00
|
|
|
local mod_locks = minetest.get_modpath("locks") ~= nil
|
2019-09-04 13:05:37 +02:00
|
|
|
local mapseed = minetest.get_mapgen_setting("seed")
|
2019-09-04 15:53:06 +02:00
|
|
|
local water_level = tonumber(minetest.get_mapgen_setting("water_level"))
|
2019-09-04 13:05:37 +02:00
|
|
|
|
|
|
|
--[[ List of village wood materials (schematic replacements)
|
|
|
|
One of these will be chosen at random and it applies
|
|
|
|
for the whole world. ]]
|
|
|
|
local village_replaces = {
|
|
|
|
-- Default (Birch + Oak, as specified in schematics)
|
|
|
|
{
|
|
|
|
},
|
|
|
|
-- Birch → Normal (Normal + Oak)
|
|
|
|
{
|
|
|
|
["default:planks_birch"] = "default:planks",
|
|
|
|
["default:tree_birch"] = "default:tree",
|
|
|
|
["default:fence_birch"] = "default:fence",
|
|
|
|
},
|
|
|
|
-- Oak → Normal (Normal + Birch)
|
|
|
|
{
|
|
|
|
["default:planks_oak"] = "default:planks",
|
|
|
|
["default:tree_oak"] = "default:tree",
|
|
|
|
["default:fence_oak"] = "default:fence",
|
|
|
|
},
|
|
|
|
-- Normal wood only
|
|
|
|
{
|
|
|
|
["default:planks_birch"] = "default:planks",
|
|
|
|
["default:planks_oak"] = "default:planks",
|
|
|
|
["default:tree_birch"] = "default:tree",
|
|
|
|
["default:tree_oak"] = "default:tree",
|
|
|
|
["default:fence_birch"] = "default:fence",
|
|
|
|
["default:fence_oak"] = "default:fence",
|
|
|
|
},
|
|
|
|
-- Birch wood only
|
|
|
|
{
|
|
|
|
["default:planks"] = "default:planks_birch",
|
|
|
|
["default:planks_oak"] = "default:planks_birch",
|
|
|
|
["default:tree"] = "default:tree_birch",
|
|
|
|
["default:tree_oak"] = "default:tree_birch",
|
|
|
|
["default:fence"] = "default:fence_birch",
|
|
|
|
["default:fence_oak"] = "default:fence_birch",
|
|
|
|
},
|
|
|
|
-- Oak wood only
|
|
|
|
{
|
|
|
|
["default:planks"] = "default:planks_oak",
|
|
|
|
["default:planks_birch"] = "default:planks_oak",
|
|
|
|
["default:tree"] = "default:tree_oak",
|
|
|
|
["default:tree_birch"] = "default:tree_oak",
|
|
|
|
["default:fence"] = "default:fence_oak",
|
|
|
|
["default:fence_birch"] = "default:fence_oak"
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
local village_replace_id
|
2017-05-16 21:05:17 +02:00
|
|
|
|
2015-10-02 22:58:37 +02:00
|
|
|
function village.get_id(name, pos)
|
2017-05-12 04:29:55 +02:00
|
|
|
return name .. minetest.hash_node_position(pos)
|
2015-10-02 22:58:37 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function village.save_villages()
|
|
|
|
local f = io.open(village_file, "w")
|
|
|
|
|
|
|
|
for name, def in pairs(village.villages) do
|
2017-05-16 21:05:17 +02:00
|
|
|
f:write(name .. " " .. def.name .. " "
|
|
|
|
.. minetest.hash_node_position(def.pos) .. "\n")
|
2015-10-02 22:58:37 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
io.close(f)
|
|
|
|
end
|
|
|
|
|
|
|
|
function village.load_villages()
|
|
|
|
local f = io.open(village_file, "r")
|
|
|
|
|
|
|
|
if f then
|
|
|
|
repeat
|
|
|
|
local l = f:read("*l")
|
|
|
|
if l == nil then break end
|
|
|
|
|
2019-09-06 10:25:12 +02:00
|
|
|
for name, fname, pos in string.gmatch(l, "(.+) (%a+) (%d.+)") do
|
2015-10-02 22:58:37 +02:00
|
|
|
village.villages[name] = {
|
|
|
|
name = fname,
|
2017-05-12 04:29:55 +02:00
|
|
|
pos = minetest.get_position_from_hash(pos),
|
2015-10-02 22:58:37 +02:00
|
|
|
}
|
|
|
|
end
|
|
|
|
until f:read(0) == nil
|
|
|
|
|
|
|
|
io.close(f)
|
|
|
|
else
|
|
|
|
village.save_villages()
|
|
|
|
end
|
|
|
|
|
|
|
|
village.load_waypoints()
|
|
|
|
end
|
|
|
|
|
|
|
|
function village.load_waypoints()
|
|
|
|
for name, def in pairs(village.villages) do
|
|
|
|
nav.remove_waypoint("village_" .. name)
|
|
|
|
nav.add_waypoint(
|
|
|
|
def.pos,
|
|
|
|
"village_" .. name,
|
|
|
|
def.name .. " village",
|
|
|
|
true,
|
|
|
|
"village"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function village.get_nearest_village(pos)
|
|
|
|
local nearest = 100000 -- big number
|
|
|
|
local name = nil
|
2017-05-11 23:10:00 +02:00
|
|
|
|
2015-10-02 22:58:37 +02:00
|
|
|
for name, def in pairs(village.villages) do
|
|
|
|
local dist = vector.distance(pos, def.pos)
|
|
|
|
if dist < nearest then
|
|
|
|
nearest = dist
|
|
|
|
name = name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return {dist = nearest, name = name}
|
|
|
|
end
|
|
|
|
|
2015-09-01 17:15:24 +02:00
|
|
|
village.chunkdefs = {}
|
|
|
|
|
|
|
|
village.chunkdefs["livestock_pen"] = {
|
|
|
|
entities = {
|
|
|
|
["mobs:sheep"] = 3,
|
|
|
|
["mobs:boar"] = 1,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
village.chunkdefs["lamppost"] = { -- not road because of road height limit of 1 nodes
|
|
|
|
entity_chance = 2,
|
|
|
|
entities = {
|
2019-09-21 14:44:30 +02:00
|
|
|
["mobs:npc_carpenter"] = 1,
|
2015-09-01 17:15:24 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
village.chunkdefs["well"] = {
|
|
|
|
entities = {
|
|
|
|
["mobs:npc_farmer"] = 1,
|
2015-09-01 18:40:48 +02:00
|
|
|
["mobs:npc_tavernkeeper"] = 1,
|
2015-09-01 17:15:24 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
village.chunkdefs["house"] = {
|
|
|
|
entity_chance = 2,
|
|
|
|
entities = {
|
2019-09-21 14:44:30 +02:00
|
|
|
["mobs:npc_carpenter"] = 1,
|
2015-09-01 17:15:24 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
village.chunkdefs["tavern"] = {
|
|
|
|
entity_chance = 2,
|
|
|
|
entities = {
|
|
|
|
["mobs:npc_tavernkeeper"] = 1,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
village.chunkdefs["forge"] = {
|
|
|
|
entity_chance = 2,
|
|
|
|
entities = {
|
|
|
|
["mobs:npc_blacksmith"] = 1,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
village.chunkdefs["orchard"] = {
|
2015-09-01 18:40:48 +02:00
|
|
|
entity_chance = 2,
|
2015-09-01 17:15:24 +02:00
|
|
|
entities = {
|
|
|
|
["mobs:npc_farmer"] = 1,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
village.chunkdefs["farm"] = {
|
|
|
|
entity_chance = 2,
|
|
|
|
entities = {
|
|
|
|
["mobs:npc_farmer"] = 1,
|
|
|
|
},
|
|
|
|
}
|
2019-09-05 17:35:13 +02:00
|
|
|
village.chunkdefs["farm_wheat"] = {
|
|
|
|
entity_chance = 2,
|
|
|
|
entities = {
|
|
|
|
["mobs:npc_farmer"] = 1,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
village.chunkdefs["farm_cotton"] = {
|
|
|
|
entity_chance = 2,
|
|
|
|
entities = {
|
|
|
|
["mobs:npc_farmer"] = 1,
|
|
|
|
},
|
|
|
|
}
|
2015-09-01 17:15:24 +02:00
|
|
|
village.chunkdefs["farm_papyrus"] = {
|
2015-09-01 18:40:48 +02:00
|
|
|
entity_chance = 2,
|
2015-09-01 17:15:24 +02:00
|
|
|
entities = {
|
|
|
|
["mobs:npc_farmer"] = 1,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-09-05 17:35:13 +02:00
|
|
|
-- List of chunk types. Chunk types are structurs and buildings
|
|
|
|
-- that are not the well and are placed next to roads.
|
|
|
|
-- The number is their absolute frequency. The higher the number,
|
|
|
|
-- the more likely it will occur.
|
|
|
|
-- The well is not listed here because it acts as the start point.
|
2015-09-01 17:15:24 +02:00
|
|
|
village.chunktypes = {
|
2019-09-05 17:35:13 +02:00
|
|
|
-- chunktype, absolute frequency
|
|
|
|
{ "house", 12 },
|
|
|
|
{ "tavern", 6 },
|
|
|
|
{ "forge", 6 },
|
|
|
|
{ "farm_wheat", 2 },
|
|
|
|
{ "farm_cotton", 2 },
|
|
|
|
{ "farm", 2 },
|
|
|
|
{ "farm_papyrus", 3 },
|
|
|
|
{ "livestock_pen", 3 },
|
|
|
|
{ "orchard", 3 },
|
2015-09-01 17:15:24 +02:00
|
|
|
}
|
|
|
|
|
2019-09-05 17:35:13 +02:00
|
|
|
-- Calculate cumulated absolute frequency and put it in index 3
|
|
|
|
local chunksum = 0
|
|
|
|
for i=1, #village.chunktypes do
|
|
|
|
chunksum = chunksum + village.chunktypes[i][2]
|
|
|
|
village.chunktypes[i][3] = chunksum
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Select a random chunk. The probability of a chunk being selected is
|
|
|
|
-- <absolute frequency> / <sum of all absolute frequencies>
|
|
|
|
local function random_chunktype(pr)
|
|
|
|
local rnd = pr:next(1, chunksum)
|
|
|
|
for i=1, #village.chunktypes do
|
|
|
|
if rnd <= village.chunktypes[i][3] then
|
|
|
|
return village.chunktypes[i][1]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return village.chunktypes[#village.chunktypes][1]
|
|
|
|
end
|
|
|
|
|
2015-10-23 01:27:35 +02:00
|
|
|
function village.lift_ground(pos, scanheight)
|
|
|
|
-- assume ground is lower than pos.y
|
2015-09-01 17:15:24 +02:00
|
|
|
|
2015-10-23 01:27:35 +02:00
|
|
|
local topnode = nil
|
|
|
|
local topdepth = 0
|
|
|
|
|
|
|
|
local fillernode = nil
|
|
|
|
local fillerdepth = 0
|
|
|
|
|
|
|
|
local stonenode = nil
|
|
|
|
|
2019-09-26 13:31:14 +02:00
|
|
|
local nn = minetest.get_node({x=pos.x,y=pos.y+1,z=pos.z}).name
|
2019-09-26 16:19:19 +02:00
|
|
|
if (nn == "ignore") or (nn ~= "air" and minetest.registered_nodes[nn].liquidtype ~= "none") then
|
2019-09-04 15:53:06 +02:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2015-10-23 01:27:35 +02:00
|
|
|
for y = pos.y, pos.y - scanheight, -1 do
|
|
|
|
local p = {x = pos.x, y = y, z = pos.z}
|
|
|
|
|
2019-09-26 13:31:14 +02:00
|
|
|
nn = minetest.get_node(p).name
|
2017-05-12 04:29:55 +02:00
|
|
|
local an = minetest.get_node({x = p.x, y = p.y + 1, z = p.z}).name
|
2015-10-23 01:27:35 +02:00
|
|
|
|
2019-09-26 16:19:19 +02:00
|
|
|
if (nn == "ignore") or (nn ~= "air" and minetest.registered_nodes[nn].liquidtype ~= "none") then
|
2017-05-12 04:29:55 +02:00
|
|
|
local nd = minetest.registered_nodes[nn]
|
2019-09-04 15:53:06 +02:00
|
|
|
if not nd.buildable_to then
|
2015-10-23 01:27:35 +02:00
|
|
|
if topnode == nil and nn ~= an then
|
|
|
|
topnode = nn
|
|
|
|
elseif fillernode == nil and nn ~= an then
|
|
|
|
fillernode = nn
|
|
|
|
else
|
|
|
|
stonenode = nn
|
2015-09-01 17:15:24 +02:00
|
|
|
end
|
2015-10-23 01:27:35 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
if fillernode and not stonenode then
|
|
|
|
fillerdepth = fillerdepth + 1
|
|
|
|
elseif topnode and not fillernode then
|
|
|
|
topdepth = topdepth + 1
|
|
|
|
end
|
2015-09-01 17:15:24 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-10-23 01:27:35 +02:00
|
|
|
if topnode == nil then
|
|
|
|
topnode = "default:dirt_with_grass"
|
|
|
|
topdepth = 1
|
|
|
|
end
|
|
|
|
if fillernode == nil then
|
|
|
|
fillernode = "default:dirt"
|
|
|
|
fillerdepth = 3
|
|
|
|
end
|
|
|
|
if stonenode == nil then
|
|
|
|
stonenode = fillernode
|
|
|
|
end
|
|
|
|
|
|
|
|
for y = pos.y - scanheight, pos.y do
|
|
|
|
local p = {x = pos.x, y = y, z = pos.z}
|
|
|
|
|
|
|
|
local th = pos.y - y
|
2015-09-01 17:15:24 +02:00
|
|
|
|
2019-09-04 15:53:06 +02:00
|
|
|
-- TODO: Optimize speed
|
2015-10-23 01:27:35 +02:00
|
|
|
if th <= fillerdepth - topdepth then
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.set_node(p, {name = fillernode})
|
2015-10-23 01:27:35 +02:00
|
|
|
elseif th <= topdepth then
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.set_node(p, {name = topnode})
|
2015-10-23 01:27:35 +02:00
|
|
|
else
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.set_node(p, {name = stonenode})
|
2015-10-23 01:27:35 +02:00
|
|
|
end
|
|
|
|
end
|
2015-09-01 17:15:24 +02:00
|
|
|
end
|
|
|
|
|
2019-09-26 12:52:39 +02:00
|
|
|
local HILL_W, HILL_H = 24, 6
|
|
|
|
|
|
|
|
function village.generate_hill(pos)
|
|
|
|
local dirts = {}
|
|
|
|
local dirts_with_grass = {}
|
|
|
|
for y=0,HILL_H-1 do
|
|
|
|
for z=y,HILL_W-1-y do
|
|
|
|
for x=y,HILL_W-1-y do
|
|
|
|
local p = {x=pos.x+x, y=pos.y+y, z=pos.z+z}
|
|
|
|
local n = minetest.get_node(p)
|
|
|
|
local def = minetest.registered_nodes[n.name]
|
2019-09-26 16:19:19 +02:00
|
|
|
if n.name == "air" or n.name == "ignore" or (def and (def.liquidtype ~= "none" or (def.walkable == false and def.is_ground_content == true))) then
|
2019-09-26 12:52:39 +02:00
|
|
|
if (y == HILL_H-1 or z == y or x == y or z == HILL_W-1-y or x == HILL_W-1-y) and (p.y >= water_level) then
|
|
|
|
table.insert(dirts_with_grass, p)
|
|
|
|
else
|
|
|
|
table.insert(dirts, p)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
minetest.bulk_set_node(dirts, {name="default:dirt"})
|
|
|
|
minetest.bulk_set_node(dirts_with_grass, {name="default:dirt_with_grass"})
|
|
|
|
end
|
|
|
|
|
2019-09-05 16:34:59 +02:00
|
|
|
local function check_empty(pos)
|
|
|
|
local min = { x = pos.x, y = pos.y + 1, z = pos.z }
|
|
|
|
local max = { x = pos.x+12, y = pos.y+12, z = pos.z+12 }
|
|
|
|
local stones = minetest.find_nodes_in_area(min, max, "group:stone")
|
|
|
|
local leaves = minetest.find_nodes_in_area(min, max, "group:leaves")
|
|
|
|
local trees = minetest.find_nodes_in_area(min, max, "group:tree")
|
|
|
|
return #stones <= 15 and #leaves <= 2 and #trees == 0
|
|
|
|
end
|
|
|
|
|
2019-09-21 16:55:00 +02:00
|
|
|
function village.spawn_chunk(pos, state, orient, replace, pr, chunktype, nofill, dont_check_empty)
|
2019-09-05 20:06:31 +02:00
|
|
|
if not dont_check_empty and not check_empty(pos) then
|
2019-09-05 16:34:59 +02:00
|
|
|
minetest.log("verbose", "[village] Chunk not generated (too many stone/leaves/trees in the way) at "..minetest.pos_to_string(pos))
|
2019-09-21 16:55:00 +02:00
|
|
|
return false, state
|
|
|
|
end
|
|
|
|
if not state then
|
|
|
|
state = { music_players = 0 }
|
2019-09-05 16:34:59 +02:00
|
|
|
end
|
|
|
|
|
2015-10-23 01:27:35 +02:00
|
|
|
util.getvoxelmanip(pos, {x = pos.x+12, y = pos.y+12, z = pos.z+12})
|
2017-05-11 23:10:00 +02:00
|
|
|
|
2015-09-01 17:15:24 +02:00
|
|
|
if nofill ~= true then
|
2019-09-26 12:52:39 +02:00
|
|
|
village.generate_hill({x=pos.x-6, y=pos.y-5, z=pos.z-6})
|
2019-09-04 15:53:06 +02:00
|
|
|
|
|
|
|
local py = pos.y-6
|
2015-10-23 01:27:35 +02:00
|
|
|
util.nodefunc(
|
2019-09-04 15:53:06 +02:00
|
|
|
{x = pos.x-6, y = py, z = pos.z-6},
|
|
|
|
{x = pos.x+17, y = py, z = pos.z+17},
|
|
|
|
{"air", "group:liquid"},
|
2015-10-23 01:27:35 +02:00
|
|
|
function(pos)
|
|
|
|
village.lift_ground(pos, 15) -- distance to lift ground; larger numbers will be slower
|
|
|
|
end, true)
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.place_schematic(
|
2015-10-23 01:27:35 +02:00
|
|
|
pos,
|
2017-05-16 21:05:17 +02:00
|
|
|
modpath .. "/schematics/village_empty.mts",
|
2015-09-01 17:15:24 +02:00
|
|
|
"0",
|
|
|
|
{},
|
|
|
|
true
|
|
|
|
)
|
2015-10-23 01:27:35 +02:00
|
|
|
|
2015-09-01 17:15:24 +02:00
|
|
|
end
|
|
|
|
|
2019-09-04 13:05:37 +02:00
|
|
|
if chunktype == "orchard" then
|
|
|
|
replace["default:tree"] = nil
|
|
|
|
end
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.place_schematic(
|
2015-09-01 17:15:24 +02:00
|
|
|
pos,
|
2017-05-16 21:05:17 +02:00
|
|
|
modpath .. "/schematics/village_" .. chunktype .. ".mts",
|
2015-09-01 17:15:24 +02:00
|
|
|
orient,
|
|
|
|
replace,
|
|
|
|
true
|
|
|
|
)
|
|
|
|
|
2015-10-23 01:27:35 +02:00
|
|
|
util.fixlight(pos, {x = pos.x+12, y = pos.y+12, z = pos.z+12})
|
2017-05-11 23:10:00 +02:00
|
|
|
|
2019-09-21 16:36:53 +02:00
|
|
|
-- Replace some chests with locked chests
|
|
|
|
if mod_locks then
|
|
|
|
util.nodefunc(
|
|
|
|
pos,
|
|
|
|
{x = pos.x+12, y = pos.y+12, z = pos.z+12},
|
|
|
|
"default:chest",
|
|
|
|
function(pos)
|
2019-09-21 22:57:57 +02:00
|
|
|
if pr:next(1,4) == 1 then
|
2019-09-21 16:36:53 +02:00
|
|
|
local node = minetest.get_node(pos)
|
|
|
|
node.name = "locks:chest"
|
|
|
|
minetest.swap_node(pos, node)
|
|
|
|
end
|
|
|
|
end, true)
|
|
|
|
end
|
|
|
|
|
|
|
|
util.reconstruct(pos, {x = pos.x+12, y = pos.y+12, z = pos.z+12})
|
|
|
|
|
2015-09-01 17:15:24 +02:00
|
|
|
util.nodefunc(
|
|
|
|
pos,
|
2015-10-23 01:27:35 +02:00
|
|
|
{x = pos.x+12, y = pos.y+12, z = pos.z+12},
|
2019-09-21 16:36:53 +02:00
|
|
|
{"default:chest", "locks:chest"},
|
2015-09-01 17:15:24 +02:00
|
|
|
function(pos)
|
2019-09-21 16:36:53 +02:00
|
|
|
goodies.fill(pos, chunktype, pr, "main", 3)
|
2015-10-23 01:27:35 +02:00
|
|
|
end, true)
|
2017-05-11 23:10:00 +02:00
|
|
|
|
2019-09-21 16:55:00 +02:00
|
|
|
-- Maximum of 1 music player per village
|
2015-09-01 17:15:24 +02:00
|
|
|
util.nodefunc(
|
|
|
|
pos,
|
2015-10-23 01:27:35 +02:00
|
|
|
{x = pos.x+12, y = pos.y+12, z = pos.z+12},
|
2015-09-01 17:15:24 +02:00
|
|
|
"music:player",
|
|
|
|
function(pos)
|
2019-09-21 16:55:00 +02:00
|
|
|
if state.music_players >= 1 or pr:next(1,8) > 1 then
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.remove_node(pos)
|
2019-09-03 17:12:16 +02:00
|
|
|
else
|
2019-09-21 16:55:00 +02:00
|
|
|
state.music_players = state.music_players + 1
|
2015-09-01 17:15:24 +02:00
|
|
|
end
|
2015-10-23 01:27:35 +02:00
|
|
|
end, true)
|
2015-09-01 17:15:24 +02:00
|
|
|
|
2019-08-31 16:18:19 +02:00
|
|
|
-- Replace legacy torches
|
|
|
|
-- TODO: Fix the torches in the formspec instead
|
|
|
|
util.nodefunc(
|
|
|
|
pos,
|
|
|
|
{x = pos.x+12, y = pos.y+12, z = pos.z+12},
|
|
|
|
"default:torch",
|
|
|
|
function(pos)
|
|
|
|
local node = minetest.get_node(pos)
|
|
|
|
local dir = minetest.wallmounted_to_dir(node.param2)
|
|
|
|
if dir.x ~= 0 or dir.z ~= 0 then
|
|
|
|
node.name = "default:torch_wall"
|
|
|
|
minetest.set_node(pos, node)
|
|
|
|
end
|
|
|
|
end, true)
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-09-01 17:15:24 +02:00
|
|
|
local chunkdef = village.chunkdefs[chunktype]
|
|
|
|
if chunkdef ~= nil then
|
|
|
|
if chunkdef.entities ~= nil then
|
|
|
|
if chunkdef.entity_chance ~= nil and pr:next(1, chunkdef.entity_chance) == 1 then
|
|
|
|
util.nodefunc(
|
|
|
|
pos,
|
2015-10-23 01:27:35 +02:00
|
|
|
{x = pos.x+12, y = pos.y+12, z = pos.z+12},
|
2015-09-01 17:15:24 +02:00
|
|
|
"village:entity_spawner",
|
|
|
|
function(pos)
|
2017-05-12 04:29:55 +02:00
|
|
|
minetest.remove_node(pos)
|
2017-05-11 23:10:00 +02:00
|
|
|
end)
|
2019-09-21 16:55:00 +02:00
|
|
|
return true, state
|
2015-09-01 17:15:24 +02:00
|
|
|
end
|
2017-05-11 23:10:00 +02:00
|
|
|
|
2015-09-01 17:15:24 +02:00
|
|
|
local ent_spawns = {}
|
|
|
|
|
|
|
|
util.nodefunc(
|
|
|
|
pos,
|
2015-10-23 01:27:35 +02:00
|
|
|
{x = pos.x+12, y = pos.y+12, z = pos.z+12},
|
2015-09-01 17:15:24 +02:00
|
|
|
"village:entity_spawner",
|
|
|
|
function(pos)
|
|
|
|
table.insert(ent_spawns, pos)
|
2015-10-23 01:27:35 +02:00
|
|
|
end, true)
|
2015-09-01 17:15:24 +02:00
|
|
|
|
|
|
|
if #ent_spawns > 0 then
|
|
|
|
for ent, amt in pairs(chunkdef.entities) do
|
2015-09-01 18:40:48 +02:00
|
|
|
for j = 1, pr:next(1, amt) do
|
2019-09-05 17:55:14 +02:00
|
|
|
if #ent_spawns == 0 then
|
|
|
|
break
|
|
|
|
end
|
|
|
|
local spawn, index = util.choice_element(ent_spawns, pr)
|
2015-09-01 17:15:24 +02:00
|
|
|
if spawn ~= nil then
|
2019-09-06 18:10:08 +02:00
|
|
|
local meta = minetest.get_meta(spawn)
|
|
|
|
meta:set_string("entity", ent)
|
|
|
|
minetest.get_node_timer(spawn):start(1)
|
2019-09-05 17:55:14 +02:00
|
|
|
-- Prevent spawning on same tile
|
|
|
|
table.remove(ent_spawns, index)
|
2015-09-01 17:15:24 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-09-06 18:10:08 +02:00
|
|
|
-- Remove unused entity spawners
|
|
|
|
for e=1, #ent_spawns do
|
|
|
|
minetest.remove_node(ent_spawns[e])
|
|
|
|
end
|
2015-09-01 17:15:24 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if chunktype == "forge" then
|
|
|
|
util.nodefunc(
|
|
|
|
pos,
|
2015-10-23 01:27:35 +02:00
|
|
|
{x = pos.x+12, y = pos.y+12, z = pos.z+12},
|
2015-09-01 17:15:24 +02:00
|
|
|
"default:furnace",
|
|
|
|
function(pos)
|
2015-09-02 19:57:24 +02:00
|
|
|
goodies.fill(pos, "FURNACE_SRC", pr, "src", 1)
|
|
|
|
goodies.fill(pos, "FURNACE_DST", pr, "dst", 1)
|
|
|
|
goodies.fill(pos, "FURNACE_FUEL", pr, "fuel", 1)
|
2015-10-23 01:27:35 +02:00
|
|
|
end, true)
|
2015-09-01 17:15:24 +02:00
|
|
|
end
|
2019-09-05 16:34:59 +02:00
|
|
|
minetest.log("verbose", "[village] Chunk generated at "..minetest.pos_to_string(pos))
|
2019-09-21 16:55:00 +02:00
|
|
|
return true, state
|
2015-09-01 17:15:24 +02:00
|
|
|
end
|
|
|
|
|
2019-09-21 16:55:00 +02:00
|
|
|
function village.spawn_road(pos, state, houses, built, roads, depth, pr, replace, dont_check_empty)
|
2019-09-05 16:34:59 +02:00
|
|
|
if not dont_check_empty and not check_empty(pos) then
|
|
|
|
minetest.log("verbose", "[village] Road not generated (too many stone/leaves/trees in the way) at "..minetest.pos_to_string(pos))
|
2019-09-21 16:55:00 +02:00
|
|
|
return false, state
|
2019-09-05 16:34:59 +02:00
|
|
|
end
|
|
|
|
|
2015-09-01 17:15:24 +02:00
|
|
|
for i=1,4 do
|
|
|
|
local nextpos = {x = pos.x, y = pos.y, z = pos.z}
|
|
|
|
local orient = "random"
|
|
|
|
|
|
|
|
if i == 1 then
|
|
|
|
orient = "0"
|
|
|
|
nextpos.z = nextpos.z - 12
|
|
|
|
elseif i == 2 then
|
|
|
|
orient = "90"
|
|
|
|
nextpos.x = nextpos.x - 12
|
|
|
|
elseif i == 3 then
|
|
|
|
orient = "180"
|
|
|
|
nextpos.z = nextpos.z + 12
|
|
|
|
else
|
|
|
|
orient = "270"
|
|
|
|
nextpos.x = nextpos.x + 12
|
|
|
|
end
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
local hnp = minetest.hash_node_position(nextpos)
|
2015-10-23 01:27:35 +02:00
|
|
|
|
2019-09-05 16:34:59 +02:00
|
|
|
local chunk_ok
|
2015-10-23 01:27:35 +02:00
|
|
|
if built[hnp] == nil then
|
|
|
|
built[hnp] = true
|
2015-09-01 17:15:24 +02:00
|
|
|
if depth <= 0 or pr:next(1, 8) < 6 then
|
2015-10-23 01:27:35 +02:00
|
|
|
houses[hnp] = {pos = nextpos, front = pos}
|
2017-05-11 23:10:00 +02:00
|
|
|
|
2019-09-05 17:35:13 +02:00
|
|
|
local structure = random_chunktype(pr)
|
2019-09-21 16:55:00 +02:00
|
|
|
chunk_ok, state = village.spawn_chunk(nextpos, state, orient, replace, pr, structure)
|
2019-09-05 16:34:59 +02:00
|
|
|
if not chunk_ok then
|
|
|
|
houses[hnp] = false
|
|
|
|
end
|
2015-09-01 17:15:24 +02:00
|
|
|
else
|
2015-10-23 01:27:35 +02:00
|
|
|
roads[hnp] = {pos = nextpos}
|
2019-09-21 16:55:00 +02:00
|
|
|
chunk_ok, state = village.spawn_road(nextpos, state, houses, built, roads, depth - 1, pr, replace)
|
2019-09-05 16:34:59 +02:00
|
|
|
if not chunk_ok then
|
|
|
|
roads[hnp] = false
|
|
|
|
end
|
2015-09-01 17:15:24 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-09-21 16:55:00 +02:00
|
|
|
return true, state
|
2015-09-01 17:15:24 +02:00
|
|
|
end
|
|
|
|
|
2019-09-05 20:06:31 +02:00
|
|
|
function village.spawn_village(pos, pr, force_place_well)
|
2015-09-01 17:15:24 +02:00
|
|
|
local name = village.name.generate(pr)
|
|
|
|
|
|
|
|
local depth = pr:next(village.min_size, village.max_size)
|
2017-05-11 23:10:00 +02:00
|
|
|
|
2015-10-02 22:58:37 +02:00
|
|
|
village.villages[village.get_id(name, pos)] = {
|
|
|
|
name = name,
|
2015-09-01 17:15:24 +02:00
|
|
|
pos = pos,
|
|
|
|
}
|
|
|
|
|
2015-10-02 22:58:37 +02:00
|
|
|
village.save_villages()
|
|
|
|
village.load_waypoints()
|
2015-09-01 17:15:24 +02:00
|
|
|
|
|
|
|
local houses = {}
|
|
|
|
local built = {}
|
|
|
|
local roads = {}
|
|
|
|
|
2015-10-23 01:27:35 +02:00
|
|
|
local spawnpos = pos
|
|
|
|
|
2019-09-04 13:05:37 +02:00
|
|
|
-- Get village wood type based on mapseed. All villages in the world
|
|
|
|
-- will have the same style.
|
|
|
|
-- This is done because the schematic replacements cannot be changed
|
|
|
|
-- once the schematic was loaded.
|
|
|
|
if not village_replace_id then
|
|
|
|
local vpr = PseudoRandom(mapseed)
|
|
|
|
village_replace_id = vpr:next(1,#village_replaces)
|
|
|
|
end
|
|
|
|
local replace = village_replaces[village_replace_id]
|
2019-09-04 13:40:14 +02:00
|
|
|
local dirt_path = "default:heated_dirt_path"
|
2019-09-05 17:35:13 +02:00
|
|
|
|
|
|
|
-- For measuring the generation time
|
|
|
|
local t1 = os.clock()
|
|
|
|
|
|
|
|
-- Every village generation starts with a well.
|
2019-09-22 04:53:13 +02:00
|
|
|
local chunk_ok, state = village.spawn_chunk(pos, nil, "0", replace, pr, "well", nil, force_place_well == true)
|
2019-09-05 16:34:59 +02:00
|
|
|
if not chunk_ok then
|
2019-09-05 17:35:13 +02:00
|
|
|
-- Oops! Not enough space for the well. Village generation fails.
|
2019-09-05 16:34:59 +02:00
|
|
|
return false
|
|
|
|
end
|
2019-09-04 13:05:37 +02:00
|
|
|
|
2019-09-05 18:38:15 +02:00
|
|
|
local wellpos = table.copy(pos)
|
|
|
|
|
2017-05-12 04:29:55 +02:00
|
|
|
built[minetest.hash_node_position(pos)] = true
|
2015-09-01 17:15:24 +02:00
|
|
|
|
2019-09-05 17:35:13 +02:00
|
|
|
-- Generate a road at the well. The road tries to grow in 4 directions
|
|
|
|
-- growing either recursively more roads or buildings (where the road
|
|
|
|
-- terminates)
|
2019-09-21 16:55:00 +02:00
|
|
|
local _, state = village.spawn_road(pos, state, houses, built, roads, depth, pr, replace, true)
|
2015-09-01 17:15:24 +02:00
|
|
|
|
|
|
|
local function connects(pos, nextpos)
|
2017-05-12 04:29:55 +02:00
|
|
|
local hnp = minetest.hash_node_position(nextpos)
|
2015-10-23 01:27:35 +02:00
|
|
|
|
2019-09-05 16:34:59 +02:00
|
|
|
if houses[hnp] ~= nil and houses[hnp] ~= false then
|
2015-10-23 01:27:35 +02:00
|
|
|
if vector.equals(houses[hnp].front, pos) then
|
2015-09-01 17:15:24 +02:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-05 16:34:59 +02:00
|
|
|
if roads[hnp] ~= nil and roads[hnp] ~= false then
|
2015-09-01 17:15:24 +02:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2015-10-23 01:27:35 +02:00
|
|
|
if vector.equals(pos, nextpos) or vector.equals(nextpos, spawnpos) then
|
2015-09-01 17:15:24 +02:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-05 18:38:15 +02:00
|
|
|
-- Add position of well to roads list to connect it properly with
|
|
|
|
-- the road network.
|
|
|
|
local hnp = minetest.hash_node_position(wellpos)
|
|
|
|
roads[hnp] = { pos = wellpos, is_well = true }
|
|
|
|
|
2019-09-04 13:05:37 +02:00
|
|
|
-- Connect dirt paths with other village tiles.
|
|
|
|
-- The dirt path schematic uses planks and cobble for each of the 4 cardinal
|
|
|
|
-- directions and it will be replaced either with a dirt path or
|
|
|
|
-- the ground.
|
2019-09-05 18:38:15 +02:00
|
|
|
|
2015-09-01 17:15:24 +02:00
|
|
|
for _,road in pairs(roads) do
|
2019-09-05 16:34:59 +02:00
|
|
|
if road ~= false then
|
|
|
|
|
2015-09-01 17:15:24 +02:00
|
|
|
local replaces = {
|
|
|
|
["default:planks"] = "default:dirt_with_grass", -- north
|
|
|
|
["default:cobble"] = "default:dirt_with_grass", -- east
|
|
|
|
["default:planks_oak"] = "default:dirt_with_grass", -- south
|
|
|
|
["default:planks_birch"] = "default:dirt_with_grass" -- west
|
|
|
|
}
|
|
|
|
|
2019-09-05 18:38:15 +02:00
|
|
|
if not road.is_well then
|
2019-09-21 16:55:00 +02:00
|
|
|
_, state = village.spawn_chunk(road.pos, state, "0", replaces, pr, "road")
|
2019-09-05 18:38:15 +02:00
|
|
|
end
|
2019-09-04 13:40:14 +02:00
|
|
|
|
2015-09-01 17:15:24 +02:00
|
|
|
local amt_connections = 0
|
|
|
|
|
|
|
|
for i = 1, 4 do
|
|
|
|
local nextpos = {x = road.pos.x, y = road.pos.y, z = road.pos.z}
|
|
|
|
|
|
|
|
if i == 1 then
|
|
|
|
nextpos.z = nextpos.z + 12
|
|
|
|
if connects(road.pos, nextpos) then
|
2019-09-06 18:15:08 +02:00
|
|
|
amt_connections = amt_connections + 1
|
2019-09-04 13:40:14 +02:00
|
|
|
local nodes = minetest.find_nodes_in_area(vector.add(road.pos, {x=4, y=0, z=8}), vector.add(road.pos, {x=7,y=0,z=11}), {"default:dirt_with_grass"})
|
|
|
|
minetest.bulk_set_node(nodes, {name=dirt_path})
|
2015-09-01 17:15:24 +02:00
|
|
|
end
|
|
|
|
elseif i == 2 then
|
|
|
|
nextpos.x = nextpos.x + 12
|
|
|
|
if connects(road.pos, nextpos) then
|
2019-09-06 18:15:08 +02:00
|
|
|
amt_connections = amt_connections + 1
|
2019-09-04 13:40:14 +02:00
|
|
|
local nodes = minetest.find_nodes_in_area(vector.add(road.pos, {x=8, y=0, z=4}), vector.add(road.pos, {x=11,y=0,z=7}), {"default:dirt_with_grass"})
|
|
|
|
minetest.bulk_set_node(nodes, {name=dirt_path})
|
2015-09-01 17:15:24 +02:00
|
|
|
end
|
|
|
|
elseif i == 3 then
|
|
|
|
nextpos.z = nextpos.z - 12
|
|
|
|
if connects(road.pos, nextpos) then
|
2019-09-06 18:15:08 +02:00
|
|
|
amt_connections = amt_connections + 1
|
2019-09-04 13:40:14 +02:00
|
|
|
local nodes = minetest.find_nodes_in_area(vector.add(road.pos, {x=4, y=0, z=0}), vector.add(road.pos, {x=7,y=0,z=3}), {"default:dirt_with_grass"})
|
|
|
|
minetest.bulk_set_node(nodes, {name=dirt_path})
|
2015-09-01 17:15:24 +02:00
|
|
|
end
|
|
|
|
else
|
|
|
|
nextpos.x = nextpos.x - 12
|
|
|
|
if connects(road.pos, nextpos) then
|
2019-09-06 18:15:08 +02:00
|
|
|
amt_connections = amt_connections + 1
|
2019-09-04 13:40:14 +02:00
|
|
|
local nodes = minetest.find_nodes_in_area(vector.add(road.pos, {x=0, y=0, z=4}), vector.add(road.pos, {x=3,y=0,z=7}), {"default:dirt_with_grass"})
|
|
|
|
minetest.bulk_set_node(nodes, {name=dirt_path})
|
2015-09-01 17:15:24 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2019-09-05 18:38:15 +02:00
|
|
|
if amt_connections >= 2 and not road.is_well then
|
2015-09-01 17:15:24 +02:00
|
|
|
village.spawn_chunk(
|
|
|
|
{x = road.pos.x, y = road.pos.y+1, z = road.pos.z},
|
2019-09-21 16:55:00 +02:00
|
|
|
state,
|
2015-09-01 17:15:24 +02:00
|
|
|
"0",
|
|
|
|
{},
|
|
|
|
pr,
|
|
|
|
"lamppost",
|
2019-09-05 20:06:31 +02:00
|
|
|
true,
|
2015-09-01 17:15:24 +02:00
|
|
|
true
|
2017-05-11 23:10:00 +02:00
|
|
|
)
|
2015-09-01 17:15:24 +02:00
|
|
|
end
|
|
|
|
end
|
2019-09-05 16:34:59 +02:00
|
|
|
end
|
2019-09-05 17:35:13 +02:00
|
|
|
minetest.log("action", string.format("[village] Took %.2fms to generate village", (os.clock() - t1) * 1000))
|
2019-09-05 16:34:59 +02:00
|
|
|
return true
|
2015-10-02 22:58:37 +02:00
|
|
|
end
|
|
|
|
|
2019-08-29 17:44:48 +02:00
|
|
|
minetest.register_on_mods_loaded(village.load_villages)
|