2013-09-21 21:40:20 +02:00
|
|
|
-- Bags for Minetest
|
2012-12-02 10:08:32 +01:00
|
|
|
|
2013-09-21 21:40:20 +02:00
|
|
|
-- Copyright (c) 2012 cornernote, Brett O'Donnell <cornernote@gmail.com>
|
|
|
|
-- License: GPLv3
|
2012-12-02 10:08:32 +01:00
|
|
|
|
2015-02-05 10:03:07 +01:00
|
|
|
local S = unified_inventory.gettext
|
2014-06-21 12:44:31 +02:00
|
|
|
|
2013-09-29 00:15:37 +02:00
|
|
|
unified_inventory.register_page("bags", {
|
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-03 05:25:07 +02:00
|
|
|
local formspec = "background[0.06,0.99;7.92,7.52;ui_bags_main_form.png]"
|
2014-06-21 12:44:31 +02:00
|
|
|
formspec = formspec.."label[0,0;"..S("Bags").."]"
|
2013-09-29 00:15:37 +02:00
|
|
|
formspec = formspec.."button[0,2;2,0.5;bag1;Bag 1]"
|
|
|
|
formspec = formspec.."button[2,2;2,0.5;bag2;Bag 2]"
|
|
|
|
formspec = formspec.."button[4,2;2,0.5;bag3;Bag 3]"
|
|
|
|
formspec = formspec.."button[6,2;2,0.5;bag4;Bag 4]"
|
2013-11-05 16:43:50 +01:00
|
|
|
formspec = formspec.."listcolors[#00000000;#00000000]"
|
2014-04-29 18:53:43 +02:00
|
|
|
formspec = formspec.."list[detached:"..minetest.formspec_escape(player_name).."_bags;bag1;0.5,1;1,1;]"
|
|
|
|
formspec = formspec.."list[detached:"..minetest.formspec_escape(player_name).."_bags;bag2;2.5,1;1,1;]"
|
|
|
|
formspec = formspec.."list[detached:"..minetest.formspec_escape(player_name).."_bags;bag3;4.5,1;1,1;]"
|
|
|
|
formspec = formspec.."list[detached:"..minetest.formspec_escape(player_name).."_bags;bag4;6.5,1;1,1;]"
|
2013-10-03 05:25:07 +02:00
|
|
|
return {formspec=formspec}
|
2013-09-29 00:15:37 +02:00
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
unified_inventory.register_button("bags", {
|
|
|
|
type = "image",
|
|
|
|
image = "ui_bags_icon.png",
|
2014-06-21 12:44:31 +02:00
|
|
|
tooltip = S("Bags")
|
2013-09-29 00:15:37 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
for i = 1, 4 do
|
|
|
|
unified_inventory.register_page("bag"..i, {
|
2013-10-03 05:25:07 +02:00
|
|
|
get_formspec = function(player)
|
2013-09-29 00:15:37 +02:00
|
|
|
local stack = player:get_inventory():get_stack("bag"..i, 1)
|
|
|
|
local image = stack:get_definition().inventory_image
|
2013-10-03 05:25:07 +02:00
|
|
|
local formspec = "image[7,0;1,1;"..image.."]"
|
2014-04-29 18:19:57 +02:00
|
|
|
formspec = formspec.."label[0,0;Bag "..i.."]"
|
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;bag"..i.."contents;0,1;8,3;]"
|
|
|
|
local slots = stack:get_definition().groups.bagslots
|
|
|
|
if slots == 8 then
|
|
|
|
formspec = formspec.."background[0.06,0.99;7.92,7.52;ui_bags_sm_form.png]"
|
|
|
|
elseif slots == 16 then
|
|
|
|
formspec = formspec.."background[0.06,0.99;7.92,7.52;ui_bags_med_form.png]"
|
|
|
|
elseif slots == 24 then
|
|
|
|
formspec = formspec.."background[0.06,0.99;7.92,7.52;ui_bags_lg_form.png]"
|
|
|
|
end
|
2013-10-03 05:25:07 +02:00
|
|
|
return {formspec=formspec}
|
2013-09-29 00:15:37 +02:00
|
|
|
end,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
minetest.register_on_player_receive_fields(function(player, formname, fields)
|
2013-12-04 16:43:49 +01:00
|
|
|
if formname ~= "" then
|
|
|
|
return
|
|
|
|
end
|
2013-09-29 00:15:37 +02:00
|
|
|
for i = 1, 4 do
|
|
|
|
if fields["bag"..i] then
|
|
|
|
local stack = player:get_inventory():get_stack("bag"..i, 1)
|
|
|
|
if not stack:get_definition().groups.bagslots then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
unified_inventory.set_inventory_formspec(player, "bag"..i)
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
2012-12-02 10:08:32 +01:00
|
|
|
minetest.register_on_joinplayer(function(player)
|
|
|
|
local player_inv = player:get_inventory()
|
|
|
|
local bags_inv = minetest.create_detached_inventory(player:get_player_name().."_bags",{
|
|
|
|
on_put = function(inv, listname, index, stack, player)
|
|
|
|
player:get_inventory():set_stack(listname, index, stack)
|
2013-09-21 21:40:20 +02:00
|
|
|
player:get_inventory():set_size(listname.."contents",
|
|
|
|
stack:get_definition().groups.bagslots)
|
2012-12-02 10:08:32 +01:00
|
|
|
end,
|
|
|
|
on_take = function(inv, listname, index, stack, player)
|
|
|
|
player:get_inventory():set_stack(listname, index, nil)
|
|
|
|
end,
|
|
|
|
allow_put = function(inv, listname, index, stack, player)
|
|
|
|
if stack:get_definition().groups.bagslots then
|
|
|
|
return 1
|
|
|
|
else
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
allow_take = function(inv, listname, index, stack, player)
|
2013-09-29 00:15:37 +02:00
|
|
|
if player:get_inventory():is_empty(listname.."contents") then
|
2012-12-02 10:08:32 +01:00
|
|
|
return stack:get_count()
|
|
|
|
else
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
allow_move = function(inv, from_list, from_index, to_list, to_index, count, player)
|
|
|
|
return 0
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
for i=1,4 do
|
|
|
|
local bag = "bag"..i
|
|
|
|
player_inv:set_size(bag, 1)
|
|
|
|
bags_inv:set_size(bag, 1)
|
2013-09-21 21:40:20 +02:00
|
|
|
bags_inv:set_stack(bag, 1, player_inv:get_stack(bag, 1))
|
2012-12-02 10:08:32 +01:00
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
|
|
|
-- register bag tools
|
|
|
|
minetest.register_tool("unified_inventory:bag_small", {
|
2014-06-21 12:44:31 +02:00
|
|
|
description = S("Small Bag"),
|
2012-12-02 10:08:32 +01:00
|
|
|
inventory_image = "bags_small.png",
|
|
|
|
groups = {bagslots=8},
|
|
|
|
})
|
2013-09-21 21:40:20 +02:00
|
|
|
|
2012-12-02 10:08:32 +01:00
|
|
|
minetest.register_tool("unified_inventory:bag_medium", {
|
2014-06-21 12:44:31 +02:00
|
|
|
description = S("Medium Bag"),
|
2012-12-02 10:08:32 +01:00
|
|
|
inventory_image = "bags_medium.png",
|
|
|
|
groups = {bagslots=16},
|
|
|
|
})
|
2013-09-21 21:40:20 +02:00
|
|
|
|
2012-12-02 10:08:32 +01:00
|
|
|
minetest.register_tool("unified_inventory:bag_large", {
|
2014-06-21 12:44:31 +02:00
|
|
|
description = S("Large Bag"),
|
2012-12-02 10:08:32 +01:00
|
|
|
inventory_image = "bags_large.png",
|
|
|
|
groups = {bagslots=24},
|
|
|
|
})
|
|
|
|
|
|
|
|
-- register bag crafts
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "unified_inventory:bag_small",
|
|
|
|
recipe = {
|
2015-08-06 08:33:11 +02:00
|
|
|
{"", "farming:cotton", ""},
|
|
|
|
{"group:wool", "group:wool", "group:wool"},
|
|
|
|
{"group:wool", "group:wool", "group:wool"},
|
2013-09-21 21:40:20 +02:00
|
|
|
},
|
2012-12-02 10:08:32 +01:00
|
|
|
})
|
2013-09-21 21:40:20 +02:00
|
|
|
|
2012-12-02 10:08:32 +01:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "unified_inventory:bag_medium",
|
|
|
|
recipe = {
|
2015-08-06 08:33:11 +02:00
|
|
|
{"", "", ""},
|
|
|
|
{"farming:cotton", "unified_inventory:bag_small", "farming:cotton"},
|
|
|
|
{"farming:cotton", "unified_inventory:bag_small", "farming:cotton"},
|
2013-09-21 21:40:20 +02:00
|
|
|
},
|
2012-12-02 10:08:32 +01:00
|
|
|
})
|
2013-09-21 21:40:20 +02:00
|
|
|
|
2012-12-02 10:08:32 +01:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "unified_inventory:bag_large",
|
|
|
|
recipe = {
|
2015-08-06 08:33:11 +02:00
|
|
|
{"", "", ""},
|
|
|
|
{"farming:cotton", "unified_inventory:bag_medium", "farming:cotton"},
|
|
|
|
{"farming:cotton", "unified_inventory:bag_medium", "farming:cotton"},
|
2012-12-02 10:08:32 +01:00
|
|
|
},
|
|
|
|
})
|
2013-09-21 21:40:20 +02:00
|
|
|
|