2023-01-19 10:30:57 -06:00
|
|
|
|
# API :screwdriver:
|
2023-01-19 09:47:50 -06:00
|
|
|
|
|
2023-01-19 10:30:57 -06:00
|
|
|
|
### Table of Contents
|
2024-01-12 00:57:28 -06:00
|
|
|
|
1. [**Tabs**](#tabs)
|
|
|
|
|
2. [**Footer buttons**](#footer-buttons)
|
|
|
|
|
3. [**Recipes**](#recipes)
|
|
|
|
|
4. [**Minitabs**](#minitabs)
|
|
|
|
|
5. [**Recipe filters**](#recipe-filters)
|
|
|
|
|
6. [**Search filters**](#search-filters)
|
|
|
|
|
7. [**Sorting methods**](#sorting-methods)
|
|
|
|
|
8. [**Item list compression**](#item-list-compression)
|
|
|
|
|
9. [**Waypoints**](#waypoints)
|
|
|
|
|
10. [**Miscellaneous**](#miscellaneous)
|
2020-12-30 16:21:05 -06:00
|
|
|
|
|
2023-01-19 09:47:50 -06:00
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
### Tabs
|
2021-01-15 18:46:26 -06:00
|
|
|
|
|
2024-01-12 13:10:36 -06:00
|
|
|
|
![Screenshot of the inventory with the below example tab in focus.](.res/api-tabs.png)
|
2024-01-12 03:31:41 -06:00
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.new_tab(name, def)`
|
2021-01-15 21:44:25 -06:00
|
|
|
|
|
2021-11-19 12:35:41 -06:00
|
|
|
|
- `name` is the tab name.
|
|
|
|
|
- `def` is the tab definition.
|
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
Custom tabs can be added to the `i4` inventory as follow (example):
|
2021-01-15 18:46:26 -06:00
|
|
|
|
|
|
|
|
|
```Lua
|
2024-01-12 03:16:02 -06:00
|
|
|
|
i4.new_tab("stuff", {
|
2021-01-15 18:46:26 -06:00
|
|
|
|
description = "Stuff",
|
2024-01-12 03:31:41 -06:00
|
|
|
|
image = "speech_icon.png", -- Optional, add an image next to the tab description
|
|
|
|
|
slots = true, -- Optional, whether the inventory slots are shown or not. Disabled by default.
|
2021-01-15 18:46:26 -06:00
|
|
|
|
|
2022-11-12 12:40:06 -06:00
|
|
|
|
--
|
|
|
|
|
-- The functions below are all optional
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
-- Determine if the tab is visible by a player, return false to hide the tab
|
2021-01-15 18:46:26 -06:00
|
|
|
|
access = function(player, data)
|
|
|
|
|
local name = player:get_player_name()
|
2022-03-22 21:52:08 -05:00
|
|
|
|
return name == "singleplayer"
|
2021-01-15 18:46:26 -06:00
|
|
|
|
end,
|
|
|
|
|
|
2023-04-02 07:49:13 -05:00
|
|
|
|
-- Build the formspec
|
2021-01-15 18:46:26 -06:00
|
|
|
|
formspec = function(player, data, fs)
|
2022-11-12 12:40:06 -06:00
|
|
|
|
fs("label", 3, 1, "Just a test")
|
|
|
|
|
fs"label[3,2;Lorem Ipsum]"
|
|
|
|
|
-- No need to return anything
|
2021-01-15 18:46:26 -06:00
|
|
|
|
end,
|
|
|
|
|
|
2021-10-25 16:40:04 -05:00
|
|
|
|
-- Events handling happens here
|
2021-01-15 18:46:26 -06:00
|
|
|
|
fields = function(player, data, fields)
|
2022-09-15 05:23:44 -05:00
|
|
|
|
if fields.mybutton then
|
2022-11-12 12:40:06 -06:00
|
|
|
|
-- Do things
|
2022-09-15 05:23:44 -05:00
|
|
|
|
end
|
2022-11-12 12:40:06 -06:00
|
|
|
|
|
2023-03-08 09:43:35 -06:00
|
|
|
|
-- To prevent a formspec update, return false.
|
2023-04-02 07:49:13 -05:00
|
|
|
|
-- Otherwise: no need to return anything, it's automatic.
|
2021-01-15 18:46:26 -06:00
|
|
|
|
end,
|
2021-11-14 14:39:48 -06:00
|
|
|
|
})
|
2021-01-15 18:46:26 -06:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
- `player` is an `ObjectRef` to the user.
|
|
|
|
|
- `data` are the user data.
|
2022-09-15 05:23:44 -05:00
|
|
|
|
- `fs` is the formspec table which is callable with a metamethod. Every call adds a new entry.
|
2021-01-30 16:21:20 -06:00
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.set_fs(player)`
|
2021-01-30 16:21:20 -06:00
|
|
|
|
|
2022-09-15 05:23:44 -05:00
|
|
|
|
Update the current formspec.
|
2021-01-15 18:46:26 -06:00
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.remove_tab(tabname)`
|
2021-01-15 21:44:25 -06:00
|
|
|
|
|
2022-09-15 05:23:44 -05:00
|
|
|
|
Delete a tab by name.
|
2021-01-15 21:44:25 -06:00
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.get_current_tab(player)`
|
2021-09-19 15:04:49 -05:00
|
|
|
|
|
2022-09-15 05:23:44 -05:00
|
|
|
|
Return the current player tab. `player` is an `ObjectRef` to the user.
|
2021-09-19 15:04:49 -05:00
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.set_tab(player[, tabname])`
|
2021-01-28 14:00:08 -06:00
|
|
|
|
|
2023-04-02 07:49:13 -05:00
|
|
|
|
Set the current tab by name. `player` is an `ObjectRef` to the user.
|
2021-01-30 16:21:20 -06:00
|
|
|
|
`tabname` can be omitted to get an empty tab.
|
2021-01-28 14:00:08 -06:00
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.override_tab(tabname, def)`
|
2021-01-28 14:00:08 -06:00
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
Override a tab by name. `def` is the tab definition like seen in `i4.set_tab`
|
2021-01-28 14:00:08 -06:00
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.tabs`
|
2021-01-15 21:44:25 -06:00
|
|
|
|
|
2021-10-18 20:56:37 -05:00
|
|
|
|
A list of registered tabs.
|
2021-01-15 21:44:25 -06:00
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
2024-01-12 00:57:28 -06:00
|
|
|
|
### Footer buttons
|
2024-01-12 13:10:36 -06:00
|
|
|
|
![Screenshot of the inventory with the below example footer-button.](.res/api-footer_button.png)
|
2024-01-12 00:57:28 -06:00
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
`i4.new_footer_button(name, def)`
|
2024-01-12 00:57:28 -06:00
|
|
|
|
|
|
|
|
|
* `name` is the footer button’s name.
|
|
|
|
|
* `def` is the button defintion.
|
|
|
|
|
|
|
|
|
|
Custom footer buttons can be added beside the trash, sort, and settings buttons. For example:
|
|
|
|
|
|
|
|
|
|
```Lua
|
2024-01-12 03:16:02 -06:00
|
|
|
|
i4.new_footer_button("broadcast_msg", {
|
2024-01-12 00:57:28 -06:00
|
|
|
|
description = "Broadcast message",
|
|
|
|
|
image = "speech_icon.png", -- Required, this is the button’s icon.
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- The functions below are all optional
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
-- Determine if the button is visible by a player, return false to hide the button.
|
|
|
|
|
access = function(player, data)
|
|
|
|
|
return true
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
-- Build the formspec
|
|
|
|
|
formspec = function(player, data, fs)
|
2024-01-12 03:16:02 -06:00
|
|
|
|
-- Button style nicked from i4 directly.
|
2024-01-12 00:57:28 -06:00
|
|
|
|
fs([[
|
|
|
|
|
style[send_msg_button,confirm_trash_no,set_home;noclip=true;font_size=16;
|
2024-01-12 03:16:02 -06:00
|
|
|
|
bgimg=i4_btn9.png;bgimg_hovered=i4_btn9_hovered.png;
|
|
|
|
|
bgimg_pressed=i4_btn9_pressed.png;bgimg_middle=4,6]
|
2024-01-12 00:57:28 -06:00
|
|
|
|
]])
|
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
fs("image[5,10.65;3,0.5;i4_bg_goto.png]")
|
2024-01-12 00:57:28 -06:00
|
|
|
|
fs("field[5,10.65;3,0.5;chat_msg_field;;]")
|
|
|
|
|
fs("button[8,10.65;1,0.5;send_msg_button;Send]")
|
|
|
|
|
-- No need to return anything
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
-- Events handling happens here
|
|
|
|
|
fields = function(player, data, fields)
|
|
|
|
|
if fields.key_enter_field == "chat_msg_field" or fields.send_msg_button then
|
|
|
|
|
minetest.chat_send_all("Broadcast: " .. fields.chat_msg_field)
|
|
|
|
|
return false -- To close a footer button’s dialogue, return false.
|
|
|
|
|
end
|
|
|
|
|
return true -- To keep a footer button active, return true.
|
|
|
|
|
end,
|
|
|
|
|
})
|
|
|
|
|
```
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.remove_footer_button(button_name)`
|
2024-01-12 00:57:28 -06:00
|
|
|
|
|
|
|
|
|
Delete a footer button by name.
|
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.override_footer_button(button_name, def)`
|
2024-01-12 00:57:28 -06:00
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
Override a footer button by name. `def` is the button definition like seen in `i4.new_footer_button`
|
2024-01-12 00:57:28 -06:00
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.footer_buttons`
|
2024-01-12 00:57:28 -06:00
|
|
|
|
|
|
|
|
|
A list of registered footer buttons.
|
|
|
|
|
|
2023-01-19 09:47:50 -06:00
|
|
|
|
### Recipes
|
2020-12-30 16:21:05 -06:00
|
|
|
|
|
|
|
|
|
Custom recipes are nonconventional crafts outside the main crafting grid.
|
|
|
|
|
They can be registered in-game dynamically and have a size beyond 3x3 items.
|
|
|
|
|
|
|
|
|
|
**Note:** the registration format differs from the default registration format in everything.
|
2022-09-15 05:23:44 -05:00
|
|
|
|
The width is automatically calculated depending where you place the commas.
|
|
|
|
|
|
|
|
|
|
Examples:
|
2020-12-30 16:21:05 -06:00
|
|
|
|
|
2022-09-15 05:23:44 -05:00
|
|
|
|
#### Registering a custom crafting type
|
2020-12-30 16:21:05 -06:00
|
|
|
|
|
|
|
|
|
```Lua
|
2024-01-12 03:16:02 -06:00
|
|
|
|
i4.register_craft_type("digging", {
|
2020-12-30 16:21:05 -06:00
|
|
|
|
description = "Digging",
|
|
|
|
|
icon = "default_tool_steelpick.png",
|
|
|
|
|
})
|
|
|
|
|
```
|
|
|
|
|
|
2022-09-15 05:23:44 -05:00
|
|
|
|
#### Registering a custom crafting recipe
|
2020-12-30 16:21:05 -06:00
|
|
|
|
|
|
|
|
|
```Lua
|
2024-01-12 03:16:02 -06:00
|
|
|
|
i4.register_craft {
|
2020-12-30 16:21:05 -06:00
|
|
|
|
type = "digging",
|
|
|
|
|
result = "default:cobble 2",
|
|
|
|
|
items = {"default:stone"},
|
2021-10-18 20:56:37 -05:00
|
|
|
|
}
|
2020-12-30 16:21:05 -06:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```Lua
|
2024-01-12 03:16:02 -06:00
|
|
|
|
i4.register_craft {
|
2020-12-30 16:21:05 -06:00
|
|
|
|
result = "default:cobble 16",
|
|
|
|
|
items = {
|
|
|
|
|
"default:stone, default:stone, default:stone",
|
|
|
|
|
"default:stone, , default:stone",
|
|
|
|
|
"default:stone, default:stone, default:stone",
|
|
|
|
|
}
|
2021-10-18 20:56:37 -05:00
|
|
|
|
}
|
2020-12-30 16:21:05 -06:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Recipes can be registered in a Minecraft-like way:
|
|
|
|
|
|
|
|
|
|
```Lua
|
2024-01-12 03:16:02 -06:00
|
|
|
|
i4.register_craft {
|
2020-12-30 16:21:05 -06:00
|
|
|
|
grid = {
|
|
|
|
|
"X #",
|
|
|
|
|
" ## ",
|
|
|
|
|
"X#X#",
|
|
|
|
|
"X X",
|
|
|
|
|
},
|
|
|
|
|
key = {
|
|
|
|
|
['#'] = "default:wood",
|
|
|
|
|
['X'] = "default:glass",
|
|
|
|
|
},
|
|
|
|
|
result = "default:mese 3",
|
2021-10-18 20:56:37 -05:00
|
|
|
|
}
|
2020-12-30 16:21:05 -06:00
|
|
|
|
```
|
|
|
|
|
|
2023-04-02 07:49:13 -05:00
|
|
|
|
Multiple recipes can also be registered at once:
|
2020-12-30 16:21:05 -06:00
|
|
|
|
|
|
|
|
|
```Lua
|
2024-01-12 03:16:02 -06:00
|
|
|
|
i4.register_craft {
|
2020-12-30 16:21:05 -06:00
|
|
|
|
{
|
|
|
|
|
result = "default:mese",
|
|
|
|
|
items = {
|
|
|
|
|
"default:mese_crystal, default:mese_crystal",
|
|
|
|
|
"default:mese_crystal, default:mese_crystal",
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
big = {
|
|
|
|
|
result = "default:mese 4",
|
|
|
|
|
items = {
|
|
|
|
|
"default:mese_crystal, default:mese_crystal",
|
|
|
|
|
"default:mese_crystal, default:mese_crystal",
|
|
|
|
|
"default:mese_crystal, default:mese_crystal",
|
|
|
|
|
"default:mese_crystal, default:mese_crystal",
|
|
|
|
|
}
|
|
|
|
|
},
|
2021-10-18 20:56:37 -05:00
|
|
|
|
}
|
2020-12-30 16:21:05 -06:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Recipes can be registered from a given URL containing a JSON file (HTTP support is required¹):
|
|
|
|
|
|
|
|
|
|
```Lua
|
2024-01-12 03:16:02 -06:00
|
|
|
|
i4.register_craft {
|
2024-01-28 23:16:07 -06:00
|
|
|
|
url = "https://hak.xwx.moe/jadedctrl/minetest-i4/src/master/i4/tests/test_online_recipe.json"
|
2021-10-18 20:56:37 -05:00
|
|
|
|
}
|
2020-12-30 16:21:05 -06:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
2023-01-19 09:40:31 -06:00
|
|
|
|
### Minitabs
|
|
|
|
|
|
|
|
|
|
Manage the tabs on the right panel of the inventory.
|
|
|
|
|
Allow to make a sensible list sorted by specific groups of items.
|
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.new_minitab(name, def)`
|
2023-01-19 09:40:31 -06:00
|
|
|
|
|
|
|
|
|
Add a new minitab (limited to 6).
|
|
|
|
|
|
|
|
|
|
- `name` is the tab name.
|
|
|
|
|
- `def` is the definition table.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
|
|
```Lua
|
2024-01-12 03:16:02 -06:00
|
|
|
|
i4.new_minitab("test", {
|
2023-01-19 11:57:16 -06:00
|
|
|
|
description = "Test",
|
|
|
|
|
|
|
|
|
|
-- Whether this tab is visible or not. Optional.
|
2023-01-19 09:40:31 -06:00
|
|
|
|
access = function(player, data)
|
|
|
|
|
return player:get_player_name() == "singleplayer"
|
|
|
|
|
end,
|
|
|
|
|
|
2023-01-19 11:57:16 -06:00
|
|
|
|
-- Whether a specific item is shown in the list or not.
|
2023-01-19 09:40:31 -06:00
|
|
|
|
sorter = function(item, data)
|
|
|
|
|
return item:find"wood"
|
|
|
|
|
end
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
- `player` is an `ObjectRef` to the user.
|
|
|
|
|
- `data` are the user data.
|
|
|
|
|
- `item` is an item name string.
|
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.remove_minitab(name)`
|
2023-01-19 09:40:31 -06:00
|
|
|
|
|
2023-01-19 11:57:16 -06:00
|
|
|
|
Remove a minitab by name.
|
|
|
|
|
|
|
|
|
|
- `name` is the name of the tab to remove.
|
2023-01-19 09:40:31 -06:00
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.minitabs`
|
2023-01-19 09:40:31 -06:00
|
|
|
|
|
|
|
|
|
A list of registered minitabs.
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
2020-12-30 16:21:05 -06:00
|
|
|
|
### Recipe filters
|
|
|
|
|
|
|
|
|
|
Recipe filters can be used to filter the recipes shown to players. Progressive
|
|
|
|
|
mode is implemented as a recipe filter.
|
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.add_recipe_filter(name, function(recipes, player))`
|
2020-12-30 16:21:05 -06:00
|
|
|
|
|
2022-09-15 05:23:44 -05:00
|
|
|
|
Add a recipe filter with the given `name`. The filter function returns the
|
2020-12-30 16:21:05 -06:00
|
|
|
|
recipes to be displayed, given the available recipes and an `ObjectRef` to the
|
|
|
|
|
user. Each recipe is a table of the form returned by
|
|
|
|
|
`minetest.get_craft_recipe`.
|
|
|
|
|
|
|
|
|
|
Example function to hide recipes for items from a mod called "secretstuff":
|
|
|
|
|
|
|
|
|
|
```lua
|
2024-01-12 03:16:02 -06:00
|
|
|
|
i4.add_recipe_filter("Hide secretstuff", function(recipes)
|
2020-12-30 16:21:05 -06:00
|
|
|
|
local filtered = {}
|
|
|
|
|
for _, recipe in ipairs(recipes) do
|
|
|
|
|
if recipe.output:sub(1,12) ~= "secretstuff:" then
|
|
|
|
|
filtered[#filtered + 1] = recipe
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
return filtered
|
|
|
|
|
end)
|
|
|
|
|
```
|
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.set_recipe_filter(name, function(recipe, player))`
|
2020-12-30 16:21:05 -06:00
|
|
|
|
|
2022-09-15 05:23:44 -05:00
|
|
|
|
Remove all recipe filters and add a new one.
|
2020-12-30 16:21:05 -06:00
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.recipe_filters`
|
2020-12-30 16:21:05 -06:00
|
|
|
|
|
2021-10-18 20:24:32 -05:00
|
|
|
|
A map of recipe filters, indexed by name.
|
2020-12-30 16:21:05 -06:00
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
### Search filters
|
|
|
|
|
|
2021-10-25 16:40:04 -05:00
|
|
|
|
Search filters are used to perform specific searches from the search field.
|
|
|
|
|
The filters can be cumulated to perform a specific search.
|
|
|
|
|
They are used like so: `<optional_name> +<filter name>=<value1>,<value2>,<...>`
|
2020-12-30 16:21:05 -06:00
|
|
|
|
|
2021-01-23 13:11:28 -06:00
|
|
|
|
Example usages:
|
2020-12-30 16:21:05 -06:00
|
|
|
|
|
2021-10-24 22:31:58 -05:00
|
|
|
|
- `+groups=cracky,crumbly` -> search for groups `cracky` and `crumbly` in all items.
|
|
|
|
|
- `wood +groups=flammable` -> search for group `flammable` amongst items which contain
|
2021-06-25 23:22:03 -05:00
|
|
|
|
`wood` in their names.
|
2020-12-30 16:21:05 -06:00
|
|
|
|
|
|
|
|
|
Notes:
|
2021-01-23 12:49:28 -06:00
|
|
|
|
- If `optional_name` is omitted, the search filter will apply to all items, without pre-filtering.
|
2021-06-25 23:22:03 -05:00
|
|
|
|
- The `+groups` filter is currently implemented by default.
|
2020-12-30 16:21:05 -06:00
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.add_search_filter(name, function(item, values))`
|
2020-12-30 16:21:05 -06:00
|
|
|
|
|
2022-09-15 05:23:44 -05:00
|
|
|
|
Add a search filter.
|
2021-01-23 12:49:28 -06:00
|
|
|
|
The search function must return a boolean value (whether the given item should be listed or not).
|
2020-12-30 16:21:05 -06:00
|
|
|
|
|
2021-10-25 16:40:04 -05:00
|
|
|
|
- `name` is the filter name.
|
|
|
|
|
- `values` is a table of all possible values.
|
|
|
|
|
|
2021-01-23 12:49:28 -06:00
|
|
|
|
Example function sorting items by drawtype:
|
2020-12-30 16:21:05 -06:00
|
|
|
|
|
|
|
|
|
```lua
|
2024-01-12 03:16:02 -06:00
|
|
|
|
i4.add_search_filter("types", function(item, drawtypes)
|
2021-01-24 16:08:49 -06:00
|
|
|
|
local t = {}
|
|
|
|
|
|
|
|
|
|
for i, dt in ipairs(drawtypes) do
|
|
|
|
|
t[i] = (dt == "node" and reg_nodes[item] and 1) or
|
|
|
|
|
(dt == "item" and reg_craftitems[item] and 1) or
|
|
|
|
|
(dt == "tool" and reg_tools[item] and 1) or nil
|
2020-12-30 16:21:05 -06:00
|
|
|
|
end
|
2021-01-24 16:08:49 -06:00
|
|
|
|
|
|
|
|
|
return #t > 0
|
2020-12-30 16:21:05 -06:00
|
|
|
|
end)
|
|
|
|
|
```
|
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.search_filters`
|
2020-12-30 16:21:05 -06:00
|
|
|
|
|
2021-10-18 20:24:32 -05:00
|
|
|
|
A map of search filters, indexed by name.
|
2020-12-30 16:21:05 -06:00
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
2021-10-31 16:11:41 -05:00
|
|
|
|
### Sorting methods
|
|
|
|
|
|
|
|
|
|
Sorting methods are used to filter the player's main inventory.
|
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.add_sorting_method(name, def)`
|
2021-10-31 16:11:41 -05:00
|
|
|
|
|
2022-09-15 05:23:44 -05:00
|
|
|
|
Add a player inventory sorting method.
|
2021-10-31 16:11:41 -05:00
|
|
|
|
|
2021-11-19 12:35:41 -06:00
|
|
|
|
- `name` is the method name.
|
2021-10-31 16:11:41 -05:00
|
|
|
|
- `def` is the method definition.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
|
|
```Lua
|
2024-01-12 03:16:02 -06:00
|
|
|
|
i4.add_sorting_method("test", {
|
2021-10-31 16:11:41 -05:00
|
|
|
|
description = "Cool sorting method",
|
2021-11-01 09:12:32 -05:00
|
|
|
|
func = function(list, data)
|
|
|
|
|
-- `list`: inventory list
|
|
|
|
|
-- `data`: player data
|
|
|
|
|
|
2021-10-31 16:11:41 -05:00
|
|
|
|
table.sort(list)
|
|
|
|
|
|
2021-11-01 09:12:32 -05:00
|
|
|
|
-- A list must be returned
|
2021-10-31 16:11:41 -05:00
|
|
|
|
return list
|
|
|
|
|
end,
|
2021-11-19 12:35:41 -06:00
|
|
|
|
})
|
2021-10-31 16:11:41 -05:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.sorting_methods`
|
2021-10-31 16:11:41 -05:00
|
|
|
|
|
|
|
|
|
A table containing all sorting methods.
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
2021-10-25 16:40:04 -05:00
|
|
|
|
### Item list compression
|
2021-10-24 17:14:21 -05:00
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
`i4` can reduce the item list size by compressing a group of items.
|
2021-10-24 17:14:21 -05:00
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.compress(item, def)`
|
2021-10-24 17:14:21 -05:00
|
|
|
|
|
2022-09-15 05:23:44 -05:00
|
|
|
|
Add a new group of items to compress.
|
2021-10-24 17:14:21 -05:00
|
|
|
|
|
2022-01-31 11:09:53 -06:00
|
|
|
|
- `item` is the item which represent the group of compressed items.
|
2021-10-24 17:14:21 -05:00
|
|
|
|
- `def` is a table specifying the substring replace patterns to be used.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
|
|
```Lua
|
2024-01-12 03:16:02 -06:00
|
|
|
|
i4.compress("default:diamondblock", {
|
2021-10-24 17:14:21 -05:00
|
|
|
|
replace = "diamond",
|
|
|
|
|
by = {"bronze", "copper", "gold", "steel", "tin"}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.compress_groups`
|
2021-10-24 17:14:21 -05:00
|
|
|
|
|
2021-10-24 22:31:58 -05:00
|
|
|
|
A map of all compressed item groups, indexed by stereotypes.
|
2021-10-24 17:14:21 -05:00
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
2023-01-07 05:28:07 -06:00
|
|
|
|
### Waypoints
|
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
`i4` allows you to manage the waypoints of a specific player.
|
2023-01-07 05:28:07 -06:00
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.add_waypoint(player_name, def)`
|
2023-01-07 05:28:07 -06:00
|
|
|
|
|
|
|
|
|
Add a waypoint to specific player.
|
|
|
|
|
|
|
|
|
|
- `player_name` is the player name.
|
|
|
|
|
- `def` is the waypoint definition table.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
|
|
```Lua
|
2024-01-12 03:16:02 -06:00
|
|
|
|
i4.add_waypoint("Test", {
|
2023-01-07 05:28:07 -06:00
|
|
|
|
player = "singleplayer",
|
|
|
|
|
pos = {x = 0, y = 2, z = 0},
|
|
|
|
|
color = 0xffff00,
|
|
|
|
|
-- image = "heart.png" (optional)
|
|
|
|
|
})
|
|
|
|
|
```
|
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.remove_waypoint(player_name, waypoint_name)`
|
2023-01-07 05:28:07 -06:00
|
|
|
|
|
|
|
|
|
Remove a waypoint for specific player.
|
|
|
|
|
|
|
|
|
|
- `player_name` is the player name.
|
|
|
|
|
- `waypoint_name` is the waypoint name.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
|
|
```Lua
|
2024-01-12 03:16:02 -06:00
|
|
|
|
i4.remove_waypoint("singleplayer", "Test")
|
2023-01-07 05:28:07 -06:00
|
|
|
|
```
|
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.get_waypoints(player_name)`
|
2023-01-07 05:28:07 -06:00
|
|
|
|
|
|
|
|
|
Return a table of all waypoints of a specific player.
|
|
|
|
|
|
|
|
|
|
- `player_name` is the player name.
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
2020-12-30 16:21:05 -06:00
|
|
|
|
### Miscellaneous
|
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.hud_notif(name, msg[, img])`
|
2021-11-25 20:32:04 -06:00
|
|
|
|
|
2023-04-02 07:49:13 -05:00
|
|
|
|
Show a Steam-like HUD notification on the bottom-left corner of the screen.
|
2021-11-25 20:32:04 -06:00
|
|
|
|
|
|
|
|
|
- `name` is the player name.
|
|
|
|
|
- `msg` is the HUD message to show.
|
|
|
|
|
- `img` (optional) is the HUD image to show (preferably 16x16 px).
|
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.get_recipes(item)`
|
2021-10-18 14:21:33 -05:00
|
|
|
|
|
2022-09-15 05:23:44 -05:00
|
|
|
|
Return a table of recipes and usages of `item`.
|
2021-10-18 14:21:33 -05:00
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
#### `i4.export_url`
|
2020-12-30 16:21:05 -06:00
|
|
|
|
|
|
|
|
|
If set, the mod will export all the cached recipes and usages in a JSON format
|
|
|
|
|
to the given URL (HTTP support is required¹).
|
|
|
|
|
|
2021-11-08 18:36:20 -06:00
|
|
|
|
#### `groups = {bag = <1-4>}`
|
2021-10-18 14:11:07 -05:00
|
|
|
|
|
|
|
|
|
The `bag` group in the item definition allows to extend the player inventory size
|
2021-11-08 18:36:20 -06:00
|
|
|
|
given a number between 1 and 4.
|
2021-10-18 14:11:07 -05:00
|
|
|
|
|
2020-12-30 16:21:05 -06:00
|
|
|
|
---
|
|
|
|
|
|
2024-01-12 03:16:02 -06:00
|
|
|
|
**[1]** Add `i4` to the `secure.http_mods` or `secure.trusted_mods` setting in `minetest.conf`.
|