2021-03-28 14:29:29 +02:00
|
|
|
-- TODO: whenever it becomes possible to fully implement kelp without the
|
2021-03-21 05:16:56 +01:00
|
|
|
-- plantlike_rooted limitation, please adapt the code accordingly.
|
2021-03-28 14:29:29 +02:00
|
|
|
--
|
2021-03-21 07:06:54 +01:00
|
|
|
-- TODO: In MC, you can't actually destroy kelp by bucket'ing water in the middle.
|
|
|
|
-- However, because of the plantlike_rooted hack, we'll just allow it for now.
|
2021-03-28 14:29:29 +02:00
|
|
|
--
|
|
|
|
-- TODO: Currently, you lose kelp if the kelp is placed on a block and then falls.
|
|
|
|
-- This is most relevant for (red)sand and gravel.
|
2019-12-17 22:43:35 +01:00
|
|
|
|
2021-03-28 08:11:08 +02:00
|
|
|
local S = minetest.get_translator("mcl_ocean")
|
|
|
|
local mod_doc = minetest.get_modpath("doc") ~= nil
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- local-ify runtime functions
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- objects
|
|
|
|
local registered_items = minetest.registered_items
|
|
|
|
local registered_nodes = minetest.registered_nodes
|
|
|
|
|
|
|
|
-- functions
|
|
|
|
local mt_get_item_group = minetest.get_item_group
|
|
|
|
local mt_get_node = minetest.get_node
|
|
|
|
local mt_set_node = minetest.set_node
|
|
|
|
local mt_add_item = minetest.add_item
|
|
|
|
local mt_sound_play = minetest.sound_play
|
|
|
|
local mt_is_creative_enabled = minetest.is_creative_enabled
|
|
|
|
local mt_is_protected = minetest.is_protected
|
|
|
|
local mt_hash_node_position = minetest.hash_node_position
|
|
|
|
local mt_get_node_timer = minetest.get_node_timer
|
|
|
|
|
|
|
|
-- DEBUG: functions
|
2021-03-28 14:29:29 +02:00
|
|
|
local log = minetest.log
|
2021-03-28 08:11:08 +02:00
|
|
|
local chatlog = minetest.chat_send_all
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- Kelp API
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
kelp = {}
|
2019-12-17 22:43:35 +01:00
|
|
|
|
2021-03-20 10:47:04 +01:00
|
|
|
-- Is this water?
|
2021-03-28 08:11:08 +02:00
|
|
|
-- Returns the liquidtype, if indeed water.
|
2021-03-20 10:47:04 +01:00
|
|
|
local function is_submerged(node, nodedef)
|
2021-03-28 08:11:08 +02:00
|
|
|
if mt_get_item_group(node.name, "water") ~= 0 then
|
2021-03-21 05:16:56 +01:00
|
|
|
return nodedef.liquidtype -- Expected only "source" and "flowing" from water liquids
|
2021-03-20 10:47:04 +01:00
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
2021-03-28 08:11:08 +02:00
|
|
|
kelp.is_submerged = is_submerged
|
|
|
|
|
2021-03-20 10:47:04 +01:00
|
|
|
|
|
|
|
-- Is the water downward flowing?
|
2021-03-21 05:16:56 +01:00
|
|
|
-- (kelp can grow/be placed inside downward flowing water)
|
2021-03-20 10:47:04 +01:00
|
|
|
local function is_downward_flowing(pos, node, nodedef, is_above)
|
2021-03-28 08:11:08 +02:00
|
|
|
local result = (math.floor(node.param2 / 8) % 2) == 1
|
2021-03-20 10:47:04 +01:00
|
|
|
if not (result or is_above) then
|
2021-03-28 08:11:08 +02:00
|
|
|
-- If not, also check node above.
|
2021-03-21 07:06:54 +01:00
|
|
|
-- (this is needed due a weird quirk in the definition of "downwards flowing"
|
|
|
|
-- liquids in Minetest)
|
2021-03-28 08:11:08 +02:00
|
|
|
local node_above = mt_get_node({x=pos.x,y=pos.y+1,z=pos.z})
|
|
|
|
local nodedef_above = registered_nodes[node_above.name]
|
2021-03-21 07:06:54 +01:00
|
|
|
result = is_submerged(node_above, nodedef_above)
|
|
|
|
or is_downward_flowing(pos, node_above, nodedef_above, true)
|
2021-03-20 10:47:04 +01:00
|
|
|
end
|
|
|
|
return result
|
|
|
|
end
|
2021-03-28 08:11:08 +02:00
|
|
|
kelp.is_downward_flowing = is_downward_flowing
|
|
|
|
|
2021-03-20 10:47:04 +01:00
|
|
|
|
2021-03-21 05:16:56 +01:00
|
|
|
-- Converts param2 to kelp height.
|
2021-03-28 08:11:08 +02:00
|
|
|
local function get_height(param2)
|
2021-03-20 10:47:04 +01:00
|
|
|
return math.floor(param2 / 16)
|
|
|
|
end
|
2021-03-28 08:11:08 +02:00
|
|
|
kelp.get_height = get_height
|
|
|
|
|
2021-03-20 10:47:04 +01:00
|
|
|
|
2021-03-21 05:16:56 +01:00
|
|
|
-- Obtain pos and node of the top of kelp.
|
2021-03-28 08:11:08 +02:00
|
|
|
local function get_tip(pos, node)
|
2019-12-18 15:06:35 +01:00
|
|
|
local size = math.ceil(node.param2 / 16)
|
2021-03-20 10:47:04 +01:00
|
|
|
local pos_top = table.copy(pos)
|
|
|
|
pos_top.y = pos_top.y + size
|
2021-03-28 08:11:08 +02:00
|
|
|
return pos_top, mt_get_node(pos_top)
|
2019-12-18 15:06:35 +01:00
|
|
|
end
|
2021-03-28 08:11:08 +02:00
|
|
|
kelp.get_tip = get_tip
|
|
|
|
|
2019-12-18 15:06:35 +01:00
|
|
|
|
2021-03-21 05:16:56 +01:00
|
|
|
-- Obtain position of the first kelp unsubmerged.
|
2021-03-28 08:11:08 +02:00
|
|
|
local function find_unsubmerged(pos, node)
|
2021-03-20 10:47:04 +01:00
|
|
|
local x,y,z = pos.x, pos.y, pos.z
|
2021-03-28 08:11:08 +02:00
|
|
|
local height = get_height(node.param2)
|
2021-03-20 10:47:04 +01:00
|
|
|
for i=1,height do
|
|
|
|
local walk_pos = {x=x, y=y + i, z=z}
|
2021-03-28 08:11:08 +02:00
|
|
|
if mt_get_item_group(mt_get_node(walk_pos).name, "water") == 0 then
|
2021-03-20 10:47:04 +01:00
|
|
|
return walk_pos
|
2019-12-18 15:06:35 +01:00
|
|
|
end
|
|
|
|
end
|
2021-03-20 10:47:04 +01:00
|
|
|
return nil
|
2019-12-18 15:06:35 +01:00
|
|
|
end
|
2021-03-28 08:11:08 +02:00
|
|
|
kelp.find_unsubmerged = find_unsubmerged
|
2019-12-18 15:06:35 +01:00
|
|
|
|
2021-03-21 05:16:56 +01:00
|
|
|
|
2021-03-28 08:11:08 +02:00
|
|
|
-- Obtain next param2.
|
|
|
|
local function next_param2(param2)
|
2021-03-21 05:16:56 +01:00
|
|
|
local old_param2 = param2
|
|
|
|
param2 = param2+16 - param2 % 16
|
2019-12-18 15:06:35 +01:00
|
|
|
return param2, param2 ~= old_param2
|
|
|
|
end
|
2021-03-28 08:11:08 +02:00
|
|
|
kelp.next_param2 = next_param2
|
|
|
|
|
2019-12-18 15:06:35 +01:00
|
|
|
|
2021-03-28 08:11:08 +02:00
|
|
|
-- Grow next kelp.
|
|
|
|
local function next_grow(pos, node, pos_top, def_top, is_downward_flowing)
|
|
|
|
-- Liquid source: Grow normally.
|
|
|
|
mt_set_node(pos, node)
|
2021-03-21 05:16:56 +01:00
|
|
|
|
2021-03-28 08:11:08 +02:00
|
|
|
-- Flowing liquid: Grow 1 step, but also turn the top node into a liquid source.
|
2021-03-21 05:16:56 +01:00
|
|
|
if is_downward_flowing then
|
|
|
|
local alt_liq = def_top.liquid_alternative_source
|
|
|
|
if alt_liq then
|
2021-03-28 08:11:08 +02:00
|
|
|
mt_set_node(pos_top, {name=alt_liq})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
kelp.next_grow = next_grow
|
|
|
|
|
|
|
|
|
|
|
|
-- Drops the items for detached kelps.
|
|
|
|
local function detach_drop(pos, height)
|
|
|
|
local x,y,z = pos.x,pos.y,pos.z
|
|
|
|
for i=1,height do
|
|
|
|
mt_add_item({x=x, y=y+i, z=z}, "mcl_ocean:kelp")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
kelp.detach_drop = detach_drop
|
|
|
|
|
|
|
|
|
|
|
|
-- Detach the kelp at dig_pos, and drop their items.
|
2021-03-28 14:29:29 +02:00
|
|
|
-- Synonymous to digging the kelp.
|
|
|
|
-- NOTE: this is intended for whenever kelp truly becomes segmented plants
|
|
|
|
-- instead of rooted to the floor. Don't try to remove dig_pos.
|
2021-03-28 08:11:08 +02:00
|
|
|
local function detach_dig(dig_pos, pos, node, is_drop)
|
|
|
|
local param2 = node.param2
|
|
|
|
-- pos.y points to the surface, offset needed to point to the first kelp.
|
|
|
|
local new_height = dig_pos.y - (pos.y+1)
|
|
|
|
|
|
|
|
-- Digs the entire kelp: invoke after_dig_node to mt_set_node.
|
|
|
|
if new_height <= 0 then
|
|
|
|
if is_drop then
|
|
|
|
detach_drop(dig_pos, get_height(param2))
|
2021-03-21 05:16:56 +01:00
|
|
|
end
|
2021-03-28 08:11:08 +02:00
|
|
|
mt_set_node(pos, {
|
|
|
|
name=registered_nodes[node.name].node_dig_prediction,
|
|
|
|
param=node.param, param2=0 })
|
|
|
|
|
|
|
|
-- Digs the kelp beginning at a height
|
|
|
|
else
|
|
|
|
if is_drop then
|
|
|
|
detach_drop(dig_pos, get_height(param2) - new_height)
|
|
|
|
end
|
|
|
|
mt_set_node(pos, {name=node.name, param=node.param, param2=16*new_height})
|
2021-03-21 05:16:56 +01:00
|
|
|
end
|
|
|
|
end
|
2021-03-28 08:11:08 +02:00
|
|
|
kelp.detach_dig = detach_dig
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- Kelp callback functions
|
|
|
|
--------------------------------------------------------------------------------
|
2021-03-21 05:16:56 +01:00
|
|
|
|
2021-03-28 14:29:29 +02:00
|
|
|
local function surface_on_dig(pos, node, digger)
|
|
|
|
-- NOTE: if instead, kelp shouldn't drop in creative: use this instead
|
|
|
|
-- detach_dig(pos, pos, node,
|
|
|
|
-- not (digger and mt_is_creative_enabled(digger:get_player_name())))
|
|
|
|
detach_dig(pos, pos, node, true)
|
|
|
|
end
|
|
|
|
kelp.surface_on_dig = surface_on_dig
|
|
|
|
|
|
|
|
|
|
|
|
local function surface_after_dig_node(pos, node)
|
|
|
|
return mt_set_node(pos, {name=registred_nodes[node.name].node_dig_prediction})
|
|
|
|
end
|
|
|
|
kelp.surface_after_dig_node = surface_after_dig_node
|
|
|
|
|
|
|
|
|
|
|
|
local kelp_timers = {}
|
|
|
|
local kelp_timers_counter = 0
|
|
|
|
local function surface_on_timer(pos, elapsed)
|
|
|
|
local node = mt_get_node(pos)
|
|
|
|
local dig_pos = find_unsubmerged(pos, node)
|
|
|
|
if dig_pos then
|
|
|
|
detach_dig(dig_pos, pos, node, true)
|
|
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
-- NOTE: Uncomment this to use ABMs
|
|
|
|
-- local function surface_unsubmerged_abm(pos, node)
|
|
|
|
-- local dig_pos = find_unsubmerged(pos, node)
|
|
|
|
-- if dig_pos then
|
|
|
|
-- detach_dig(dig_pos, pos, node, true)
|
|
|
|
-- end
|
|
|
|
-- return true
|
|
|
|
-- end
|
|
|
|
|
|
|
|
|
|
|
|
-- NOTE: Uncomment this to use nodetimers
|
|
|
|
local function surface_register_nodetimer(pos, node)
|
|
|
|
local pos_hash = mt_hash_node_position(pos)
|
|
|
|
if kelp_timers[pos_hash] then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local timer = mt_get_node_timer(pos)
|
|
|
|
kelp_timers[pos_hash] = timer
|
|
|
|
timer:start(0.5)
|
|
|
|
kelp_timers_counter = kelp_timers_counter + 1
|
|
|
|
chatlog("added a timer. Currently " ..tostring(kelp_timers_counter) .." timers")
|
|
|
|
end
|
|
|
|
kelp.surface_register_nodetiemr = surface_register_nodetimer
|
|
|
|
|
|
|
|
|
|
|
|
local function grow_kelp(pos, node)
|
|
|
|
local grow
|
|
|
|
-- Grow kelp by 1 node length if it would grow inside water
|
|
|
|
node.param2, grow = next_param2(node.param2)
|
|
|
|
local pos_top, node_top = get_tip(pos, node)
|
|
|
|
local def_top = registered_nodes[node_top.name]
|
|
|
|
if grow and is_submerged(node_top, def_top) then
|
|
|
|
next_grow(pos, node, pos_top, def_top,
|
|
|
|
is_downward_flowing(pos_top, node_top, def_top))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
kelp.grow_kelp = grow_kelp
|
|
|
|
|
|
|
|
|
2019-12-17 22:43:35 +01:00
|
|
|
local function kelp_on_place(itemstack, placer, pointed_thing)
|
|
|
|
if pointed_thing.type ~= "node" or not placer then
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
|
|
|
|
local player_name = placer:get_player_name()
|
|
|
|
local pos_under = pointed_thing.under
|
|
|
|
local pos_above = pointed_thing.above
|
2021-03-28 08:11:08 +02:00
|
|
|
local node_under = mt_get_node(pos_under)
|
2021-03-20 10:47:04 +01:00
|
|
|
local nu_name = node_under.name
|
2021-03-28 08:11:08 +02:00
|
|
|
local def_under = registered_nodes[nu_name]
|
2019-12-17 22:43:35 +01:00
|
|
|
|
2021-03-28 14:29:29 +02:00
|
|
|
-- Allow rightclick override.
|
2019-12-17 22:43:35 +01:00
|
|
|
if def_under and def_under.on_rightclick and not placer:get_player_control().sneak then
|
|
|
|
return def_under.on_rightclick(pos_under, node_under,
|
|
|
|
placer, itemstack, pointed_thing) or itemstack
|
|
|
|
end
|
|
|
|
|
2021-03-28 08:11:08 +02:00
|
|
|
if mt_is_protected(pos_under, player_name) or
|
|
|
|
mt_is_protected(pos_above, player_name) then
|
2019-12-17 22:43:35 +01:00
|
|
|
minetest.log("action", player_name
|
|
|
|
.. " tried to place " .. itemstack:get_name()
|
|
|
|
.. " at protected position "
|
|
|
|
.. minetest.pos_to_string(pos_under))
|
|
|
|
minetest.record_protection_violation(pos_under, player_name)
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
|
2021-03-20 10:47:04 +01:00
|
|
|
local new_kelp = false
|
2021-03-21 07:06:54 +01:00
|
|
|
local downward_flowing = false
|
2021-03-21 05:16:56 +01:00
|
|
|
local pos_top, node_top, def_top
|
2021-03-20 10:47:04 +01:00
|
|
|
|
|
|
|
-- When placed on kelp.
|
2021-03-28 08:11:08 +02:00
|
|
|
if mt_get_item_group(nu_name, "kelp") == 1 then
|
|
|
|
node_under.param2, new_kelp = next_param2(node_under.param2)
|
2021-03-20 10:47:04 +01:00
|
|
|
-- Kelp must not reach the height limit.
|
2021-03-21 05:16:56 +01:00
|
|
|
-- Kelp must also be placed on top of kelp to add kelp.
|
|
|
|
if not new_kelp or pos_under.y >= pos_above.y then
|
2019-12-18 13:37:20 +01:00
|
|
|
return itemstack
|
|
|
|
end
|
2021-03-28 08:11:08 +02:00
|
|
|
pos_top, node_top = get_tip(pos_under, node_under)
|
|
|
|
def_top = registered_nodes[node_top.name]
|
2021-03-20 10:47:04 +01:00
|
|
|
|
|
|
|
-- When placed on surface.
|
2019-12-18 13:37:20 +01:00
|
|
|
else
|
2021-03-28 08:11:08 +02:00
|
|
|
local surfaces = kelp.surfaces or surfaces
|
2021-03-20 10:47:04 +01:00
|
|
|
for _,surface in pairs(surfaces) do
|
2021-03-21 05:16:56 +01:00
|
|
|
-- Surface must support kelp
|
2021-03-28 08:11:08 +02:00
|
|
|
if nu_name == surface.nodename then
|
|
|
|
node_under.name = "mcl_ocean:kelp_" ..surface.name
|
|
|
|
node_under.param2 = registered_items[nu_name].place_param2 or 16
|
2021-03-20 10:47:04 +01:00
|
|
|
new_kelp = true
|
2021-03-21 07:06:54 +01:00
|
|
|
break
|
2021-03-20 10:47:04 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-03-21 05:16:56 +01:00
|
|
|
-- Kelp must also be placed on top of surface to add new kelp.
|
2021-03-20 10:47:04 +01:00
|
|
|
if not new_kelp or pos_under.y >= pos_above.y then
|
2019-12-18 13:37:20 +01:00
|
|
|
return itemstack
|
|
|
|
end
|
2021-03-21 07:06:54 +01:00
|
|
|
|
2021-03-21 05:16:56 +01:00
|
|
|
pos_top = pos_above
|
2021-03-28 08:11:08 +02:00
|
|
|
node_top = mt_get_node(pos_above)
|
|
|
|
def_top = registered_nodes[node_top.name]
|
2021-03-28 14:29:29 +02:00
|
|
|
|
|
|
|
-- NOTE: Uncomment this to use nodetimers
|
|
|
|
-- Register nodetimer
|
|
|
|
surface_register_nodetimer(pos_under, node_under)
|
2021-03-21 05:16:56 +01:00
|
|
|
end
|
2021-03-20 10:47:04 +01:00
|
|
|
|
2021-03-21 05:16:56 +01:00
|
|
|
-- New kelp must also be submerged in water.
|
2021-03-21 07:06:54 +01:00
|
|
|
downward_flowing = is_downward_flowing(pos_top, node_top, def_top)
|
|
|
|
if not (is_submerged(node_top, def_top) or downward_flowing) then
|
2021-03-21 05:16:56 +01:00
|
|
|
return itemstack
|
2019-12-18 13:37:20 +01:00
|
|
|
end
|
2021-03-20 10:47:04 +01:00
|
|
|
|
2021-03-21 05:16:56 +01:00
|
|
|
-- Play sound, place surface/kelp and take away an item
|
2021-03-28 08:11:08 +02:00
|
|
|
local def_node = registered_items[nu_name]
|
2019-12-17 22:43:35 +01:00
|
|
|
if def_node.sounds then
|
2021-03-28 08:11:08 +02:00
|
|
|
mt_sound_play(def_node.sounds.place, { gain = 0.5, pos = pos_under }, true)
|
2019-12-17 22:43:35 +01:00
|
|
|
end
|
2021-03-28 08:11:08 +02:00
|
|
|
next_grow(pos_under, node_under, pos_top, def_top, downward_flowing)
|
|
|
|
if not mt_is_creative_enabled(player_name) then
|
2019-12-17 22:43:35 +01:00
|
|
|
itemstack:take_item()
|
|
|
|
end
|
|
|
|
|
|
|
|
return itemstack
|
|
|
|
end
|
2021-03-28 08:11:08 +02:00
|
|
|
kelp.kelp_on_place = kelp_on_place
|
2019-12-17 22:43:35 +01:00
|
|
|
|
2021-03-28 08:11:08 +02:00
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- Kelp registration API
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
-- List of supported surfaces for seagrass and kelp.
|
|
|
|
local surfaces = {
|
|
|
|
{ name="dirt", nodename="mcl_core:dirt", },
|
|
|
|
{ name="sand", nodename="mcl_core:sand", },
|
|
|
|
{ name="redsand", nodename="mcl_core:redsand", },
|
|
|
|
{ name="gravel", nodename="mcl_core:gravel", },
|
|
|
|
}
|
|
|
|
kelp.surfaces = surfaces
|
|
|
|
local registered_surfaces = {}
|
|
|
|
kelp.registered_surfaces = registered_surfaces
|
|
|
|
|
2021-03-28 14:29:29 +02:00
|
|
|
-- Commented properties are the ones obtained using register_kelp_surface.
|
|
|
|
-- If you define your own properties, it overrides the default ones.
|
2021-03-28 08:11:08 +02:00
|
|
|
local surface_deftemplate = {
|
|
|
|
drawtype = "plantlike_rooted",
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "leveled",
|
|
|
|
place_param2 = 16,
|
|
|
|
--tiles = def.tiles,
|
|
|
|
special_tiles = {
|
|
|
|
{
|
|
|
|
image = "mcl_ocean_kelp_plant.png",
|
|
|
|
animation = {type="vertical_frames", aspect_w=16, aspect_h=16, length=2.0},
|
|
|
|
tileable_vertical = true,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
--inventory_image = "("..def.tiles[1]..")^mcl_ocean_kelp_item.png",
|
|
|
|
wield_image = "mcl_ocean_kelp_item.png",
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 },
|
|
|
|
{ -0.5, 0.5, -0.5, 0.5, 1.5, 0.5 },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
-- groups.falling_node = is_falling,
|
|
|
|
groups = { dig_immediate = 3, deco_block = 1, plant = 1, kelp = 1, },
|
|
|
|
--sounds = sounds,
|
|
|
|
--node_dig_prediction = nodename,
|
|
|
|
after_dig_node = surface_after_dig_node,
|
|
|
|
on_dig = surface_on_dig,
|
2021-03-28 14:29:29 +02:00
|
|
|
on_timer = surface_on_timer,
|
2021-03-28 08:11:08 +02:00
|
|
|
drop = "", -- drops are handled in on_dig
|
|
|
|
--_mcl_falling_node_alternative = is_falling and nodename or nil,
|
|
|
|
_mcl_hardness = 0,
|
|
|
|
_mcl_blast_resistance = 0,
|
|
|
|
}
|
|
|
|
kelp.surface_deftemplate = surface_deftemplate
|
|
|
|
|
2021-03-28 14:29:29 +02:00
|
|
|
-- Commented properties are the ones obtained using register_kelp_surface.
|
2021-03-28 08:11:08 +02:00
|
|
|
local surface_docs = {
|
|
|
|
-- entry_id_orig = nodename,
|
|
|
|
_doc_items_entry_name = S("Kelp"),
|
|
|
|
_doc_items_longdesc = S("Kelp grows inside water on top of dirt, sand or gravel."),
|
|
|
|
--_doc_items_create_entry = doc_create,
|
|
|
|
_doc_items_image = "mcl_ocean_kelp_item.png",
|
|
|
|
}
|
|
|
|
kelp.surface_docs = surface_docs
|
|
|
|
|
|
|
|
--[==[--
|
|
|
|
register_kelp_surface(surface[, surface_deftemplate[, surface_docs]])
|
|
|
|
|
2021-03-28 14:29:29 +02:00
|
|
|
surface: table with its specific properties. See also kelp.surface.
|
2021-03-28 08:11:08 +02:00
|
|
|
|
|
|
|
surface_deftemplate: modifiable nodedef template. See also kelp.surface_deftempate.
|
|
|
|
DO NOT RE-USE THE SAME DEFTEMPLATE. create copies.
|
|
|
|
|
2021-03-28 14:29:29 +02:00
|
|
|
surface_docs: table with properties related to docs. See also kelp.surface_docs.
|
2021-03-28 08:11:08 +02:00
|
|
|
--]==]--
|
|
|
|
local leaf_sounds = mcl_sounds.node_sound_leaves_defaults()
|
|
|
|
local function register_kelp_surface(surface, surface_deftemplate, surface_docs)
|
|
|
|
local name = surface.name
|
|
|
|
local nodename = surface.nodename
|
|
|
|
local def = registered_nodes[nodename]
|
|
|
|
local def_tiles = def.tiles
|
|
|
|
|
|
|
|
local surfacename = "mcl_ocean:kelp_"..name
|
|
|
|
local surface_deftemplate = surface_deftemplate or kelp.surface_deftemplate -- optional param
|
|
|
|
|
|
|
|
local doc_create = surface.doc_create or false
|
|
|
|
local surface_docs = surface_docs or kelp.surface_docs
|
|
|
|
|
|
|
|
if doc_create then
|
|
|
|
surface_deftemplate._doc_items_entry_name = surface_docs._doc_items_entry_name
|
|
|
|
surface_deftemplate._doc_items_longdesc = surface_docs._doc_items_longdesc
|
|
|
|
surface_deftemplate._doc_items_create_entry = true
|
|
|
|
surface_deftemplate._doc_items_image = surface_docs._doc_items_image
|
|
|
|
-- Takes the first surface with docs
|
|
|
|
if not surface_docs.entry_id_orig then
|
|
|
|
surface_docs.entry_id_orig = nodename
|
2021-03-20 10:47:04 +01:00
|
|
|
end
|
2021-03-28 08:11:08 +02:00
|
|
|
elseif mod_doc then
|
|
|
|
doc.add_entry_alias("nodes", surface_docs.entry_id_orig, "nodes", surfacename)
|
2021-03-20 10:47:04 +01:00
|
|
|
end
|
2021-03-28 08:11:08 +02:00
|
|
|
|
|
|
|
local sounds = table.copy(def.sounds)
|
|
|
|
sounds.dig = leaf_sounds.dig
|
|
|
|
sounds.dug = leaf_sounds.dug
|
|
|
|
sounds.place = leaf_sounds.place
|
|
|
|
|
|
|
|
surface_deftemplate.tiles = surface_deftemplate.tiles or def_tiles
|
|
|
|
surface_deftemplate.inventory_image = surface_deftemplate.inventory_image or "("..def_tiles[1]..")^mcl_ocean_kelp_item.png"
|
|
|
|
surface_deftemplate.sounds = surface_deftemplate.sound or sounds
|
|
|
|
local falling_node = mt_get_item_group(nodename, "falling_node")
|
|
|
|
surface_deftemplate.node_dig_prediction = surface_deftemplate.node_dig_prediction or nodename
|
2021-03-28 14:29:29 +02:00
|
|
|
surface_deftemplate.groups.falling_node = surface_deftemplate.groups.falling_node or falling_node
|
2021-03-28 08:11:08 +02:00
|
|
|
surface_deftemplate._mcl_falling_node_alternative = surface_deftemplate._mcl_falling_node_alternative or (falling_node and nodename or nil)
|
|
|
|
|
|
|
|
minetest.register_node(surfacename, surface_deftemplate)
|
2020-12-03 14:19:37 +01:00
|
|
|
end
|
|
|
|
|
2021-03-28 08:11:08 +02:00
|
|
|
-- Kelp surfaces nodes ---------------------------------------------------------
|
|
|
|
|
|
|
|
-- Dirt must be registered first, for the docs
|
|
|
|
register_kelp_surface(surfaces[1], table.copy(surface_deftemplate), surface_docs)
|
|
|
|
for i=2, #surfaces do
|
|
|
|
register_kelp_surface(surfaces[i], table.copy(surface_deftemplate), surface_docs)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Kelp item -------------------------------------------------------------------
|
|
|
|
|
2019-12-17 22:43:35 +01:00
|
|
|
minetest.register_craftitem("mcl_ocean:kelp", {
|
|
|
|
description = S("Kelp"),
|
2020-03-08 03:18:47 +01:00
|
|
|
_tt_help = S("Grows in water on dirt, sand, gravel"),
|
2019-12-18 12:43:17 +01:00
|
|
|
_doc_items_create_entry = false,
|
2019-12-17 22:43:35 +01:00
|
|
|
inventory_image = "mcl_ocean_kelp_item.png",
|
|
|
|
wield_image = "mcl_ocean_kelp_item.png",
|
|
|
|
on_place = kelp_on_place,
|
2019-12-18 03:10:49 +01:00
|
|
|
groups = { deco_block = 1 },
|
2019-12-17 22:43:35 +01:00
|
|
|
})
|
|
|
|
|
2019-12-18 12:43:17 +01:00
|
|
|
if mod_doc then
|
2021-03-28 08:11:08 +02:00
|
|
|
doc.add_entry_alias("nodes", surface_docs.entry_id_orig, "craftitems", "mcl_ocean:kelp")
|
2019-12-18 12:43:17 +01:00
|
|
|
end
|
2019-12-17 22:43:35 +01:00
|
|
|
|
2021-03-28 08:11:08 +02:00
|
|
|
-- Dried kelp ------------------------------------------------------------------
|
2019-12-17 22:43:35 +01:00
|
|
|
|
|
|
|
-- TODO: This is supposed to be eaten very fast
|
|
|
|
minetest.register_craftitem("mcl_ocean:dried_kelp", {
|
|
|
|
description = S("Dried Kelp"),
|
2019-12-18 12:43:17 +01:00
|
|
|
_doc_items_longdesc = S("Dried kelp is a food item."),
|
2019-12-17 22:43:35 +01:00
|
|
|
inventory_image = "mcl_ocean_dried_kelp.png",
|
|
|
|
wield_image = "mcl_ocean_dried_kelp.png",
|
|
|
|
groups = { food = 2, eatable = 1 },
|
|
|
|
on_place = minetest.item_eat(1),
|
|
|
|
on_secondary_use = minetest.item_eat(1),
|
|
|
|
groups = { food = 2, eatable = 1 },
|
|
|
|
_mcl_saturation = 0.6,
|
|
|
|
})
|
|
|
|
|
2021-03-28 08:11:08 +02:00
|
|
|
|
2019-12-17 22:43:35 +01:00
|
|
|
local mod_screwdriver = minetest.get_modpath("screwdriver") ~= nil
|
|
|
|
local on_rotate
|
|
|
|
if mod_screwdriver then
|
|
|
|
on_rotate = screwdriver.rotate_3way
|
|
|
|
end
|
|
|
|
|
|
|
|
minetest.register_node("mcl_ocean:dried_kelp_block", {
|
|
|
|
description = S("Dried Kelp Block"),
|
2019-12-18 12:43:17 +01:00
|
|
|
_doc_items_longdesc = S("A decorative block that serves as a great furnace fuel."),
|
2019-12-17 22:43:35 +01:00
|
|
|
tiles = { "mcl_ocean_dried_kelp_top.png", "mcl_ocean_dried_kelp_bottom.png", "mcl_ocean_dried_kelp_side.png" },
|
2020-04-18 23:24:42 +02:00
|
|
|
groups = { handy = 1, building_block = 1, flammable = 2, fire_encouragement = 30, fire_flammability = 60 },
|
2019-12-17 22:43:35 +01:00
|
|
|
sounds = mcl_sounds.node_sound_leaves_defaults(),
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
on_place = mcl_util.rotate_axis,
|
|
|
|
on_rotate = on_rotate,
|
|
|
|
_mcl_hardness = 0.5,
|
|
|
|
_mcl_blast_resistance = 12.5,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
recipe = "mcl_ocean:kelp",
|
|
|
|
output = "mcl_ocean:dried_kelp",
|
|
|
|
cooktime = 10,
|
|
|
|
})
|
|
|
|
minetest.register_craft({
|
|
|
|
recipe = {
|
|
|
|
{ "mcl_ocean:dried_kelp","mcl_ocean:dried_kelp","mcl_ocean:dried_kelp" },
|
|
|
|
{ "mcl_ocean:dried_kelp","mcl_ocean:dried_kelp","mcl_ocean:dried_kelp" },
|
|
|
|
{ "mcl_ocean:dried_kelp","mcl_ocean:dried_kelp","mcl_ocean:dried_kelp" },
|
|
|
|
},
|
|
|
|
output = "mcl_ocean:dried_kelp_block",
|
|
|
|
})
|
2020-07-17 00:17:18 +02:00
|
|
|
minetest.register_craft({
|
|
|
|
recipe = {
|
|
|
|
{ "mcl_ocean:dried_kelp_block" },
|
|
|
|
},
|
|
|
|
output = "mcl_ocean:dried_kelp 9",
|
|
|
|
})
|
2019-12-17 22:43:35 +01:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "mcl_ocean:dried_kelp_block",
|
|
|
|
burntime = 200,
|
|
|
|
})
|
2019-12-18 15:06:35 +01:00
|
|
|
|
2021-03-28 08:11:08 +02:00
|
|
|
-- ABMs ------------------------------------------------------------------------
|
2019-12-18 15:06:35 +01:00
|
|
|
minetest.register_abm({
|
2021-03-28 14:29:29 +02:00
|
|
|
label = "Kelp growth",
|
2019-12-18 15:06:35 +01:00
|
|
|
nodenames = { "group:kelp" },
|
2021-03-28 08:11:08 +02:00
|
|
|
interval = 45,
|
|
|
|
chance = 12,
|
2019-12-18 15:06:35 +01:00
|
|
|
catch_up = false,
|
2021-03-28 08:11:08 +02:00
|
|
|
action = grow_kelp,
|
2019-12-18 15:06:35 +01:00
|
|
|
})
|
2021-03-20 10:47:04 +01:00
|
|
|
|
2021-03-28 14:29:29 +02:00
|
|
|
-- NOTE: Uncomment this to use nodetimers
|
2021-03-28 08:11:08 +02:00
|
|
|
minetest.register_lbm({
|
|
|
|
label = "Kelp timer registration",
|
|
|
|
name = "mcl_ocean:kelp_timer_registration",
|
2021-03-20 10:47:04 +01:00
|
|
|
nodenames = { "group:kelp" },
|
2021-03-28 14:29:29 +02:00
|
|
|
run_at_every_load = false,
|
2021-03-28 08:11:08 +02:00
|
|
|
action = surface_register_nodetimer,
|
2021-03-20 10:47:04 +01:00
|
|
|
})
|
2021-03-28 08:11:08 +02:00
|
|
|
|
2021-03-28 14:29:29 +02:00
|
|
|
-- NOTE: Uncomment this to use ABMs
|
|
|
|
-- Break kelp not underwater.
|
2021-03-28 08:11:08 +02:00
|
|
|
-- minetest.register_abm({
|
|
|
|
-- label = "Kelp drops",
|
|
|
|
-- nodenames = { "group:kelp" },
|
2021-03-28 14:29:29 +02:00
|
|
|
-- interval = 1.0,
|
2021-03-28 08:11:08 +02:00
|
|
|
-- chance = 1,
|
|
|
|
-- catch_up = false,
|
2021-03-28 14:29:29 +02:00
|
|
|
-- action = surface_unsubmerged_abm,
|
2021-03-28 08:11:08 +02:00
|
|
|
-- })
|