2019-03-12 21:03:21 +00:00
|
|
|
## API
|
|
|
|
|
|
|
|
### Custom recipes
|
|
|
|
|
|
|
|
#### Registering a custom crafting type (example)
|
|
|
|
|
|
|
|
```Lua
|
2019-03-13 03:52:23 +00:00
|
|
|
mcl_craftguide.register_craft_type("digging", {
|
2019-03-12 21:03:21 +00:00
|
|
|
description = "Digging",
|
|
|
|
icon = "default_tool_steelpick.png",
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Registering a custom crafting recipe (example)
|
|
|
|
|
|
|
|
```Lua
|
2019-03-13 03:52:23 +00:00
|
|
|
mcl_craftguide.register_craft({
|
2019-03-12 21:03:21 +00:00
|
|
|
type = "digging",
|
|
|
|
width = 1,
|
|
|
|
output = "default:cobble 2",
|
|
|
|
items = {"default:stone"},
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### Recipe filters
|
|
|
|
|
|
|
|
Recipe filters can be used to filter the recipes shown to players. Progressive
|
|
|
|
mode is implemented as a recipe filter.
|
|
|
|
|
2019-03-13 03:52:23 +00:00
|
|
|
#### `mcl_craftguide.add_recipe_filter(name, function(recipes, player))`
|
2019-03-12 21:03:21 +00:00
|
|
|
|
|
|
|
Adds a recipe filter with the given name. The filter function should return the
|
|
|
|
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
|
2019-03-13 03:52:23 +00:00
|
|
|
mcl_craftguide.add_recipe_filter("Hide secretstuff", function(recipes)
|
2019-03-12 21:03:21 +00: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)
|
|
|
|
```
|
|
|
|
|
2019-03-13 03:52:23 +00:00
|
|
|
#### `mcl_craftguide.remove_recipe_filter(name)`
|
2019-03-12 21:03:21 +00:00
|
|
|
|
|
|
|
Removes the recipe filter with the given name.
|
|
|
|
|
2019-03-13 03:52:23 +00:00
|
|
|
#### `mcl_craftguide.set_recipe_filter(name, function(recipe, player))`
|
2019-03-12 21:03:21 +00:00
|
|
|
|
|
|
|
Removes all recipe filters and adds a new one.
|
|
|
|
|
2019-03-13 03:52:23 +00:00
|
|
|
#### `mcl_craftguide.get_recipe_filters()`
|
2019-03-12 21:03:21 +00:00
|
|
|
|
|
|
|
Returns a map of recipe filters, indexed by name.
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### Search filters
|
|
|
|
|
|
|
|
Search filters are used to perform specific searches inside the search field.
|
|
|
|
They can be used like so: `<optional name>+<filter name>=<value1>,<value2>,<...>`
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
- `+groups=cracky,crumbly`: search for groups `cracky` and `crumbly` in all items.
|
|
|
|
- `sand+groups=falling_node`: search for group `falling_node` for items which contain `sand` in their names.
|
|
|
|
|
|
|
|
Notes:
|
|
|
|
- If `optional name` is omitted, the search filter will apply to all items, without pre-filtering.
|
|
|
|
- Filters can be combined.
|
|
|
|
- The `groups` filter is currently implemented by default.
|
|
|
|
|
2019-03-13 03:52:23 +00:00
|
|
|
#### `mcl_craftguide.add_search_filter(name, function(item, values))`
|
2019-03-12 21:03:21 +00:00
|
|
|
|
|
|
|
Adds a search filter with the given name.
|
|
|
|
The search function should return a boolean value (whether the given item should be listed or not).
|
|
|
|
|
|
|
|
Example function to show items which contain at least a recipe of given width(s):
|
|
|
|
|
|
|
|
```lua
|
2019-03-13 03:52:23 +00:00
|
|
|
mcl_craftguide.add_search_filter("widths", function(item, widths)
|
2019-03-12 21:03:21 +00:00
|
|
|
local has_width
|
|
|
|
local recipes = recipes_cache[item]
|
|
|
|
|
|
|
|
if recipes then
|
|
|
|
for i = 1, #recipes do
|
|
|
|
local recipe_width = recipes[i].width
|
|
|
|
for j = 1, #widths do
|
|
|
|
local width = tonumber(widths[j])
|
|
|
|
if width == recipe_width then
|
|
|
|
has_width = true
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return has_width
|
|
|
|
end)
|
|
|
|
```
|
|
|
|
|
2019-03-13 03:52:23 +00:00
|
|
|
#### `mcl_craftguide.remove_search_filter(name)`
|
2019-03-12 21:03:21 +00:00
|
|
|
|
|
|
|
Removes the search filter with the given name.
|
|
|
|
|
2019-03-13 03:52:23 +00:00
|
|
|
#### `mcl_craftguide.get_search_filters()`
|
2019-03-12 21:03:21 +00:00
|
|
|
|
|
|
|
Returns a map of search filters, indexed by name.
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### Custom formspec elements
|
|
|
|
|
2019-03-13 03:52:23 +00:00
|
|
|
#### `mcl_craftguide.add_formspec_element(name, def)`
|
2019-03-12 21:03:21 +00:00
|
|
|
|
|
|
|
Adds a formspec element to the current formspec.
|
|
|
|
Supported types: `box`, `label`, `image`, `button`, `tooltip`, `item_image`, `image_button`, `item_image_button`
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
```lua
|
2019-03-13 03:52:23 +00:00
|
|
|
mcl_craftguide.add_formspec_element("export", {
|
2019-03-12 21:03:21 +00:00
|
|
|
type = "button",
|
|
|
|
element = function(data)
|
|
|
|
-- Should return a table of parameters according to the formspec element type.
|
|
|
|
-- Note: for all buttons, the 'name' parameter *must not* be specified!
|
|
|
|
if data.recipes then
|
|
|
|
return {
|
|
|
|
data.iX - 3.7, -- X
|
|
|
|
sfinv_only and 7.9 or 8, -- Y
|
|
|
|
1.6, -- W
|
|
|
|
1, -- H
|
|
|
|
ESC(S("Export")) -- label
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
-- Optional.
|
|
|
|
action = function(player, data)
|
|
|
|
-- When the button is pressed.
|
|
|
|
print("Exported!")
|
|
|
|
end
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
2019-03-13 03:52:23 +00:00
|
|
|
#### `mcl_craftguide.remove_formspec_element(name)`
|
2019-03-12 21:03:21 +00:00
|
|
|
|
|
|
|
Removes the formspec element with the given name.
|
|
|
|
|
2019-03-13 03:52:23 +00:00
|
|
|
#### `mcl_craftguide.get_formspec_elements()`
|
2019-03-12 21:03:21 +00:00
|
|
|
|
|
|
|
Returns a map of formspec elements, indexed by name.
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### Miscellaneous
|
|
|
|
|
2019-03-13 03:52:23 +00:00
|
|
|
#### `mcl_craftguide.show(player_name, item, show_usages)`
|
2019-03-12 21:03:21 +00:00
|
|
|
|
|
|
|
Opens the Crafting Guide with the current filter applied.
|
|
|
|
|
|
|
|
* `player_name`: string param.
|