1
0
mirror of https://codeberg.org/tenplus1/farming.git synced 2024-09-21 12:10:23 +02:00
farming/init.lua

803 lines
20 KiB
Lua
Raw Normal View History

2014-11-09 20:06:28 +01:00
--[[
2024-08-12 15:21:46 +02:00
Farming Redo Mod by TenPlus1
2015-05-20 11:22:04 +02:00
NEW growing routine by prestidigitator
auto-refill by crabman77
2014-11-09 20:06:28 +01:00
]]
-- Translation support
local S = minetest.get_translator("farming")
2024-08-12 15:21:46 +02:00
-- global
farming = {
mod = "redo",
version = "20240825",
path = minetest.get_modpath("farming"),
2024-08-12 15:21:46 +02:00
select = {type = "fixed", fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}},
select_final = {type = "fixed", fixed = {-0.5, -0.5, -0.5, 0.5, -2.5/16, 0.5}},
registered_plants = {},
min_light = 12,
max_light = 15,
mapgen = minetest.get_mapgen_setting("mg_name"),
use_utensils = minetest.settings:get_bool("farming_use_utensils") ~= false,
mtg = minetest.get_modpath("default"),
mcl = minetest.get_modpath("mcl_core"),
mcl_hardness = 0.01,
translate = S
2015-07-05 11:54:18 +02:00
}
2014-11-09 20:06:28 +01:00
-- determine which sounds to use, default or mcl_sounds
local function sound_helper(snd)
farming[snd] = (farming.mtg and default[snd]) or (farming.mcl and mcl_sounds[snd])
or function() return {} end
end
sound_helper("node_sound_defaults")
sound_helper("node_sound_stone_defaults")
sound_helper("node_sound_dirt_defaults")
sound_helper("node_sound_sand_defaults")
sound_helper("node_sound_gravel_defaults")
sound_helper("node_sound_wood_defaults")
sound_helper("node_sound_leaves_defaults")
sound_helper("node_sound_ice_defaults")
sound_helper("node_sound_metal_defaults")
sound_helper("node_sound_water_defaults")
sound_helper("node_sound_snow_defaults")
sound_helper("node_sound_glass_defaults")
2015-05-20 11:22:04 +02:00
-- check for creative mode or priv
2018-01-04 10:33:24 +01:00
local creative_mode_cache = minetest.settings:get_bool("creative_mode")
function farming.is_creative(name)
return creative_mode_cache or minetest.check_player_privs(name, {creative = true})
end
-- stats, locals, settings, function helper
2018-05-17 10:25:16 +02:00
local statistics = dofile(farming.path .. "/statistics.lua")
2023-09-12 09:48:21 +02:00
local random = math.random
local floor = math.floor
2017-10-09 12:32:00 +02:00
local time_speed = tonumber(minetest.settings:get("time_speed")) or 72
2018-05-17 10:25:16 +02:00
local SECS_PER_CYCLE = (time_speed > 0 and (24 * 60 * 60) / time_speed) or 0
2015-05-20 11:22:04 +02:00
local function clamp(x, min, max)
return (x < min and min) or (x > max and max) or x
end
-- return amount of day or night that has elapsed
-- dt is time elapsed, count_day if true counts day, otherwise night
local function day_or_night_time(dt, count_day)
2015-05-20 11:22:04 +02:00
local t_day = minetest.get_timeofday()
local t1_day = t_day - dt / SECS_PER_CYCLE
2015-05-20 11:22:04 +02:00
local t1_c, t2_c -- t1_c < t2_c and t2_c always in [0, 1)
2015-05-20 11:22:04 +02:00
if count_day then
2015-05-20 11:22:04 +02:00
if t_day < 0.25 then
t1_c = t1_day + 0.75 -- Relative to sunup, yesterday
t2_c = t_day + 0.75
else
t1_c = t1_day - 0.25 -- Relative to sunup, today
t2_c = t_day - 0.25
end
else
if t_day < 0.75 then
t1_c = t1_day + 0.25 -- Relative to sundown, yesterday
t2_c = t_day + 0.25
else
t1_c = t1_day - 0.75 -- Relative to sundown, today
t2_c = t_day - 0.75
end
end
local dt_c = clamp(t2_c, 0, 0.5) - clamp(t1_c, 0, 0.5) -- this cycle
2015-05-20 11:22:04 +02:00
if t1_c < -0.5 then
2023-09-12 09:48:21 +02:00
local nc = floor(-t1_c)
2015-05-20 11:22:04 +02:00
t1_c = t1_c + nc
dt_c = dt_c + 0.5 * nc + clamp(-t1_c - 0.5, 0, 0.5)
end
return dt_c * SECS_PER_CYCLE
end
-- Growth Logic
local STAGE_LENGTH_AVG = tonumber(minetest.settings:get("farming_stage_length")) or 200
local STAGE_LENGTH_DEV = STAGE_LENGTH_AVG / 6
-- quick start seed timer
farming.start_seed_timer = function(pos)
local timer = minetest.get_node_timer(pos)
2023-09-12 09:48:21 +02:00
local grow_time = floor(random(STAGE_LENGTH_DEV, STAGE_LENGTH_AVG))
timer:start(grow_time)
end
-- return plant name and stage from node provided
2015-05-20 11:22:04 +02:00
local function plant_name_stage(node)
2015-05-20 11:22:04 +02:00
local name
if type(node) == "table" then
if node.name then name = node.name
2015-05-20 11:22:04 +02:00
elseif node.x and node.y and node.z then
node = minetest.get_node_or_nil(node)
name = node and node.name
end
else
name = tostring(node)
end
if not name or name == "ignore" then return nil end
2015-05-20 11:22:04 +02:00
local sep_pos = name:find("_[^_]+$")
2015-05-20 11:22:04 +02:00
if sep_pos and sep_pos > 1 then
2015-05-20 11:22:04 +02:00
local stage = tonumber(name:sub(sep_pos + 1))
2015-05-20 11:22:04 +02:00
if stage and stage >= 0 then
return name:sub(1, sep_pos - 1), stage
end
end
return name, 0
end
2016-03-10 18:45:55 +01:00
-- Map from node name to
-- { plant_name = ..., name = ..., stage = n, stages_left = { node_name, ... } }
2015-05-20 11:22:04 +02:00
local plant_stages = {}
2015-05-20 11:22:04 +02:00
farming.plant_stages = plant_stages
--- Registers the stages of growth of a (possible plant) node.
-- @param node - Node or position table, or node name.
-- @return - The (possibly zero) number of stages of growth the plant will go through
-- before being fully grown, or nil if not a plant.
2015-05-20 11:22:04 +02:00
-- Recursive helper
2015-05-20 11:22:04 +02:00
local function reg_plant_stages(plant_name, stage, force_last)
2015-05-20 11:22:04 +02:00
local node_name = plant_name and plant_name .. "_" .. stage
local node_def = node_name and minetest.registered_nodes[node_name]
if not node_def then return nil end
2015-05-20 11:22:04 +02:00
local stages = plant_stages[node_name]
if stages then return stages end
2015-05-20 11:22:04 +02:00
if minetest.get_item_group(node_name, "growing") > 0 then
local ns = reg_plant_stages(plant_name, stage + 1, true)
2015-05-20 11:22:04 +02:00
local stages_left = (ns and { ns.name, unpack(ns.stages_left) }) or {}
2015-07-05 11:54:18 +02:00
stages = {
plant_name = plant_name,
name = node_name,
stage = stage,
stages_left = stages_left
}
2015-05-20 11:22:04 +02:00
if #stages_left > 0 then
2015-05-20 11:22:04 +02:00
local old_constr = node_def.on_construct
local old_destr = node_def.on_destruct
minetest.override_item(node_name, {
2016-03-10 18:45:55 +01:00
on_construct = function(pos)
2016-03-10 18:45:55 +01:00
if old_constr then old_constr(pos) end
2015-05-20 11:22:04 +02:00
farming.handle_growth(pos)
end,
2016-03-10 18:45:55 +01:00
on_destruct = function(pos)
2016-03-10 18:45:55 +01:00
minetest.get_node_timer(pos):stop()
2015-05-20 11:22:04 +02:00
if old_destr then old_destr(pos) end
end,
on_timer = function(pos, elapsed)
return farming.plant_growth_timer(pos, elapsed, node_name)
end,
})
2015-05-20 11:22:04 +02:00
end
2015-05-20 11:22:04 +02:00
elseif force_last then
2015-07-05 11:54:18 +02:00
stages = {
plant_name = plant_name,
name = node_name,
stage = stage,
stages_left = {}
}
2015-05-20 11:22:04 +02:00
else
return nil
end
plant_stages[node_name] = stages
2015-05-20 11:22:04 +02:00
return stages
end
2018-03-22 16:57:36 +01:00
local register_plant_node = function(node)
2015-05-20 11:22:04 +02:00
local plant_name, stage = plant_name_stage(node)
2015-05-20 11:22:04 +02:00
if plant_name then
2016-03-10 18:45:55 +01:00
2015-05-20 11:22:04 +02:00
local stages = reg_plant_stages(plant_name, stage, false)
2024-08-12 15:21:46 +02:00
2015-05-20 11:22:04 +02:00
return stages and #stages.stages_left
end
end
2015-05-20 11:22:04 +02:00
local function set_growing(pos, stages_left)
if not stages_left then return end
2015-05-20 11:22:04 +02:00
local timer = minetest.get_node_timer(pos)
2015-05-20 11:22:04 +02:00
if stages_left > 0 then
2015-05-20 11:22:04 +02:00
if not timer:is_started() then
2015-05-20 11:22:04 +02:00
local stage_length = statistics.normal(STAGE_LENGTH_AVG, STAGE_LENGTH_DEV)
2015-05-20 11:22:04 +02:00
stage_length = clamp(stage_length, 0.5 * STAGE_LENGTH_AVG, 3.0 * STAGE_LENGTH_AVG)
2023-09-12 09:48:21 +02:00
timer:set(stage_length, -0.5 * random() * STAGE_LENGTH_AVG)
2015-05-20 11:22:04 +02:00
end
2015-05-20 11:22:04 +02:00
elseif timer:is_started() then
timer:stop()
end
end
-- detects a crop at given position, starting or stopping growth timer when needed
2015-05-20 11:22:04 +02:00
function farming.handle_growth(pos, node)
if not pos then return end
2015-05-20 11:22:04 +02:00
local stages_left = register_plant_node(node or pos)
if stages_left then set_growing(pos, stages_left) end
2015-05-20 11:22:04 +02:00
end
-- Just in case a growing type or added node is missed (also catches existing
-- nodes added to map before timers were incorporated).
2016-03-10 18:45:55 +01:00
minetest.register_abm({
2023-01-22 11:31:16 +01:00
label = "Start crop timer",
nodenames = {"group:growing"},
interval = 300,
chance = 1,
2018-05-19 16:39:49 +02:00
catch_up = false,
2018-05-19 16:39:49 +02:00
action = function(pos, node)
2023-09-12 09:48:21 +02:00
-- skip if node timer already active
if minetest.get_node_timer(pos):is_started() then return end
2023-09-12 09:48:21 +02:00
-- check if group:growing node is a seed
local def = minetest.registered_nodes[node.name]
if def and def.groups and def.groups.seed then
2024-08-12 15:21:46 +02:00
if def.on_timer then -- start node timer if found
2023-09-12 09:48:21 +02:00
farming.start_seed_timer(pos)
2023-09-12 09:48:21 +02:00
return
end
2023-09-12 09:48:21 +02:00
local next_stage = def.next_plant
2023-09-12 09:48:21 +02:00
def = minetest.registered_nodes[next_stage]
2024-08-12 15:21:46 +02:00
if def then -- switch seed without timer to stage_1 of crop
local p2 = def.place_param2 or 1
minetest.set_node(pos, {name = next_stage, param2 = p2})
end
else
2024-08-12 15:21:46 +02:00
farming.handle_growth(pos, node) -- start normal crop timer
end
2018-05-19 16:39:49 +02:00
end
})
2015-05-20 11:22:04 +02:00
2024-08-12 15:21:46 +02:00
-- default check crop is on wet soil
farming.can_grow = function(pos)
2024-08-12 15:21:46 +02:00
local below = minetest.get_node({x = pos.x, y = pos.y -1, z = pos.z})
2024-08-12 15:21:46 +02:00
return minetest.get_item_group(below.name, "soil") >= 3
end
-- Plant timer function that grows plants under the right conditions.
2015-05-20 11:22:04 +02:00
function farming.plant_growth_timer(pos, elapsed, node_name)
2015-05-20 11:22:04 +02:00
local stages = plant_stages[node_name]
if not stages then return false end
2015-05-20 11:22:04 +02:00
local max_growth = #stages.stages_left
if max_growth <= 0 then return false end
2015-05-20 11:22:04 +02:00
local chk1 = minetest.registered_nodes[node_name].growth_check -- old
local chk2 = minetest.registered_nodes[node_name].can_grow -- new
2024-08-12 15:21:46 +02:00
if chk1 then -- custom farming redo growth_check function
if not chk1(pos, node_name) then return true end
2024-08-12 15:21:46 +02:00
elseif chk2 then -- custom mt 5.9x farming can_grow function
if not chk2(pos) then return true end
-- default mt 5.9x farming.can_grow function
elseif not farming.can_grow(pos) then return true end
2015-05-20 11:22:04 +02:00
local growth
local light_pos = {x = pos.x, y = pos.y, z = pos.z}
2015-05-20 11:22:04 +02:00
local lambda = elapsed / STAGE_LENGTH_AVG
if lambda < 0.1 then return true end
local MIN_LIGHT = minetest.registered_nodes[node_name].minlight or farming.min_light
local MAX_LIGHT = minetest.registered_nodes[node_name].maxlight or farming.max_light
2015-05-20 11:22:04 +02:00
if max_growth == 1 or lambda < 2.0 then
2016-03-10 18:45:55 +01:00
local light = (minetest.get_node_light(light_pos) or 0)
if light < MIN_LIGHT or light > MAX_LIGHT then return true end
2015-05-20 11:22:04 +02:00
growth = 1
else
local night_light = (minetest.get_node_light(light_pos, 0) or 0)
local day_light = (minetest.get_node_light(light_pos, 0.5) or 0)
local night_growth = night_light >= MIN_LIGHT and night_light <= MAX_LIGHT
local day_growth = day_light >= MIN_LIGHT and day_light <= MAX_LIGHT
2015-05-20 11:22:04 +02:00
if not night_growth then
2016-03-10 18:45:55 +01:00
if not day_growth then return true end
2016-03-10 18:45:55 +01:00
lambda = day_or_night_time(elapsed, true) / STAGE_LENGTH_AVG
2016-03-10 18:45:55 +01:00
2015-05-20 11:22:04 +02:00
elseif not day_growth then
2016-03-10 18:45:55 +01:00
lambda = day_or_night_time(elapsed, false) / STAGE_LENGTH_AVG
2015-05-20 11:22:04 +02:00
end
growth = statistics.poisson(lambda, max_growth)
if growth < 1 then return true end
2015-05-20 11:22:04 +02:00
end
if minetest.registered_nodes[stages.stages_left[growth]] then
2023-09-07 08:57:20 +02:00
local p2 = minetest.registered_nodes[stages.stages_left[growth] ].place_param2 or 1
minetest.set_node(pos, {name = stages.stages_left[growth], param2 = p2})
else
return true
end
2015-05-20 11:22:04 +02:00
return growth ~= max_growth
end
-- refill placed plant by crabman (26/08/2015) updated by TenPlus1
function farming.refill_plant(player, plantname, index)
2024-08-12 15:21:46 +02:00
local inv = player and player:get_inventory() ; if not inv then return end
local old_stack = inv:get_stack("main", index)
if old_stack:get_name() ~= "" then return end
for i, stack in ipairs(inv:get_list("main")) do
if stack:get_name() == plantname and i ~= index then
inv:set_stack("main", index, stack)
stack:clear()
inv:set_stack("main", i, stack)
return
end
end
2016-03-10 18:45:55 +01:00
end
-- Place Seeds on Soil
2014-11-09 20:06:28 +01:00
function farming.place_seed(itemstack, placer, pointed_thing, plantname)
2014-11-09 20:06:28 +01:00
local pt = pointed_thing
-- check if pointing at a node
if not itemstack or not pt or pt.type ~= "node" then return end
2014-11-09 20:06:28 +01:00
local under = minetest.get_node(pt.under)
-- am I right-clicking on something that has a custom on_place set?
-- thanks to Krock for helping with this issue :)
local def = minetest.registered_nodes[under.name]
if placer and itemstack and def and def.on_rightclick then
return def.on_rightclick(pt.under, under, placer, itemstack, pt)
end
2014-11-09 20:06:28 +01:00
local above = minetest.get_node(pt.above)
-- check if pointing at the top of the node
if pt.above.y ~= pt.under.y + 1 then return end
2014-11-09 20:06:28 +01:00
-- return if any of the nodes is not registered
if not minetest.registered_nodes[under.name]
or not minetest.registered_nodes[above.name] then return end
2014-11-09 20:06:28 +01:00
-- can I replace above node, and am I pointing directly at soil
2014-11-09 20:06:28 +01:00
if not minetest.registered_nodes[above.name].buildable_to
2016-04-01 12:02:18 +02:00
or minetest.get_item_group(under.name, "soil") < 2
or minetest.get_item_group(above.name, "plant") ~= 0 then return end
2014-11-09 20:06:28 +01:00
2018-06-19 19:36:00 +02:00
-- is player planting seed?
2018-06-19 19:42:13 +02:00
local name = placer and placer:get_player_name() or ""
2018-06-19 19:36:00 +02:00
2015-08-26 16:05:17 +02:00
-- if not protected then add node and remove 1 item from the itemstack
2018-06-19 19:36:00 +02:00
if not minetest.is_protected(pt.above, name) then
local p2 = minetest.registered_nodes[plantname].place_param2 or 1
minetest.set_node(pt.above, {name = plantname, param2 = p2})
farming.start_seed_timer(pt.above)
2018-05-19 16:39:49 +02:00
2016-04-02 14:42:14 +02:00
minetest.sound_play("default_place_node", {pos = pt.above, gain = 1.0})
2016-04-01 12:02:18 +02:00
if placer and itemstack
and not farming.is_creative(placer:get_player_name()) then
local name = itemstack:get_name()
itemstack:take_item()
-- check for refill
if itemstack:get_count() == 0 then
minetest.after(0.2, farming.refill_plant,
placer, name, placer:get_wield_index())
end
end
return itemstack
2014-11-09 20:06:28 +01:00
end
end
-- Function to register plants (default farming compatibility)
2014-11-09 20:06:28 +01:00
farming.register_plant = function(name, def)
if not def.steps then return nil end
2014-11-09 20:06:28 +01:00
local mname = name:split(":")[1]
local pname = name:split(":")[2]
-- Check def
def.description = def.description or S("Seed")
def.inventory_image = def.inventory_image or "unknown_item.png"
def.minlight = def.minlight or 12
2017-09-02 20:34:28 +02:00
def.maxlight = def.maxlight or 15
2014-11-09 20:06:28 +01:00
-- Register seed
minetest.register_node(":" .. mname .. ":seed_" .. pname, {
2014-11-09 20:06:28 +01:00
description = def.description,
tiles = {def.inventory_image},
inventory_image = def.inventory_image,
wield_image = def.inventory_image,
drawtype = "signlike",
2023-09-05 08:51:11 +02:00
groups = {
seed = 1, snappy = 3, attached_node = 1, flammable = 2, growing = 1,
compostability = 65, handy = 1
2023-09-05 08:51:11 +02:00
},
_mcl_hardness = farming.mcl_hardness,
is_ground_content = false,
2014-11-09 20:06:28 +01:00
paramtype = "light",
paramtype2 = "wallmounted",
walkable = false,
sunlight_propagates = true,
2015-07-05 11:54:18 +02:00
selection_box = farming.select,
place_param2 = 1, -- place seed flat
next_plant = mname .. ":" .. pname .. "_1",
on_timer = function(pos, elapsed)
local def = minetest.registered_nodes[mname .. ":" .. pname .. "_1"]
if def then
minetest.swap_node(pos, {name = def.next_plant, param2 = def.place_param2})
end
end,
2014-11-09 20:06:28 +01:00
on_place = function(itemstack, placer, pointed_thing)
return farming.place_seed(itemstack, placer, pointed_thing,
mname .. ":seed_" .. pname)
end
2014-11-09 20:06:28 +01:00
})
-- Register harvest
minetest.register_craftitem(":" .. mname .. ":" .. pname, {
description = pname:gsub("^%l", string.upper),
inventory_image = mname .. "_" .. pname .. ".png",
groups = def.groups or {flammable = 2},
2014-11-09 20:06:28 +01:00
})
-- Register growing steps
2015-08-26 16:05:17 +02:00
for i = 1, def.steps do
local base_rarity = 1
2023-09-01 11:04:33 +02:00
if def.steps ~= 1 then
base_rarity = 8 - (i - 1) * 7 / (def.steps - 1)
end
2023-09-01 11:04:33 +02:00
2014-11-09 20:06:28 +01:00
local drop = {
items = {
{items = {mname .. ":" .. pname}, rarity = base_rarity},
{items = {mname .. ":" .. pname}, rarity = base_rarity * 2},
{items = {mname .. ":seed_" .. pname}, rarity = base_rarity},
{items = {mname .. ":seed_" .. pname}, rarity = base_rarity * 2},
2014-11-09 20:06:28 +01:00
}
}
local sel = farming.select
local g = {
2023-09-01 11:04:33 +02:00
handy = 1, snappy = 3, flammable = 2, plant = 1, growing = 1,
attached_node = 1, not_in_creative_inventory = 1,
}
2014-11-09 20:06:28 +01:00
-- Last step doesn't need growing=1 so Abm never has to check these
-- also increase selection box for visual indication plant has matured
2014-11-09 20:06:28 +01:00
if i == def.steps then
sel = farming.select_final
2016-06-04 16:00:53 +02:00
g.growing = 0
2014-11-09 20:06:28 +01:00
end
2015-05-20 11:22:04 +02:00
local node_name = mname .. ":" .. pname .. "_" .. i
local next_plant = nil
if i < def.steps then
next_plant = mname .. ":" .. pname .. "_" .. (i + 1)
end
2015-05-20 11:22:04 +02:00
minetest.register_node(node_name, {
2014-11-09 20:06:28 +01:00
drawtype = "plantlike",
waving = 1,
tiles = {mname .. "_" .. pname .. "_" .. i .. ".png"},
paramtype = "light",
2018-03-22 16:57:36 +01:00
paramtype2 = def.paramtype2,
place_param2 = def.place_param2,
2014-11-09 20:06:28 +01:00
walkable = false,
buildable_to = true,
2018-05-19 16:39:49 +02:00
sunlight_propagates = true,
2014-11-09 20:06:28 +01:00
drop = drop,
selection_box = sel,
2014-11-09 20:06:28 +01:00
groups = g,
_mcl_hardness = farming.mcl_hardness,
is_ground_content = false,
sounds = farming.node_sound_leaves_defaults(),
minlight = def.minlight,
maxlight = def.maxlight,
2020-07-02 15:31:12 +02:00
next_plant = next_plant
2014-11-09 20:06:28 +01:00
})
end
-- add to farming.registered_plants
farming.registered_plants[mname .. ":" .. pname] = {
crop = mname .. ":" .. pname,
seed = mname .. ":seed_" .. pname,
steps = def.steps,
minlight = def.minlight,
maxlight = def.maxlight
}
-- print(dump(farming.registered_plants[mname .. ":" .. pname]))
return {seed = mname .. ":seed_" .. pname, harvest = mname .. ":" .. pname}
2014-11-09 20:06:28 +01:00
end
2017-04-28 19:40:57 +02:00
-- default settings
farming.asparagus = 0.002
farming.eggplant = 0.002
farming.spinach = 0.002
farming.carrot = 0.001
farming.potato = 0.001
farming.tomato = 0.001
farming.cucumber = 0.001
farming.corn = 0.001
farming.coffee = 0.001
farming.melon = 0.001
farming.pumpkin = 0.001
2017-04-28 19:40:57 +02:00
farming.cocoa = true
farming.raspberry = 0.001
farming.blueberry = 0.001
farming.rhubarb = 0.001
farming.beans = 0.001
farming.grapes = 0.001
2017-04-28 19:40:57 +02:00
farming.barley = true
farming.chili = 0.003
farming.hemp = 0.003
farming.garlic = 0.001
farming.onion = 0.001
farming.pepper = 0.002
farming.pineapple = 0.001
farming.peas = 0.001
farming.beetroot = 0.001
farming.mint = 0.005
farming.cabbage = 0.001
farming.blackberry = 0.002
farming.soy = 0.001
farming.vanilla = 0.001
farming.lettuce = 0.001
2021-03-11 10:49:52 +01:00
farming.artichoke = 0.001
farming.parsley = 0.002
2021-09-28 15:03:49 +02:00
farming.sunflower = 0.001
farming.ginger = 0.002
2024-03-12 07:52:50 +01:00
farming.strawberry = 0.002
farming.grains = true
farming.rice = true
2017-04-28 19:40:57 +02:00
-- Load new global settings if found inside mod folder
2023-09-01 11:04:33 +02:00
local input = io.open(farming.path .. "/farming.conf", "r")
2024-08-12 15:21:46 +02:00
if input then dofile(farming.path .. "/farming.conf") ; input:close() end
2017-04-28 19:40:57 +02:00
-- load new world-specific settings if found inside world folder
2017-04-28 19:40:57 +02:00
local worldpath = minetest.get_worldpath()
2023-09-01 11:04:33 +02:00
input = io.open(worldpath .. "/farming.conf", "r")
2024-08-12 15:21:46 +02:00
if input then dofile(worldpath .. "/farming.conf") ; input:close() end
2017-04-28 19:40:57 +02:00
-- helper function to add {eatable} group to food items, also {flammable}
2024-07-26 17:30:53 +02:00
function farming.add_eatable(item, hp)
local def = minetest.registered_items[item]
if def then
2024-07-27 19:28:25 +02:00
local groups = table.copy(def.groups) or {}
2024-07-26 17:30:53 +02:00
2024-07-27 19:28:25 +02:00
groups.eatable = hp ; groups.flammable = 2
2024-07-26 17:30:53 +02:00
2024-08-04 00:55:08 +02:00
minetest.override_item(item, {groups = groups})
2024-07-26 17:30:53 +02:00
end
end
-- recipe item list and alternatives
2024-08-12 09:02:50 +02:00
dofile(farming.path .. "/item_list.lua")
2017-04-28 19:40:57 +02:00
2024-08-12 15:21:46 +02:00
-- setup soil, register hoes, override grass
2023-12-04 23:31:12 +01:00
if minetest.get_modpath("default") then
2023-09-01 11:04:33 +02:00
dofile(farming.path .. "/soil.lua")
dofile(farming.path .. "/hoes.lua")
end
2023-09-01 11:04:33 +02:00
dofile(farming.path.."/grass.lua")
-- disable crops Mineclone already has
if farming.mcl then
farming.carrot = nil
farming.potato = nil
farming.melon = nil
farming.cocoa = nil
farming.beetroot = nil
farming.sunflower = nil
2023-08-31 10:33:47 +02:00
farming.pumpkin = nil
2024-08-12 15:21:46 +02:00
else
dofile(farming.path.."/crops/wheat.lua") -- default crop outwith mineclone
end
2018-06-09 17:47:38 +02:00
2024-08-12 15:21:46 +02:00
dofile(farming.path.."/crops/cotton.lua") -- default crop
2018-06-09 17:47:38 +02:00
-- helper function
2018-06-09 17:47:38 +02:00
local function ddoo(file, check)
if check then dofile(farming.path .. "/crops/" .. file) end
2018-06-09 17:47:38 +02:00
end
-- add additional crops and food (if enabled)
ddoo("carrot.lua", farming.carrot)
ddoo("potato.lua", farming.potato)
ddoo("tomato.lua", farming.tomato)
ddoo("cucumber.lua", farming.cucumber)
ddoo("corn.lua", farming.corn)
ddoo("coffee.lua", farming.coffee)
ddoo("melon.lua", farming.melon)
ddoo("pumpkin.lua", farming.pumpkin)
ddoo("cocoa.lua", farming.cocoa)
ddoo("raspberry.lua", farming.raspberry)
ddoo("blueberry.lua", farming.blueberry)
ddoo("rhubarb.lua", farming.rhubarb)
ddoo("beans.lua", farming.beans)
ddoo("grapes.lua", farming.grapes)
ddoo("barley.lua", farming.barley)
ddoo("hemp.lua", farming.hemp)
ddoo("garlic.lua", farming.garlic)
ddoo("onion.lua", farming.onion)
ddoo("pepper.lua", farming.pepper)
ddoo("pineapple.lua", farming.pineapple)
ddoo("peas.lua", farming.peas)
ddoo("beetroot.lua", farming.beetroot)
ddoo("chili.lua", farming.chili)
ddoo("rye_oat.lua", farming.grains)
ddoo("rice.lua", farming.rice)
ddoo("mint.lua", farming.mint)
ddoo("cabbage.lua", farming.cabbage)
ddoo("blackberry.lua", farming.blackberry)
ddoo("soy.lua", farming.soy)
ddoo("vanilla.lua", farming.vanilla)
ddoo("lettuce.lua", farming.lettuce)
2021-03-11 10:49:52 +01:00
ddoo("artichoke.lua", farming.artichoke)
ddoo("parsley.lua", farming.parsley)
2021-09-28 15:03:49 +02:00
ddoo("sunflower.lua", farming.sunflower)
ddoo("strawberry.lua", farming.strawberry)
ddoo("asparagus.lua", farming.asparagus)
ddoo("eggplant.lua", farming.eggplant)
ddoo("spinach.lua", farming.eggplant)
ddoo("ginger.lua", farming.ginger)
2018-06-09 17:47:38 +02:00
-- register food items, non-food items, recipes and stairs
2024-08-12 09:02:50 +02:00
dofile(farming.path .. "/item_non_food.lua")
dofile(farming.path .. "/item_food.lua")
dofile(farming.path .. "/item_recipes.lua")
dofile(farming.path .. "/item_stairs.lua")
2023-09-06 11:00:46 +02:00
if not farming.mcl then
dofile(farming.path .. "/compatibility.lua") -- Farming Plus compatibility
end
if minetest.get_modpath("lucky_block") then
dofile(farming.path .. "/lucky_block.lua")
end
print("[MOD] Farming Redo loaded")