Jaidyn Ann
623b14bfe8
This allows mods to place their own buttons alongside the trash, sort, and settings buttons in the inventory’s footer. The API mimics the custom tab API.
132 lines
2.6 KiB
Lua
132 lines
2.6 KiB
Lua
print[[
|
|
|
|
Powered by
|
|
|
|
██╗██████╗
|
|
██║╚════██╗
|
|
██║ █████╔╝
|
|
██║ ╚═══██╗
|
|
██║██████╔╝
|
|
╚═╝╚═════╝
|
|
]]
|
|
|
|
local modpath = core.get_modpath"i3"
|
|
local http = core.request_http_api()
|
|
local storage = core.get_mod_storage()
|
|
local _loadfile = dofile(modpath .. "/src/preprocessor.lua")
|
|
|
|
local function lf(path)
|
|
return assert(_loadfile(modpath .. path))
|
|
end
|
|
|
|
i3 = {
|
|
version = 1162,
|
|
data = core.deserialize(storage:get_string"data") or {},
|
|
|
|
settings = {
|
|
debug_mode = false,
|
|
max_favs = 6,
|
|
max_waypoints = 30,
|
|
min_fs_version = 6,
|
|
item_btn_size = 1.1,
|
|
drop_bag_on_die = true,
|
|
wielditem_fade_after = 3,
|
|
save_interval = 600, -- Player data save interval (in seconds)
|
|
|
|
hud_speed = 3,
|
|
hud_timer_max = 3,
|
|
|
|
damage_enabled = core.settings:get_bool"enable_damage",
|
|
progressive_mode = core.settings:get_bool"i3_progressive_mode",
|
|
},
|
|
|
|
categories = {
|
|
"crafting",
|
|
"armor",
|
|
"bag",
|
|
"skins",
|
|
"waypoints"
|
|
},
|
|
|
|
saves = { -- Metadata to save
|
|
bag = true,
|
|
home = true,
|
|
sort = true,
|
|
collapse = true,
|
|
font_size = true,
|
|
hide_tabs = true,
|
|
waypoints = true,
|
|
inv_items = true,
|
|
auto_sorting = true,
|
|
inv_compress = true,
|
|
known_recipes = true,
|
|
wielditem_hud = true,
|
|
ignore_hotbar = true,
|
|
reverse_sorting = true,
|
|
legacy_inventory = true,
|
|
},
|
|
|
|
default_data = {
|
|
sort = 1,
|
|
font_size = 0,
|
|
collapse = true,
|
|
inv_compress = true,
|
|
},
|
|
|
|
files = {
|
|
api = lf"/src/api.lua",
|
|
bags = lf"/src/bags.lua",
|
|
caches = lf"/src/caches.lua",
|
|
callbacks = lf"/src/callbacks.lua",
|
|
common = lf"/src/common.lua",
|
|
compress = lf"/src/compression.lua",
|
|
detached = lf"/src/detached_inv.lua",
|
|
fields = lf"/src/fields.lua",
|
|
groups = lf"/src/groups.lua",
|
|
gui = lf"/src/gui.lua",
|
|
hud = lf"/src/hud.lua",
|
|
model_alias = lf"/src/model_aliases.lua",
|
|
progressive = lf"/src/progressive.lua",
|
|
styles = lf"/src/styles.lua",
|
|
},
|
|
|
|
-- Caches
|
|
init_items = {},
|
|
fuel_cache = {},
|
|
usages_cache = {},
|
|
recipes_cache = {},
|
|
|
|
tabs = {},
|
|
cubes = {},
|
|
groups = {},
|
|
plants = {},
|
|
modules = {},
|
|
minitabs = {},
|
|
footer_buttons = {},
|
|
craft_types = {},
|
|
|
|
recipe_filters = {},
|
|
search_filters = {},
|
|
sorting_methods = {},
|
|
}
|
|
|
|
i3.files.common()
|
|
i3.files.api(http)
|
|
i3.files.compress()
|
|
i3.files.detached()
|
|
i3.files.fields()
|
|
i3.files.groups()
|
|
i3.files.callbacks(http, storage)
|
|
|
|
if i3.settings.progressive_mode then
|
|
i3.files.progressive()
|
|
end
|
|
|
|
if i3.settings.debug_mode then
|
|
lf("/tests/test_tabs.lua")()
|
|
lf("/tests/test_waypoints.lua")()
|
|
-- lf("/tests/test_operators.lua")()
|
|
lf("/tests/test_compression.lua")()
|
|
lf("/tests/test_custom_recipes.lua")()
|
|
end
|