2013-09-29 00:15:37 +02:00
|
|
|
|
|
|
|
minetest.register_privilege("creative", {
|
2013-10-03 04:20:54 +02:00
|
|
|
description = "Can use the creative inventory",
|
2013-09-29 00:15:37 +02:00
|
|
|
give_to_singleplayer = false,
|
|
|
|
})
|
|
|
|
|
|
|
|
local trash = minetest.create_detached_inventory("trash", {
|
|
|
|
--allow_put = function(inv, listname, index, stack, player)
|
|
|
|
-- if unified_inventory.is_creative(player:get_player_name()) then
|
|
|
|
-- return stack:get_count()
|
|
|
|
-- else
|
|
|
|
-- return 0
|
|
|
|
-- end
|
|
|
|
--end,
|
|
|
|
on_put = function(inv, listname, index, stack, player)
|
|
|
|
inv:set_stack(listname, index, nil)
|
|
|
|
local player_name = player:get_player_name()
|
|
|
|
minetest.sound_play("trash", {to_player=player_name, gain = 1.0})
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
trash:set_size("main", 1)
|
|
|
|
|
|
|
|
unified_inventory.register_button("craft", {
|
|
|
|
type = "image",
|
|
|
|
image = "ui_craft_icon.png",
|
|
|
|
})
|
|
|
|
|
|
|
|
unified_inventory.register_button("craftguide", {
|
|
|
|
type = "image",
|
|
|
|
image = "ui_craftguide_icon.png",
|
|
|
|
})
|
|
|
|
|
|
|
|
unified_inventory.register_button("home_gui_set", {
|
|
|
|
type = "image",
|
|
|
|
image = "ui_sethome_icon.png",
|
|
|
|
action = function(player)
|
|
|
|
local player_name = player:get_player_name()
|
|
|
|
unified_inventory.set_home(player, player:getpos())
|
|
|
|
local home = unified_inventory.home_pos[player_name]
|
|
|
|
if home ~= nil then
|
|
|
|
minetest.sound_play("dingdong",
|
|
|
|
{to_player=player_name, gain = 1.0})
|
|
|
|
minetest.chat_send_player(player_name,
|
|
|
|
"Home position set to: "
|
|
|
|
..minetest.pos_to_string(home))
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
unified_inventory.register_button("home_gui_go", {
|
|
|
|
type = "image",
|
|
|
|
image = "ui_gohome_icon.png",
|
|
|
|
action = function(player)
|
|
|
|
minetest.sound_play("teleport",
|
|
|
|
{to_player=player:get_player_name(), gain = 1.0})
|
|
|
|
unified_inventory.go_home(player)
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
unified_inventory.register_button("misc_set_day", {
|
|
|
|
type = "image",
|
|
|
|
image = "ui_sun_icon.png",
|
|
|
|
action = function(player)
|
|
|
|
local player_name = player:get_player_name()
|
2014-01-19 19:27:52 +01:00
|
|
|
if minetest.check_player_privs(player_name, {settime=true}) then
|
2013-09-29 00:15:37 +02:00
|
|
|
minetest.sound_play("birds",
|
|
|
|
{to_player=player_name, gain = 1.0})
|
|
|
|
minetest.set_timeofday((6000 % 24000) / 24000)
|
|
|
|
minetest.chat_send_player(player_name,
|
|
|
|
"Time of day set to 6am")
|
|
|
|
else
|
|
|
|
minetest.chat_send_player(player_name,
|
|
|
|
"You don't have the"
|
|
|
|
.." settime priviledge!")
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
unified_inventory.register_button("misc_set_night", {
|
|
|
|
type = "image",
|
|
|
|
image = "ui_moon_icon.png",
|
|
|
|
action = function(player)
|
|
|
|
local player_name = player:get_player_name()
|
|
|
|
if minetest.check_player_privs(player_name, {settime=true}) then
|
|
|
|
minetest.sound_play("owl",
|
|
|
|
{to_player=player_name, gain = 1.0})
|
|
|
|
minetest.set_timeofday((21000 % 24000) / 24000)
|
|
|
|
minetest.chat_send_player(player_name,
|
|
|
|
"Time of day set to 9pm")
|
|
|
|
else
|
|
|
|
minetest.chat_send_player(player_name,
|
|
|
|
"You don't have the"
|
2014-01-19 19:27:52 +01:00
|
|
|
.." settime priviledge!")
|
2013-09-29 00:15:37 +02:00
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
unified_inventory.register_button("clear_inv", {
|
|
|
|
type = "image",
|
|
|
|
image = "ui_trash_icon.png",
|
|
|
|
action = function(player)
|
|
|
|
local player_name = player:get_player_name()
|
|
|
|
if not unified_inventory.is_creative(player_name) then
|
|
|
|
minetest.chat_send_player(player_name,
|
|
|
|
"This button has been disabled outside"
|
|
|
|
.." of creative mode to prevent"
|
|
|
|
.." accidental inventory trashing."
|
|
|
|
.." Use the trash slot instead.")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
player:get_inventory():set_list("main", {})
|
|
|
|
minetest.chat_send_player(player_name, 'Inventory Cleared!')
|
|
|
|
minetest.sound_play("trash_all",
|
|
|
|
{to_player=player_name, gain = 1.0})
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
unified_inventory.register_page("craft", {
|
|
|
|
get_formspec = function(player, formspec)
|
|
|
|
local player_name = player:get_player_name()
|
2013-10-05 22:48:45 +02:00
|
|
|
local formspec = "background[0,1;8,3;ui_crafting_form.png]"
|
|
|
|
formspec = formspec.."background[0,4.5;8,4;ui_main_inventory.png]"
|
2014-01-27 12:15:25 +01:00
|
|
|
formspec = formspec.."image[0,0;1,1;ui_craft_icon.png]"
|
|
|
|
formspec = formspec.."label[1,0;Crafting]"
|
2013-11-05 16:43:50 +01:00
|
|
|
formspec = formspec.."listcolors[#00000000;#00000000]"
|
2013-09-29 00:15:37 +02:00
|
|
|
formspec = formspec.."list[current_player;craftpreview;6,1;1,1;]"
|
|
|
|
formspec = formspec.."list[current_player;craft;2,1;3,3;]"
|
|
|
|
formspec = formspec.."label[7,2.5;Trash:]"
|
|
|
|
formspec = formspec.."list[detached:trash;main;7,3;1,1;]"
|
|
|
|
if unified_inventory.is_creative(player_name) then
|
|
|
|
formspec = formspec.."label[0,2.5;Refill:]"
|
|
|
|
formspec = formspec.."list[detached:"..player_name.."refill;main;0,3;1,1;]"
|
|
|
|
end
|
2013-10-03 05:25:07 +02:00
|
|
|
return {formspec=formspec}
|
2013-09-29 00:15:37 +02:00
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
unified_inventory.register_page("craftguide", {
|
2013-10-03 05:25:07 +02:00
|
|
|
get_formspec = function(player)
|
2013-09-29 00:15:37 +02:00
|
|
|
local player_name = player:get_player_name()
|
2013-10-05 22:48:45 +02:00
|
|
|
local formspec = "background[0,1;8,3;ui_craftguide_form.png]"
|
|
|
|
formspec = formspec.."background[0,4.5;8,4;ui_main_inventory.png]"
|
2014-01-27 12:15:25 +01:00
|
|
|
formspec = formspec.."image[0,0;1,1;ui_craftguide_icon.png]"
|
|
|
|
formspec = formspec.."label[1,0;Crafting Guide]"
|
2013-11-05 16:43:50 +01:00
|
|
|
formspec = formspec.."listcolors[#00000000;#00000000]"
|
2013-09-29 00:15:37 +02:00
|
|
|
formspec = formspec.."list[detached:"..player_name.."craftrecipe;output;6,1;1,1;]"
|
2013-10-21 00:02:25 +02:00
|
|
|
formspec = formspec.."label[6,3.35;Method:]"
|
2013-09-29 00:15:37 +02:00
|
|
|
local item_name = unified_inventory.current_item[player_name]
|
2013-10-03 04:20:54 +02:00
|
|
|
local craft = nil
|
2013-09-29 00:15:37 +02:00
|
|
|
if item_name then
|
2014-01-27 12:15:25 +01:00
|
|
|
formspec = formspec.."textarea[1.3,0.6;10,1;;Result: "..item_name..";]"
|
2013-09-29 00:15:37 +02:00
|
|
|
local alternates = 0
|
|
|
|
local alternate = unified_inventory.alternate[player_name]
|
|
|
|
local crafts = unified_inventory.crafts_table[item_name]
|
|
|
|
if crafts ~= nil and #crafts > 0 then
|
|
|
|
alternates = #crafts
|
2013-10-03 04:20:54 +02:00
|
|
|
craft = crafts[alternate]
|
2013-09-29 00:15:37 +02:00
|
|
|
local method = craft.type
|
2013-10-21 00:02:25 +02:00
|
|
|
local allow_auto_craft = ((method == "normal") or (method == "shapeless"))
|
2013-10-03 04:20:54 +02:00
|
|
|
if craft.type == "normal" then
|
|
|
|
method = "crafting"
|
|
|
|
elseif craft.type == "shapeless" then
|
|
|
|
method = "shapeless crafting"
|
|
|
|
elseif craft.type == "alloy" then
|
|
|
|
method = "alloy cooking"
|
2013-09-29 00:15:37 +02:00
|
|
|
end
|
2013-10-21 00:02:25 +02:00
|
|
|
formspec = formspec.."label[6,3.75;"..method.."]"
|
|
|
|
if allow_auto_craft then
|
|
|
|
formspec = formspec.."label[6,1.95;Copy to craft grid:]"
|
2013-12-21 05:45:59 +01:00
|
|
|
.."button[6,2.5;0.6,0.5;craftguide_craft_1;1]"
|
|
|
|
.."button[6.6,2.5;0.6,0.5;craftguide_craft_10;10]"
|
|
|
|
.."button[7.2,2.5;0.6,0.5;craftguide_craft_max;All]"
|
2013-10-21 00:02:25 +02:00
|
|
|
end
|
2013-09-29 00:15:37 +02:00
|
|
|
end
|
|
|
|
if alternates > 1 then
|
|
|
|
formspec = formspec.."label[0,2.6;Recipe "
|
|
|
|
..tostring(alternate).." of "
|
|
|
|
..tostring(alternates).."]"
|
2013-12-21 05:45:59 +01:00
|
|
|
.."button[0,3.15;2,1;alternate;Alternate]"
|
2013-09-29 00:15:37 +02:00
|
|
|
end
|
|
|
|
end
|
2013-10-03 04:20:54 +02:00
|
|
|
|
|
|
|
local craftinv = minetest.get_inventory({
|
|
|
|
type = "detached",
|
|
|
|
name = player_name.."craftrecipe"
|
|
|
|
})
|
|
|
|
|
2013-10-05 22:48:45 +02:00
|
|
|
-- fake buttons just to make 3x3 grid
|
|
|
|
for y = 1, 3 do
|
|
|
|
for x = 1, 3 do
|
|
|
|
formspec = formspec.."image_button["
|
|
|
|
..(1.0 + x)..","..(0.0 + y)..";1.1,1.1;ui_blank_image.png;;]"
|
2013-10-06 05:51:49 +02:00
|
|
|
end
|
2013-10-05 22:48:45 +02:00
|
|
|
end
|
|
|
|
|
2013-10-03 04:20:54 +02:00
|
|
|
if not craft then
|
|
|
|
craftinv:set_stack("output", 1, nil)
|
2013-10-03 05:25:07 +02:00
|
|
|
return {formspec=formspec}
|
2013-10-03 04:20:54 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
craftinv:set_stack("output", 1, craft.output)
|
|
|
|
|
|
|
|
local width = craft.width
|
|
|
|
if width == 0 then
|
|
|
|
-- Shapeless recipe
|
|
|
|
width = 3
|
|
|
|
end
|
|
|
|
|
|
|
|
local i = 1
|
|
|
|
for y = 1, 3 do
|
|
|
|
for x = 1, width do
|
|
|
|
local item = craft.items[i]
|
|
|
|
if item then
|
|
|
|
if string.sub(item, 1, 6) == "group:" then
|
|
|
|
local group = string.sub(item, 7)
|
|
|
|
formspec = formspec.."image_button["
|
2013-10-05 22:48:45 +02:00
|
|
|
..(1.0 + x)..","..(0.0 + y)..";1.1,1.1;"
|
2014-01-19 17:34:44 +01:00
|
|
|
.."ui_group.png;"
|
|
|
|
.."item_group_"..minetest.formspec_escape(group)..";"
|
2013-10-03 04:20:54 +02:00
|
|
|
..minetest.formspec_escape(group).."]"
|
|
|
|
else
|
|
|
|
formspec = formspec.."item_image_button["
|
2013-10-05 22:48:45 +02:00
|
|
|
..(1.0 + x)..","..(0.0 + y)..";1.1,1.1;"
|
2013-10-03 04:20:54 +02:00
|
|
|
..minetest.formspec_escape(item)..";"
|
|
|
|
.."item_button_"
|
|
|
|
..minetest.formspec_escape(item)..";]"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
i = i + 1
|
|
|
|
end
|
|
|
|
end
|
2013-10-03 05:25:07 +02:00
|
|
|
return {formspec=formspec}
|
2013-09-29 00:15:37 +02:00
|
|
|
end,
|
|
|
|
})
|
2013-10-03 05:25:07 +02:00
|
|
|
|
2013-10-21 00:02:25 +02:00
|
|
|
minetest.register_on_player_receive_fields(function(player, formname, fields)
|
|
|
|
local amount
|
|
|
|
for k, v in pairs(fields) do
|
|
|
|
amount = k:match("craftguide_craft_(.*)")
|
|
|
|
if amount then break end
|
|
|
|
end
|
|
|
|
if not amount then return end
|
|
|
|
local player_name = player:get_player_name()
|
|
|
|
local recipe_inv = minetest.get_inventory({
|
|
|
|
type="detached",
|
|
|
|
name=player_name.."craftrecipe",
|
|
|
|
})
|
|
|
|
|
|
|
|
local output = unified_inventory.current_item[player_name]
|
|
|
|
if (not output) or (output == "") then return end
|
|
|
|
|
|
|
|
local player_inv = player:get_inventory()
|
|
|
|
|
|
|
|
local crafts = unified_inventory.crafts_table[output]
|
|
|
|
if (not crafts) or (#crafts == 0) then return end
|
|
|
|
|
|
|
|
local alternate = unified_inventory.alternate[player_name]
|
|
|
|
|
|
|
|
local craft = crafts[alternate]
|
|
|
|
if craft.width > 3 then return end
|
|
|
|
|
|
|
|
local needed = craft.items
|
|
|
|
|
|
|
|
local craft_list = player_inv:get_list("craft")
|
|
|
|
|
|
|
|
local width = craft.width
|
|
|
|
if width == 0 then
|
|
|
|
-- Shapeless recipe
|
|
|
|
width = 3
|
|
|
|
end
|
|
|
|
|
|
|
|
if amount == "max" then
|
|
|
|
amount = 99 -- Arbitrary; need better way to do this.
|
|
|
|
else
|
|
|
|
amount = tonumber(amount)
|
|
|
|
end
|
|
|
|
|
|
|
|
for iter = 1, amount do
|
|
|
|
local index = 1
|
|
|
|
for y = 1, 3 do
|
|
|
|
for x = 1, width do
|
|
|
|
local needed_item = needed[index]
|
|
|
|
if needed_item then
|
|
|
|
local craft_index = ((y - 1) * 3) + x
|
|
|
|
local craft_item = craft_list[craft_index]
|
|
|
|
if (not craft_item) or (craft_item:is_empty()) or (craft_item:get_name() == needed_item) then
|
|
|
|
itemname = craft_item and craft_item:get_name() or needed_item
|
|
|
|
local needed_stack = ItemStack(needed_item)
|
|
|
|
if player_inv:contains_item("main", needed_stack) then
|
|
|
|
local count = (craft_item and craft_item:get_count() or 0) + 1
|
|
|
|
if count <= needed_stack:get_definition().stack_max then
|
|
|
|
local stack = ItemStack({name=needed_item, count=count})
|
|
|
|
craft_list[craft_index] = stack
|
|
|
|
player_inv:remove_item("main", needed_stack)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
index = index + 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
player_inv:set_list("craft", craft_list)
|
|
|
|
|
|
|
|
unified_inventory.set_inventory_formspec(player, "craft")
|
|
|
|
end)
|