2015-08-05 17:47:52 +03:00
|
|
|
local worktable = {}
|
2015-08-22 19:24:00 +03:00
|
|
|
local xbg = default.gui_bg..default.gui_bg_img..default.gui_slots
|
2015-08-05 17:47:52 +03:00
|
|
|
|
2015-06-13 15:05:41 +03:00
|
|
|
local material = {
|
2015-08-22 23:06:36 +03:00
|
|
|
"wood", "junglewood", "pine_wood", "acacia_wood",
|
|
|
|
"tree", "jungletree", "pine_tree", "acacia_tree",
|
2015-06-25 18:25:36 +03:00
|
|
|
"cobble", "mossycobble", "desert_cobble",
|
2015-06-13 15:05:41 +03:00
|
|
|
"stone", "sandstone", "desert_stone", "obsidian",
|
|
|
|
"stonebrick", "sandstonebrick", "desert_stonebrick", "obsidianbrick",
|
2015-08-08 19:29:53 +03:00
|
|
|
"coalblock", "copperblock", "steelblock", "goldblock",
|
2015-08-01 19:30:01 +03:00
|
|
|
"bronzeblock", "mese", "diamondblock",
|
2015-08-08 19:29:53 +03:00
|
|
|
"brick", "cactus", "ice", "meselamp",
|
2015-06-25 18:25:36 +03:00
|
|
|
"glass", "obsidian_glass"
|
|
|
|
}
|
|
|
|
|
2015-08-19 14:54:37 +03:00
|
|
|
local def = { -- Node name, nodebox shape.
|
|
|
|
{"nanoslab", {-.5,-.5,-.5,0,-.4375,0}},
|
|
|
|
{"micropanel", {-.5,-.5,-.5,.5,-.4375,0}},
|
|
|
|
{"microslab", {-.5,-.5,-.5,.5,-.4375,.5}},
|
2015-08-22 19:24:00 +03:00
|
|
|
{"thinstair", {{-.5,-.0625,-.5,.5,0,0},{-.5,.4375,0,.5,.5,.5}}},
|
|
|
|
{"cube", {-.5,-.5,0,0,0,.5}},
|
2015-08-19 14:54:37 +03:00
|
|
|
{"panel", {-.5,-.5,-.5,.5,0,0}},
|
|
|
|
{"slab", {-.5,-.5,-.5,.5,0,.5}},
|
2015-08-22 19:24:00 +03:00
|
|
|
{"doublepanel", {{-.5,-.5,-.5,.5,0,0},{-.5,0,0,.5,.5,.5}}},
|
|
|
|
{"halfstair", {{-.5,-.5,-.5,0,0,.5},{-.5,0,0,0,.5,.5}}},
|
2015-08-19 14:54:37 +03:00
|
|
|
{"outerstair", {{-.5,-.5,-.5,.5,0,.5},{-.5,0,0,0,.5,.5}}},
|
|
|
|
{"stair", {{-.5,-.5,-.5,.5,0,.5},{-.5,0,0,.5,.5,.5}}},
|
|
|
|
{"innerstair", {{-.5,-.5,-.5,.5,0,.5},{-.5,0,0,.5,.5,.5},{-.5,0,-.5,0,.5,0}}}
|
2015-06-13 15:05:41 +03:00
|
|
|
}
|
|
|
|
|
2015-08-22 19:24:00 +03:00
|
|
|
function worktable.crafting(pos)
|
|
|
|
local meta = minetest.get_meta(pos)
|
2015-08-24 19:51:48 +03:00
|
|
|
return "size[8,7;]"..xbg..
|
2015-08-22 19:24:00 +03:00
|
|
|
"list[current_player;main;0,3.3;8,4;]"..
|
|
|
|
"image[5,1;1,1;gui_furnace_arrow_bg.png^[transformR270]"..
|
|
|
|
"list[current_player;craft;2,0;3,3;]"..
|
2015-08-24 19:51:48 +03:00
|
|
|
"list[current_player;craftpreview;6,1;1,1;]"
|
2015-08-22 19:24:00 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
function worktable.storage(pos)
|
2015-08-24 23:04:04 +03:00
|
|
|
local inv = minetest.get_meta(pos):get_inventory()
|
2015-08-22 19:24:00 +03:00
|
|
|
local f = "size[8,7]"..xbg..
|
|
|
|
"list[context;storage;0,0;8,2;]list[current_player;main;0,3.25;8,4;]"
|
2015-08-24 23:04:04 +03:00
|
|
|
inv:set_size("storage", 8*2)
|
2015-08-22 19:24:00 +03:00
|
|
|
return f
|
|
|
|
end
|
|
|
|
|
2015-08-05 17:47:52 +03:00
|
|
|
function worktable.construct(pos)
|
2015-06-13 15:05:41 +03:00
|
|
|
local meta = minetest.get_meta(pos)
|
2015-08-22 19:24:00 +03:00
|
|
|
local inv = meta:get_inventory()
|
2015-06-13 15:05:41 +03:00
|
|
|
|
2015-08-24 19:51:48 +03:00
|
|
|
inv:set_size("forms", 4*3)
|
2015-06-13 15:05:41 +03:00
|
|
|
inv:set_size("input", 1)
|
2015-07-31 16:42:40 +03:00
|
|
|
inv:set_size("tool", 1)
|
|
|
|
inv:set_size("hammer", 1)
|
2015-08-24 19:51:48 +03:00
|
|
|
|
|
|
|
local formspec = "size[8,7;]"..xbg..
|
|
|
|
"list[context;forms;4,0;4,3;]" ..
|
|
|
|
"label[0.95,1.23;Cut]box[-0.05,1;2.05,0.9;#555555]"..
|
|
|
|
"image[3,1;1,1;gui_furnace_arrow_bg.png^[transformR270]"..
|
|
|
|
"label[0.95,2.23;Repair]box[-0.05,2;2.05,0.9;#555555]"..
|
|
|
|
"image[0,1;1,1;xdecor_saw.png]image[0,2;1,1;xdecor_anvil.png]"..
|
|
|
|
"image[3,2;1,1;hammer_layout.png]"..
|
|
|
|
"list[current_name;input;2,1;1,1;]"..
|
|
|
|
"list[current_name;tool;2,2;1,1;]list[current_name;hammer;3,2;1,1;]"..
|
|
|
|
"button[0,0;2,1;craft;Crafting]"..
|
|
|
|
"button[2,0;2,1;storage;Storage]"..
|
|
|
|
"list[current_player;main;0,3.25;8,4;]"
|
|
|
|
|
|
|
|
meta:set_string("formspec", formspec)
|
|
|
|
meta:set_string("infotext", "Work Table")
|
2015-06-13 15:05:41 +03:00
|
|
|
end
|
|
|
|
|
2015-08-22 19:24:00 +03:00
|
|
|
function worktable.fields(pos, _, fields, sender)
|
2015-08-22 23:06:36 +03:00
|
|
|
local player = sender:get_player_name()
|
2015-08-24 23:04:04 +03:00
|
|
|
local inv = minetest.get_meta(pos):get_inventory()
|
2015-08-24 19:51:48 +03:00
|
|
|
|
2015-08-22 23:06:36 +03:00
|
|
|
if fields.storage then
|
|
|
|
minetest.show_formspec(player, "", worktable.storage(pos))
|
2015-08-22 19:24:00 +03:00
|
|
|
end
|
2015-08-22 23:06:36 +03:00
|
|
|
if fields.craft then
|
|
|
|
minetest.show_formspec(player, "", worktable.crafting(pos))
|
2015-08-22 19:24:00 +03:00
|
|
|
end
|
2015-06-13 15:05:41 +03:00
|
|
|
end
|
|
|
|
|
2015-08-19 14:54:37 +03:00
|
|
|
function worktable.anz(n)
|
|
|
|
if n == "nanoslab" or n == "micropanel" then return 16
|
2015-08-22 19:24:00 +03:00
|
|
|
elseif n == "microslab" or n == "thinstair" then return 8
|
|
|
|
elseif n == "panel" or n == "cube" then return 4
|
|
|
|
elseif n == "slab" or n == "halfstair" or n == "doublepanel" then return 2
|
2015-08-19 14:54:37 +03:00
|
|
|
else return 1 end
|
|
|
|
end
|
|
|
|
|
2015-08-12 21:49:07 +03:00
|
|
|
function worktable.dig(pos, _)
|
2015-08-24 23:04:04 +03:00
|
|
|
local inv = minetest.get_meta(pos):get_inventory()
|
2015-08-24 19:51:48 +03:00
|
|
|
if not inv:is_empty("input") or not inv:is_empty("forms") or not
|
2015-08-22 19:24:00 +03:00
|
|
|
inv:is_empty("hammer") or not inv:is_empty("tool") or not
|
2015-08-24 22:44:39 +03:00
|
|
|
inv:is_empty("storage") then
|
2015-06-25 18:25:36 +03:00
|
|
|
return false
|
|
|
|
end
|
2015-06-13 15:05:41 +03:00
|
|
|
return true
|
|
|
|
end
|
2015-06-11 23:06:54 +03:00
|
|
|
|
2015-08-24 19:51:48 +03:00
|
|
|
function worktable.put(pos, listname, _, stack, _)
|
2015-08-02 21:55:19 +03:00
|
|
|
local stackname = stack:get_name()
|
2015-08-03 00:02:56 +03:00
|
|
|
local count = stack:get_count()
|
2015-08-24 19:51:48 +03:00
|
|
|
local mat = table.concat(material)
|
2015-07-05 13:08:33 +03:00
|
|
|
|
2015-08-24 19:51:48 +03:00
|
|
|
if listname == "forms" then return 0 end
|
2015-08-02 21:55:19 +03:00
|
|
|
if listname == "input" then
|
2015-08-07 17:52:36 +03:00
|
|
|
if stackname:find("default:") and mat:match(stackname:sub(9)) then
|
|
|
|
return count
|
|
|
|
else return 0 end
|
2015-08-02 21:55:19 +03:00
|
|
|
end
|
2015-07-31 16:42:40 +03:00
|
|
|
if listname == "hammer" then
|
2015-08-02 21:55:19 +03:00
|
|
|
if not (stackname == "xdecor:hammer") then return 0 end
|
2015-07-05 17:40:33 +03:00
|
|
|
end
|
2015-07-31 16:42:40 +03:00
|
|
|
if listname == "tool" then
|
2015-08-02 21:55:19 +03:00
|
|
|
local tdef = minetest.registered_tools[stackname]
|
2015-07-29 17:51:41 +03:00
|
|
|
local twear = stack:get_wear()
|
2015-08-02 21:55:19 +03:00
|
|
|
if not (tdef and twear > 0) then return 0 end
|
2015-07-29 17:51:41 +03:00
|
|
|
end
|
2015-08-03 01:36:32 +03:00
|
|
|
|
|
|
|
return count
|
2015-07-05 13:08:33 +03:00
|
|
|
end
|
|
|
|
|
2015-08-24 19:51:48 +03:00
|
|
|
function worktable.take(pos, listname, index, stack, player)
|
|
|
|
if listname == "forms" then return -1 end
|
|
|
|
return stack:get_count()
|
|
|
|
end
|
|
|
|
|
2015-08-22 19:24:00 +03:00
|
|
|
function worktable.move(_, from_list, _, to_list, _, count, _)
|
|
|
|
if from_list == "storage" and to_list == "storage" then
|
|
|
|
return count else return 0 end
|
|
|
|
end
|
|
|
|
|
2015-08-24 19:51:48 +03:00
|
|
|
local function update_form_inventory(inv, input_stack)
|
2015-08-24 22:33:34 +03:00
|
|
|
if inv:is_empty("input") then inv:set_list("forms", {}) return end
|
2015-08-24 19:51:48 +03:00
|
|
|
|
|
|
|
local form_inv_list = {}
|
|
|
|
for _, form in pairs(def) do
|
2015-08-24 22:33:34 +03:00
|
|
|
local material_name = input_stack:get_name():match("%a+:(.+)")
|
2015-08-24 19:51:48 +03:00
|
|
|
local form_name = form[1]
|
|
|
|
local count = math.min(worktable.anz(form_name) * inv:get_stack("input", 1):get_count(), input_stack:get_stack_max())
|
2015-08-24 23:50:29 +03:00
|
|
|
|
2015-08-24 22:44:39 +03:00
|
|
|
form_inv_list[#form_inv_list+1] = string.format("xdecor:%s_%s %d", form_name, material_name, count)
|
2015-08-24 19:51:48 +03:00
|
|
|
end
|
|
|
|
inv:set_list("forms", form_inv_list)
|
|
|
|
end
|
|
|
|
|
|
|
|
function worktable.on_put(pos, listname, _, stack, _)
|
|
|
|
if listname == "input" then
|
|
|
|
local inv = minetest.get_meta(pos):get_inventory()
|
|
|
|
update_form_inventory(inv, stack)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function worktable.on_take(pos, listname, index, stack, player)
|
|
|
|
local inv = minetest.get_meta(pos):get_inventory()
|
|
|
|
if listname == "input" then
|
|
|
|
update_form_inventory(inv, stack)
|
|
|
|
elseif listname == "forms" then
|
|
|
|
local form_name = stack:get_name():match("%a+:(%a+)_%a+")
|
|
|
|
local input_stack = inv:get_stack("input", 1)
|
2015-08-24 23:50:29 +03:00
|
|
|
|
2015-08-24 19:51:48 +03:00
|
|
|
input_stack:take_item(math.ceil(stack:get_count() / worktable.anz(form_name)))
|
|
|
|
inv:set_stack("input", 1, input_stack)
|
|
|
|
update_form_inventory(inv, input_stack)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-06-13 20:08:35 +03:00
|
|
|
xdecor.register("worktable", {
|
2015-06-25 18:25:36 +03:00
|
|
|
description = "Work Table",
|
2015-08-08 19:29:53 +03:00
|
|
|
groups = {cracky=2, choppy=2},
|
2015-08-16 22:57:17 +03:00
|
|
|
sounds = default.node_sound_wood_defaults(),
|
2015-06-25 18:25:36 +03:00
|
|
|
tiles = {
|
|
|
|
"xdecor_worktable_top.png", "xdecor_worktable_top.png",
|
2015-06-13 20:08:35 +03:00
|
|
|
"xdecor_worktable_sides.png", "xdecor_worktable_sides.png",
|
2015-06-25 18:25:36 +03:00
|
|
|
"xdecor_worktable_front.png", "xdecor_worktable_front.png"
|
|
|
|
},
|
2015-08-08 19:29:53 +03:00
|
|
|
can_dig = worktable.dig,
|
2015-08-05 17:47:52 +03:00
|
|
|
on_construct = worktable.construct,
|
|
|
|
on_receive_fields = worktable.fields,
|
2015-08-24 19:51:48 +03:00
|
|
|
on_metadata_inventory_put = worktable.on_put,
|
|
|
|
on_metadata_inventory_take = worktable.on_take,
|
2015-08-06 19:18:27 +03:00
|
|
|
allow_metadata_inventory_put = worktable.put,
|
2015-08-24 19:51:48 +03:00
|
|
|
allow_metadata_inventory_take = worktable.take,
|
2015-08-22 19:24:00 +03:00
|
|
|
allow_metadata_inventory_move = worktable.move
|
2015-06-25 18:25:36 +03:00
|
|
|
})
|
2015-06-13 15:05:41 +03:00
|
|
|
|
2015-08-08 16:11:46 +03:00
|
|
|
local function description(m, w)
|
2015-08-24 22:33:34 +03:00
|
|
|
local d = m:gsub("%W", "")
|
|
|
|
return d:gsub("^%l", string.upper).." "..w:gsub("^%l", string.upper)
|
2015-08-08 16:11:46 +03:00
|
|
|
end
|
2015-08-03 01:36:32 +03:00
|
|
|
|
2015-08-08 16:11:46 +03:00
|
|
|
local function groups(m)
|
|
|
|
if m:find("tree") or m:find("wood") or m == "cactus" then
|
|
|
|
return {choppy=3, not_in_creative_inventory=1}
|
2015-08-05 19:06:27 +03:00
|
|
|
end
|
2015-08-08 16:11:46 +03:00
|
|
|
return {cracky=3, not_in_creative_inventory=1}
|
|
|
|
end
|
2015-08-05 19:06:27 +03:00
|
|
|
|
2015-08-08 16:11:46 +03:00
|
|
|
local function shady(w)
|
2015-08-25 02:16:02 +03:00
|
|
|
if w == "stair" or w == "slab" or w == "innerstair" or
|
|
|
|
w == "outerstair" then return false end
|
2015-08-08 16:11:46 +03:00
|
|
|
return true
|
|
|
|
end
|
2015-08-05 19:06:27 +03:00
|
|
|
|
2015-08-08 16:11:46 +03:00
|
|
|
for n = 1, #def do
|
|
|
|
for m = 1, #material do
|
|
|
|
local w, x = def[n], material[m]
|
|
|
|
local nodename = "default:"..x
|
|
|
|
local ndef = minetest.registered_nodes[nodename]
|
|
|
|
if not ndef then break end
|
2015-08-06 16:26:13 +03:00
|
|
|
|
2015-08-08 16:11:46 +03:00
|
|
|
xdecor.register(w[1].."_"..x, {
|
|
|
|
description = description(x, w[1]),
|
2015-08-03 01:36:32 +03:00
|
|
|
light_source = ndef.light_source,
|
|
|
|
sounds = ndef.sounds,
|
|
|
|
tiles = ndef.tiles,
|
2015-08-08 16:11:46 +03:00
|
|
|
groups = groups(x),
|
2015-08-19 14:54:37 +03:00
|
|
|
node_box = {type = "fixed", fixed = w[2]},
|
2015-08-06 16:26:13 +03:00
|
|
|
sunlight_propagates = shady(w[1]),
|
2015-08-03 01:36:32 +03:00
|
|
|
on_place = minetest.rotate_node
|
|
|
|
})
|
|
|
|
end
|
2015-06-11 23:06:54 +03:00
|
|
|
end
|
|
|
|
|
2015-07-31 16:12:42 +03:00
|
|
|
minetest.register_abm({
|
2015-06-13 20:08:35 +03:00
|
|
|
nodenames = {"xdecor:worktable"},
|
2015-08-02 12:32:02 +03:00
|
|
|
interval = 3, chance = 1,
|
2015-08-12 21:49:07 +03:00
|
|
|
action = function(pos, _, _, _)
|
2015-08-24 23:50:29 +03:00
|
|
|
local inv = minetest.get_meta(pos):get_inventory()
|
2015-07-31 16:42:40 +03:00
|
|
|
local tool = inv:get_stack("tool", 1)
|
|
|
|
local hammer = inv:get_stack("hammer", 1)
|
|
|
|
local wear = tool:get_wear()
|
2015-06-25 18:25:36 +03:00
|
|
|
|
2015-08-03 01:36:32 +03:00
|
|
|
if tool:is_empty() or hammer:is_empty() or wear == 0 then return end
|
2015-06-25 18:25:36 +03:00
|
|
|
|
2015-08-24 22:33:34 +03:00
|
|
|
-- Wear : 0-65535 0 = new condition.
|
|
|
|
tool:add_wear(-500)
|
|
|
|
hammer:add_wear(250)
|
2015-06-11 23:06:54 +03:00
|
|
|
|
2015-07-31 16:42:40 +03:00
|
|
|
inv:set_stack("tool", 1, tool)
|
|
|
|
inv:set_stack("hammer", 1, hammer)
|
2015-06-11 23:06:54 +03:00
|
|
|
end
|
|
|
|
})
|