Compare commits

..

1 Commits

Author SHA1 Message Date
b07f0c0ecd Minor cleaning 2019-11-01 01:03:12 +01:00
9 changed files with 165 additions and 244 deletions

2
API.md
View File

@ -204,7 +204,7 @@ You can add a stereotype like so:
craftguide.group_stereotypes.radioactive = "mod:item"
```
#### `craftguide.export_url`
#### `craftguide.http_post_data`
If set, the mod will export all the cached recipes and usages in a JSON format
to the given URL (HTTP support is required¹).

405
init.lua
View File

@ -57,10 +57,6 @@ local S = CORE_VERSION >= 500 and core.get_translator("craftguide") or
end)
end
local ES = function(...)
return ESC(S(...))
end
local maxn, sort, concat, copy, insert, remove =
table.maxn, table.sort, table.concat, table.copy,
table.insert, table.remove
@ -79,7 +75,7 @@ local IPP = ROWS * LINES
local WH_LIMIT = 8
local XOFFSET = sfinv_only and 3.83 or 11.2
local YOFFSET = sfinv_only and 6 or 1
local YOFFSET = sfinv_only and 4.9 or 1
local PNG = {
bg = "craftguide_bg.png",
@ -138,7 +134,7 @@ local function err(str)
end
local function msg(name, str)
return chat_send(name, fmt("[craftguide] %s", clr("#f00", str)))
return chat_send(name, fmt("[craftguide] %s", clr("#FFFF00", str)))
end
local function is_str(x)
@ -161,7 +157,7 @@ local function is_group(item)
return sub(item, 1, 6) == "group:"
end
local function clean_name(item)
local function clean_item(item)
if sub(item, 1, 1) == ":" then
item = sub(item, 2)
end
@ -280,7 +276,7 @@ local craft_types = {}
function craftguide.register_craft_type(name, def)
if not true_str(name) then
return err"craftguide.register_craft_type(): name missing"
return err("craftguide.register_craft_type(): name missing")
end
if not is_str(def.description) then
@ -299,8 +295,8 @@ function craftguide.register_craft(def)
if true_str(def.url) then
if not http then
return err"No HTTP support for this mod. " ..
"Add it to the `secure.http_mods` or `secure.trusted_mods` setting."
return err("No HTTP support for this mod. " ..
"Add it to the `secure.http_mods` or `secure.trusted_mods` setting.")
end
http.fetch({url = def.url}, function(result)
@ -316,7 +312,7 @@ function craftguide.register_craft(def)
end
if not is_table(def) or not next(def) then
return err"craftguide.register_craft(): craft definition missing"
return err("craftguide.register_craft(): craft definition missing")
end
if #def > 1 then
@ -332,7 +328,7 @@ function craftguide.register_craft(def)
end
if not true_str(def.output) then
return err"craftguide.register_craft(): output missing"
return err("craftguide.register_craft(): output missing")
end
if not is_table(def.items) then
@ -402,9 +398,9 @@ local recipe_filters = {}
function craftguide.add_recipe_filter(name, f)
if not true_str(name) then
return err"craftguide.add_recipe_filter(): name missing"
return err("craftguide.add_recipe_filter(): name missing")
elseif not is_func(f) then
return err"craftguide.add_recipe_filter(): function missing"
return err("craftguide.add_recipe_filter(): function missing")
end
recipe_filters[name] = f
@ -412,9 +408,9 @@ end
function craftguide.set_recipe_filter(name, f)
if not is_str(name) then
return err"craftguide.set_recipe_filter(): name missing"
return err("craftguide.set_recipe_filter(): name missing")
elseif not is_func(f) then
return err"craftguide.set_recipe_filter(): function missing"
return err("craftguide.set_recipe_filter(): function missing")
end
recipe_filters = {[name] = f}
@ -440,9 +436,9 @@ local search_filters = {}
function craftguide.add_search_filter(name, f)
if not true_str(name) then
return err"craftguide.add_search_filter(): name missing"
return err("craftguide.add_search_filter(): name missing")
elseif not is_func(f) then
return err"craftguide.add_search_filter(): function missing"
return err("craftguide.add_search_filter(): function missing")
end
search_filters[name] = f
@ -470,10 +466,8 @@ local function extract_groups(str)
end
local function item_in_recipe(item, recipe)
local clean_item = reg_aliases[item] or item
for _, recipe_item in pairs(recipe.items) do
local clean_recipe_item = reg_aliases[recipe_item] or recipe_item
if clean_recipe_item == clean_item then
if recipe_item == item then
return true
end
end
@ -556,7 +550,7 @@ local function get_usages(item)
end
local function get_burntime(item)
return get_craft_result{method = "fuel", items = {item}}.time
return get_craft_result({method = "fuel", items = {item}}).time
end
local function cache_fuel(item)
@ -581,9 +575,8 @@ local function cache_recipes(output)
end
local function get_recipes(item, data, player)
local clean_item = reg_aliases[item] or item
local recipes = recipes_cache[clean_item]
local usages = usages_cache[clean_item]
local recipes = recipes_cache[item]
local usages = usages_cache[item]
if recipes then
recipes = apply_recipe_filters(recipes, player)
@ -639,19 +632,6 @@ local function repairable(tool)
return toolrepair and def and def.groups and def.groups.disable_repair ~= 1
end
local function is_fav(data)
local fav, i
for j = 1, #data.favs do
if data.favs[j] == data.query_item then
fav = true
i = j
break
end
end
return fav, i
end
local function get_desc(name)
local def = reg_items[name]
@ -668,7 +648,7 @@ local function get_tooltip(name, info)
for i = 1, #info.groups do
c = c + 1
groupstr[c] = clr("#ff0", info.groups[i])
groupstr[c] = clr("yellow", info.groups[i])
end
groupstr = concat(groupstr, ", ")
@ -682,15 +662,15 @@ local function get_tooltip(name, info)
end
if info.cooktime then
tooltip = add(S("Cooking time: @1", clr("#ff0", info.cooktime)))
tooltip = add(S("Cooking time: @1", clr("yellow", info.cooktime)))
end
if info.burntime then
tooltip = add(S("Burning time: @1", clr("#ff0", info.burntime)))
tooltip = add(S("Burning time: @1", clr("yellow", info.burntime)))
end
if info.replace then
local desc = clr("#ff0", get_desc(info.replace))
local desc = clr("yellow", get_desc(info.replace))
if info.cooktime then
tooltip = add(S("Replaced by @1 on smelting", desc))
@ -702,12 +682,12 @@ local function get_tooltip(name, info)
end
if info.repair then
tooltip = add(S("Repairable by step of @1", clr("#ff0", toolrepair .. "%")))
tooltip = add(S("Repairable by step of @1", clr("yellow", toolrepair .. "%")))
end
if info.rarity then
local chance = (1 / info.rarity) * 100
tooltip = add(S("@1 of chance to drop", clr("#ff0", chance .. "%")))
tooltip = add(S("@1 of chance to drop", clr("yellow", chance .. "%")))
end
return fmt("tooltip[%s;%s]", name, ESC(tooltip))
@ -730,7 +710,7 @@ local function get_output_fs(fs, L)
fs[#fs + 1] = fmt(FMT.image, pos_x, pos_y + L.spacing, 0.5, 0.5, icon)
local tooltip = custom_recipe and custom_recipe.description or
L.shapeless and S"Shapeless" or S"Cooking"
L.shapeless and S("Shapeless") or S("Cooking")
if CORE_VERSION >= 500 then
fs[#fs + 1] = fmt(FMT.tooltip, pos_x, pos_y + L.spacing, 0.5, 0.5, ESC(tooltip))
@ -750,19 +730,19 @@ local function get_output_fs(fs, L)
1.1, 1.1, PNG.fire)
else
local item = L.recipe.output
item = clean_name(item)
item = clean_item(item)
local name = match(item, "%S*")
fs[#fs + 1] = fmt(FMT.item_image_button,
output_X, YOFFSET + (sfinv_only and 0.7 or 0) + L.spacing,
1.1, 1.1, item, name, "")
if CORE_VERSION >= 510 then
fs[#fs + 1] = fmt(FMT.image,
output_X, YOFFSET + (sfinv_only and 0.7 or 0) + L.spacing,
1.1, 1.1, PNG.selected)
end
fs[#fs + 1] = fmt(FMT.item_image_button,
output_X, YOFFSET + (sfinv_only and 0.7 or 0) + L.spacing,
1.1, 1.1, item, name, "")
local infos = {
unknown = not reg_items[name] or nil,
burntime = fuel_cache[name],
@ -807,7 +787,7 @@ local function get_grid_fs(fs, rcp, spacing)
fs[#fs + 1] = fmt(FMT.label,
XOFFSET + (sfinv_only and -1.5 or -1.6),
YOFFSET + (sfinv_only and 0.5 or spacing),
ES("Recipe's too big to be displayed (@1x@2)", width, rows))
ESC(S("Recipe's too big to be displayed (@1x@2)", width, rows)))
return concat(fs)
end
@ -820,7 +800,7 @@ local function get_grid_fs(fs, rcp, spacing)
for i = 1, width * rows do
local item = rcp.items[i] or ""
item = clean_name(item)
item = clean_item(item)
local name = match(item, "%S*")
local X = ceil((i - 1) % width - width) + XOFFSET
@ -865,11 +845,6 @@ local function get_grid_fs(fs, rcp, spacing)
end
end
if CORE_VERSION >= 510 and not large_recipe then
fs[#fs + 1] = fmt(FMT.image,
X, Y + (sfinv_only and 0.7 or 0), btn_size, btn_size, PNG.selected)
end
fs[#fs + 1] = fmt(FMT.item_image_button,
X, Y + (sfinv_only and 0.7 or 0),
btn_size, btn_size, item, item, ESC(label))
@ -885,6 +860,12 @@ local function get_grid_fs(fs, rcp, spacing)
if next(infos) then
fs[#fs + 1] = get_tooltip(item, infos)
end
if CORE_VERSION >= 510 and not large_recipe then
fs[#fs + 1] = fmt(FMT.image,
X, Y + (sfinv_only and 0.7 or 0),
btn_size, btn_size, PNG.selected)
end
end
if large_recipe then
@ -903,137 +884,107 @@ local function get_grid_fs(fs, rcp, spacing)
end
local function get_panels(data, fs)
local start_y = CORE_VERSION >= 520 and 0 or 0.33
local panels = {
{dat = data.usages or {}, height = 3.5},
{dat = data.recipes or {}, height = 3.5},
}
local panels = {recipes = data.recipes or {}, usages = data.usages or {}}
local x = 0.33
if CORE_VERSION >= 520 and not sfinv_only then
panels.favs = {dat = {}, height = 2.19}
elseif sfinv_only then
if sfinv_only then
panels = data.show_usages and
{{dat = data.usages}} or {{dat = data.recipes}}
{usages = data.usages} or {recipes = data.recipes}
end
for k, v in pairs(panels) do
start_y = start_y + 1
local spacing = (start_y - 1) * 3.6
x = x + 1
local spacing = (x - 1) * 3.6
if not sfinv_only then
fs[#fs + 1] = CORE_VERSION >= 510 and
fmt("background9[8.1,%f;6.6,%f;%s;false;%d]",
-0.2 + spacing, v.height, PNG.bg_full, 10) or
fmt("background[8.1,%f;6.6,%f;%s;false]",
-0.2 + spacing, v.height, PNG.bg_full)
if k ~= "favs" then
local fav = is_fav(data)
local nfavs = #data.favs
fs[#fs + 1] = fmt(
"style[fav;fgimg=%s;fgimg_hovered=%s;fgimg_pressed=%s]",
fmt("craftguide_fav%s.png", fav and "" or "_off"),
fmt("craftguide_fav%s.png", fav and "_off" or ""),
fmt("craftguide_fav%s.png", fav and "_off" or ""))
if nfavs < 6 or (nfavs >= 6 and fav) then
fs[#fs + 1] = fmt(FMT.image_button,
14, spacing, 0.5, 0.45, "", "fav", "")
end
fs[#fs + 1] = fmt("tooltip[fav;%s]",
fav and ES"Unmark this item" or ES"Mark this item")
end
fmt("background9[8.1,%f;6.6,3.5;%s;false;%d]",
-0.2 + spacing, PNG.bg_full, 10) or
fmt("background[8.1,%f;6.6,3.5;%s;false]",
-0.2 + spacing, PNG.bg_full)
end
local rn = #v.dat
local rn = #v
local _rn = tostring(rn)
local xu = tostring(data.unum) .. _rn
local xr = tostring(data.rnum) .. _rn
xu = max(-0.3, -((#xu - 3) * 0.05))
xr = max(-0.3, -((#xr - 3) * 0.05))
local xof_u = tostring(data.unum) .. _rn
local xof_r = tostring(data.rnum) .. _rn
xof_u = max(-0.3, -((#xof_u - 3) * 0.15))
xof_r = max(-0.3, -((#xof_r - 3) * 0.15))
local is_recipe = k == 2
local lbl
local is_recipe = k == "recipes"
local btn_lab
if not sfinv_only and rn == 0 then
lbl = clr("#f00", is_recipe and ES"No recipes" or ES"No usages")
btn_lab = clr("red", is_recipe and
ESC(S("No recipes")) or ESC(S("No usages")))
elseif (not sfinv_only and is_recipe) or
(sfinv_only and not data.show_usages) then
lbl = ES("Recipe @1 of @2", data.rnum, rn)
btn_lab = ESC(S("Recipe @1 of @2", data.rnum, rn))
elseif not sfinv_only or (sfinv_only and data.show_usages) then
lbl = ES("Usage @1 of @2", data.unum, rn)
btn_lab = ESC(S("Usage @1 of @2", data.unum, rn))
elseif sfinv_only then
lbl = data.show_usages and
ES("Usage @1 of @2", data.unum, rn) or
ES("Recipe @1 of @2", data.rnum, rn)
btn_lab = data.show_usages and
ESC(S("Usage @1 of @2", data.unum, rn)) or
ESC(S("Recipe @1 of @2", data.rnum, rn))
end
fs[#fs + 1] = fmt(FMT.label,
XOFFSET + (sfinv_only and 2.3 or 1.6) + (is_recipe and xr or xu),
YOFFSET + (sfinv_only and 2.3 or 1.5 + spacing), lbl)
XOFFSET + (sfinv_only and 2.3 or 1.6) + (is_recipe and xof_r or xof_u),
YOFFSET + (sfinv_only and 3.35 or 1.5 + spacing),
btn_lab)
if rn > 1 then
local btn_suffix = is_recipe and "recipe" or "usage"
local prev_name = fmt("prev_%s", btn_suffix)
local next_name = fmt("next_%s", btn_suffix)
local x_arrow = XOFFSET + (sfinv_only and 1.7 or 1)
local y_arrow = YOFFSET + (sfinv_only and 2.2 or 1.4 + spacing)
local y_arrow = YOFFSET + (sfinv_only and 3.25 or 1.4 + spacing)
if CORE_VERSION >= 520 then
fs[#fs + 1] = fmt(mul_elem(FMT.arrow, 2),
x_arrow + (is_recipe and xr or xu), y_arrow,
PNG.prev, prev_name, "",
x_arrow + 1.8, y_arrow, PNG.next, next_name, "")
fs[#fs + 1] = fmt([[
style[%s;border=false;bgimg=%s;bgimg_hovered=%s]
style[%s;border=false;bgimg=%s;bgimg_hovered=%s]
]],
prev_name, PNG.prev, PNG.prev_hover,
next_name, PNG.next, PNG.next_hover)
fs[#fs + 1] = fmt(mul_elem(FMT.button, 2),
x_arrow + (is_recipe and xof_r or xof_u),
y_arrow, 0.8, 0.8, prev_name, "",
x_arrow + 1.8, y_arrow, 0.8, 0.8, next_name, "")
else
fs[#fs + 1] = fmt(mul_elem(FMT.arrow, 2),
x_arrow + (is_recipe and xr or xu),
x_arrow + (is_recipe and xof_r or xof_u),
y_arrow, PNG.prev, prev_name, PNG.prev_hover,
x_arrow + 1.8, y_arrow, PNG.next, next_name, PNG.next_hover)
end
end
local rcp = is_recipe and v.dat[data.rnum] or v.dat[data.unum]
local rcp = is_recipe and v[data.rnum] or v[data.unum]
if rcp then
get_grid_fs(fs, rcp, spacing)
end
if k == "favs" and CORE_VERSION >= 520 and not sfinv_only then
fs[#fs + 1] = fmt(FMT.label, 8.3, spacing - 0.1, ES"Bookmarks")
for i = 1, #data.favs do
local item = data.favs[i]
if data.query_item == item then
fs[#fs + 1] = fmt(FMT.image,
7.85 + (i - 0.5), spacing + 0.45,
1.1, 1.1, PNG.selected)
end
fs[#fs + 1] = fmt(FMT.item_image_button,
7.85 + (i - 0.5), spacing + 0.45,
1.1, 1.1, item, item, "")
end
end
end
end
local function make_formspec(name)
local data = pdata[name]
data.pagemax = max(1, ceil(#data.items / IPP))
local fs = {}
fs[#fs + 1] = fmt([[
size[%f,%f]
no_prepend[]
bgcolor[#0000]
]],
ROWS + (data.query_item and 6.7 or 0) - 1.2, LINES - 0.3)
if not sfinv_only then
fs[#fs + 1] = fmt([[
size[%f,%f]
no_prepend[]
bgcolor[#0000]
]],
ROWS + (data.query_item and 6.7 or 0) - 1.2,
LINES - 0.3)
fs[#fs + 1] = CORE_VERSION >= 510 and
fmt("background9[-0.15,-0.2;%f,%f;%s;false;%d]",
ROWS - 0.9, LINES + 0.4, PNG.bg_full, 10) or
@ -1042,58 +993,54 @@ local function make_formspec(name)
end
fs[#fs + 1] = fmt([[
style_type[item_image_button;border=false]
field[0.25,0.2;%f,1;filter;;%s]
field_close_on_enter[filter;false]
]],
sfinv_only and 2.76 or 2.72, ESC(data.filter))
]],
sfinv_only and 2.76 or 2.72, ESC(data.filter))
if CORE_VERSION >= 520 then
fs[#fs + 1] = fmt([[
style_type[image_button;border=false]
style_type[item_image_button;border=false;bgimg_hovered=%s;bgimg_pressed=%s]
style[search;fgimg=%s;fgimg_hovered=%s]
style[clear;fgimg=%s;fgimg_hovered=%s]
style[prev_page;fgimg=%s;fgimg_hovered=%s;fgimg_pressed=%s]
style[next_page;fgimg=%s;fgimg_hovered=%s;fgimg_pressed=%s]
style[search;border=false;bgimg=%s;bgimg_hovered=%s]
style[clear;border=false;bgimg=%s;bgimg_hovered=%s]
style[prev_page;border=false;bgimg=%s;bgimg_hovered=%s]
style[next_page;border=false;bgimg=%s;bgimg_hovered=%s]
]],
PNG.selected, PNG.selected,
PNG.search, PNG.search_hover,
PNG.clear, PNG.clear_hover,
PNG.prev, PNG.prev_hover, PNG.prev_hover,
PNG.next, PNG.next_hover, PNG.next_hover)
PNG.prev, PNG.prev_hover,
PNG.next, PNG.next_hover)
fs[#fs + 1] = fmt(mul_elem(FMT.image_button, 4),
sfinv_only and 2.6 or 2.54, -0.06, 0.85, 0.85, "", "search", "",
sfinv_only and 3.3 or 3.25, -0.06, 0.85, 0.85, "", "clear", "",
sfinv_only and 5.45 or (ROWS * 6.83) / 11, -0.06, 0.85, 0.85, "", "prev_page", "",
sfinv_only and 7.2 or (ROWS * 8.75) / 11, -0.06, 0.85, 0.85, "", "next_page", "")
fs[#fs + 1] = fmt(mul_elem(FMT.button, 4),
sfinv_only and 2.6 or 2.54, -0.12, 0.85, 1, "search", "",
sfinv_only and 3.3 or 3.25, -0.12, 0.85, 1, "clear", "",
sfinv_only and 5.45 or (ROWS * 6.83) / 11, -0.12, 0.85, 1, "prev_page", "",
sfinv_only and 7.2 or (ROWS * 8.75) / 11, -0.12, 0.85, 1, "next_page", "")
else
fs[#fs + 1] = fmt([[
image_button[%f,-0.06;0.85,0.85;%s;search;;;false;%s]
image_button[%f,-0.06;0.85,0.85;%s;clear;;;false;%s]
image_button[%f,-0.12;0.85,1;%s;search;;;false;%s]
image_button[%f,-0.12;0.85,1;%s;clear;;;false;%s]
]],
sfinv_only and 2.6 or 2.54, PNG.search, PNG.search_hover,
sfinv_only and 3.3 or 3.25, PNG.clear, PNG.clear_hover)
fs[#fs + 1] = fmt(mul_elem(FMT.arrow, 2),
sfinv_only and 5.45 or (ROWS * 6.83) / 11, -0.05,
PNG.prev, "prev_page", PNG.prev,
sfinv_only and 7.2 or (ROWS * 8.75) / 11, -0.05,
PNG.next, "next_page", PNG.next)
sfinv_only and 5.45 or (ROWS * 6.83) / 11,
-0.05, PNG.prev, "prev_page", PNG.prev,
sfinv_only and 7.2 or (ROWS * 8.75) / 11,
-0.05, PNG.next, "next_page", PNG.next)
end
data.pagemax = max(1, ceil(#data.items / IPP))
fs[#fs + 1] = fmt("label[%f,%f;%s / %u]",
sfinv_only and 6.35 or (ROWS * 7.85) / 11,
0.06, clr("#ff0", data.pagenum), data.pagemax)
0.06, clr("yellow", data.pagenum), data.pagemax)
if #data.items == 0 then
local no_item = S"No item to show"
local no_item = S("No item to show")
local pos = ROWS / 3
if next(recipe_filters) and #init_items > 0 and data.filter == "" then
no_item = S"Collect items to reveal more recipes"
no_item = S("Collect items to reveal more recipes")
pos = pos - 1
end
@ -1109,17 +1056,17 @@ local function make_formspec(name)
local X = i % ROWS
local Y = (i % IPP - X) / ROWS + 1
fs[#fs + 1] = fmt("item_image_button[%f,%f;%f,%f;%s;%s_inv;]",
X - (X * (sfinv_only and 0.12 or 0.14)) - 0.05,
Y - (Y * 0.1) - 0.1,
1, 1, item, item)
if CORE_VERSION >= 510 and data.query_item == item then
fs[#fs + 1] = fmt(FMT.image,
X - (X * (sfinv_only and 0.12 or 0.14)) - 0.05,
Y - (Y * 0.1) - 0.1,
1, 1, PNG.selected)
end
fs[#fs + 1] = fmt("item_image_button[%f,%f;%f,%f;%s;%s_inv;]",
X - (X * (sfinv_only and 0.12 or 0.14)) - 0.05,
Y - (Y * 0.1) - 0.1,
1, 1, item, item)
end
if (data.recipes and #data.recipes > 0) or (data.usages and #data.usages > 0) then
@ -1138,12 +1085,12 @@ local show_fs = function(player, name)
end
craftguide.register_craft_type("digging", {
description = ES"Digging",
description = ESC(S("Digging")),
icon = "default_tool_steelpick.png",
})
craftguide.register_craft_type("digging_chance", {
description = ES"Digging Chance",
description = ESC(S("Digging Chance")),
icon = "default_tool_mesepick.png",
})
@ -1308,21 +1255,6 @@ core.register_craft = function(def)
end
end
local old_clear_craft = core.clear_craft
core.clear_craft = function(def)
old_clear_craft(def)
if true_str(def) then
def = match(def, "%S*")
recipes_cache[def] = nil
fuel_cache[def] = nil
elseif is_table(def) then
return -- TODO
end
end
local function handle_drops_table(name, drop)
-- Code borrowed and modified from unified_inventory
-- https://github.com/minetest-mods/unified_inventory/blob/master/api.lua
@ -1376,20 +1308,20 @@ local function handle_drops_table(name, drop)
end
for item, count in pairs(drop_sure) do
craftguide.register_craft{
craftguide.register_craft({
type = "digging",
items = {name},
output = fmt("%s %u", item, count),
}
})
end
for item, data in pairs(drop_maybe) do
craftguide.register_craft{
craftguide.register_craft({
type = "digging_chance",
items = {name},
output = fmt("%s %u", item, data.output),
rarity = data.rarity,
}
})
end
end
@ -1398,11 +1330,11 @@ local function register_drops(name, def)
local dstack = ItemStack(drop)
if not dstack:is_empty() and dstack:get_name() ~= name then
craftguide.register_craft{
craftguide.register_craft({
type = "digging",
items = {name},
output = drop,
}
})
elseif is_table(drop) then
handle_drops_table(name, drop)
end
@ -1418,7 +1350,7 @@ local function handle_aliases(hash)
recipes_cache[newname] = {}
end
local similar
local is_similar
for i = 1, #recipes_cache[oldname] do
local rcp_old = recipes_cache[oldname][i]
@ -1429,12 +1361,12 @@ local function handle_aliases(hash)
rcp_new.method = nil
if table_eq(rcp_old, rcp_new) then
similar = true
is_similar = true
break
end
end
if not similar then
if not is_similar then
insert(recipes_cache[newname], rcp_old)
end
end
@ -1479,10 +1411,14 @@ local function get_init_items()
local percent, bar, len = (ic * 100) / it, "", 20
for i = 1, len do
bar = bar .. (i <= percent / (100 / len) and full_char or empty_char)
if i <= percent / (100 / len) then
bar = bar .. full_char
else
bar = bar .. empty_char
end
end
iop(fmt("[craftguide] Caching data %s %u%%\r", bar, percent))
iop(fmt("[craftguide] Caching data %s (%u%%)\r", bar, percent))
if show_item(def) then
if not fuel_cache[name] then
@ -1506,17 +1442,17 @@ local function get_init_items()
handle_aliases(hash)
sort(init_items)
if http and true_str(craftguide.export_url) then
if http and true_str(craftguide.http_post_data) then
local post_data = {
recipes = recipes_cache,
usages = usages_cache,
fuel = fuel_cache,
}
http.fetch_async{
url = craftguide.export_url,
http.fetch_async({
url = craftguide.http_post_data,
post_data = write_json(post_data),
}
})
end
print()
@ -1531,7 +1467,6 @@ local function init_data(name)
pagenum = 1,
items = items,
items_raw = items,
favs = {},
}
end
@ -1594,18 +1529,6 @@ local function fields(player, _f)
data.pagenum = data.pagemax
end
return true, show_fs(player, name)
elseif _f.fav then
local fav, i = is_fav(data)
local total = #data.favs
if total < 6 and not fav then
data.favs[total + 1] = data.query_item
elseif fav then
remove(data.favs, i)
end
return true, show_fs(player, name)
else
local item
@ -1622,8 +1545,6 @@ local function fields(player, _f)
item = sub(item, 1, -5)
end
item = reg_aliases[item] or item
if sfinv_only then
if item ~= data.query_item then
data.show_usages = nil
@ -1647,7 +1568,7 @@ end
if sfinv_only then
sfinv.register_page("craftguide:craftguide", {
title = S"Craft Guide",
title = S("Craft Guide"),
get = function(self, player, context)
local name = player:get_player_name()
@ -1690,7 +1611,7 @@ else
end
core.register_craftitem("craftguide:book", {
description = S"Crafting Guide",
description = S("Crafting Guide"),
inventory_image = PNG.book,
wield_image = PNG.book,
stack_max = 1,
@ -1701,7 +1622,7 @@ else
})
core.register_node("craftguide:sign", {
description = S"Crafting Guide Sign",
description = S("Crafting Guide Sign"),
drawtype = "nodebox",
tiles = {PNG.sign},
inventory_image = PNG.sign,
@ -1727,34 +1648,34 @@ else
end
})
core.register_craft{
core.register_craft({
output = "craftguide:book",
type = "shapeless",
recipe = {"default:book"}
}
})
core.register_craft{
core.register_craft({
type = "fuel",
recipe = "craftguide:book",
burntime = 3
}
})
core.register_craft{
core.register_craft({
output = "craftguide:sign",
type = "shapeless",
recipe = {"default:sign_wall_wood"}
}
})
core.register_craft{
core.register_craft({
type = "fuel",
recipe = "craftguide:sign",
burntime = 10
}
})
if rawget(_G, "sfinv_buttons") then
sfinv_buttons.register_button("craftguide", {
title = S"Crafting Guide",
tooltip = S"Shows a list of available crafting recipes, cooking recipes and fuels",
title = S("Crafting Guide"),
tooltip = S("Shows a list of available crafting recipes, cooking recipes and fuels"),
image = PNG.book,
action = function(player)
on_use(player)
@ -1965,29 +1886,29 @@ if progressive_mode then
end
data.hud = {
bg = player:hud_add{
bg = player:hud_add({
hud_elem_type = "image",
position = {x = 0.78, y = 1},
alignment = {x = 1, y = 1},
scale = {x = 370, y = 112},
text = PNG.bg,
},
}),
book = player:hud_add{
book = player:hud_add({
hud_elem_type = "image",
position = {x = 0.79, y = 1.02},
alignment = {x = 1, y = 1},
scale = {x = 4, y = 4},
text = PNG.book,
},
}),
text = player:hud_add{
text = player:hud_add({
hud_elem_type = "text",
position = {x = 0.84, y = 1.04},
alignment = {x = 1, y = 1},
number = 0xfff,
number = 0xFFFFFF,
text = "",
},
}),
}
end)
@ -2036,7 +1957,7 @@ end)
function craftguide.show(name, item, show_usages)
if not true_str(name)then
return err"craftguide.show(): player name missing"
return err("craftguide.show(): player name missing")
end
local data = pdata[name]
@ -2051,12 +1972,12 @@ function craftguide.show(name, item, show_usages)
if not recipes and not usages then
if not recipes_cache[item] and not usages_cache[item] then
return false, msg(name, fmt("%s: %s",
S"No recipe or usage for this item",
S("No recipe or usage for this item"),
get_desc(item)))
end
return false, msg(name, fmt("%s: %s",
S"You don't know a recipe or usage for this item",
S("You don't know a recipe or usage for this item"),
get_desc(item)))
end
@ -2072,7 +1993,7 @@ function craftguide.show(name, item, show_usages)
end
register_command("craft", {
description = S"Show recipe(s) of the pointed node",
description = S("Show recipe(s) of the pointed node"),
func = function(name)
local player = get_player_by_name(name)
local dir = player:get_look_dir()
@ -2092,7 +2013,7 @@ register_command("craft", {
end
if not node_name then
return false, msg(name, S"No node pointed")
return false, msg(name, S("No node pointed"))
end
return true, craftguide.show(name, node_name)

View File

@ -3,7 +3,7 @@ License of source code
The MIT License (MIT)
Copyright (c) 2015-2020 Jean-Patrick Guerrero and contributors.
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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 916 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.1 KiB