xdecor/src/workbench.lua

350 lines
9.1 KiB
Lua
Raw Normal View History

2016-02-14 07:20:18 -08:00
local workbench = {}
WB = {}
screwdriver = screwdriver or {}
local min, ceil = math.min, math.ceil
2017-01-28 07:24:35 -08:00
local registered_nodes = minetest.registered_nodes
2015-08-05 07:47:52 -07:00
2017-01-23 18:23:36 -08:00
-- Nodes allowed to be cut
-- Only the regular, solid blocks without metas or explosivity can be cut
local nodes = {}
2017-01-28 07:24:35 -08:00
for node, def in pairs(registered_nodes) do
if xdecor.stairs_valid_def(def) then
2019-07-23 05:03:20 -07:00
nodes[#nodes + 1] = node
end
end
2015-06-25 08:25:36 -07:00
2017-01-23 18:23:36 -08:00
-- Optionally, you can register custom cuttable nodes in the workbench
WB.custom_nodes_register = {
-- "default:leaves",
}
setmetatable(nodes, {
__concat = function(t1, t2)
2019-07-23 05:03:20 -07:00
for i = 1, #t2 do
t1[#t1 + 1] = t2[i]
end
2019-07-23 05:03:20 -07:00
return t1
end
})
2019-07-23 05:03:20 -07:00
nodes = nodes .. WB.custom_nodes_register
2017-01-23 18:23:36 -08:00
-- Nodeboxes definitions
2016-02-14 07:20:18 -08:00
workbench.defs = {
2019-07-23 05:03:20 -07:00
-- Name YieldX YZ WH L
{"nanoslab", 16, { 0, 0, 0, 8, 1, 8 }},
{"micropanel", 16, { 0, 0, 0, 16, 1, 8 }},
{"microslab", 8, { 0, 0, 0, 16, 1, 16 }},
{"thinstair", 8, { 0, 7, 0, 16, 1, 8 },
2019-07-23 05:03:20 -07:00
{ 0, 15, 8, 16, 1, 8 }},
{"cube", 4, { 0, 0, 0, 8, 8, 8 }},
{"panel", 4, { 0, 0, 0, 16, 8, 8 }},
{"slab", 2, nil },
{"doublepanel", 2, { 0, 0, 0, 16, 8, 8 },
2019-07-23 05:03:20 -07:00
{ 0, 8, 8, 16, 8, 8 }},
{"halfstair", 2, { 0, 0, 0, 8, 8, 16 },
2019-07-23 05:03:20 -07:00
{ 0, 8, 8, 8, 8, 8 }},
2017-08-02 11:46:26 -07:00
{"stair_outer", 1, nil },
{"stair", 1, nil },
2017-08-02 11:46:26 -07:00
{"stair_inner", 1, nil }
}
2019-07-23 05:03:20 -07:00
local repairable_tools = {"pick", "axe", "shovel", "sword", "hoe", "armor", "shield"}
2017-01-24 08:05:54 -08:00
-- Tools allowed to be repaired
function workbench:repairable(stack)
2019-07-23 05:03:20 -07:00
for _, t in ipairs(repairable_tools) do
if stack:find(t) then
return true
end
end
2016-02-15 09:11:28 -08:00
end
2016-02-14 07:20:18 -08:00
function workbench:get_output(inv, input, name)
local output = {}
2019-07-23 05:03:20 -07:00
for i = 1, #self.defs do
2017-01-28 07:24:35 -08:00
local nbox = self.defs[i]
local count = min(nbox[2] * input:get_count(), input:get_stack_max())
2019-07-23 05:03:20 -07:00
local item = name .. "_" .. nbox[1]
item = nbox[3] and item or "stairs:" .. nbox[1] .. "_" .. name:match(":(.*)")
output[#output + 1] = item .. " " .. count
end
inv:set_list("forms", output)
end
2019-07-23 05:03:20 -07:00
local main_fs = [[
label[0.9,1.23;Cut]
label[0.9,2.23;Repair]
box[-0.05,1;2.05,0.9;#555555]
box[-0.05,2;2.05,0.9;#555555]
button[0,0;2,1;craft;Crafting]
button[2,0;2,1;storage;Storage]
image[3,1;1,1;gui_furnace_arrow_bg.png^[transformR270]
image[0,1;1,1;worktable_saw.png]
image[0,2;1,1;worktable_anvil.png]
image[3,2;1,1;hammer_layout.png]
list[context;input;2,1;1,1;]
list[context;tool;2,2;1,1;]
list[context;hammer;3,2;1,1;]
list[context;forms;4,0;4,3;]
listring[current_player;main]
listring[context;tool]
listring[current_player;main]
listring[context;hammer]
listring[current_player;main]
listring[context;forms]
listring[current_player;main]
listring[context;input]
]]
local crafting_fs = [[
image[5,1;1,1;gui_furnace_arrow_bg.png^[transformR270]
button[0,0;1.5,1;back;< Back]
list[current_player;craft;2,0;3,3;]
list[current_player;craftpreview;6,1;1,1;]
listring[current_player;main]
listring[current_player;craft]
]]
local storage_fs = [[
list[context;storage;0,1;8,2;]
button[0,0;1.5,1;back;< Back]
listring[context;storage]
listring[current_player;main]
]]
local formspecs = {
2017-01-23 18:23:36 -08:00
-- Main formspec
2019-07-23 05:03:20 -07:00
main_fs,
2017-01-23 18:23:36 -08:00
-- Crafting formspec
2019-07-23 05:03:20 -07:00
crafting_fs,
2017-01-23 18:23:36 -08:00
-- Storage formspec
2019-07-23 05:03:20 -07:00
storage_fs,
}
function workbench:set_formspec(meta, id)
2017-01-28 07:24:35 -08:00
meta:set_string("formspec",
2019-07-23 05:03:20 -07:00
"size[8,7;]list[current_player;main;0,3.25;8,4;]" ..
formspecs[id] .. xbg .. default.get_hotbar_bg(0,3.25))
end
2016-02-14 07:20:18 -08:00
function workbench.construct(pos)
local meta = minetest.get_meta(pos)
local inv = meta:get_inventory()
2015-11-21 07:03:04 -08:00
inv:set_size("tool", 1)
2015-12-22 14:45:37 -08:00
inv:set_size("input", 1)
inv:set_size("hammer", 1)
2015-12-22 14:45:37 -08:00
inv:set_size("forms", 4*3)
inv:set_size("storage", 8*2)
2015-12-22 14:45:37 -08:00
2016-02-14 07:20:18 -08:00
meta:set_string("infotext", "Work Bench")
workbench:set_formspec(meta, 1)
end
2016-02-14 07:20:18 -08:00
function workbench.fields(pos, _, fields)
2017-01-28 07:24:35 -08:00
if fields.quit then return end
2019-07-23 05:03:20 -07:00
local meta = minetest.get_meta(pos)
2019-07-23 05:03:20 -07:00
local id = fields.back and 1 or fields.craft and 2 or fields.storage and 3
if not id then return end
2019-07-23 05:03:20 -07:00
workbench:set_formspec(meta, id)
end
2016-02-14 07:20:18 -08:00
function workbench.dig(pos)
2015-08-24 13:04:04 -07:00
local inv = minetest.get_meta(pos):get_inventory()
return inv:is_empty("input") and inv:is_empty("hammer") and
2017-01-23 18:23:36 -08:00
inv:is_empty("tool") and inv:is_empty("storage")
end
2016-02-14 07:20:18 -08:00
function workbench.timer(pos)
local timer = minetest.get_node_timer(pos)
local inv = minetest.get_meta(pos):get_inventory()
local tool = inv:get_stack("tool", 1)
local hammer = inv:get_stack("hammer", 1)
if tool:is_empty() or hammer:is_empty() or tool:get_wear() == 0 then
2017-01-23 18:23:36 -08:00
timer:stop()
return
end
2019-07-23 05:03:20 -07:00
-- Tool's wearing range: 0-65535; 0 = new condition
tool:add_wear(-500)
hammer:add_wear(700)
inv:set_stack("tool", 1, tool)
inv:set_stack("hammer", 1, hammer)
2019-07-23 05:03:20 -07:00
return true
end
2016-02-14 07:20:18 -08:00
function workbench.put(_, listname, _, stack)
2016-01-07 03:00:02 -08:00
local stackname = stack:get_name()
2016-12-05 03:58:35 -08:00
if (listname == "tool" and stack:get_wear() > 0 and
2019-07-23 05:03:20 -07:00
workbench:repairable(stackname)) or
(listname == "input" and registered_nodes[stackname .. "_cube"]) or
(listname == "hammer" and stackname == "xdecor:hammer") or
listname == "storage" then
return stack:get_count()
end
2019-07-23 05:03:20 -07:00
return 0
end
function workbench.move(_, from_list, _, to_list, _, count)
2017-01-23 18:23:36 -08:00
return (to_list == "storage" and from_list ~= "forms") and count or 0
end
2016-02-14 07:20:18 -08:00
function workbench.on_put(pos, listname, _, stack)
local inv = minetest.get_meta(pos):get_inventory()
if listname == "input" then
2016-01-26 04:31:00 -08:00
local input = inv:get_stack("input", 1)
2016-02-14 07:20:18 -08:00
workbench:get_output(inv, input, stack:get_name())
elseif listname == "tool" or listname == "hammer" then
local timer = minetest.get_node_timer(pos)
2016-02-10 04:57:00 -08:00
timer:start(3.0)
end
end
2017-01-24 08:05:54 -08:00
function workbench.on_take(pos, listname, index, stack, player)
local inv = minetest.get_meta(pos):get_inventory()
2016-01-26 04:31:00 -08:00
local input = inv:get_stack("input", 1)
2017-01-24 08:05:54 -08:00
local inputname = input:get_name()
local stackname = stack:get_name()
if listname == "input" then
2019-07-23 05:03:20 -07:00
if stackname == inputname and registered_nodes[inputname .. "_cube"] then
2017-01-24 08:05:54 -08:00
workbench:get_output(inv, input, stackname)
else
inv:set_list("forms", {})
end
elseif listname == "forms" then
2017-01-24 15:45:23 -08:00
local fromstack = inv:get_stack(listname, index)
if not fromstack:is_empty() and fromstack:get_name() ~= stackname then
local player_inv = player:get_inventory()
if player_inv:room_for_item("main", fromstack) then
player_inv:add_item("main", fromstack)
end
end
input:take_item(ceil(stack:get_count() / workbench.defs[index][2]))
2016-01-26 04:31:00 -08:00
inv:set_stack("input", 1, input)
2017-01-24 08:05:54 -08:00
workbench:get_output(inv, input, inputname)
end
end
2016-02-14 07:20:18 -08:00
xdecor.register("workbench", {
description = "Work Bench",
2019-07-23 05:03:20 -07:00
groups = {cracky = 2, choppy = 2, oddly_breakable_by_hand = 1},
2015-08-16 12:57:17 -07:00
sounds = default.node_sound_wood_defaults(),
2019-07-23 05:03:20 -07:00
tiles = {
"xdecor_workbench_top.png","xdecor_workbench_top.png",
"xdecor_workbench_sides.png", "xdecor_workbench_sides.png",
"xdecor_workbench_front.png", "xdecor_workbench_front.png"
},
on_rotate = screwdriver.rotate_simple,
2016-02-14 07:20:18 -08:00
can_dig = workbench.dig,
on_timer = workbench.timer,
on_construct = workbench.construct,
on_receive_fields = workbench.fields,
on_metadata_inventory_put = workbench.on_put,
on_metadata_inventory_take = workbench.on_take,
allow_metadata_inventory_put = workbench.put,
allow_metadata_inventory_move = workbench.move
2015-06-25 08:25:36 -07:00
})
2019-07-23 05:03:20 -07:00
for _, d in ipairs(workbench.defs) do
for i = 1, #nodes do
local node = nodes[i]
2019-07-19 15:07:47 -07:00
local mod_name, item_name = node:match("^(.-):(.*)")
2017-01-28 07:24:35 -08:00
local def = registered_nodes[node]
2019-07-19 15:07:47 -07:00
if item_name and d[3] then
2016-08-05 15:00:06 -07:00
local groups = {}
local tiles
groups.not_in_creative_inventory = 1
for k, v in pairs(def.groups) do
if k ~= "wood" and k ~= "stone" and k ~= "level" then
groups[k] = v
end
end
2016-02-05 15:22:55 -08:00
if def.tiles then
2017-01-28 07:24:35 -08:00
if #def.tiles > 1 and (def.drawtype:sub(1,5) ~= "glass") then
tiles = def.tiles
2016-02-19 13:24:11 -08:00
else
tiles = {def.tiles[1]}
end
else
2016-02-05 15:22:55 -08:00
tiles = {def.tile_images[1]}
end
2019-07-23 05:03:20 -07:00
if not registered_nodes["stairs:slab_" .. item_name] then
2019-07-19 15:07:47 -07:00
stairs.register_stair_and_slab(item_name, node,
2019-07-23 05:03:20 -07:00
groups, tiles, def.description .. " Stair",
def.description .. " Slab", def.sounds)
2016-02-05 15:22:55 -08:00
end
2016-01-26 04:31:00 -08:00
2019-07-23 05:03:20 -07:00
minetest.register_node(":" .. node .. "_" .. d[1], {
description = def.description .. " " .. d[1]:gsub("^%l", string.upper),
2015-09-17 07:12:01 -07:00
paramtype = "light",
paramtype2 = "facedir",
drawtype = "nodebox",
sounds = def.sounds,
tiles = tiles,
groups = groups,
2017-01-23 18:23:36 -08:00
-- `unpack` has been changed to `table.unpack` in newest Lua versions
node_box = xdecor.pixelbox(16, {unpack(d, 3)}),
sunlight_propagates = true,
on_place = minetest.rotate_node
2015-09-17 07:12:01 -07:00
})
2019-07-23 05:03:20 -07:00
2019-07-19 15:07:47 -07:00
elseif item_name and mod_name then
minetest.register_alias_force(
2019-07-23 05:03:20 -07:00
("%s:%s_innerstair"):format(mod_name, item_name),
("stairs:stair_inner_%s"):format(item_name)
2019-07-19 15:07:47 -07:00
)
minetest.register_alias_force(
2019-07-23 05:03:20 -07:00
("%s:%s_outerstair"):format(mod_name, item_name),
("stairs:stair_outer_%s"):format(item_name)
2019-07-19 15:07:47 -07:00
)
2015-09-17 07:12:01 -07:00
end
2015-09-22 04:58:12 -07:00
end
2015-08-02 15:36:32 -07:00
end
-- Craft items
minetest.register_tool("xdecor:hammer", {
description = "Hammer",
inventory_image = "xdecor_hammer.png",
wield_image = "xdecor_hammer.png",
2019-07-23 05:03:20 -07:00
on_use = function() do
return end
end
})
-- Recipes
minetest.register_craft({
output = "xdecor:hammer",
recipe = {
{"default:steel_ingot", "group:stick", "default:steel_ingot"},
{"", "group:stick", ""}
}
})
minetest.register_craft({
output = "xdecor:workbench",
recipe = {
{"group:wood", "group:wood"},
{"group:wood", "group:wood"}
}
})