dfcaverns/config.lua

66 lines
2.7 KiB
Lua
Raw Normal View History

2017-03-08 07:50:58 +01:00
local CONFIG_FILE_PREFIX = "dfcaverns_"
dfcaverns.config = {}
2017-03-16 20:33:50 +01:00
local print_settingtypes = false
2017-03-08 07:50:58 +01:00
local function setting(stype, name, default, description)
local value
if stype == "bool" then
value = minetest.setting_getbool(CONFIG_FILE_PREFIX..name)
elseif stype == "string" then
value = minetest.setting_get(CONFIG_FILE_PREFIX..name)
elseif stype == "int" or stype == "float" then
value = tonumber(minetest.setting_get(CONFIG_FILE_PREFIX..name))
end
if value == nil then
value = default
end
dfcaverns.config[name] = value
if print_settingtypes then
minetest.debug(CONFIG_FILE_PREFIX..name.." ("..description..") "..stype.." "..tostring(default))
end
end
local trees = {
2017-03-16 20:33:50 +01:00
{name="fungiwood", min_depth=-100, max_depth=-31000, delay_multiplier = 1},
{name="tunnel_tube", min_depth=-100, max_depth=-31000, delay_multiplier = 1},
{name="spore_tree", min_depth=-100, max_depth=-31000, delay_multiplier = 1},
{name="black_cap", min_depth=-100, max_depth=-31000, delay_multiplier = 1},
{name="nether_cap", min_depth=-100, max_depth=-31000, delay_multiplier = 1},
{name="goblin_cap", min_depth=-100, max_depth=-31000, delay_multiplier = 1},
{name="tower_cap", min_depth=-100, max_depth=-31000, delay_multiplier = 1},
2017-03-08 07:50:58 +01:00
}
local plants = {
{name="cave_wheat", delay_multiplier=1},
{name="dimple_cup", delay_multiplier=3},
{name="pig_tail", delay_multiplier=1},
{name="plump_helmet", delay_multiplier=3},
{name="quarry_bush", delay_multiplier=2},
{name="sweet_pod", delay_multiplier=2},
}
2017-03-16 20:33:50 +01:00
setting("int", "tree_min_growth_delay", 2400, "Minimum sapling growth delay")
setting("int", "tree_max_growth_delay", 4800, "Maximum sapling growth delay")
2017-03-08 07:50:58 +01:00
for _, tree in pairs(trees) do
2017-03-16 20:33:50 +01:00
setting("float", tree.name.."_delay_multiplier", tree.delay_multiplier, tree.name.." growth delay multiplier")
2017-03-08 07:50:58 +01:00
setting("int", tree.name.."_min_depth", tree.min_depth, tree.name.." minimum sapling growth depth")
setting("int", tree.name.."_max_depth", tree.max_depth, tree.name.." maximum sapling growth depth")
end
setting("int", "blood_thorn_growth_interval", 12, "blood_thorn growth ABM interval")
setting("int", "blood_thorn_growth_chance", 83, "blood_thorn growth ABM chance")
2017-03-08 07:50:58 +01:00
setting("int", "blood_thorn_min_depth", -100, "blood_thorn minimum sapling growth depth")
setting("int", "blood_thorn_max_depth", -31000, "blood_thorn maximum sapling growth depth")
2017-03-16 09:17:55 +01:00
setting("int", "plant_growth_timer", 100, "Base plant growth timer interval")
setting("int", "plant_growth_chance", 4, "Base plant growth chance")
for _, plant in pairs(plants) do
setting("float", plant.name.."_timer_multiplier", plant.delay_multiplier, plant.name.." growth delay multiplier")
end
2017-03-16 09:17:55 +01:00
setting("bool", "light_kills_fungus", true, "Light kills fungus")