Mineclonia/mods/MAPGEN/mcl_structures/init.lua

278 lines
9.8 KiB
Lua
Raw Normal View History

local init = os.clock()
2017-05-19 13:13:31 +00:00
mcl_structures ={}
2017-05-19 13:13:31 +00:00
mcl_structures.get_struct = function(file)
local localfile = minetest.get_modpath("mcl_structures").."/build/"..file
local file, errorload = io.open(localfile, "rb")
if errorload ~= nil then
2017-05-19 13:13:31 +00:00
minetest.log("error", '[mcl_structures] Could not open this struct: ' .. localfile)
return nil
end
local allnode = file:read("*a")
file:close()
return allnode
end
2015-07-04 02:56:02 +00:00
-- World edit function
2017-05-19 13:13:31 +00:00
mcl_structures.valueversion_WE = function(value)
2015-07-04 02:56:02 +00:00
if value:find("([+-]?%d+)%s+([+-]?%d+)%s+([+-]?%d+)") and not value:find("%{") then --previous list format
return 3
elseif value:find("^[^\"']+%{%d+%}") then
if value:find("%[\"meta\"%]") then --previous meta flat table format
return 2
end
return 1 --original flat table format
elseif value:find("%{") then --current nested table format
return 4
end
return 0 --unknown format
end
2017-05-19 13:13:31 +00:00
mcl_structures.allocate_WE = function(originpos, value)
2015-07-04 02:56:02 +00:00
local huge = math.huge
local pos1x, pos1y, pos1z = huge, huge, huge
local pos2x, pos2y, pos2z = -huge, -huge, -huge
local originx, originy, originz = originpos.x, originpos.y, originpos.z
local count = 0
2017-05-19 13:13:31 +00:00
local version = mcl_structures.valueversion_WE (value)
if version == 4 then --current nested table format
2015-07-04 02:56:02 +00:00
--wip: this is a filthy hack that works surprisingly well
value = value:gsub("return%s*{", "", 1):gsub("}%s*$", "", 1)
local escaped = value:gsub("\\\\", "@@"):gsub("\\\"", "@@"):gsub("(\"[^\"]*\")", function(s) return string.rep("@", #s) end)
local startpos, startpos1, endpos = 1, 1
local nodes = {}
while true do
startpos, endpos = escaped:find("},%s*{", startpos)
if not startpos then
break
end
local current = value:sub(startpos1, startpos)
table.insert(nodes, minetest.deserialize("return " .. current))
startpos, startpos1 = endpos, endpos
end
table.insert(nodes, minetest.deserialize("return " .. value:sub(startpos1)))
--local nodes = minetest.deserialize(value) --wip: this is broken for larger tables in the current version of LuaJIT
count = #nodes
for index = 1, count do
local entry = nodes[index]
local x, y, z = originx + entry.x, originy + entry.y, originz + entry.z
if x < pos1x then pos1x = x end
if y < pos1y then pos1y = y end
if z < pos1z then pos1z = z end
if x > pos2x then pos2x = x end
if y > pos2y then pos2y = y end
if z > pos2z then pos2z = z end
end
else
minetest.log("error", "[mcl_structures] Unsupported WorldEdit file format ("..version..")")
return
2015-07-04 02:56:02 +00:00
end
local pos1 = {x=pos1x, y=pos1y, z=pos1z}
local pos2 = {x=pos2x, y=pos2y, z=pos2z}
return pos1, pos2, count
end
2017-05-19 17:26:59 +00:00
--[[
Deserialize WorldEdit string and set the nodes in the world.
Returns: count, chests
* count: Number of nodes set
* chests: Table of chest positions (use these to spawn treasures
]]
2017-05-19 13:13:31 +00:00
mcl_structures.deserialise_WE = function(originpos, value)
2015-07-04 02:56:02 +00:00
--make area stay loaded
2017-05-19 13:13:31 +00:00
local pos1, pos2 = mcl_structures.allocate_WE(originpos, value)
2017-05-19 17:26:59 +00:00
local count = 0
local chests = {} -- Remember positions of all chests
if not pos1 then
2017-05-19 17:26:59 +00:00
return count, chests
end
2015-07-04 02:56:02 +00:00
local manip = minetest.get_voxel_manip()
manip:read_from_map(pos1, pos2)
local originx, originy, originz = originpos.x, originpos.y, originpos.z
local add_node, get_meta = minetest.add_node, minetest.get_meta
2017-05-19 13:13:31 +00:00
local version = mcl_structures.valueversion_WE(value)
if version == 4 then --current nested table format
2015-07-04 02:56:02 +00:00
--wip: this is a filthy hack that works surprisingly well
value = value:gsub("return%s*{", "", 1):gsub("}%s*$", "", 1)
local escaped = value:gsub("\\\\", "@@"):gsub("\\\"", "@@"):gsub("(\"[^\"]*\")", function(s) return string.rep("@", #s) end)
local startpos, startpos1, endpos = 1, 1
local nodes = {}
while true do
startpos, endpos = escaped:find("},%s*{", startpos)
if not startpos then
break
end
local current = value:sub(startpos1, startpos)
table.insert(nodes, minetest.deserialize("return " .. current))
startpos, startpos1 = endpos, endpos
end
table.insert(nodes, minetest.deserialize("return " .. value:sub(startpos1)))
--local nodes = minetest.deserialize(value) --wip: this is broken for larger tables in the current version of LuaJIT
2017-05-19 17:26:59 +00:00
--load the nodes and remember chests
2015-07-04 02:56:02 +00:00
count = #nodes
for index = 1, count do
local entry = nodes[index]
entry.x, entry.y, entry.z = originx + entry.x, originy + entry.y, originz + entry.z
add_node(entry, entry) --entry acts both as position and as node
2017-05-19 17:26:59 +00:00
if entry.name == "mcl_chests:chest" then
table.insert(chests, {x=entry.x, y=entry.y, z=entry.z})
end
2015-07-04 02:56:02 +00:00
end
--load the metadata
for index = 1, count do
local entry = nodes[index]
get_meta(entry):from_table(entry.meta)
end
end
2017-05-19 17:26:59 +00:00
return count, chests
2015-07-04 02:56:02 +00:00
end
-- End of world edit deserialise part
-- The call of Struct
2017-05-19 13:13:31 +00:00
mcl_structures.call_struct= function(pos, struct_style)
2017-05-20 04:47:42 +00:00
if struct_style == "village" then
mcl_structures.geerate_village(pos)
elseif struct_style == "desert_temple" then
mcl_structures.generate_desert_temple(pos)
elseif struct_style == "desert_well" then
mcl_structures.generate_desert_well(pos)
2017-05-20 05:46:57 +00:00
elseif struct_style == "igloo" then
mcl_structures.generate_igloo_top(pos)
2017-05-20 04:47:42 +00:00
end
2015-07-04 02:56:02 +00:00
end
2017-05-19 13:13:31 +00:00
mcl_structures.generate_village = function(pos)
2015-07-04 02:56:02 +00:00
-- No Generating for the moment only place it :D
2017-05-19 13:13:31 +00:00
local city = mcl_structures.get_struct("pnj_town_1.we")
2015-07-04 02:56:02 +00:00
local newpos = {x=pos.x,y=pos.y,z=pos.z}
if newpos == nil then
return
end
2017-05-19 13:13:31 +00:00
mcl_structures.deserialise_WE(newpos, city )
2015-07-04 02:56:02 +00:00
end
mcl_structures.generate_desert_well = function(pos)
local newpos = {x=pos.x,y=pos.y-2,z=pos.z}
local path = minetest.get_modpath("mcl_structures").."/build/desert_well.mts"
minetest.place_schematic(newpos, path, "0", nil, true)
end
2017-05-20 05:46:57 +00:00
mcl_structures.generate_igloo_top = function(pos)
-- FIXME: This spawns bookshelf instead of furnace. Fix this!
-- Furnace does ot work atm because apparently meta is not set. :-(
2017-05-20 05:59:10 +00:00
local newpos = {x=pos.x,y=pos.y-1,z=pos.z}
2017-05-20 05:46:57 +00:00
local path = minetest.get_modpath("mcl_structures").."/build/igloo_top.mts"
minetest.place_schematic(newpos, path, "random", nil, true)
end
2017-05-19 13:13:31 +00:00
mcl_structures.generate_desert_temple = function(pos)
2015-07-04 02:56:02 +00:00
-- No Generating for the temple ... Why using it ? No Change
2017-05-19 13:13:31 +00:00
local temple = mcl_structures.get_struct("desert_temple.we")
2015-07-04 02:56:02 +00:00
local newpos = {x=pos.x,y=pos.y-12,z=pos.z}
if newpos == nil then
return
end
2017-05-19 17:26:59 +00:00
local count, chests = mcl_structures.deserialise_WE(newpos, temple)
-- Add desert temple loot into chests
for c=1, #chests do
-- FIXME: Use better seeding
local pr = PseudoRandom(math.random(0, 4294967295))
local lootitems = mcl_loot.get_multi_loot({
{
stacks_min = 2,
stacks_max = 4,
items = {
{ itemstring = "mcl_mobitems:bone", weight = 25, amount_min = 4, amount_max=6 },
{ itemstring = "mcl_mobitems:rotten_flesh", weight = 25, amount_min = 3, amount_max=7 },
{ itemstring = "mcl_mobitems:spider_eye", weight = 25, amount_min = 1, amount_max=3 },
-- TODO: Enchanted Book
{ itemstring = "mcl_books:book", weight = 20, },
{ itemstring = "mcl_mobitems:saddle", weight = 20, },
{ itemstring = "mcl_core:apple_gold", weight = 20, },
{ itemstring = "mcl_core:gold_ingot", weight = 15, amount_min = 2, amount_max = 7 },
{ itemstring = "mcl_core:iron_ingot", weight = 15, amount_min = 1, amount_max = 5 },
{ itemstring = "mcl_core:emerald", weight = 15, amount_min = 1, amount_max = 3 },
{ itemstring = "", weight = 15, },
-- TODO: Iron Horse Armor
{ itemstring = "mcl_core:iron_ingot", weight = 15, },
-- TODO: Golden Horse Armor
{ itemstring = "mcl_core:gold_ingot", weight = 10, },
-- TODO: Diamond Horse Armor
{ itemstring = "mcl_core:diamond", weight = 5, },
{ itemstring = "mcl_core:diamond", weight = 5, amount_min = 1, amount_max = 3 },
-- TODO: Enchanted Golden Apple
{ itemstring = "mcl_core:apple_gold", weight = 2, },
}
},
{
stacks_min = 4,
stacks_max = 4,
items = {
{ itemstring = "mcl_mobitems:bone", weight = 10, amount_min = 1, amount_max = 8 },
{ itemstring = "mcl_mobitems:rotten_flesh", weight = 10, amount_min = 1, amount_max = 8 },
{ itemstring = "mcl_mobitems:gunpowder", weight = 10, amount_min = 1, amount_max = 8 },
{ itemstring = "mcl_core:sand", weight = 10, amount_min = 1, amount_max = 8 },
{ itemstring = "mcl_mobitems:string", weight = 10, amount_min = 1, amount_max = 8 },
}
}}, pr)
local meta = minetest.get_meta(chests[c])
local inv = meta:get_inventory()
for i=1, #lootitems do
inv:add_item("main", lootitems[i])
end
end
2015-07-04 02:56:02 +00:00
end
-- Debug command
minetest.register_chatcommand("spawnstruct", {
2017-05-20 05:46:57 +00:00
params = "desert_temple | desert_well | igloo | village",
description = "Generate a pre-defined structure near your position.",
privs = {debug = true},
2015-07-04 02:56:02 +00:00
func = function(name, param)
local pos= minetest.get_player_by_name(name):getpos()
if not pos then
return
end
local errord = false
2017-05-19 13:06:21 +00:00
if param == "village" then
2017-05-19 13:13:31 +00:00
mcl_structures.generate_village(pos)
2017-05-19 13:06:21 +00:00
minetest.chat_send_player(name, "Village created.")
elseif param == "desert_temple" then
2017-05-19 13:13:31 +00:00
mcl_structures.generate_desert_temple(pos)
2017-05-19 13:06:21 +00:00
minetest.chat_send_player(name, "Desert temple created.")
elseif param == "desert_well" then
mcl_structures.generate_desert_well(pos)
minetest.chat_send_player(name, "Desert well created.")
2017-05-20 05:46:57 +00:00
elseif param == "igloo" then
mcl_structures.generate_igloo_top(pos)
minetest.chat_send_player(name, "Igloo created.")
elseif param == "" then
minetest.chat_send_player(name, "Error: No structure type given. Please use “/spawnstruct <type>”.")
errord = true
else
minetest.chat_send_player(name, "Error: Unknown structure type. Please use “/spawnstruct <type>”.")
errord = true
end
if errord then
2017-05-20 05:46:57 +00:00
minetest.chat_send_player(name, "Avaiable types: desert_temple, desert_well, igloo, village")
2015-07-04 02:56:02 +00:00
end
end
})
local time_to_load= os.clock() - init
print(string.format("[MOD] "..minetest.get_current_modname().." loaded in %.4f s", time_to_load))