2017-01-24 21:18:42 +01:00
|
|
|
-- Prepare player info table
|
|
|
|
local players = {}
|
|
|
|
|
2017-06-02 19:41:52 +02:00
|
|
|
-- Containing all the items for each Creative Mode tab
|
|
|
|
local inventory_lists = {}
|
|
|
|
|
|
|
|
-- Create tables
|
2017-06-02 21:33:50 +02:00
|
|
|
local builtin_filter_ids = {"blocks","deco","redstone","rail","food","tools","combat","brew","matr","misc","all"}
|
2017-06-02 19:41:52 +02:00
|
|
|
for _, f in pairs(builtin_filter_ids) do
|
|
|
|
inventory_lists[f] = {}
|
|
|
|
end
|
|
|
|
|
|
|
|
--[[ Populate all the item tables. We only do this once. Note this mod must be
|
|
|
|
loaded after mcl_autogroup for this to work, because it required certain
|
|
|
|
groups to be set. ]]
|
|
|
|
do
|
|
|
|
for name,def in pairs(minetest.registered_items) do
|
|
|
|
if (not def.groups.not_in_creative_inventory or def.groups.not_in_creative_inventory == 0) and def.description and def.description ~= "" then
|
|
|
|
local is_redstone = function(def)
|
|
|
|
return def.mesecons or def.groups.mesecon or def.groups.mesecon_conductor_craftable or def.groups.mesecon_effecor_off
|
|
|
|
end
|
|
|
|
local is_tool = function(def)
|
|
|
|
return def.groups.tool or (def.tool_capabilities ~= nil and def.tool_capabilities.damage_groups == nil)
|
|
|
|
end
|
2017-06-11 22:20:25 +02:00
|
|
|
local is_weapon_or_armor = function(def)
|
2017-07-05 22:19:17 +02:00
|
|
|
return def.groups.weapon or def.groups.weapon_ranged or def.groups.ammo or ((def.groups.armor_head or def.groups.armor_torso or def.groups.armor_legs or def.groups.armor_feet or def.groups.horse_armor) and def.groups.non_combat_armor ~= 1)
|
2017-06-02 19:41:52 +02:00
|
|
|
end
|
|
|
|
if def.groups.building_block then
|
2017-06-02 21:33:50 +02:00
|
|
|
table.insert(inventory_lists["blocks"], name)
|
2017-06-02 19:41:52 +02:00
|
|
|
end
|
|
|
|
if def.groups.deco_block then
|
2017-06-02 21:33:50 +02:00
|
|
|
table.insert(inventory_lists["deco"], name)
|
2017-06-02 19:41:52 +02:00
|
|
|
end
|
|
|
|
if is_redstone(def) then
|
2017-06-02 21:33:50 +02:00
|
|
|
table.insert(inventory_lists["redstone"], name)
|
2017-06-02 19:41:52 +02:00
|
|
|
end
|
|
|
|
if def.groups.transport then
|
2017-06-02 21:33:50 +02:00
|
|
|
table.insert(inventory_lists["rail"], name)
|
2017-06-02 19:41:52 +02:00
|
|
|
end
|
|
|
|
if (def.groups.food and not def.groups.brewitem) or def.groups.eatable then
|
2017-06-02 21:33:50 +02:00
|
|
|
table.insert(inventory_lists["food"], name)
|
2017-06-02 19:41:52 +02:00
|
|
|
end
|
|
|
|
if is_tool(def) then
|
2017-06-02 21:33:50 +02:00
|
|
|
table.insert(inventory_lists["tools"], name)
|
2017-06-02 19:41:52 +02:00
|
|
|
end
|
2017-06-11 22:20:25 +02:00
|
|
|
if is_weapon_or_armor(def) then
|
2017-06-02 21:33:50 +02:00
|
|
|
table.insert(inventory_lists["combat"], name)
|
2017-06-02 19:41:52 +02:00
|
|
|
end
|
|
|
|
if def.groups.brewitem then
|
2017-06-02 21:33:50 +02:00
|
|
|
table.insert(inventory_lists["brew"], name)
|
2017-06-02 19:41:52 +02:00
|
|
|
end
|
|
|
|
if def.groups.craftitem then
|
2017-06-02 21:33:50 +02:00
|
|
|
table.insert(inventory_lists["matr"], name)
|
2017-06-02 19:41:52 +02:00
|
|
|
end
|
2017-06-11 22:20:25 +02:00
|
|
|
if not def.groups.building_block and not def.groups.deco_block and not is_redstone(def) and not def.groups.transport and not def.groups.food and not def.groups.eatable and not is_tool(def) and not is_weapon_or_armor(def) and not def.groups.craftitem and not def.groups.brewitem then
|
2017-06-02 21:33:50 +02:00
|
|
|
table.insert(inventory_lists["misc"], name)
|
2017-06-02 19:41:52 +02:00
|
|
|
end
|
|
|
|
|
2017-06-02 21:33:50 +02:00
|
|
|
table.insert(inventory_lists["all"], name)
|
2017-06-02 19:41:52 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
for _, to_sort in pairs(inventory_lists) do
|
|
|
|
table.sort(to_sort)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-06-02 21:33:50 +02:00
|
|
|
local function set_inv_search(filter, player)
|
2017-01-25 12:20:21 +01:00
|
|
|
local playername = player:get_player_name()
|
|
|
|
local inv = minetest.get_inventory({type="detached", name="creative_"..playername})
|
2017-01-05 23:37:40 +01:00
|
|
|
local creative_list = {}
|
2017-06-02 21:33:50 +02:00
|
|
|
for name,def in pairs(minetest.registered_items) do
|
|
|
|
if (not def.groups.not_in_creative_inventory or def.groups.not_in_creative_inventory == 0) and def.description and def.description ~= "" then
|
|
|
|
if string.find(string.lower(def.name), filter) or string.find(string.lower(def.description), filter) then
|
|
|
|
table.insert(creative_list, name)
|
2017-01-05 23:37:40 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-06-02 21:33:50 +02:00
|
|
|
table.sort(creative_list)
|
|
|
|
|
|
|
|
inv:set_size("main", #creative_list)
|
2017-06-02 22:09:07 +02:00
|
|
|
inv:set_list("main", creative_list)
|
2017-06-02 21:33:50 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
local function set_inv_page(page, player)
|
|
|
|
local playername = player:get_player_name()
|
|
|
|
local inv = minetest.get_inventory({type="detached", name="creative_"..playername})
|
|
|
|
inv:set_size("main", 0)
|
|
|
|
local creative_list = {}
|
|
|
|
if inventory_lists[page] then -- Standard filter
|
|
|
|
creative_list = inventory_lists[page]
|
|
|
|
end
|
2017-01-05 23:37:40 +01:00
|
|
|
inv:set_size("main", #creative_list)
|
2017-06-02 22:09:07 +02:00
|
|
|
inv:set_list("main", creative_list)
|
2017-01-05 23:37:40 +01:00
|
|
|
end
|
|
|
|
|
2017-01-25 12:20:21 +01:00
|
|
|
local function init(player)
|
|
|
|
local playername = player:get_player_name()
|
|
|
|
local inv = minetest.create_detached_inventory("creative_"..playername, {
|
2017-01-24 02:31:49 +01:00
|
|
|
allow_move = function(inv, from_list, from_index, to_list, to_index, count, player)
|
|
|
|
if minetest.setting_getbool("creative_mode") then
|
|
|
|
return count
|
|
|
|
else
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
allow_put = function(inv, listname, index, stack, player)
|
|
|
|
return 0
|
|
|
|
end,
|
|
|
|
allow_take = function(inv, listname, index, stack, player)
|
|
|
|
if minetest.setting_getbool("creative_mode") then
|
|
|
|
return -1
|
|
|
|
else
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
end,
|
2017-01-25 12:20:21 +01:00
|
|
|
}, playername)
|
2017-06-02 21:33:50 +02:00
|
|
|
set_inv_page("all", player)
|
2017-01-24 02:31:49 +01:00
|
|
|
end
|
|
|
|
|
2017-01-05 23:37:40 +01:00
|
|
|
-- Create the trash field
|
2017-01-25 12:20:21 +01:00
|
|
|
local trash = minetest.create_detached_inventory("trash", {
|
2017-01-05 23:37:40 +01:00
|
|
|
allow_put = function(inv, listname, index, stack, player)
|
|
|
|
if minetest.setting_getbool("creative_mode") then
|
|
|
|
return stack:get_count()
|
|
|
|
else
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
on_put = function(inv, listname, index, stack, player)
|
|
|
|
inv:set_stack(listname, index, "")
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
trash:set_size("main", 1)
|
|
|
|
|
2017-01-24 12:45:37 +01:00
|
|
|
local noffset = {} -- numeric tab offset
|
|
|
|
local offset = {} -- string offset:
|
|
|
|
local boffset = {} --
|
2017-01-05 23:37:40 +01:00
|
|
|
local hoch = {}
|
|
|
|
local bg = {}
|
2017-01-24 12:45:37 +01:00
|
|
|
|
|
|
|
noffset["blocks"] = {-0.29,-0.25}
|
|
|
|
noffset["deco"] = {0.98,-0.25}
|
|
|
|
noffset["redstone"] = {2.23,-0.25}
|
|
|
|
noffset["rail"] = {3.495,-0.25}
|
|
|
|
noffset["misc"] = {4.75,-0.25}
|
|
|
|
noffset["nix"] = {8.99,-0.25}
|
|
|
|
noffset["food"] = {-0.29,8.12}
|
|
|
|
noffset["tools"] = {0.98,8.12}
|
|
|
|
noffset["combat"] = {2.23,8.12}
|
|
|
|
noffset["brew"] = {3.495,8.12}
|
|
|
|
noffset["matr"] = {4.74,8.12}
|
|
|
|
noffset["inv"] = {8.99,8.12}
|
|
|
|
|
|
|
|
for k,v in pairs(noffset) do
|
|
|
|
offset[k] = tostring(v[1]) .. "," .. tostring(v[2])
|
|
|
|
boffset[k] = tostring(v[1]+0.19) .. "," .. tostring(v[2]+0.25)
|
|
|
|
end
|
2017-01-05 23:37:40 +01:00
|
|
|
|
|
|
|
hoch["blocks"] = ""
|
|
|
|
hoch["deco"] = ""
|
2017-01-09 13:54:02 +01:00
|
|
|
hoch["redstone"] = ""
|
2017-01-05 23:37:40 +01:00
|
|
|
hoch["rail"] = ""
|
|
|
|
hoch["misc"] = ""
|
|
|
|
hoch["nix"] = ""
|
2017-01-22 23:56:10 +01:00
|
|
|
hoch["default"] = ""
|
2017-01-05 23:37:40 +01:00
|
|
|
hoch["food"] = "^[transformfy"
|
|
|
|
hoch["tools"] = "^[transformfy"
|
|
|
|
hoch["combat"] = "^[transformfy"
|
|
|
|
hoch["brew"] = "^[transformfy"
|
|
|
|
hoch["matr"] = "^[transformfy"
|
|
|
|
hoch["inv"] = "^[transformfy"
|
|
|
|
|
|
|
|
local dark_bg = "crafting_creative_bg_dark.png"
|
|
|
|
|
|
|
|
local function reset_menu_item_bg()
|
|
|
|
bg["blocks"] = dark_bg
|
|
|
|
bg["deco"] = dark_bg
|
2017-01-09 13:54:02 +01:00
|
|
|
bg["redstone"] = dark_bg
|
2017-01-05 23:37:40 +01:00
|
|
|
bg["rail"] = dark_bg
|
|
|
|
bg["misc"] = dark_bg
|
|
|
|
bg["nix"] = dark_bg
|
|
|
|
bg["food"] = dark_bg
|
|
|
|
bg["tools"] = dark_bg
|
|
|
|
bg["combat"] = dark_bg
|
|
|
|
bg["brew"] = dark_bg
|
|
|
|
bg["matr"] = dark_bg
|
|
|
|
bg["inv"] = dark_bg
|
2017-01-22 23:56:10 +01:00
|
|
|
bg["default"] = dark_bg
|
2017-01-05 23:37:40 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
|
2017-06-02 22:46:39 +02:00
|
|
|
mcl_inventory.set_creative_formspec = function(player, start_i, pagenum, inv_size, show, page, filter)
|
2017-01-05 23:37:40 +01:00
|
|
|
reset_menu_item_bg()
|
|
|
|
pagenum = math.floor(pagenum) or 1
|
2017-06-02 22:46:39 +02:00
|
|
|
|
|
|
|
local playername = player:get_player_name()
|
|
|
|
|
|
|
|
if not inv_size then
|
|
|
|
if page == "nix" then
|
|
|
|
local inv = minetest.get_inventory({type="detached", name="creative_"..playername})
|
|
|
|
inv_size = inv:get_size("main")
|
|
|
|
elseif page ~= nil and page ~= "inv" then
|
|
|
|
inv_size = #(inventory_lists[page])
|
|
|
|
else
|
|
|
|
inv_size = 0
|
|
|
|
end
|
|
|
|
end
|
2017-06-02 23:03:57 +02:00
|
|
|
local pagemax = math.max(1, math.floor((inv_size-1) / (9*5) + 1))
|
2017-01-24 22:19:42 +01:00
|
|
|
local slider_height
|
2017-06-03 00:33:15 +02:00
|
|
|
local arrow_height = 0.85
|
|
|
|
slider_height = (6.2-arrow_height*2) / pagemax
|
|
|
|
local slider_pos = (slider_height*(pagenum-1)*0.8713125)+2.23
|
2017-01-05 23:37:40 +01:00
|
|
|
local name = "nix"
|
|
|
|
local formspec = ""
|
2017-01-24 08:50:31 +01:00
|
|
|
local main_list
|
2017-01-25 12:20:21 +01:00
|
|
|
local listrings = "listring[detached:creative_"..playername..";main]"..
|
2017-01-06 01:31:04 +01:00
|
|
|
"listring[current_player;main]"..
|
2017-01-25 12:20:21 +01:00
|
|
|
"listring[detached:trash;main]"
|
2017-01-06 01:31:04 +01:00
|
|
|
|
2017-01-05 23:37:40 +01:00
|
|
|
if page ~= nil then name = page end
|
|
|
|
bg[name] = "crafting_creative_bg.png"
|
2017-01-24 08:58:52 +01:00
|
|
|
local inv_bg = "crafting_inventory_creative.png"
|
2017-01-05 23:37:40 +01:00
|
|
|
if name == "inv" then
|
2017-03-09 06:55:03 +01:00
|
|
|
inv_bg = "crafting_inventory_creative_survival.png"
|
2017-03-09 17:49:02 +01:00
|
|
|
|
2017-03-09 18:26:16 +01:00
|
|
|
-- Show armor and player image
|
|
|
|
local show_armor = minetest.get_modpath("3d_armor")
|
2017-07-21 23:23:50 +02:00
|
|
|
local img = "player.png"
|
2017-03-09 18:26:16 +01:00
|
|
|
local player_preview = "image[3.9,1.4;1.2333,2.4666;"..img.."]"
|
|
|
|
if show_armor and armor.textures[playername] and armor.textures[playername].preview then
|
|
|
|
img = armor.textures[playername].preview
|
|
|
|
local s1 = img:find("character_preview")
|
|
|
|
if s1 ~= nil then
|
|
|
|
s1 = img:sub(s1+21)
|
2017-07-21 23:23:50 +02:00
|
|
|
img = "player.png"..s1
|
2017-03-09 18:26:16 +01:00
|
|
|
end
|
|
|
|
player_preview = "image[3.9,1.4;1.2333,2.4666;"..img.."]"
|
|
|
|
end
|
|
|
|
|
2017-03-09 17:49:02 +01:00
|
|
|
-- Background images for armor slots (hide if occupied)
|
|
|
|
local armor_slot_imgs = ""
|
|
|
|
local inv = player:get_inventory()
|
|
|
|
if inv:get_stack("armor", 2):is_empty() then
|
2017-04-01 05:41:53 +02:00
|
|
|
armor_slot_imgs = armor_slot_imgs .. "image[2.5,1.3;1,1;mcl_inventory_empty_armor_slot_helmet.png]"
|
2017-03-09 17:49:02 +01:00
|
|
|
end
|
|
|
|
if inv:get_stack("armor", 3):is_empty() then
|
2017-04-01 05:41:53 +02:00
|
|
|
armor_slot_imgs = armor_slot_imgs .. "image[2.5,2.75;1,1;mcl_inventory_empty_armor_slot_chestplate.png]"
|
2017-03-09 17:49:02 +01:00
|
|
|
end
|
|
|
|
if inv:get_stack("armor", 4):is_empty() then
|
2017-04-01 05:41:53 +02:00
|
|
|
armor_slot_imgs = armor_slot_imgs .. "image[5.5,1.3;1,1;mcl_inventory_empty_armor_slot_leggings.png]"
|
2017-03-09 17:49:02 +01:00
|
|
|
end
|
|
|
|
if inv:get_stack("armor", 5):is_empty() then
|
2017-04-01 05:41:53 +02:00
|
|
|
armor_slot_imgs = armor_slot_imgs .. "image[5.5,2.75;1,1;mcl_inventory_empty_armor_slot_boots.png]"
|
2017-03-09 17:49:02 +01:00
|
|
|
end
|
|
|
|
|
2017-01-24 08:50:31 +01:00
|
|
|
-- Survival inventory slots
|
2017-03-09 06:55:03 +01:00
|
|
|
main_list = "list[current_player;main;0,3.75;9,3;9]"..
|
|
|
|
-- armor
|
|
|
|
"list[detached:"..playername.."_armor;armor;2.5,1.3;1,1;1]"..
|
|
|
|
"list[detached:"..playername.."_armor;armor;2.5,2.75;1,1;2]"..
|
|
|
|
"list[detached:"..playername.."_armor;armor;5.5,1.3;1,1;3]"..
|
|
|
|
"list[detached:"..playername.."_armor;armor;5.5,2.75;1,1;4]"..
|
2017-03-09 17:49:02 +01:00
|
|
|
armor_slot_imgs..
|
2017-03-09 18:26:16 +01:00
|
|
|
-- player preview
|
|
|
|
player_preview..
|
2017-03-04 01:58:14 +01:00
|
|
|
-- crafting guide button
|
|
|
|
"image_button[9,1;1,1;craftguide_book.png;__mcl_craftguide;]"..
|
2017-06-08 21:27:44 +02:00
|
|
|
"tooltip[__mcl_craftguide;Recipe book]"..
|
2017-03-18 03:27:36 +01:00
|
|
|
-- help button
|
|
|
|
"image_button[9,2;1,1;doc_button_icon_lores.png;__mcl_doc;]"..
|
|
|
|
"tooltip[__mcl_doc;Help]"..
|
2017-03-04 01:57:10 +01:00
|
|
|
-- achievements button
|
2017-03-18 03:27:36 +01:00
|
|
|
"image_button[9,3;1,1;mcl_achievements_button.png;__mcl_achievements;]"..
|
2017-03-04 01:57:10 +01:00
|
|
|
"tooltip[__mcl_achievements;Achievements]"
|
2017-03-09 06:55:03 +01:00
|
|
|
|
|
|
|
-- For shortcuts
|
|
|
|
listrings = listrings ..
|
|
|
|
"listring[detached:"..playername.."_armor;armor]"..
|
|
|
|
"listring[current_player;main]"
|
2017-01-24 08:50:31 +01:00
|
|
|
else
|
2017-01-24 08:58:52 +01:00
|
|
|
inv_bg = inv_bg .. "^crafting_inventory_creative_scroll.png"
|
2017-01-24 08:50:31 +01:00
|
|
|
-- Creative inventory slots
|
2017-01-25 12:20:21 +01:00
|
|
|
main_list = "list[detached:creative_"..playername..";main;0,1.75;9,5;"..tostring(start_i).."]" ..
|
2017-01-24 08:50:31 +01:00
|
|
|
-- ... and scroll bar
|
2017-06-03 00:33:15 +02:00
|
|
|
"image_button[9.02,1.76;"..tostring(arrow_height)..",0.6;crafting_creative_up.png;creative_prev;]"..
|
2017-06-03 00:10:37 +02:00
|
|
|
"image[9.033," .. tostring(slider_pos) .. ";0.78,"..tostring(slider_height) .. ";crafting_slider.png]"..
|
2017-06-03 00:33:15 +02:00
|
|
|
"image_button[9.02,6.15;"..tostring(arrow_height)..",0.6;crafting_creative_down.png;creative_next;]"
|
2017-01-05 23:37:40 +01:00
|
|
|
end
|
2017-01-22 23:56:10 +01:00
|
|
|
local function tab(current, check)
|
|
|
|
local img
|
|
|
|
if current == check then
|
|
|
|
img = "crafting_creative_active.png"
|
|
|
|
else
|
|
|
|
img = "crafting_creative_inactive.png"
|
|
|
|
end
|
2017-01-24 12:45:37 +01:00
|
|
|
return "image[" .. offset[check] .. ";1.5,1.44;" .. img .. hoch[check].. "]" ..
|
|
|
|
"image[" .. boffset[check] .. ";1,1;crafting_creative_marker.png]"
|
2017-01-22 23:56:10 +01:00
|
|
|
end
|
2017-03-09 06:55:03 +01:00
|
|
|
local fnt = ""
|
|
|
|
if name ~= "inv" then
|
2017-07-08 16:28:25 +02:00
|
|
|
fnt = "image[0,1;5,0.75;mcl_inventory_fnt_"..name..".png]"
|
2017-03-09 06:55:03 +01:00
|
|
|
end
|
2017-01-05 23:37:40 +01:00
|
|
|
formspec = "size[10,9.3]"..
|
2017-02-17 23:06:52 +01:00
|
|
|
mcl_vars.inventory_header..
|
2017-01-24 08:58:52 +01:00
|
|
|
"background[-0.19,-0.25;10.5,9.87;"..inv_bg.."]"..
|
2017-01-05 23:37:40 +01:00
|
|
|
"label[-5,-5;"..name.."]"..
|
2017-02-01 19:42:20 +01:00
|
|
|
"item_image_button[-0.1,0;1,1;mcl_core:brick_block;blocks;]".. --build blocks
|
2017-01-22 23:56:10 +01:00
|
|
|
tab(name, "blocks") ..
|
|
|
|
"tooltip[blocks;Building Blocks]"..
|
2017-01-31 12:03:18 +01:00
|
|
|
"item_image_button[1.15,0;1,1;mcl_flowers:peony;deco;]".. --decoration blocks
|
2017-01-22 23:56:10 +01:00
|
|
|
tab(name, "deco") ..
|
2017-01-22 17:42:41 +01:00
|
|
|
"tooltip[deco;Decoration Blocks]"..
|
|
|
|
"item_image_button[2.415,0;1,1;mesecons:redstone;redstone;]".. --redstone
|
2017-01-22 23:56:10 +01:00
|
|
|
tab(name, "redstone") ..
|
2017-01-22 17:42:41 +01:00
|
|
|
"tooltip[redstone;Redstone]"..
|
|
|
|
"item_image_button[3.693,0;1,1;mcl_minecarts:golden_rail;rail;]".. --transportation
|
2017-01-22 23:56:10 +01:00
|
|
|
tab(name, "rail") ..
|
2017-01-22 17:42:41 +01:00
|
|
|
"tooltip[rail;Transportation]"..
|
|
|
|
"item_image_button[4.93,0;1,1;bucket:bucket_lava;misc;]".. --miscellaneous
|
2017-01-22 23:56:10 +01:00
|
|
|
tab(name, "misc") ..
|
2017-01-22 17:42:41 +01:00
|
|
|
"tooltip[misc;Miscellaneous]"..
|
2017-01-22 23:56:10 +01:00
|
|
|
"item_image_button[9.19,0;1,1;mcl_compass:compass;nix;]".. --search
|
|
|
|
tab(name, "nix") ..
|
|
|
|
"tooltip[nix;Search Items]"..
|
2017-03-09 06:55:03 +01:00
|
|
|
fnt..
|
2017-01-05 23:37:40 +01:00
|
|
|
"list[current_player;main;0,7;9,1;]"..
|
|
|
|
main_list..
|
2017-01-31 23:32:56 +01:00
|
|
|
"item_image_button[-0.1,8.37;1,1;mcl_core:apple;food;]".. --foodstuff
|
2017-01-22 23:56:10 +01:00
|
|
|
tab(name, "food") ..
|
2017-01-22 17:42:41 +01:00
|
|
|
"tooltip[food;Foodstuffs]"..
|
2017-02-11 21:14:40 +01:00
|
|
|
"item_image_button[1.15,8.37;1,1;mcl_core:axe_iron;tools;]".. --tools
|
2017-01-22 23:56:10 +01:00
|
|
|
tab(name, "tools") ..
|
2017-01-22 17:42:41 +01:00
|
|
|
"tooltip[tools;Tools]"..
|
2017-01-31 23:32:56 +01:00
|
|
|
"item_image_button[2.415,8.37;1,1;mcl_core:sword_gold;combat;]".. --combat
|
2017-01-22 23:56:10 +01:00
|
|
|
tab(name, "combat") ..
|
2017-01-22 17:42:41 +01:00
|
|
|
"tooltip[combat;Combat]"..
|
2017-03-01 18:37:21 +01:00
|
|
|
"item_image_button[3.693,8.37;1,1;mcl_potions:potion_water;brew;]".. --brewing
|
2017-01-23 00:02:58 +01:00
|
|
|
tab(name, "brew") ..
|
|
|
|
"tooltip[brew;Brewing]"..
|
2017-01-31 23:32:56 +01:00
|
|
|
"item_image_button[4.938,8.37;1,1;mcl_core:stick;matr;]".. --materials
|
2017-01-22 23:56:10 +01:00
|
|
|
tab(name, "matr") ..
|
2017-01-22 17:42:41 +01:00
|
|
|
"tooltip[matr;Materials]"..
|
2017-01-27 12:42:05 +01:00
|
|
|
"item_image_button[9.19,8.37;1,1;mcl_chests:chest;inv;]".. --inventory
|
2017-01-22 23:56:10 +01:00
|
|
|
tab(name, "inv") ..
|
2017-01-22 17:42:41 +01:00
|
|
|
"tooltip[inv;Survival Inventory]"..
|
2017-01-25 12:20:21 +01:00
|
|
|
"list[detached:trash;main;9,7;1,1;]"..
|
2017-01-06 01:31:04 +01:00
|
|
|
"image[9,7;1,1;crafting_creative_trash.png]"..
|
|
|
|
listrings
|
2017-01-05 23:37:40 +01:00
|
|
|
|
2017-01-23 00:33:01 +01:00
|
|
|
if name == "nix" then
|
|
|
|
if filter == nil then
|
|
|
|
filter = ""
|
|
|
|
end
|
2017-01-24 21:23:30 +01:00
|
|
|
formspec = formspec .. "field[5.3,1.3;4,0.75;suche;;"..minetest.formspec_escape(filter).."]"
|
2017-01-23 00:33:01 +01:00
|
|
|
formspec = formspec .. "field_close_on_enter[suche;false]"
|
|
|
|
end
|
2017-01-05 23:37:40 +01:00
|
|
|
if pagenum ~= nil then formspec = formspec .. "p"..tostring(pagenum) end
|
2017-02-10 19:31:59 +01:00
|
|
|
|
2017-06-02 22:46:39 +02:00
|
|
|
|
2017-01-05 23:37:40 +01:00
|
|
|
player:set_inventory_formspec(formspec)
|
|
|
|
end
|
|
|
|
|
|
|
|
minetest.register_on_player_receive_fields(function(player, formname, fields)
|
|
|
|
local page = nil
|
|
|
|
if not minetest.setting_getbool("creative_mode") then
|
|
|
|
return
|
2017-03-09 18:51:01 +01:00
|
|
|
end
|
2017-06-02 20:02:24 +02:00
|
|
|
if formname ~= "" or fields.quit == "true" then
|
|
|
|
-- No-op if formspec closed or not player inventory (formname == "")
|
2017-03-09 18:51:01 +01:00
|
|
|
return
|
2017-01-05 23:37:40 +01:00
|
|
|
end
|
2017-01-23 00:33:01 +01:00
|
|
|
|
2017-01-24 21:18:42 +01:00
|
|
|
local name = player:get_player_name()
|
2017-01-24 21:58:11 +01:00
|
|
|
|
2017-01-22 23:56:10 +01:00
|
|
|
if fields.blocks then
|
2017-06-02 19:01:12 +02:00
|
|
|
if players[name].page == "blocks" then return end
|
2017-06-02 23:00:12 +02:00
|
|
|
set_inv_page("blocks",player)
|
2017-06-02 22:46:39 +02:00
|
|
|
page = "blocks"
|
2017-01-23 00:33:01 +01:00
|
|
|
elseif fields.deco then
|
2017-06-02 19:01:12 +02:00
|
|
|
if players[name].page == "deco" then return end
|
2017-06-02 23:00:12 +02:00
|
|
|
set_inv_page("deco",player)
|
2017-01-05 23:37:40 +01:00
|
|
|
page = "deco"
|
2017-01-23 00:33:01 +01:00
|
|
|
elseif fields.redstone then
|
2017-06-02 19:01:12 +02:00
|
|
|
if players[name].page == "redstone" then return end
|
2017-06-02 23:00:12 +02:00
|
|
|
set_inv_page("redstone",player)
|
2017-01-09 13:54:02 +01:00
|
|
|
page = "redstone"
|
2017-01-23 00:33:01 +01:00
|
|
|
elseif fields.rail then
|
2017-06-02 19:01:12 +02:00
|
|
|
if players[name].page == "rail" then return end
|
2017-06-02 23:00:12 +02:00
|
|
|
set_inv_page("rail",player)
|
2017-01-05 23:37:40 +01:00
|
|
|
page = "rail"
|
2017-01-23 00:33:01 +01:00
|
|
|
elseif fields.misc then
|
2017-06-02 19:01:12 +02:00
|
|
|
if players[name].page == "misc" then return end
|
2017-06-02 21:33:50 +02:00
|
|
|
set_inv_page("misc",player)
|
2017-01-05 23:37:40 +01:00
|
|
|
page = "misc"
|
2017-01-23 00:33:01 +01:00
|
|
|
elseif fields.nix then
|
2017-06-02 21:33:50 +02:00
|
|
|
set_inv_page("all",player)
|
2017-01-23 00:33:01 +01:00
|
|
|
page = "nix"
|
|
|
|
elseif fields.food then
|
2017-06-02 19:01:12 +02:00
|
|
|
if players[name].page == "food" then return end
|
2017-06-02 23:00:12 +02:00
|
|
|
set_inv_page("food",player)
|
2017-01-05 23:37:40 +01:00
|
|
|
page = "food"
|
2017-01-23 00:33:01 +01:00
|
|
|
elseif fields.tools then
|
2017-06-02 19:01:12 +02:00
|
|
|
if players[name].page == "tools" then return end
|
2017-06-02 23:00:12 +02:00
|
|
|
set_inv_page("tools",player)
|
2017-01-05 23:37:40 +01:00
|
|
|
page = "tools"
|
2017-01-23 00:33:01 +01:00
|
|
|
elseif fields.combat then
|
2017-06-02 19:01:12 +02:00
|
|
|
if players[name].page == "combat" then return end
|
2017-06-02 23:00:12 +02:00
|
|
|
set_inv_page("combat",player)
|
2017-01-05 23:37:40 +01:00
|
|
|
page = "combat"
|
2017-01-23 00:33:01 +01:00
|
|
|
elseif fields.brew then
|
2017-06-02 19:01:12 +02:00
|
|
|
if players[name].page == "brew" then return end
|
2017-06-02 23:00:12 +02:00
|
|
|
set_inv_page("brew",player)
|
2017-01-23 00:02:58 +01:00
|
|
|
page = "brew"
|
2017-01-23 00:33:01 +01:00
|
|
|
elseif fields.matr then
|
2017-06-02 19:01:12 +02:00
|
|
|
if players[name].page == "matr" then return end
|
2017-06-02 23:00:12 +02:00
|
|
|
set_inv_page("matr",player)
|
2017-01-05 23:37:40 +01:00
|
|
|
page = "matr"
|
2017-01-23 00:33:01 +01:00
|
|
|
elseif fields.inv then
|
2017-06-02 19:01:12 +02:00
|
|
|
if players[name].page == "inv" then return end
|
2017-01-05 23:37:40 +01:00
|
|
|
page = "inv"
|
2017-01-24 21:58:11 +01:00
|
|
|
elseif fields.suche == "" and not fields.creative_next and not fields.creative_prev then
|
2017-06-02 23:00:12 +02:00
|
|
|
set_inv_page("all", player)
|
2017-01-23 00:33:01 +01:00
|
|
|
page = "nix"
|
2017-01-24 21:58:11 +01:00
|
|
|
elseif fields.suche ~= nil and not fields.creative_next and not fields.creative_prev then
|
2017-06-02 23:00:12 +02:00
|
|
|
set_inv_search(string.lower(fields.suche),player)
|
2017-01-23 00:33:01 +01:00
|
|
|
page = "nix"
|
2017-01-05 23:37:40 +01:00
|
|
|
end
|
2017-01-24 21:18:42 +01:00
|
|
|
|
|
|
|
if page then
|
|
|
|
players[name].page = page
|
|
|
|
end
|
|
|
|
if players[name].page then
|
|
|
|
page = players[name].page
|
|
|
|
end
|
|
|
|
|
2017-06-02 22:46:39 +02:00
|
|
|
-- Figure out current scroll bar from formspec
|
2017-01-05 23:37:40 +01:00
|
|
|
local formspec = player:get_inventory_formspec()
|
|
|
|
|
2017-01-24 21:18:42 +01:00
|
|
|
local start_i = players[name].start_i
|
2017-06-02 22:46:39 +02:00
|
|
|
|
2017-01-05 23:37:40 +01:00
|
|
|
if fields.creative_prev then
|
|
|
|
start_i = start_i - 9*5
|
2017-06-02 23:14:19 +02:00
|
|
|
elseif fields.creative_next then
|
2017-01-05 23:37:40 +01:00
|
|
|
start_i = start_i + 9*5
|
2017-06-02 23:14:19 +02:00
|
|
|
else
|
|
|
|
-- Reset scroll bar if not scrolled
|
|
|
|
start_i = 0
|
2017-01-05 23:37:40 +01:00
|
|
|
end
|
|
|
|
if start_i < 0 then
|
|
|
|
start_i = start_i + 9*5
|
|
|
|
end
|
2017-06-02 22:46:39 +02:00
|
|
|
|
|
|
|
local inv_size
|
|
|
|
if page == "nix" then
|
|
|
|
local inv = minetest.get_inventory({type="detached", name="creative_"..name})
|
|
|
|
inv_size = inv:get_size("main")
|
|
|
|
elseif page ~= nil and page ~= "inv" then
|
|
|
|
inv_size = #(inventory_lists[page])
|
|
|
|
else
|
|
|
|
inv_size = 0
|
|
|
|
end
|
|
|
|
|
|
|
|
if start_i >= inv_size then
|
2017-01-05 23:37:40 +01:00
|
|
|
start_i = start_i - 9*5
|
2017-06-02 22:46:39 +02:00
|
|
|
end
|
|
|
|
if start_i < 0 or start_i >= inv_size then
|
2017-01-05 23:37:40 +01:00
|
|
|
start_i = 0
|
|
|
|
end
|
2017-01-24 21:18:42 +01:00
|
|
|
players[name].start_i = start_i
|
2017-01-23 00:33:01 +01:00
|
|
|
|
2017-06-02 23:05:55 +02:00
|
|
|
local filter = ""
|
|
|
|
if not fields.nix and fields.suche ~= nil and fields.suche ~= "" then
|
2017-01-23 00:33:01 +01:00
|
|
|
filter = fields.suche
|
2017-01-24 21:18:42 +01:00
|
|
|
players[name].filter = filter
|
2017-01-23 00:33:01 +01:00
|
|
|
end
|
|
|
|
|
2017-06-02 22:46:39 +02:00
|
|
|
mcl_inventory.set_creative_formspec(player, start_i, start_i / (9*5) + 1, inv_size, false, page, filter)
|
2017-01-05 23:37:40 +01:00
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
|
|
if minetest.setting_getbool("creative_mode") then
|
|
|
|
minetest.register_on_placenode(function(pos, newnode, placer, oldnode, itemstack)
|
2017-02-07 02:22:41 +01:00
|
|
|
-- Place infinite nodes, except for shulker boxes
|
|
|
|
local group = minetest.get_item_group(itemstack:get_name(), "shulker_box")
|
|
|
|
return group == 0 or group == nil
|
2017-01-05 23:37:40 +01:00
|
|
|
end)
|
2017-06-02 22:46:39 +02:00
|
|
|
|
2017-01-05 23:37:40 +01:00
|
|
|
function minetest.handle_node_drops(pos, drops, digger)
|
|
|
|
if not digger or not digger:is_player() then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local inv = digger:get_inventory()
|
|
|
|
if inv then
|
|
|
|
for _,item in ipairs(drops) do
|
|
|
|
item = ItemStack(item):get_name()
|
|
|
|
if not inv:contains_item("main", item) then
|
|
|
|
inv:add_item("main", item)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-06-02 22:46:39 +02:00
|
|
|
|
2017-01-05 23:37:40 +01:00
|
|
|
end
|
2017-01-25 12:20:21 +01:00
|
|
|
|
|
|
|
minetest.register_on_joinplayer(function(player)
|
2017-06-02 23:43:39 +02:00
|
|
|
-- Initialize variables and inventory
|
2017-01-25 12:20:21 +01:00
|
|
|
local name = player:get_player_name()
|
|
|
|
if not players[name] then
|
|
|
|
players[name] = {}
|
|
|
|
players[name].page = "nix"
|
|
|
|
players[name].filter = ""
|
|
|
|
players[name].start_i = 0
|
|
|
|
end
|
|
|
|
init(player)
|
2017-06-02 23:43:39 +02:00
|
|
|
mcl_inventory.set_creative_formspec(player, 0, 1, nil, false, "nix", "")
|
2017-01-25 12:20:21 +01:00
|
|
|
end)
|