2021-05-29 16:12:33 +02:00
local S = minetest.get_translator ( minetest.get_current_modname ( ) )
2019-03-08 00:00:09 +01:00
2017-01-31 12:35:59 +01:00
minetest.register_node ( " mcl_farming:soil " , {
2019-02-07 20:06:02 +01:00
tiles = { " mcl_farming_farmland_dry.png " , " default_dirt.png " } ,
2019-03-08 00:00:09 +01:00
description = S ( " Farmland " ) ,
2020-03-12 01:35:11 +01:00
_tt_help = S ( " Surface for crops " ) .. " \n " .. S ( " Can become wet " ) ,
2019-03-08 00:00:09 +01:00
_doc_items_longdesc = S ( " Farmland is used for farming, a necessary surface to plant crops. It is created when a hoe is used on dirt or a similar block. Plants are able to grow on farmland, but slowly. Farmland will become hydrated farmland (on which plants grow faster) when it rains or a water source is nearby. This block will turn back to dirt when a solid block appears above it or a piston arm extends above it. " ) ,
2017-01-31 23:32:56 +01:00
drop = " mcl_core:dirt " ,
2015-06-29 19:55:56 +02:00
drawtype = " nodebox " ,
paramtype = " light " ,
node_box = {
type = " fixed " ,
fixed = {
2017-01-08 03:12:36 +01:00
-- 15/16 of the normal height
{ - 0.5 , - 0.5 , - 0.5 , 0.5 , 0.4375 , 0.5 } ,
2015-06-29 19:55:56 +02:00
}
} ,
2017-11-23 00:32:51 +01:00
groups = { handy = 1 , shovely = 1 , dirtifies_below_solid = 1 , dirtifier = 1 , soil = 2 , soil_sapling = 1 , deco_block = 1 } ,
2017-02-11 18:46:23 +01:00
sounds = mcl_sounds.node_sound_dirt_defaults ( ) ,
2022-06-12 11:30:39 +02:00
_mcl_blast_resistance = 0.6 ,
2017-03-20 19:53:14 +01:00
_mcl_hardness = 0.6 ,
2015-06-29 19:55:56 +02:00
} )
2017-01-31 12:35:59 +01:00
minetest.register_node ( " mcl_farming:soil_wet " , {
2019-02-07 20:06:02 +01:00
tiles = { " mcl_farming_farmland_wet.png " , " default_dirt.png " } ,
2019-03-08 00:00:09 +01:00
description = S ( " Hydrated Farmland " ) ,
2019-03-15 03:41:24 +01:00
_doc_items_longdesc = S ( " Hydrated farmland is used in farming, this is where you can plant and grow some plants. It is created when farmland is under rain or near water. Without water, this block will dry out eventually. This block will turn back to dirt when a solid block appears above it or a piston arm extends above it. " ) ,
2017-01-31 23:32:56 +01:00
drop = " mcl_core:dirt " ,
2015-06-29 19:55:56 +02:00
drawtype = " nodebox " ,
paramtype = " light " ,
node_box = {
type = " fixed " ,
fixed = {
2017-01-08 03:12:36 +01:00
{ - 0.5 , - 0.5 , - 0.5 , 0.5 , 0.4375 , 0.5 } ,
2015-06-29 19:55:56 +02:00
}
} ,
2017-11-23 00:32:51 +01:00
groups = { handy = 1 , shovely = 1 , not_in_creative_inventory = 1 , dirtifies_below_solid = 1 , dirtifier = 1 , soil = 3 , soil_sapling = 1 } ,
2017-02-11 18:46:23 +01:00
sounds = mcl_sounds.node_sound_dirt_defaults ( ) ,
2023-09-19 23:26:32 +02:00
_mcl_blast_resistance = 0.6 ,
2017-03-20 19:53:14 +01:00
_mcl_hardness = 0.6 ,
2015-06-29 19:55:56 +02:00
} )
minetest.register_abm ( {
2017-05-14 21:08:02 +02:00
label = " Farmland hydration " ,
nodenames = { " mcl_farming:soil " , " mcl_farming:soil_wet " } ,
2024-10-13 21:42:42 +02:00
interval = 2.73 ,
chance = 25 ,
2015-06-29 19:55:56 +02:00
action = function ( pos , node )
2017-05-14 21:47:45 +02:00
-- Turn back into dirt when covered by solid node
2024-10-13 21:42:42 +02:00
local above_node = minetest.get_node_or_nil ( vector.offset ( pos , 0 , 1 , 0 ) )
if above_node and minetest.get_item_group ( above_node.name , " solid " ) ~= 0 then
node.name = " mcl_core:dirt "
minetest.set_node ( pos , node ) -- also removes "wet" metadata
return
2017-05-14 21:47:45 +02:00
end
2024-10-13 21:42:42 +02:00
local raining = mcl_weather and mcl_weather.rain . raining and mcl_weather.is_outdoor ( pos )
local has_water , fully_loaded = false , true
if not raining then
-- Check an area of 9× 2× 9 around the node for nodename (9× 9 on same level and 9× 9 above)
-- include "ignore" to detect unloaded blocks
local nodes , counts = minetest.find_nodes_in_area ( vector.offset ( pos , - 4 , 0 , - 4 ) , vector.offset ( pos , 4 , 1 , 4 ) , { " group:water " , " ignore " } )
local ignore = counts.ignore or 0
has_water , fully_loaded = # nodes - ignore > 0 , ignore == 0
2017-05-14 21:08:02 +02:00
end
2024-10-13 21:42:42 +02:00
local meta = minetest.get_meta ( pos )
local wet = meta : get_int ( " wet " ) or ( node.name == " mcl_farming:soil " and 0 or 7 )
-- Hydrate by rain or water
if raining or has_water then
if node.name == " mcl_farming:soil " then
2017-05-14 21:08:02 +02:00
node.name = " mcl_farming:soil_wet "
2024-10-13 21:42:42 +02:00
minetest.set_node ( pos , node ) -- resets wetness
meta : set_int ( " wet " , 7 )
2024-11-02 21:05:57 +01:00
meta : mark_as_private ( " wet " )
2024-10-13 21:42:42 +02:00
elseif wet < 7 then
meta : set_int ( " wet " , 7 )
2017-05-14 21:08:02 +02:00
end
2024-10-13 21:42:42 +02:00
return
end
-- No decay near unloaded areas (ignore) since these might include water.
if not fully_loaded then return end
2017-05-14 21:08:02 +02:00
2024-10-13 21:42:42 +02:00
-- Decay: make farmland dry or turn back to dirt
if wet > 1 then
if node.name == " mcl_farming:soil_wet " then -- change visual appearance to dry
node.name = " mcl_farming:soil "
minetest.set_node ( pos , node )
2024-11-02 21:05:57 +01:00
meta : set_int ( " wet " , wet - 1 )
meta : mark_as_private ( " wet " ) -- after set_int
else
meta : set_int ( " wet " , wet - 1 )
2017-05-14 21:08:02 +02:00
end
2024-10-13 21:42:42 +02:00
return
end
-- Revert to dirt if wetness is 0, and no plant above
local nn = minetest.get_node_or_nil ( vector.offset ( pos , 0 , 1 , 0 ) )
2024-10-15 10:18:22 +02:00
local nn_def = nn and minetest.registered_nodes [ nn.name ]
if nn_def and ( nn_def.groups . plant or 0 ) > 0 then return end
2024-10-13 21:42:42 +02:00
node.name = " mcl_core:dirt "
minetest.set_node ( pos , node ) -- also removes "wet" metadata
2015-06-29 19:55:56 +02:00
end ,
} )
2017-05-14 22:44:34 +02:00