2013-09-29 00:15:37 +02:00
|
|
|
-- Unified Inventory for Minetest 0.4.8+
|
2013-09-21 21:40:20 +02:00
|
|
|
|
2013-09-29 00:15:37 +02:00
|
|
|
local modpath = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
local worldpath = minetest.get_worldpath()
|
|
|
|
|
|
|
|
-- Data tables definitions
|
|
|
|
unified_inventory = {}
|
|
|
|
unified_inventory.activefilter = {}
|
|
|
|
unified_inventory.alternate = {}
|
|
|
|
unified_inventory.current_page = {}
|
|
|
|
unified_inventory.current_index = {}
|
|
|
|
unified_inventory.current_item = {}
|
|
|
|
unified_inventory.crafts_table = {}
|
|
|
|
unified_inventory.crafts_table_count = 0
|
|
|
|
unified_inventory.players = {}
|
|
|
|
unified_inventory.items_list_size = 0
|
|
|
|
unified_inventory.items_list = {}
|
|
|
|
unified_inventory.filtered_items_list_size = {}
|
|
|
|
unified_inventory.filtered_items_list = {}
|
|
|
|
unified_inventory.pages = {}
|
|
|
|
unified_inventory.buttons = {}
|
|
|
|
|
|
|
|
-- Homepos stuff
|
|
|
|
unified_inventory.home_pos = {}
|
|
|
|
unified_inventory.home_filename =
|
|
|
|
worldpath.."/unified_inventory_home.home"
|
2014-01-19 19:27:52 +01:00
|
|
|
|
2013-09-29 00:15:37 +02:00
|
|
|
-- Default inventory page
|
|
|
|
unified_inventory.default = "craft"
|
|
|
|
|
|
|
|
-- Disable default creative inventory
|
2014-01-19 19:27:52 +01:00
|
|
|
if creative_inventory then
|
2013-09-29 00:15:37 +02:00
|
|
|
function creative_inventory.set_creative_formspec(player, start_i, pagenum)
|
|
|
|
return
|
2013-09-21 21:40:20 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-09-29 00:15:37 +02:00
|
|
|
dofile(modpath.."/api.lua")
|
|
|
|
dofile(modpath.."/internal.lua")
|
|
|
|
dofile(modpath.."/callbacks.lua")
|
|
|
|
dofile(modpath.."/register.lua")
|
|
|
|
dofile(modpath.."/bags.lua")
|