2024-07-23 01:09:17 +02:00
|
|
|
mcl_villages.schematic_houses = {}
|
|
|
|
mcl_villages.schematic_jobs = {}
|
|
|
|
mcl_villages.schematic_lamps = {}
|
|
|
|
mcl_villages.schematic_bells = {}
|
|
|
|
mcl_villages.schematic_wells = {}
|
|
|
|
mcl_villages.on_village_placed = {}
|
|
|
|
mcl_villages.on_villager_placed = {}
|
|
|
|
mcl_villages.mandatory_buildings = {}
|
|
|
|
|
|
|
|
local S = minetest.get_translator(minetest.get_current_modname())
|
|
|
|
|
|
|
|
local function job_count(schem_lua)
|
|
|
|
local count = 0
|
|
|
|
for _, n in pairs(mobs_mc.jobsites) do
|
|
|
|
if string.find(n, "^group:") then
|
|
|
|
if n == "group:cauldron" then
|
2024-09-03 17:16:36 +02:00
|
|
|
count = count + select(2, string.gsub(schem_lua, '"mcl_cauldrons:cauldron', ""))
|
2024-07-23 01:09:17 +02:00
|
|
|
else
|
|
|
|
local name = string.sub(n, 6, -1)
|
2024-09-03 17:16:36 +02:00
|
|
|
local num = select(2, string.gsub(schem_lua, name, ""))
|
2024-07-23 01:09:17 +02:00
|
|
|
if num then
|
2024-09-03 17:16:36 +02:00
|
|
|
minetest.log("info", string.format("[mcl_villages] Guessing how to handle %s counting it as %d job sites", name, num))
|
2024-07-23 01:09:17 +02:00
|
|
|
count = count + num
|
|
|
|
else
|
2024-09-03 17:16:36 +02:00
|
|
|
minetest.log("warning", string.format("[mcl_villages] Don't know how to handle group %s counting it as 1 job site", n))
|
2024-07-23 01:09:17 +02:00
|
|
|
count = count + 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
2024-09-03 17:16:36 +02:00
|
|
|
count = count + select(2, string.gsub(schem_lua, '{name="' .. n .. '"', ""))
|
2024-07-23 01:09:17 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return count
|
|
|
|
end
|
|
|
|
|
|
|
|
local function load_schema(name, mts)
|
2024-07-26 01:13:21 +02:00
|
|
|
local schem_lua = minetest.serialize_schematic(mts, "lua", { lua_use_comments = false, lua_num_indent_spaces = 0 }) .. " return schematic"
|
2024-07-23 01:09:17 +02:00
|
|
|
-- MCLA node names to VL for import
|
2024-07-26 01:13:21 +02:00
|
|
|
if string.find(mts, "new_villages/") then
|
|
|
|
for _, sub in pairs(mcl_villages.mcla_to_vl) do
|
|
|
|
schem_lua = schem_lua:gsub(sub[1], sub[2])
|
|
|
|
end
|
2024-07-23 01:09:17 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
local schematic = loadstring(schem_lua)()
|
2024-07-26 01:13:21 +02:00
|
|
|
return { name = name, size = schematic.size, schem_lua = schem_lua }
|
2024-07-23 01:09:17 +02:00
|
|
|
end
|
|
|
|
|
2024-10-20 21:00:12 +02:00
|
|
|
local all_optional = { "yadjust", "no_ground_turnip", "no_clearance", "rotation_offset" }
|
2024-07-23 01:09:17 +02:00
|
|
|
|
|
|
|
local function set_all_optional(record, data)
|
|
|
|
for _, field in ipairs(all_optional) do
|
2024-09-03 17:16:36 +02:00
|
|
|
if record[field] then data[field] = record[field] end
|
2024-07-23 01:09:17 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local function set_mandatory(record, type)
|
|
|
|
if record['is_mandatory'] then
|
2024-09-03 17:16:36 +02:00
|
|
|
if not mcl_villages.mandatory_buildings[type] then mcl_villages.mandatory_buildings[type] = {} end
|
2024-07-23 01:09:17 +02:00
|
|
|
table.insert(mcl_villages.mandatory_buildings[type], record["name"])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function mcl_villages.register_lamp(record)
|
|
|
|
local data = load_schema(record["name"], record["mts"])
|
|
|
|
set_all_optional(record, data)
|
|
|
|
table.insert(mcl_villages.schematic_lamps, data)
|
|
|
|
set_mandatory(record, 'lamps')
|
|
|
|
end
|
|
|
|
|
|
|
|
function mcl_villages.register_bell(record)
|
|
|
|
local data = load_schema(record["name"], record["mts"])
|
|
|
|
set_all_optional(record, data)
|
|
|
|
table.insert(mcl_villages.schematic_bells, data)
|
|
|
|
set_mandatory(record, 'bells')
|
|
|
|
end
|
|
|
|
|
|
|
|
function mcl_villages.register_well(record)
|
|
|
|
local data = load_schema(record["name"], record["mts"])
|
|
|
|
set_all_optional(record, data)
|
|
|
|
table.insert(mcl_villages.schematic_wells, data)
|
|
|
|
set_mandatory(record, 'wells')
|
|
|
|
end
|
|
|
|
|
|
|
|
local optional_fields = { "min_jobs", "max_jobs", "num_others", "is_mandatory" }
|
|
|
|
|
|
|
|
function mcl_villages.register_building(record)
|
|
|
|
local data = load_schema(record["name"], record["mts"])
|
|
|
|
|
|
|
|
set_all_optional(record, data)
|
|
|
|
for _, field in ipairs(optional_fields) do
|
2024-09-03 17:16:36 +02:00
|
|
|
if record[field] then data[field] = record[field] end
|
2024-07-23 01:09:17 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
local str = data["schem_lua"]
|
|
|
|
local num_beds = select(2, string.gsub(str, '"mcl_beds:bed_[^"]+_bottom"', ""))
|
2024-09-03 17:16:36 +02:00
|
|
|
if num_beds > 0 then data["num_beds"] = num_beds end
|
2024-07-23 01:09:17 +02:00
|
|
|
|
|
|
|
local job_count = job_count(data["schem_lua"])
|
|
|
|
if job_count > 0 then
|
|
|
|
data["num_jobs"] = job_count
|
|
|
|
table.insert(mcl_villages.schematic_jobs, data)
|
|
|
|
set_mandatory(record, 'jobs')
|
|
|
|
else
|
|
|
|
table.insert(mcl_villages.schematic_houses, data)
|
|
|
|
set_mandatory(record, 'houses')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local crop_list = {}
|
2024-09-03 17:16:36 +02:00
|
|
|
function mcl_villages.register_crop(crop_def)
|
|
|
|
local crops = crop_list[crop_def.type] or {}
|
|
|
|
for biome, weight in pairs(crop_def.biomes) do
|
|
|
|
if crops[biome] == nil then crops[biome] = {} end
|
|
|
|
crops[biome][crop_def.node] = weight
|
2024-07-23 01:09:17 +02:00
|
|
|
end
|
2024-09-03 17:16:36 +02:00
|
|
|
crop_list[crop_def.type] = crops
|
2024-07-23 01:09:17 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function mcl_villages.get_crop_types()
|
2024-09-03 17:16:36 +02:00
|
|
|
local ret = {}
|
|
|
|
for k, _ in pairs(crop_list) do
|
|
|
|
table.insert(ret, k)
|
|
|
|
end
|
|
|
|
return ret
|
2024-07-23 01:09:17 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function mcl_villages.get_weighted_crop(biome, crop_type, pr)
|
2024-09-03 17:16:36 +02:00
|
|
|
local crops = crop_list[crop_type]
|
|
|
|
if not crops then return end -- unknown crop
|
|
|
|
local crops = crops[biome] or crops["plains"]
|
2024-07-23 01:09:17 +02:00
|
|
|
|
2024-09-03 17:16:36 +02:00
|
|
|
local total = 0
|
|
|
|
for _, weight in pairs(crops) do total = total + weight end
|
2024-07-23 01:09:17 +02:00
|
|
|
|
2024-09-03 17:16:36 +02:00
|
|
|
local rand = pr:next(0, 1e7) * 1e-7 * total
|
|
|
|
for node, weight in pairs(crops) do
|
2024-07-23 01:09:17 +02:00
|
|
|
if rand <= weight then
|
|
|
|
return node
|
|
|
|
end
|
2024-09-03 17:16:36 +02:00
|
|
|
rand = rand - weight
|
2024-07-23 01:09:17 +02:00
|
|
|
end
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
function mcl_villages.register_on_village_placed(func)
|
|
|
|
table.insert(mcl_villages.on_village_placed, func)
|
|
|
|
end
|
|
|
|
|
|
|
|
function mcl_villages.register_on_villager_spawned(func)
|
|
|
|
table.insert(mcl_villages.on_villager_placed, func)
|
|
|
|
end
|
2024-09-03 17:16:36 +02:00
|
|
|
|