2020-11-15 20:25:38 +01:00
|
|
|
--[[
|
|
|
|
|
|
|
|
Tubelib Addons 1
|
|
|
|
================
|
|
|
|
|
2020-11-20 19:20:28 +01:00
|
|
|
Copyright (C) 2017-2020 Joachim Stolberg
|
2020-11-15 20:25:38 +01:00
|
|
|
|
2020-11-20 19:20:28 +01:00
|
|
|
AGPL v3
|
2020-11-15 20:25:38 +01:00
|
|
|
See LICENSE.txt for more information
|
|
|
|
|
|
|
|
grinder.lua
|
|
|
|
|
|
|
|
Grinding Cobble to Gravel
|
|
|
|
|
|
|
|
]]--
|
|
|
|
|
2020-11-20 19:20:28 +01:00
|
|
|
-- Load support for I18n
|
|
|
|
local S = tubelib_addons1.S
|
|
|
|
|
2020-11-15 20:25:38 +01:00
|
|
|
-- for lazy programmers
|
|
|
|
local P = minetest.string_to_pos
|
|
|
|
local M = minetest.get_meta
|
|
|
|
|
|
|
|
local STANDBY_TICKS = 4
|
|
|
|
local COUNTDOWN_TICKS = 4
|
|
|
|
local CYCLE_TIME = 2
|
|
|
|
|
|
|
|
|
|
|
|
-- Grinder recipes
|
|
|
|
local Recipes = {}
|
|
|
|
|
|
|
|
local function formspec(self, pos, meta)
|
|
|
|
return "size[8,8]"..
|
|
|
|
default.gui_bg..
|
|
|
|
default.gui_bg_img..
|
|
|
|
default.gui_slots..
|
|
|
|
"list[context;src;0,0;3,3;]"..
|
|
|
|
"item_image[0,0;1,1;default:cobble]"..
|
|
|
|
"image[3.5,1;1,1;tubelib_gui_arrow.png]"..
|
|
|
|
"image_button[3.5,2;1,1;".. self:get_state_button_image(meta) ..";state_button;]"..
|
|
|
|
"list[context;dst;5,0;3,3;]"..
|
|
|
|
"item_image[5,0;1,1;default:gravel]"..
|
|
|
|
"list[current_player;main;0,4;8,4;]"..
|
|
|
|
"listring[context;dst]"..
|
|
|
|
"listring[current_player;main]"..
|
|
|
|
"listring[context;src]"..
|
|
|
|
"listring[current_player;main]"
|
|
|
|
end
|
|
|
|
|
|
|
|
local State = tubelib.NodeStates:new({
|
|
|
|
node_name_passive = "tubelib_addons1:grinder",
|
|
|
|
node_name_active = "tubelib_addons1:grinder_active",
|
|
|
|
node_name_defect = "tubelib_addons1:grinder_defect",
|
2020-11-20 19:20:28 +01:00
|
|
|
infotext_name = S("Tubelib Grinder"),
|
2020-11-15 20:25:38 +01:00
|
|
|
cycle_time = CYCLE_TIME,
|
|
|
|
standby_ticks = STANDBY_TICKS,
|
|
|
|
has_item_meter = true,
|
|
|
|
aging_factor = 10,
|
|
|
|
formspec_func = formspec,
|
|
|
|
})
|
|
|
|
|
|
|
|
local function allow_metadata_inventory_put(pos, listname, index, stack, player)
|
|
|
|
if minetest.is_protected(pos, player:get_player_name()) then
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
if listname == "src" and State:get_state(M(pos)) == tubelib.STANDBY then
|
|
|
|
State:start(pos, M(pos))
|
|
|
|
end
|
|
|
|
return stack:get_count()
|
|
|
|
end
|
|
|
|
|
|
|
|
local function allow_metadata_inventory_move(pos, from_list, from_index, to_list, to_index, count, player)
|
|
|
|
local inv = M(pos):get_inventory()
|
|
|
|
local stack = inv:get_stack(from_list, from_index)
|
|
|
|
return allow_metadata_inventory_put(pos, to_list, to_index, stack, player)
|
|
|
|
end
|
|
|
|
|
|
|
|
local function allow_metadata_inventory_take(pos, listname, index, stack, player)
|
|
|
|
if minetest.is_protected(pos, player:get_player_name()) then
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
return stack:get_count()
|
|
|
|
end
|
|
|
|
|
|
|
|
local function grinding(pos, meta, inv)
|
2021-03-17 20:30:38 +01:00
|
|
|
for _,stack in ipairs(inv:get_list("src") or {}) do
|
2020-11-15 20:25:38 +01:00
|
|
|
if not stack:is_empty() then
|
|
|
|
local name = stack:get_name()
|
|
|
|
if Recipes[name] then
|
|
|
|
local output = Recipes[name]
|
|
|
|
if inv:room_for_item("dst", output) then
|
|
|
|
inv:add_item("dst", output)
|
|
|
|
inv:remove_item("src", ItemStack(name))
|
|
|
|
State:keep_running(pos, meta, COUNTDOWN_TICKS)
|
|
|
|
else
|
|
|
|
State:blocked(pos, meta)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
State:fault(pos, meta)
|
|
|
|
end
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
State:idle(pos, meta)
|
|
|
|
end
|
|
|
|
|
|
|
|
local function keep_running(pos, elapsed)
|
|
|
|
if tubelib.data_not_corrupted(pos) then
|
|
|
|
local meta = M(pos)
|
|
|
|
local inv = meta:get_inventory()
|
|
|
|
grinding(pos, meta, inv)
|
|
|
|
return State:is_active(meta)
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
local function on_receive_fields(pos, formname, fields, player)
|
|
|
|
if minetest.is_protected(pos, player:get_player_name()) then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
State:state_button_event(pos, fields)
|
|
|
|
end
|
|
|
|
|
|
|
|
minetest.register_node("tubelib_addons1:grinder", {
|
2020-11-20 19:20:28 +01:00
|
|
|
description = S("Tubelib Grinder"),
|
2020-11-15 20:25:38 +01:00
|
|
|
tiles = {
|
|
|
|
-- up, down, right, left, back, front
|
|
|
|
'tubelib_addons1_grinder.png',
|
|
|
|
'tubelib_front.png',
|
|
|
|
'tubelib_front.png',
|
|
|
|
'tubelib_front.png',
|
|
|
|
"tubelib_front.png",
|
|
|
|
"tubelib_front.png",
|
|
|
|
},
|
|
|
|
|
|
|
|
after_place_node = function(pos, placer)
|
|
|
|
local number = tubelib.add_node(pos, "tubelib_addons1:grinder")
|
|
|
|
State:node_init(pos, number)
|
|
|
|
local inv = M(pos):get_inventory()
|
|
|
|
inv:set_size('src', 9)
|
|
|
|
inv:set_size('dst', 9)
|
|
|
|
end,
|
|
|
|
|
|
|
|
can_dig = function(pos, player)
|
|
|
|
if minetest.is_protected(pos, player:get_player_name()) then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
local inv = M(pos):get_inventory()
|
|
|
|
return inv:is_empty("dst") and inv:is_empty("src")
|
|
|
|
end,
|
|
|
|
|
|
|
|
on_dig = function(pos, node, player)
|
|
|
|
State:on_dig_node(pos, node, player)
|
|
|
|
tubelib.remove_node(pos)
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
|
|
on_rotate = screwdriver.disallow,
|
|
|
|
on_timer = keep_running,
|
|
|
|
on_receive_fields = on_receive_fields,
|
|
|
|
allow_metadata_inventory_put = allow_metadata_inventory_put,
|
|
|
|
allow_metadata_inventory_move = allow_metadata_inventory_move,
|
|
|
|
allow_metadata_inventory_take = allow_metadata_inventory_take,
|
|
|
|
|
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
groups = {choppy=2, cracky=2, crumbly=2},
|
|
|
|
is_ground_content = false,
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
minetest.register_node("tubelib_addons1:grinder_active", {
|
2020-11-20 19:20:28 +01:00
|
|
|
description = S("Tubelib Grinder"),
|
2020-11-15 20:25:38 +01:00
|
|
|
tiles = {
|
|
|
|
-- up, down, right, left, back, front
|
|
|
|
{
|
|
|
|
image = 'tubelib_addons1_grinder_active.png',
|
|
|
|
backface_culling = false,
|
|
|
|
animation = {
|
|
|
|
type = "vertical_frames",
|
|
|
|
aspect_w = 32,
|
|
|
|
aspect_h = 32,
|
|
|
|
length = 1.0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
'tubelib_front.png',
|
|
|
|
"tubelib_front.png",
|
|
|
|
"tubelib_front.png",
|
|
|
|
"tubelib_front.png",
|
|
|
|
"tubelib_front.png",
|
|
|
|
},
|
|
|
|
|
2021-01-23 12:24:04 +01:00
|
|
|
diggable = false,
|
|
|
|
can_dig = function() return false end,
|
|
|
|
|
2020-11-15 20:25:38 +01:00
|
|
|
on_rotate = screwdriver.disallow,
|
|
|
|
on_timer = keep_running,
|
|
|
|
on_receive_fields = on_receive_fields,
|
|
|
|
allow_metadata_inventory_put = allow_metadata_inventory_put,
|
|
|
|
allow_metadata_inventory_move = allow_metadata_inventory_move,
|
|
|
|
allow_metadata_inventory_take = allow_metadata_inventory_take,
|
|
|
|
|
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
groups = {crumbly=0, not_in_creative_inventory=1},
|
|
|
|
is_ground_content = false,
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("tubelib_addons1:grinder_defect", {
|
2020-11-20 19:20:28 +01:00
|
|
|
description = S("Tubelib Grinder"),
|
2020-11-15 20:25:38 +01:00
|
|
|
tiles = {
|
|
|
|
-- up, down, right, left, back, front
|
|
|
|
'tubelib_addons1_grinder.png',
|
|
|
|
'tubelib_front.png',
|
|
|
|
'tubelib_front.png^tubelib_defect.png',
|
|
|
|
'tubelib_front.png^tubelib_defect.png',
|
|
|
|
"tubelib_front.png^tubelib_defect.png",
|
|
|
|
"tubelib_front.png^tubelib_defect.png",
|
|
|
|
},
|
|
|
|
|
|
|
|
after_place_node = function(pos, placer)
|
|
|
|
local number = tubelib.add_node(pos, "tubelib_addons1:grinder")
|
|
|
|
State:node_init(pos, number)
|
|
|
|
local meta = M(pos)
|
|
|
|
local inv = meta:get_inventory()
|
|
|
|
inv:set_size('src', 9)
|
|
|
|
inv:set_size('dst', 9)
|
|
|
|
State:defect(pos, meta)
|
|
|
|
end,
|
|
|
|
|
|
|
|
can_dig = function(pos, player)
|
|
|
|
if minetest.is_protected(pos, player:get_player_name()) then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
local inv = M(pos):get_inventory()
|
|
|
|
return inv:is_empty("dst") and inv:is_empty("src")
|
|
|
|
end,
|
|
|
|
|
|
|
|
after_dig_node = function(pos, oldnode, oldmetadata, digger)
|
|
|
|
tubelib.remove_node(pos)
|
|
|
|
end,
|
|
|
|
|
|
|
|
on_rotate = screwdriver.disallow,
|
|
|
|
allow_metadata_inventory_put = allow_metadata_inventory_put,
|
|
|
|
allow_metadata_inventory_move = allow_metadata_inventory_move,
|
|
|
|
allow_metadata_inventory_take = allow_metadata_inventory_take,
|
|
|
|
|
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1},
|
|
|
|
is_ground_content = false,
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "tubelib_addons1:grinder",
|
|
|
|
recipe = {
|
|
|
|
{"group:wood", "default:tin_ingot", "group:wood"},
|
|
|
|
{"tubelib:tubeS", "default:mese_crystal", "tubelib:tubeS"},
|
|
|
|
{"group:wood", "default:tin_ingot", "group:wood"},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
tubelib.register_node("tubelib_addons1:grinder",
|
|
|
|
{"tubelib_addons1:grinder_active", "tubelib_addons1:grinder_defect"}, {
|
|
|
|
on_pull_stack = function(pos, side)
|
|
|
|
return tubelib.get_stack(M(pos), "dst")
|
|
|
|
end,
|
|
|
|
on_pull_item = function(pos, side)
|
|
|
|
return tubelib.get_item(M(pos), "dst")
|
|
|
|
end,
|
|
|
|
on_push_item = function(pos, side, item)
|
|
|
|
return tubelib.put_item(M(pos), "src", item)
|
|
|
|
end,
|
|
|
|
on_unpull_item = function(pos, side, item)
|
|
|
|
return tubelib.put_item(M(pos), "dst", item)
|
|
|
|
end,
|
|
|
|
on_recv_message = function(pos, topic, payload)
|
|
|
|
local resp = State:on_receive_message(pos, topic, payload)
|
|
|
|
if resp then
|
|
|
|
return resp
|
|
|
|
else
|
|
|
|
return "unsupported"
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
on_node_load = function(pos)
|
|
|
|
State:on_node_load(pos)
|
|
|
|
end,
|
|
|
|
on_node_repair = function(pos)
|
|
|
|
return State:on_node_repair(pos)
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
if minetest.global_exists("unified_inventory") then
|
|
|
|
unified_inventory.register_craft_type("grinding", {
|
2020-11-20 19:20:28 +01:00
|
|
|
description = S("Grinding"),
|
2020-11-15 20:25:38 +01:00
|
|
|
icon = 'tubelib_addons1_grinder.png',
|
|
|
|
width = 1,
|
|
|
|
height = 1,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
function tubelib.add_grinder_recipe(recipe)
|
|
|
|
Recipes[recipe.input] = ItemStack(recipe.output)
|
|
|
|
if minetest.global_exists("unified_inventory") then
|
|
|
|
recipe.items = {recipe.input}
|
|
|
|
recipe.type = "grinding"
|
|
|
|
unified_inventory.register_craft(recipe)
|
|
|
|
end
|
2021-08-18 21:42:51 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
local function remove_unified_inventory_recipe(recipe)
|
|
|
|
if recipe.input and recipe.output then
|
|
|
|
local output_name = ItemStack(recipe.output):get_name()
|
|
|
|
local crafts = unified_inventory.crafts_for.recipe[output_name]
|
|
|
|
if crafts then
|
|
|
|
for i, craft in ipairs(crafts) do
|
|
|
|
if craft.type == recipe.type
|
|
|
|
and ItemStack(craft.output):get_name() == output_name
|
|
|
|
and #craft.items == 1
|
|
|
|
and craft.items[1] == recipe.input
|
|
|
|
then
|
|
|
|
table.remove(crafts, i)
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
elseif recipe.input then
|
|
|
|
for output_name, crafts in pairs(unified_inventory.crafts_for.recipe) do
|
|
|
|
for i, craft in ipairs(crafts) do
|
|
|
|
if craft.type == recipe.type
|
|
|
|
and #craft.items == 1
|
|
|
|
and craft.items[1] == recipe.input
|
|
|
|
then
|
|
|
|
table.remove(crafts, i)
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
elseif recipe.output then
|
|
|
|
local output_name = ItemStack(recipe.output):get_name()
|
|
|
|
local crafts = unified_inventory.crafts_for.recipe[output_name]
|
|
|
|
if crafts then
|
|
|
|
for i, craft in ipairs(crafts) do
|
|
|
|
if craft.type == recipe.type
|
|
|
|
and ItemStack(craft.output):get_name() == output_name then
|
|
|
|
table.remove(crafts, i)
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function tubelib.remove_grinder_recipe(recipe)
|
|
|
|
if recipe.input and recipe.output then
|
|
|
|
if Recipes[recipe.input]:get_name() ~= ItemStack(recipe.output):get_name() then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
Recipes[recipe.input] = nil
|
|
|
|
elseif recipe.input then
|
|
|
|
Recipes[recipe.input] = nil
|
|
|
|
elseif recipe.output then
|
|
|
|
local output_name = ItemStack(recipe.output):get_name()
|
|
|
|
for input_name, output in pairs(Recipes) do
|
|
|
|
if output:get_name() == output_name then
|
|
|
|
Recipes[input_name] = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if minetest.global_exists("unified_inventory") then
|
|
|
|
remove_unified_inventory_recipe({
|
|
|
|
input = recipe.input,
|
|
|
|
output = recipe.output,
|
|
|
|
type = "grinding"
|
|
|
|
})
|
|
|
|
end
|
|
|
|
end
|
2020-11-15 20:25:38 +01:00
|
|
|
|
2021-07-24 12:22:10 +02:00
|
|
|
for k,v in pairs({
|
|
|
|
["default:cobble"] = "default:gravel",
|
|
|
|
["default:desert_cobble"] = "default:gravel",
|
|
|
|
["default:mossycobble"] = "default:gravel",
|
|
|
|
["default:gravel"] = "default:sand",
|
|
|
|
["gravelsieve:sieved_gravel"] = "default:sand",
|
|
|
|
["default:coral_skeleton"] = "default:silver_sand",
|
|
|
|
["tubelib:basalt_stone"] = "default:silver_sand",
|
|
|
|
["default:sandstone"] = "default:sand 4",
|
|
|
|
["default:desert_sandstone"] = "default:desert_sand 4",
|
|
|
|
["default:silver_sandstone"] = "default:silver_sand 4",
|
|
|
|
["default:tree"] = "default:leaves 8",
|
|
|
|
["default:jungletree"] = "default:jungleleaves 8",
|
|
|
|
["default:pine_tree"] = "default:pine_needles 8",
|
|
|
|
["default:acacia_tree"] = "default:acacia_leaves 8",
|
|
|
|
["default:aspen_tree"] = "default:aspen_leaves 8"}
|
|
|
|
) do
|
|
|
|
tubelib.add_grinder_recipe({input=k, output=v})
|
|
|
|
end
|
2020-11-15 20:25:38 +01:00
|
|
|
|
|
|
|
if minetest.global_exists("skytest") then
|
2021-07-24 12:22:10 +02:00
|
|
|
temprec = {
|
|
|
|
["default:desert_sand"] = "skytest:dust",
|
|
|
|
["default:silver_sand"] = "skytest:dust",
|
|
|
|
["default:sand"] = "skytest:dust",
|
|
|
|
["skytest:dust 12"] = "skytest:powder"}
|
2020-11-15 20:25:38 +01:00
|
|
|
else
|
2021-07-24 12:22:10 +02:00
|
|
|
temprec = {
|
|
|
|
["default:desert_sand"] = "default:clay",
|
|
|
|
["default:silver_sand"] = "default:clay",
|
|
|
|
["default:sand"] = "default:clay"}
|
2020-11-15 20:25:38 +01:00
|
|
|
end
|
|
|
|
|
2021-07-24 12:22:10 +02:00
|
|
|
for k,v in pairs(temprec) do tubelib.add_grinder_recipe({input=k, output=v}) end
|
|
|
|
temprec = nil
|
|
|
|
|
2021-06-05 14:06:31 +02:00
|
|
|
if minetest.get_modpath("underch") then
|
|
|
|
for regnodename,v in pairs(minetest.registered_nodes) do
|
|
|
|
if string.find(regnodename, "underch:") then
|
|
|
|
if string.find(regnodename, "_cobble") and not string.find(regnodename, "_wall") then
|
|
|
|
print("tubelib.add_grinder_recipe: " .. regnodename)
|
|
|
|
tubelib.add_grinder_recipe({input=regnodename, output="default:gravel"})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-07-24 12:22:10 +02:00
|
|
|
--Ethereal trees
|
|
|
|
if minetest.get_modpath("ethereal") then
|
|
|
|
for k,v in pairs({
|
|
|
|
["ethereal:sakura_trunk"] = "ethereal:sakura_leaves 8",
|
|
|
|
["ethereal:willow_trunk"] = "ethereal:willow_twig 8",
|
|
|
|
["ethereal:redwood_trunk"] = "ethereal:redwood_leaves 8",
|
|
|
|
["ethereal:frost_tree"] = "ethereal:frost_leaves 8",
|
|
|
|
["ethereal:yellow_trunk"] = "ethereal:yellowleaves 8",
|
|
|
|
["ethereal:palm_trunk"] = "ethereal:palmleaves 8",
|
|
|
|
["ethereal:banana_trunk"] = "ethereal:bananaleaves 8",
|
|
|
|
["ethereal:birch_trunk"] = "ethereal:birch_leaves 8",
|
|
|
|
["ethereal:bamboo"] = "ethereal:bamboo_leaves 8",
|
|
|
|
["ethereal:olive_trunk"] = "ethereal:olive_leaves 8"}
|
|
|
|
) do tubelib.add_grinder_recipe({input=k, output=v}) end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Cool Trees
|
|
|
|
for _,v in pairs({
|
|
|
|
"baldcypress",
|
|
|
|
"bamboo",
|
|
|
|
"birch",
|
|
|
|
"cherrytree",
|
|
|
|
"chestnuttree",
|
|
|
|
"clementinetree",
|
|
|
|
"ebony",
|
|
|
|
"hollytree",
|
|
|
|
"larch",
|
|
|
|
"lemontree",
|
|
|
|
"mahogany",
|
|
|
|
"maple",
|
|
|
|
"oak",
|
|
|
|
"palm",
|
|
|
|
"plumtree",
|
|
|
|
"pomegranate",
|
|
|
|
"willow"
|
|
|
|
}) do
|
|
|
|
if minetest.get_modpath(v) then tubelib.add_grinder_recipe({input=v .. ":trunk", output=v .. ":leaves 8"}) end
|
|
|
|
end
|
|
|
|
|
|
|
|
if minetest.get_modpath("jacaranda") then tubelib.add_grinder_recipe({input="jacaranda:trunk", output = "jacaranda:blossom_leaves 8"}) end
|
|
|
|
|
2020-11-15 20:25:38 +01:00
|
|
|
|