Add craftguide (copied over from MineClone 2)
It cannot be accessed yet, it needs a button
|
@ -0,0 +1,171 @@
|
||||||
|
## API
|
||||||
|
|
||||||
|
### Custom recipes
|
||||||
|
|
||||||
|
#### Registering a custom crafting type (example)
|
||||||
|
|
||||||
|
```Lua
|
||||||
|
realtest_craftguide.register_craft_type("digging", {
|
||||||
|
description = "Digging",
|
||||||
|
icon = "default_tool_steelpick.png",
|
||||||
|
})
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Registering a custom crafting recipe (example)
|
||||||
|
|
||||||
|
```Lua
|
||||||
|
realtest_craftguide.register_craft({
|
||||||
|
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.
|
||||||
|
|
||||||
|
#### `realtest_craftguide.add_recipe_filter(name, function(recipes, player))`
|
||||||
|
|
||||||
|
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
|
||||||
|
realtest_craftguide.add_recipe_filter("Hide secretstuff", function(recipes)
|
||||||
|
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)
|
||||||
|
```
|
||||||
|
|
||||||
|
#### `realtest_craftguide.remove_recipe_filter(name)`
|
||||||
|
|
||||||
|
Removes the recipe filter with the given name.
|
||||||
|
|
||||||
|
#### `realtest_craftguide.set_recipe_filter(name, function(recipe, player))`
|
||||||
|
|
||||||
|
Removes all recipe filters and adds a new one.
|
||||||
|
|
||||||
|
#### `realtest_craftguide.get_recipe_filters()`
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
#### `realtest_craftguide.add_search_filter(name, function(item, values))`
|
||||||
|
|
||||||
|
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
|
||||||
|
realtest_craftguide.add_search_filter("widths", function(item, widths)
|
||||||
|
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)
|
||||||
|
```
|
||||||
|
|
||||||
|
#### `realtest_craftguide.remove_search_filter(name)`
|
||||||
|
|
||||||
|
Removes the search filter with the given name.
|
||||||
|
|
||||||
|
#### `realtest_craftguide.get_search_filters()`
|
||||||
|
|
||||||
|
Returns a map of search filters, indexed by name.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### Custom formspec elements
|
||||||
|
|
||||||
|
#### `realtest_craftguide.add_formspec_element(name, def)`
|
||||||
|
|
||||||
|
Adds a formspec element to the current formspec.
|
||||||
|
Supported types: `box`, `label`, `image`, `button`, `tooltip`, `item_image`, `image_button`, `item_image_button`
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
```lua
|
||||||
|
realtest_craftguide.add_formspec_element("export", {
|
||||||
|
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
|
||||||
|
})
|
||||||
|
```
|
||||||
|
|
||||||
|
#### `realtest_craftguide.remove_formspec_element(name)`
|
||||||
|
|
||||||
|
Removes the formspec element with the given name.
|
||||||
|
|
||||||
|
#### `realtest_craftguide.get_formspec_elements()`
|
||||||
|
|
||||||
|
Returns a map of formspec elements, indexed by name.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### Miscellaneous
|
||||||
|
|
||||||
|
#### `realtest_craftguide.show(player_name, item, show_usages)`
|
||||||
|
|
||||||
|
Opens the Crafting Guide with the current filter applied.
|
||||||
|
|
||||||
|
* `player_name`: string param.
|
|
@ -0,0 +1,11 @@
|
||||||
|
# Crafting Guide (RealTest edition)
|
||||||
|
|
||||||
|
#### `realtest_craftguide` is based on, `craftguide` the most comprehensive crafting guide on Minetest.
|
||||||
|
#### Consult the [Minetest Wiki](http://wiki.minetest.net/Crafting_guide) for more details.
|
||||||
|
|
||||||
|
This crafting guide can be accessed from the invenotory menu (book icon).
|
||||||
|
|
||||||
|
Crafting guide starts out empty and will be filled with more recipes whenever you hold on
|
||||||
|
to a new items that you can use to new recipes.
|
||||||
|
|
||||||
|
For developers, there's a modding API (see `API.md`).
|
|
@ -0,0 +1,2 @@
|
||||||
|
sfinv?
|
||||||
|
sfinv_buttons?
|
|
@ -0,0 +1,58 @@
|
||||||
|
License of source code
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2015-2019 Jean-Patrick Guerrero and contributors.
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
THE SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
|
Licenses of media (textures)
|
||||||
|
----------------------------
|
||||||
|
|
||||||
|
Copyright © Diego Martínez (kaeza): craftguide_*_icon.png (CC BY-SA 3.0)
|
||||||
|
|
||||||
|
You are free to:
|
||||||
|
Share — copy and redistribute the material in any medium or format.
|
||||||
|
Adapt — remix, transform, and build upon the material for any purpose, even commercially.
|
||||||
|
The licensor cannot revoke these freedoms as long as you follow the license terms.
|
||||||
|
|
||||||
|
Under the following terms:
|
||||||
|
|
||||||
|
Attribution — You must give appropriate credit, provide a link to the license, and
|
||||||
|
indicate if changes were made. You may do so in any reasonable manner, but not in any way
|
||||||
|
that suggests the licensor endorses you or your use.
|
||||||
|
|
||||||
|
ShareAlike — If you remix, transform, or build upon the material, you must distribute
|
||||||
|
your contributions under the same license as the original.
|
||||||
|
|
||||||
|
No additional restrictions — You may not apply legal terms or technological measures that
|
||||||
|
legally restrict others from doing anything the license permits.
|
||||||
|
|
||||||
|
Notices:
|
||||||
|
|
||||||
|
You do not have to comply with the license for elements of the material in the public
|
||||||
|
domain or where your use is permitted by an applicable exception or limitation.
|
||||||
|
No warranties are given. The license may not give you all of the permissions necessary
|
||||||
|
for your intended use. For example, other rights such as publicity, privacy, or moral
|
||||||
|
rights may limit how you use the material.
|
||||||
|
|
||||||
|
For more details:
|
||||||
|
http://creativecommons.org/licenses/by-sa/3.0/
|
|
@ -0,0 +1 @@
|
||||||
|
name = realtest_craftguide
|
|
@ -0,0 +1,4 @@
|
||||||
|
# If enabled, the recipe book will progressively be filled with new recipes that can be crafted from all items you ever have had in your inventory.
|
||||||
|
# Recommended for new players and for a spoiler-free gameplay experience.
|
||||||
|
# If disabled, all recipes will be shown.
|
||||||
|
realtest_craftguide_progressive_mode (Learn crafting recipes progressively) bool true
|
After Width: | Height: | Size: 136 B |
After Width: | Height: | Size: 208 B |
After Width: | Height: | Size: 545 B |
After Width: | Height: | Size: 600 B |
After Width: | Height: | Size: 613 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 169 B |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 431 B |
After Width: | Height: | Size: 489 B |