1
0
mirror of https://codeberg.org/minenux/minetest-mod-xdecor synced 2023-10-20 21:43:39 -07:00
minetest-mod-xdecor/worktable.lua

173 lines
5.2 KiB
Lua
Raw Normal View History

2015-08-05 16:47:52 +02:00
local worktable = {}
local material = {
2015-06-25 17:25:36 +02:00
"cloud", -- Only used for the formspec display.
"wood", "junglewood", "pinewood", "acacia_wood",
"tree", "jungletree", "pinetree", "acacia_tree",
2015-06-25 17:25:36 +02:00
"cobble", "mossycobble", "desert_cobble",
"stone", "sandstone", "desert_stone", "obsidian",
"stonebrick", "sandstonebrick", "desert_stonebrick", "obsidianbrick",
"snowblock", "coalblock", "copperblock", "steelblock", "goldblock",
"bronzeblock", "mese", "diamondblock",
"brick", "cactus", "clay", "ice", "meselamp",
2015-06-25 17:25:36 +02:00
"glass", "obsidian_glass"
}
local def = { -- Node name, yield, nodebox shape.
2015-08-03 00:36:32 +02:00
{"nanoslab", "16", {-0.5, -0.5, -0.5, 0, -0.4375, 0}},
{"micropanel", "16", {-0.5, -0.5, -0.5, 0.5, -0.4375, 0}},
{"microslab", "8", {-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5}},
{"panel", "4", {-0.5, -0.5, -0.5, 0.5, 0, 0}},
{"slab", "2", {-0.5, -0.5, -0.5, 0.5, 0, 0.5}},
{"outerstair", "1", {{-0.5, -0.5, -0.5, 0.5, 0, 0.5}, {-0.5, 0, 0, 0, 0.5, 0.5}}},
{"stair", "1", {{-0.5, -0.5, -0.5, 0.5, 0, 0.5}, {-0.5, 0, 0, 0.5, 0.5, 0.5}}},
{"innerstair", "1", {{-0.5, -0.5, -0.5, 0.5, 0, 0.5}, {-0.5, 0, 0, 0.5, 0.5, 0.5}, {-0.5, 0, -0.5, 0, 0.5, 0}}}
}
2015-08-05 16:47:52 +02:00
function worktable.construct(pos)
local meta = minetest.get_meta(pos)
2015-08-03 00:36:32 +02:00
local nodebtn = {}
2015-06-14 15:29:30 +02:00
for i=1, #def do
2015-06-15 16:37:11 +02:00
nodebtn[#nodebtn+1] = "item_image_button["..(i-1)..
",0.5;1,1;xdecor:"..def[i][1].."_cloud;"..def[i][1]..";]"
end
2015-06-14 19:55:59 +02:00
nodebtn = table.concat(nodebtn)
2015-06-16 18:47:29 +02:00
meta:set_string("formspec", "size[8,7;]"..xdecor.fancy_gui..
"label[0,0;Cut your material into...]"..
2015-06-14 15:29:30 +02:00
nodebtn..
"label[0,1.5;Input]"..
"list[current_name;input;0,2;1,1;]"..
"image[1,2;1,1;xdecor_saw.png]"..
"label[2,1.5;Output]"..
"list[current_name;output;2,2;1,1;]"..
"label[5,1.5;Tool]"..
"list[current_name;tool;5,2;1,1;]"..
2015-07-29 13:52:39 +02:00
"image[6,2;1,1;xdecor_anvil.png]"..
"label[6.8,1.5;Hammer]]"..
"list[current_name;hammer;7,2;1,1;]"..
"list[current_player;main;0,3.25;8,4;]")
2015-06-14 15:29:30 +02:00
meta:set_string("infotext", "Work Table")
2015-06-25 17:25:36 +02:00
local inv = meta:get_inventory()
inv:set_size("output", 1)
inv:set_size("input", 1)
inv:set_size("tool", 1)
inv:set_size("hammer", 1)
end
2015-08-05 16:47:52 +02:00
function worktable.fields(pos, formname, fields, sender)
local meta = minetest.get_meta(pos)
local inv = meta:get_inventory()
local inputstack = inv:get_stack("input", 1)
local outputstack = inv:get_stack("output", 1)
2015-08-03 00:36:32 +02:00
local outputcount = outputstack:get_count()
local inputname = inputstack:get_name()
2015-06-15 16:37:11 +02:00
local shape, get = {}, {}
local anz = 0
for _, d in pairs(def) do
local nb, anz = d[1], d[2]
2015-08-03 00:36:32 +02:00
if outputcount < 99 and fields[nb] then
shape = "xdecor:"..nb.."_"..string.sub(inputname, 9)
2015-06-15 15:31:18 +02:00
get = shape.." "..anz
if not minetest.registered_nodes[shape] then return end
2015-06-15 15:31:18 +02:00
inv:add_item("output", get)
inputstack:take_item()
inv:set_stack("input", 1, inputstack)
end
end
end
2015-08-05 16:47:52 +02:00
function worktable.dig(pos, player)
local meta = minetest.get_meta(pos)
local inv = meta:get_inventory()
2015-06-25 17:25:36 +02:00
if not inv:is_empty("input") or not inv:is_empty("output") or not
2015-08-03 00:36:32 +02:00
inv:is_empty("hammer") or not inv:is_empty("tool") then
2015-06-25 17:25:36 +02:00
return false
end
return true
end
2015-08-05 16:47:52 +02:00
function worktable.put(pos, listname, index, stack, player)
2015-08-02 20:55:19 +02:00
local stackname = stack:get_name()
2015-08-02 23:02:56 +02:00
local count = stack:get_count()
if listname == "output" then return 0 end
2015-08-02 20:55:19 +02:00
if listname == "input" then
2015-08-02 23:02:56 +02:00
if string.find(stackname, "default:") then return count
2015-08-05 16:47:52 +02:00
else return 0 end
2015-08-02 20:55:19 +02:00
end
if listname == "hammer" then
2015-08-02 20:55:19 +02:00
if not (stackname == "xdecor:hammer") then return 0 end
2015-07-05 16:40:33 +02:00
end
if listname == "tool" then
2015-08-02 20:55:19 +02:00
local tdef = minetest.registered_tools[stackname]
local twear = stack:get_wear()
2015-08-02 20:55:19 +02:00
if not (tdef and twear > 0) then return 0 end
end
2015-08-03 00:36:32 +02:00
return count
end
2015-06-13 19:08:35 +02:00
xdecor.register("worktable", {
2015-06-25 17:25:36 +02:00
description = "Work Table",
2015-08-03 00:36:32 +02:00
groups = {cracky=2},
2015-06-25 22:46:40 +02:00
sounds = xdecor.wood,
2015-06-25 17:25:36 +02:00
tiles = {
"xdecor_worktable_top.png", "xdecor_worktable_top.png",
2015-06-13 19:08:35 +02:00
"xdecor_worktable_sides.png", "xdecor_worktable_sides.png",
2015-06-25 17:25:36 +02:00
"xdecor_worktable_front.png", "xdecor_worktable_front.png"
},
2015-08-05 16:47:52 +02:00
on_construct = worktable.construct,
on_receive_fields = worktable.fields,
can_dig = worktable.dig,
allow_metadata_inventory_put = worktable.put
2015-06-25 17:25:36 +02:00
})
2015-08-02 20:55:19 +02:00
for _, m in pairs(material) do
2015-08-03 00:36:32 +02:00
for n=1, #def do
local w = def[n]
local nodename = "default:"..m
local ndef = minetest.registered_nodes[nodename]
if not ndef then return end
xdecor.register(w[1].."_"..m, {
2015-08-05 16:47:52 +02:00
description = string.gsub(w[1], "%l", string.upper, 1),
2015-08-03 00:36:32 +02:00
light_source = ndef.light_source,
sounds = ndef.sounds,
tiles = ndef.tiles,
groups = {snappy=3, not_in_creative_inventory=1},
2015-08-05 16:47:52 +02:00
node_box = {type = "fixed", fixed = w[3]},
2015-08-03 00:36:32 +02:00
on_place = minetest.rotate_node
})
end
end
minetest.register_abm({
2015-06-13 19:08:35 +02:00
nodenames = {"xdecor:worktable"},
2015-08-02 11:32:02 +02:00
interval = 3, chance = 1,
action = function(pos, node, active_object_count, active_object_count_wider)
local meta = minetest.get_meta(pos)
local inv = meta:get_inventory()
local tool = inv:get_stack("tool", 1)
local hammer = inv:get_stack("hammer", 1)
local wear = tool:get_wear()
local wear2 = hammer:get_wear()
2015-08-03 00:36:32 +02:00
local repair = -500 -- Tool's repairing factor (0-65535 -- 0 = new condition).
local wearhammer = 250 -- Hammer's wearing factor (0-65535 -- 0 = new condition).
2015-06-25 17:25:36 +02:00
2015-08-03 00:36:32 +02:00
if tool:is_empty() or hammer:is_empty() or wear == 0 then return end
2015-06-25 17:25:36 +02:00
tool:add_wear(repair)
hammer:add_wear(wearhammer)
inv:set_stack("tool", 1, tool)
inv:set_stack("hammer", 1, hammer)
end
})