mirror of
https://github.com/minetest-mods/craftguide.git
synced 2025-06-29 14:40:49 +02:00
Compare commits
17 Commits
Author | SHA1 | Date | |
---|---|---|---|
189a3ff971 | |||
ca723202d6 | |||
a3e7031c04 | |||
5fc7e7c087 | |||
aa61333ee3 | |||
e2cdfc28b0 | |||
aa9f7d6da3 | |||
d87c64618c | |||
3455257df5 | |||
251a8b1bc9 | |||
4dd40e06f5 | |||
f9f9988868 | |||
dcb479dc44 | |||
82bb95387e | |||
8626584dbd | |||
f7ccd282be | |||
c9773f1ee9 |
282
init.lua
282
init.lua
@ -1,12 +1,5 @@
|
|||||||
craftguide = {}
|
craftguide = {}
|
||||||
|
|
||||||
local p = 0
|
|
||||||
local CORE_VERSION = core.get_version().string:match("[^%-]*"):gsub("%.", function(a)
|
|
||||||
p = p + 1
|
|
||||||
return p == 3 and a or ""
|
|
||||||
end)
|
|
||||||
CORE_VERSION = tonumber(CORE_VERSION)
|
|
||||||
|
|
||||||
-- Caches
|
-- Caches
|
||||||
local pdata = {}
|
local pdata = {}
|
||||||
local init_items = {}
|
local init_items = {}
|
||||||
@ -44,18 +37,11 @@ local get_player_by_name = core.get_player_by_name
|
|||||||
local slz, dslz = core.serialize, core.deserialize
|
local slz, dslz = core.serialize, core.deserialize
|
||||||
local on_mods_loaded = core.register_on_mods_loaded
|
local on_mods_loaded = core.register_on_mods_loaded
|
||||||
local on_leaveplayer = core.register_on_leaveplayer
|
local on_leaveplayer = core.register_on_leaveplayer
|
||||||
|
local get_player_info = core.get_player_information
|
||||||
local on_receive_fields = core.register_on_player_receive_fields
|
local on_receive_fields = core.register_on_player_receive_fields
|
||||||
|
|
||||||
local ESC = core.formspec_escape
|
local ESC = core.formspec_escape
|
||||||
local S = CORE_VERSION >= 500 and core.get_translator("craftguide") or
|
local S = core.get_translator("craftguide")
|
||||||
function(...)
|
|
||||||
local args, i = {...}, 1
|
|
||||||
|
|
||||||
return args[1]:gsub("@%d+", function()
|
|
||||||
i = i + 1
|
|
||||||
return args[i]
|
|
||||||
end)
|
|
||||||
end
|
|
||||||
|
|
||||||
local ES = function(...)
|
local ES = function(...)
|
||||||
return ESC(S(...))
|
return ESC(S(...))
|
||||||
@ -79,20 +65,22 @@ local IPP = ROWS * LINES
|
|||||||
local WH_LIMIT = 8
|
local WH_LIMIT = 8
|
||||||
|
|
||||||
local XOFFSET = sfinv_only and 3.83 or 11.2
|
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 = {
|
local PNG = {
|
||||||
bg = "craftguide_bg.png",
|
bg = "craftguide_bg.png",
|
||||||
bg_full = "craftguide_bg_full.png",
|
bg_full = "craftguide_bg_full.png",
|
||||||
search = "craftguide_search_icon.png",
|
search = "craftguide_search_icon.png",
|
||||||
clear = "craftguide_clear_icon.png",
|
clear = "craftguide_clear_icon.png",
|
||||||
prev = "craftguide_next_icon.png^\\[transformFX",
|
prev = "craftguide_next_icon.png^\\[transformFX",
|
||||||
next = "craftguide_next_icon.png",
|
next = "craftguide_next_icon.png",
|
||||||
arrow = "craftguide_arrow.png",
|
arrow = "craftguide_arrow.png",
|
||||||
fire = "craftguide_fire.png",
|
fire = "craftguide_fire.png",
|
||||||
book = "craftguide_book.png",
|
fire_anim = "craftguide_fire_anim.png",
|
||||||
sign = "craftguide_sign.png",
|
book = "craftguide_book.png",
|
||||||
selected = "craftguide_selected.png",
|
sign = "craftguide_sign.png",
|
||||||
|
selected = "craftguide_selected.png",
|
||||||
|
furnace_anim = "craftguide_furnace_anim.png",
|
||||||
|
|
||||||
search_hover = "craftguide_search_icon_hover.png",
|
search_hover = "craftguide_search_icon_hover.png",
|
||||||
clear_hover = "craftguide_clear_icon_hover.png",
|
clear_hover = "craftguide_clear_icon_hover.png",
|
||||||
@ -108,6 +96,7 @@ local FMT = {
|
|||||||
tooltip = "tooltip[%f,%f;%f,%f;%s]",
|
tooltip = "tooltip[%f,%f;%f,%f;%s]",
|
||||||
item_image = "item_image[%f,%f;%f,%f;%s]",
|
item_image = "item_image[%f,%f;%f,%f;%s]",
|
||||||
image_button = "image_button[%f,%f;%f,%f;%s;%s;%s]",
|
image_button = "image_button[%f,%f;%f,%f;%s;%s;%s]",
|
||||||
|
animated_image = "animated_image[%f,%f;%f,%f;%s:%u,%u]",
|
||||||
item_image_button = "item_image_button[%f,%f;%f,%f;%s;%s;%s]",
|
item_image_button = "item_image_button[%f,%f;%f,%f;%s;%s;%s]",
|
||||||
arrow = "image_button[%f,%f;0.8,0.8;%s;%s;;;false;%s]",
|
arrow = "image_button[%f,%f;0.8,0.8;%s;%s;;;false;%s]",
|
||||||
}
|
}
|
||||||
@ -590,10 +579,15 @@ local function get_recipes(item, data, player)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local no_recipes = not recipes or #recipes == 0
|
local no_recipes = not recipes or #recipes == 0
|
||||||
|
|
||||||
if no_recipes and not usages then
|
if no_recipes and not usages then
|
||||||
return
|
return
|
||||||
elseif sfinv_only and usages and no_recipes then
|
elseif sfinv_only then
|
||||||
data.show_usages = true
|
if usages and no_recipes then
|
||||||
|
data.show_usages = true
|
||||||
|
elseif recipes and not usages then
|
||||||
|
data.show_usages = nil
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if not sfinv_only or (sfinv_only and data.show_usages) then
|
if not sfinv_only or (sfinv_only and data.show_usages) then
|
||||||
@ -653,6 +647,10 @@ local function is_fav(data)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local function get_desc(name)
|
local function get_desc(name)
|
||||||
|
if sub(name, 1, 1) == "_" then
|
||||||
|
name = sub(name, 2)
|
||||||
|
end
|
||||||
|
|
||||||
local def = reg_items[name]
|
local def = reg_items[name]
|
||||||
|
|
||||||
return def and (match(def.description, "%)([%w%s]*)") or def.description) or
|
return def and (match(def.description, "%)([%w%s]*)") or def.description) or
|
||||||
@ -713,7 +711,7 @@ local function get_tooltip(name, info)
|
|||||||
return fmt("tooltip[%s;%s]", name, ESC(tooltip))
|
return fmt("tooltip[%s;%s]", name, ESC(tooltip))
|
||||||
end
|
end
|
||||||
|
|
||||||
local function get_output_fs(fs, L)
|
local function get_output_fs(data, fs, L)
|
||||||
local custom_recipe = craft_types[L.recipe.type]
|
local custom_recipe = craft_types[L.recipe.type]
|
||||||
|
|
||||||
if custom_recipe or L.shapeless or L.recipe.type == "cooking" then
|
if custom_recipe or L.shapeless or L.recipe.type == "cooking" then
|
||||||
@ -727,14 +725,17 @@ local function get_output_fs(fs, L)
|
|||||||
local pos_x = L.rightest + L.btn_size + 0.1
|
local pos_x = L.rightest + L.btn_size + 0.1
|
||||||
local pos_y = YOFFSET + (sfinv_only and 0.25 or -0.45)
|
local pos_y = YOFFSET + (sfinv_only and 0.25 or -0.45)
|
||||||
|
|
||||||
fs[#fs + 1] = fmt(FMT.image, pos_x, pos_y + L.spacing, 0.5, 0.5, icon)
|
if data.fs_version >= 3 and sub(icon, 1, 18) == "craftguide_furnace" then
|
||||||
|
fs[#fs + 1] = fmt(FMT.animated_image,
|
||||||
|
pos_x, pos_y + L.spacing, 0.5, 0.5, PNG.furnace_anim, 8, 180)
|
||||||
|
else
|
||||||
|
fs[#fs + 1] = fmt(FMT.image, pos_x, pos_y + L.spacing, 0.5, 0.5, icon)
|
||||||
|
end
|
||||||
|
|
||||||
local tooltip = custom_recipe and custom_recipe.description or
|
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))
|
||||||
fs[#fs + 1] = fmt(FMT.tooltip, pos_x, pos_y + L.spacing, 0.5, 0.5, ESC(tooltip))
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
local arrow_X = L.rightest + (L._btn_size or 1.1)
|
local arrow_X = L.rightest + (L._btn_size or 1.1)
|
||||||
@ -745,23 +746,31 @@ local function get_output_fs(fs, L)
|
|||||||
0.9, 0.7, PNG.arrow)
|
0.9, 0.7, PNG.arrow)
|
||||||
|
|
||||||
if L.recipe.type == "fuel" then
|
if L.recipe.type == "fuel" then
|
||||||
fs[#fs + 1] = fmt(FMT.image,
|
if data.fs_version >= 3 then
|
||||||
output_X, YOFFSET + (sfinv_only and 0.7 or 0) + L.spacing,
|
fs[#fs + 1] = fmt(FMT.animated_image,
|
||||||
1.1, 1.1, PNG.fire)
|
output_X, YOFFSET + (sfinv_only and 0.7 or 0) + L.spacing,
|
||||||
|
1.1, 1.1, PNG.fire_anim, 8, 180)
|
||||||
|
else
|
||||||
|
fs[#fs + 1] = fmt(FMT.image,
|
||||||
|
output_X, YOFFSET + (sfinv_only and 0.7 or 0) + L.spacing,
|
||||||
|
1.1, 1.1, PNG.fire)
|
||||||
|
end
|
||||||
else
|
else
|
||||||
local item = L.recipe.output
|
local item = L.recipe.output
|
||||||
item = clean_name(item)
|
item = clean_name(item)
|
||||||
local name = match(item, "%S*")
|
local name = match(item, "%S*")
|
||||||
|
|
||||||
if CORE_VERSION >= 510 then
|
if data.fs_version >= 3 then
|
||||||
fs[#fs + 1] = fmt(FMT.image,
|
fs[#fs + 1] = fmt(FMT.image,
|
||||||
output_X, YOFFSET + (sfinv_only and 0.7 or 0) + L.spacing,
|
output_X, YOFFSET + (sfinv_only and 0.7 or 0) + L.spacing,
|
||||||
1.1, 1.1, PNG.selected)
|
1.1, 1.1, PNG.selected)
|
||||||
end
|
end
|
||||||
|
|
||||||
fs[#fs + 1] = fmt(FMT.item_image_button,
|
local _name = sfinv_only and name or fmt("_%s", name)
|
||||||
|
|
||||||
|
fs[#fs + 1] = fmt("item_image_button[%f,%f;%f,%f;%s;%s;%s]",
|
||||||
output_X, YOFFSET + (sfinv_only and 0.7 or 0) + L.spacing,
|
output_X, YOFFSET + (sfinv_only and 0.7 or 0) + L.spacing,
|
||||||
1.1, 1.1, item, name, "")
|
1.1, 1.1, item, _name, "")
|
||||||
|
|
||||||
local infos = {
|
local infos = {
|
||||||
unknown = not reg_items[name] or nil,
|
unknown = not reg_items[name] or nil,
|
||||||
@ -771,7 +780,7 @@ local function get_output_fs(fs, L)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if next(infos) then
|
if next(infos) then
|
||||||
fs[#fs + 1] = get_tooltip(name, infos)
|
fs[#fs + 1] = get_tooltip(_name, infos)
|
||||||
end
|
end
|
||||||
|
|
||||||
if infos.burntime then
|
if infos.burntime then
|
||||||
@ -779,14 +788,20 @@ local function get_output_fs(fs, L)
|
|||||||
output_X + 1, YOFFSET + (sfinv_only and 0.7 or 0.1) + L.spacing,
|
output_X + 1, YOFFSET + (sfinv_only and 0.7 or 0.1) + L.spacing,
|
||||||
0.6, 0.4, PNG.arrow)
|
0.6, 0.4, PNG.arrow)
|
||||||
|
|
||||||
fs[#fs + 1] = fmt(FMT.image,
|
if data.fs_version >= 3 then
|
||||||
output_X + 1.6, YOFFSET + (sfinv_only and 0.55 or 0) + L.spacing,
|
fs[#fs + 1] = fmt(FMT.animated_image,
|
||||||
0.6, 0.6, PNG.fire)
|
output_X + 1.6, YOFFSET + (sfinv_only and 0.55 or 0) + L.spacing,
|
||||||
|
0.6, 0.6, PNG.fire_anim, 8, 180)
|
||||||
|
else
|
||||||
|
fs[#fs + 1] = fmt(FMT.image,
|
||||||
|
output_X + 1.6, YOFFSET + (sfinv_only and 0.55 or 0) + L.spacing,
|
||||||
|
0.6, 0.6, PNG.fire)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local function get_grid_fs(fs, rcp, spacing)
|
local function get_grid_fs(data, fs, rcp, spacing)
|
||||||
local width = rcp.width or 1
|
local width = rcp.width or 1
|
||||||
local replacements = rcp.replacements
|
local replacements = rcp.replacements
|
||||||
local rarity = rcp.rarity
|
local rarity = rcp.rarity
|
||||||
@ -865,7 +880,7 @@ local function get_grid_fs(fs, rcp, spacing)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if CORE_VERSION >= 510 and not large_recipe then
|
if data.fs_version >= 3 and not large_recipe then
|
||||||
fs[#fs + 1] = fmt(FMT.image,
|
fs[#fs + 1] = fmt(FMT.image,
|
||||||
X, Y + (sfinv_only and 0.7 or 0), btn_size, btn_size, PNG.selected)
|
X, Y + (sfinv_only and 0.7 or 0), btn_size, btn_size, PNG.selected)
|
||||||
end
|
end
|
||||||
@ -891,7 +906,7 @@ local function get_grid_fs(fs, rcp, spacing)
|
|||||||
fs[#fs + 1] = "style_type[item_image_button;border=false]"
|
fs[#fs + 1] = "style_type[item_image_button;border=false]"
|
||||||
end
|
end
|
||||||
|
|
||||||
get_output_fs(fs, {
|
get_output_fs(data, fs, {
|
||||||
recipe = rcp,
|
recipe = rcp,
|
||||||
shapeless = shapeless,
|
shapeless = shapeless,
|
||||||
rightest = rightest,
|
rightest = rightest,
|
||||||
@ -903,14 +918,16 @@ local function get_grid_fs(fs, rcp, spacing)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local function get_panels(data, fs)
|
local function get_panels(data, fs)
|
||||||
local start_y = CORE_VERSION >= 520 and 0 or 0.33
|
local start_y = data.fs_version >= 3 and (sfinv_only and 0.33 or 0) or 0.33
|
||||||
|
|
||||||
local panels = {
|
local panels = {
|
||||||
{dat = data.usages or {}, height = 3.5},
|
{dat = data.usages or {}, height = 3.5},
|
||||||
{dat = data.recipes or {}, height = 3.5},
|
{dat = data.recipes or {}, height = 3.5},
|
||||||
}
|
}
|
||||||
|
|
||||||
if CORE_VERSION >= 520 and not sfinv_only then
|
if data.fs_version >= 3 and not sfinv_only then
|
||||||
panels.favs = {dat = {}, height = 2.19}
|
panels.favs = {dat = {}, height = 2.19}
|
||||||
|
|
||||||
elseif sfinv_only then
|
elseif sfinv_only then
|
||||||
panels = data.show_usages and
|
panels = data.show_usages and
|
||||||
{{dat = data.usages}} or {{dat = data.recipes}}
|
{{dat = data.usages}} or {{dat = data.recipes}}
|
||||||
@ -921,13 +938,10 @@ local function get_panels(data, fs)
|
|||||||
local spacing = (start_y - 1) * 3.6
|
local spacing = (start_y - 1) * 3.6
|
||||||
|
|
||||||
if not sfinv_only then
|
if not sfinv_only then
|
||||||
fs[#fs + 1] = CORE_VERSION >= 510 and
|
fs[#fs + 1] = fmt("background9[8.1,%f;6.6,%f;%s;false;%d]",
|
||||||
fmt("background9[8.1,%f;6.6,%f;%s;false;%d]",
|
-0.2 + spacing, v.height, PNG.bg_full, 10)
|
||||||
-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
|
if data.fs_version >= 3 and k == 2 then
|
||||||
local fav = is_fav(data)
|
local fav = is_fav(data)
|
||||||
local nfavs = #data.favs
|
local nfavs = #data.favs
|
||||||
|
|
||||||
@ -954,7 +968,7 @@ local function get_panels(data, fs)
|
|||||||
xu = max(-0.3, -((#xu - 3) * 0.05))
|
xu = max(-0.3, -((#xu - 3) * 0.05))
|
||||||
xr = max(-0.3, -((#xr - 3) * 0.05))
|
xr = max(-0.3, -((#xr - 3) * 0.05))
|
||||||
|
|
||||||
local is_recipe = k == 2
|
local is_recipe = sfinv_only and not data.show_usages or k == 2
|
||||||
local lbl
|
local lbl
|
||||||
|
|
||||||
if not sfinv_only and rn == 0 then
|
if not sfinv_only and rn == 0 then
|
||||||
@ -975,16 +989,16 @@ local function get_panels(data, fs)
|
|||||||
|
|
||||||
fs[#fs + 1] = fmt(FMT.label,
|
fs[#fs + 1] = fmt(FMT.label,
|
||||||
XOFFSET + (sfinv_only and 2.3 or 1.6) + (is_recipe and xr or xu),
|
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)
|
YOFFSET + (sfinv_only and 3.4 or 1.5 + spacing), lbl)
|
||||||
|
|
||||||
if rn > 1 then
|
if rn > 1 then
|
||||||
local btn_suffix = is_recipe and "recipe" or "usage"
|
local btn_suffix = is_recipe and "recipe" or "usage"
|
||||||
local prev_name = fmt("prev_%s", btn_suffix)
|
local prev_name = fmt("prev_%s", btn_suffix)
|
||||||
local next_name = fmt("next_%s", btn_suffix)
|
local next_name = fmt("next_%s", btn_suffix)
|
||||||
local x_arrow = XOFFSET + (sfinv_only and 1.7 or 1)
|
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.3 or 1.4 + spacing)
|
||||||
|
|
||||||
if CORE_VERSION >= 520 then
|
if data.fs_version >= 3 then
|
||||||
fs[#fs + 1] = fmt(mul_elem(FMT.arrow, 2),
|
fs[#fs + 1] = fmt(mul_elem(FMT.arrow, 2),
|
||||||
x_arrow + (is_recipe and xr or xu), y_arrow,
|
x_arrow + (is_recipe and xr or xu), y_arrow,
|
||||||
PNG.prev, prev_name, "",
|
PNG.prev, prev_name, "",
|
||||||
@ -999,10 +1013,10 @@ local function get_panels(data, fs)
|
|||||||
|
|
||||||
local rcp = is_recipe and v.dat[data.rnum] or v.dat[data.unum]
|
local rcp = is_recipe and v.dat[data.rnum] or v.dat[data.unum]
|
||||||
if rcp then
|
if rcp then
|
||||||
get_grid_fs(fs, rcp, spacing)
|
get_grid_fs(data, fs, rcp, spacing)
|
||||||
end
|
end
|
||||||
|
|
||||||
if k == "favs" and CORE_VERSION >= 520 and not sfinv_only then
|
if k == "favs" and data.fs_version >= 3 and not sfinv_only then
|
||||||
fs[#fs + 1] = fmt(FMT.label, 8.3, spacing - 0.1, ES"Bookmarks")
|
fs[#fs + 1] = fmt(FMT.label, 8.3, spacing - 0.1, ES"Bookmarks")
|
||||||
|
|
||||||
for i = 1, #data.favs do
|
for i = 1, #data.favs do
|
||||||
@ -1022,8 +1036,7 @@ local function get_panels(data, fs)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local function make_formspec(name)
|
local function make_fs(data)
|
||||||
local data = pdata[name]
|
|
||||||
local fs = {}
|
local fs = {}
|
||||||
|
|
||||||
fs[#fs + 1] = fmt([[
|
fs[#fs + 1] = fmt([[
|
||||||
@ -1034,20 +1047,19 @@ local function make_formspec(name)
|
|||||||
ROWS + (data.query_item and 6.7 or 0) - 1.2, LINES - 0.3)
|
ROWS + (data.query_item and 6.7 or 0) - 1.2, LINES - 0.3)
|
||||||
|
|
||||||
if not sfinv_only then
|
if not sfinv_only then
|
||||||
fs[#fs + 1] = CORE_VERSION >= 510 and
|
fs[#fs + 1] = fmt("background9[-0.15,-0.2;%f,%f;%s;false;%d]",
|
||||||
fmt("background9[-0.15,-0.2;%f,%f;%s;false;%d]",
|
ROWS - 0.9, LINES + 0.4, PNG.bg_full, 10)
|
||||||
ROWS - 0.9, LINES + 0.4, PNG.bg_full, 10) or
|
|
||||||
fmt("background[-0.15,-0.2;%f,%f;%s;false]",
|
|
||||||
ROWS - 0.9, LINES + 0.4, PNG.bg_full)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
fs[#fs + 1] = fmt([[
|
fs[#fs + 1] = fmt([[
|
||||||
field[0.25,0.2;%f,1;filter;;%s]
|
style[filter;border=false]
|
||||||
|
field[0.4,0.2;2.5,1;filter;;%s]
|
||||||
field_close_on_enter[filter;false]
|
field_close_on_enter[filter;false]
|
||||||
|
box[0,0;2.4,0.6;#ffffff25]
|
||||||
]],
|
]],
|
||||||
sfinv_only and 2.76 or 2.72, ESC(data.filter))
|
ESC(data.filter))
|
||||||
|
|
||||||
if CORE_VERSION >= 520 then
|
if data.fs_version >= 3 then
|
||||||
fs[#fs + 1] = fmt([[
|
fs[#fs + 1] = fmt([[
|
||||||
style_type[image_button;border=false]
|
style_type[image_button;border=false]
|
||||||
style_type[item_image_button;border=false;bgimg_hovered=%s;bgimg_pressed=%s]
|
style_type[item_image_button;border=false;bgimg_hovered=%s;bgimg_pressed=%s]
|
||||||
@ -1077,9 +1089,9 @@ local function make_formspec(name)
|
|||||||
|
|
||||||
fs[#fs + 1] = fmt(mul_elem(FMT.arrow, 2),
|
fs[#fs + 1] = fmt(mul_elem(FMT.arrow, 2),
|
||||||
sfinv_only and 5.45 or (ROWS * 6.83) / 11, -0.05,
|
sfinv_only and 5.45 or (ROWS * 6.83) / 11, -0.05,
|
||||||
PNG.prev, "prev_page", PNG.prev,
|
PNG.prev, "prev_page", PNG.prev_hover,
|
||||||
sfinv_only and 7.2 or (ROWS * 8.75) / 11, -0.05,
|
sfinv_only and 7.2 or (ROWS * 8.75) / 11, -0.05,
|
||||||
PNG.next, "next_page", PNG.next)
|
PNG.next, "next_page", PNG.next_hover)
|
||||||
end
|
end
|
||||||
|
|
||||||
data.pagemax = max(1, ceil(#data.items / IPP))
|
data.pagemax = max(1, ceil(#data.items / IPP))
|
||||||
@ -1109,7 +1121,7 @@ local function make_formspec(name)
|
|||||||
local X = i % ROWS
|
local X = i % ROWS
|
||||||
local Y = (i % IPP - X) / ROWS + 1
|
local Y = (i % IPP - X) / ROWS + 1
|
||||||
|
|
||||||
if CORE_VERSION >= 510 and data.query_item == item then
|
if data.fs_version >= 3 and data.query_item == item then
|
||||||
fs[#fs + 1] = fmt(FMT.image,
|
fs[#fs + 1] = fmt(FMT.image,
|
||||||
X - (X * (sfinv_only and 0.12 or 0.14)) - 0.05,
|
X - (X * (sfinv_only and 0.12 or 0.14)) - 0.05,
|
||||||
Y - (Y * 0.1) - 0.1,
|
Y - (Y * 0.1) - 0.1,
|
||||||
@ -1130,10 +1142,11 @@ local function make_formspec(name)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local show_fs = function(player, name)
|
local show_fs = function(player, name)
|
||||||
|
local data = pdata[name]
|
||||||
if sfinv_only then
|
if sfinv_only then
|
||||||
sfinv.set_player_inventory_formspec(player)
|
sfinv.set_player_inventory_formspec(player)
|
||||||
else
|
else
|
||||||
show_formspec(name, "craftguide", make_formspec(name))
|
show_formspec(name, "craftguide", make_fs(data))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -1147,16 +1160,6 @@ craftguide.register_craft_type("digging_chance", {
|
|||||||
icon = "default_tool_mesepick.png",
|
icon = "default_tool_mesepick.png",
|
||||||
})
|
})
|
||||||
|
|
||||||
local function sfind(str, filter)
|
|
||||||
if filter == "" then
|
|
||||||
return 0
|
|
||||||
end
|
|
||||||
|
|
||||||
if find(str, filter, 1, true) then
|
|
||||||
return #str - #filter
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
local function search(data)
|
local function search(data)
|
||||||
local filter = data.filter
|
local filter = data.filter
|
||||||
|
|
||||||
@ -1178,28 +1181,30 @@ local function search(data)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local filtered_list, order, c = {}, {}, 0
|
local filtered_list, c = {}, 0
|
||||||
|
|
||||||
for i = 1, #data.items_raw do
|
for i = 1, #data.items_raw do
|
||||||
local item = data.items_raw[i]
|
local item = data.items_raw[i]
|
||||||
local def = reg_items[item]
|
local def = reg_items[item]
|
||||||
local desc = (def and def.description) and lower(def.description) or ""
|
local desc = (def and def.description) and lower(def.description) or ""
|
||||||
|
local search_in = fmt("%s %s", item, desc)
|
||||||
local to_add
|
local to_add
|
||||||
|
|
||||||
if search_filter then
|
if search_filter then
|
||||||
for filter_name, values in pairs(filters) do
|
for filter_name, values in pairs(filters) do
|
||||||
local func = search_filters[filter_name]
|
if values then
|
||||||
to_add = func(item, values) and (search_filter == "" or
|
local func = search_filters[filter_name]
|
||||||
(sfind(item, search_filter) or sfind(desc, search_filter)))
|
to_add = func(item, values) and (search_filter == "" or
|
||||||
|
find(search_in, search_filter, 1, true))
|
||||||
|
end
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
to_add = sfind(item, filter) or sfind(desc, filter)
|
to_add = find(search_in, filter, 1, true)
|
||||||
end
|
end
|
||||||
|
|
||||||
if to_add then
|
if to_add then
|
||||||
c = c + 1
|
c = c + 1
|
||||||
filtered_list[c] = item
|
filtered_list[c] = item
|
||||||
order[item] = to_add
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -1212,10 +1217,6 @@ local function search(data)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
sort(filtered_list, function(a, b)
|
|
||||||
return order[a] < order[b]
|
|
||||||
end)
|
|
||||||
|
|
||||||
data.items = filtered_list
|
data.items = filtered_list
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -1523,15 +1524,13 @@ local function get_init_items()
|
|||||||
end
|
end
|
||||||
|
|
||||||
local function init_data(name)
|
local function init_data(name)
|
||||||
local items = CORE_VERSION >= 500 and init_items or
|
|
||||||
(#init_items == 0 and get_init_items() or init_items)
|
|
||||||
|
|
||||||
pdata[name] = {
|
pdata[name] = {
|
||||||
filter = "",
|
filter = "",
|
||||||
pagenum = 1,
|
pagenum = 1,
|
||||||
items = items,
|
items = init_items,
|
||||||
items_raw = items,
|
items_raw = init_items,
|
||||||
favs = {},
|
favs = {},
|
||||||
|
fs_version = get_player_info(name).formspec_version,
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -1547,9 +1546,7 @@ local function reset_data(data)
|
|||||||
data.items = data.items_raw
|
data.items = data.items_raw
|
||||||
end
|
end
|
||||||
|
|
||||||
if CORE_VERSION >= 500 then
|
on_mods_loaded(get_init_items)
|
||||||
on_mods_loaded(get_init_items)
|
|
||||||
end
|
|
||||||
|
|
||||||
on_joinplayer(function(player)
|
on_joinplayer(function(player)
|
||||||
local name = player:get_player_name()
|
local name = player:get_player_name()
|
||||||
@ -1559,22 +1556,25 @@ end)
|
|||||||
local function fields(player, _f)
|
local function fields(player, _f)
|
||||||
local name = player:get_player_name()
|
local name = player:get_player_name()
|
||||||
local data = pdata[name]
|
local data = pdata[name]
|
||||||
|
--print(dump(_f))
|
||||||
|
|
||||||
if _f.clear then
|
if _f.clear then
|
||||||
reset_data(data)
|
reset_data(data)
|
||||||
return true, show_fs(player, name)
|
|
||||||
|
|
||||||
elseif _f.prev_recipe or _f.next_recipe then
|
elseif _f.prev_recipe or _f.next_recipe then
|
||||||
local num = data.rnum + (_f.prev_recipe and -1 or 1)
|
local num = data.rnum + (_f.prev_recipe and -1 or 1)
|
||||||
data.rnum = data.recipes[num] and num or (_f.prev_recipe and #data.recipes or 1)
|
data.rnum = data.recipes[num] and num or (_f.prev_recipe and #data.recipes or 1)
|
||||||
return true, show_fs(player, name)
|
|
||||||
|
|
||||||
elseif _f.prev_usage or _f.next_usage then
|
elseif _f.prev_usage or _f.next_usage then
|
||||||
local num = data.unum + (_f.prev_usage and -1 or 1)
|
local num = data.unum + (_f.prev_usage and -1 or 1)
|
||||||
data.unum = data.usages[num] and num or (_f.prev_usage and #data.usages or 1)
|
data.unum = data.usages[num] and num or (_f.prev_usage and #data.usages or 1)
|
||||||
return true, show_fs(player, name)
|
|
||||||
|
|
||||||
elseif (_f.key_enter_field == "filter" or _f.search) and _f.filter ~= "" then
|
elseif _f.key_enter_field == "filter" or _f.search then
|
||||||
|
if _f.filter == "" then
|
||||||
|
reset_data(data)
|
||||||
|
return true, show_fs(player, name)
|
||||||
|
end
|
||||||
|
|
||||||
local str = lower(_f.filter)
|
local str = lower(_f.filter)
|
||||||
if data.filter == str then return end
|
if data.filter == str then return end
|
||||||
|
|
||||||
@ -1582,8 +1582,6 @@ local function fields(player, _f)
|
|||||||
data.pagenum = 1
|
data.pagenum = 1
|
||||||
search(data)
|
search(data)
|
||||||
|
|
||||||
return true, show_fs(player, name)
|
|
||||||
|
|
||||||
elseif _f.prev_page or _f.next_page then
|
elseif _f.prev_page or _f.next_page then
|
||||||
if data.pagemax == 1 then return end
|
if data.pagemax == 1 then return end
|
||||||
data.pagenum = data.pagenum - (_f.prev_page and 1 or -1)
|
data.pagenum = data.pagenum - (_f.prev_page and 1 or -1)
|
||||||
@ -1594,8 +1592,6 @@ local function fields(player, _f)
|
|||||||
data.pagenum = data.pagemax
|
data.pagenum = data.pagemax
|
||||||
end
|
end
|
||||||
|
|
||||||
return true, show_fs(player, name)
|
|
||||||
|
|
||||||
elseif _f.fav then
|
elseif _f.fav then
|
||||||
local fav, i = is_fav(data)
|
local fav, i = is_fav(data)
|
||||||
local total = #data.favs
|
local total = #data.favs
|
||||||
@ -1605,8 +1601,6 @@ local function fields(player, _f)
|
|||||||
elseif fav then
|
elseif fav then
|
||||||
remove(data.favs, i)
|
remove(data.favs, i)
|
||||||
end
|
end
|
||||||
|
|
||||||
return true, show_fs(player, name)
|
|
||||||
else
|
else
|
||||||
local item
|
local item
|
||||||
for field in pairs(_f) do
|
for field in pairs(_f) do
|
||||||
@ -1620,6 +1614,8 @@ local function fields(player, _f)
|
|||||||
return
|
return
|
||||||
elseif sub(item, -4) == "_inv" then
|
elseif sub(item, -4) == "_inv" then
|
||||||
item = sub(item, 1, -5)
|
item = sub(item, 1, -5)
|
||||||
|
elseif sub(item, 1, 1) == "_" then
|
||||||
|
item = sub(item, 2)
|
||||||
end
|
end
|
||||||
|
|
||||||
item = reg_aliases[item] or item
|
item = reg_aliases[item] or item
|
||||||
@ -1630,28 +1626,37 @@ local function fields(player, _f)
|
|||||||
else
|
else
|
||||||
data.show_usages = not data.show_usages
|
data.show_usages = not data.show_usages
|
||||||
end
|
end
|
||||||
|
elseif item == data.query_item then
|
||||||
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local recipes, usages = get_recipes(item, data, player)
|
local recipes, usages = get_recipes(item, data, player)
|
||||||
if not recipes and not usages then return end
|
if not recipes and not usages then return end
|
||||||
|
if data.show_usages and not usages then return end
|
||||||
|
|
||||||
data.query_item = item
|
data.query_item = item
|
||||||
data.recipes = recipes
|
data.recipes = recipes
|
||||||
data.usages = usages
|
data.usages = usages
|
||||||
data.rnum = 1
|
data.rnum = 1
|
||||||
data.unum = 1
|
data.unum = 1
|
||||||
|
|
||||||
return true, show_fs(player, name)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
return true, show_fs(player, name)
|
||||||
end
|
end
|
||||||
|
|
||||||
if sfinv_only then
|
if sfinv_only then
|
||||||
sfinv.register_page("craftguide:craftguide", {
|
sfinv.register_page("craftguide:craftguide", {
|
||||||
title = S"Craft Guide",
|
title = S"Craft Guide",
|
||||||
|
|
||||||
|
is_in_nav = function(self, player, context)
|
||||||
|
local name = player:get_player_name()
|
||||||
|
return get_player_info(name).formspec_version >= 2
|
||||||
|
end,
|
||||||
|
|
||||||
get = function(self, player, context)
|
get = function(self, player, context)
|
||||||
local name = player:get_player_name()
|
local name = player:get_player_name()
|
||||||
local formspec = make_formspec(name)
|
local data = pdata[name]
|
||||||
|
local formspec = make_fs(data)
|
||||||
|
|
||||||
return sfinv.make_formspec(player, context, formspec)
|
return sfinv.make_formspec(player, context, formspec)
|
||||||
end,
|
end,
|
||||||
@ -1679,14 +1684,19 @@ else
|
|||||||
|
|
||||||
local function on_use(user)
|
local function on_use(user)
|
||||||
local name = user:get_player_name()
|
local name = user:get_player_name()
|
||||||
|
local data = pdata[name]
|
||||||
|
|
||||||
|
if data.fs_version == 1 then
|
||||||
|
return msg(name, "Your Minetest client is outdated. " ..
|
||||||
|
"Get the latest version on minetest.net to use the Crafting Guide.")
|
||||||
|
end
|
||||||
|
|
||||||
if next(recipe_filters) then
|
if next(recipe_filters) then
|
||||||
local data = pdata[name]
|
|
||||||
data.items_raw = get_filtered_items(user)
|
data.items_raw = get_filtered_items(user)
|
||||||
search(data)
|
search(data)
|
||||||
end
|
end
|
||||||
|
|
||||||
show_formspec(name, "craftguide", make_formspec(name))
|
show_formspec(name, "craftguide", make_fs(data))
|
||||||
end
|
end
|
||||||
|
|
||||||
core.register_craftitem("craftguide:book", {
|
core.register_craftitem("craftguide:book", {
|
||||||
@ -1955,14 +1965,9 @@ if progressive_mode then
|
|||||||
local name = player:get_player_name()
|
local name = player:get_player_name()
|
||||||
local data = pdata[name]
|
local data = pdata[name]
|
||||||
|
|
||||||
if CORE_VERSION >= 500 then
|
local meta = player:get_meta()
|
||||||
local meta = player:get_meta()
|
data.inv_items = dslz(meta:get_string("inv_items")) or {}
|
||||||
data.inv_items = dslz(meta:get_string("inv_items")) or {}
|
data.known_recipes = dslz(meta:get_string("known_recipes")) or 0
|
||||||
data.known_recipes = dslz(meta:get_string("known_recipes")) or 0
|
|
||||||
else
|
|
||||||
data.inv_items = dslz(player:get_attribute("inv_items")) or {}
|
|
||||||
data.known_recipes = dslz(player:get_attribute("known_recipes")) or 0
|
|
||||||
end
|
|
||||||
|
|
||||||
data.hud = {
|
data.hud = {
|
||||||
bg = player:hud_add{
|
bg = player:hud_add{
|
||||||
@ -1985,7 +1990,7 @@ if progressive_mode then
|
|||||||
hud_elem_type = "text",
|
hud_elem_type = "text",
|
||||||
position = {x = 0.84, y = 1.04},
|
position = {x = 0.84, y = 1.04},
|
||||||
alignment = {x = 1, y = 1},
|
alignment = {x = 1, y = 1},
|
||||||
number = 0xfff,
|
number = 0xffffff,
|
||||||
text = "",
|
text = "",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
@ -1997,22 +2002,13 @@ if progressive_mode then
|
|||||||
}
|
}
|
||||||
|
|
||||||
local function save_meta(player)
|
local function save_meta(player)
|
||||||
local meta
|
local meta = player:get_meta()
|
||||||
local name = player:get_player_name()
|
local name = player:get_player_name()
|
||||||
local data = pdata[name]
|
local data = pdata[name]
|
||||||
|
|
||||||
if CORE_VERSION >= 500 then
|
|
||||||
meta = player:get_meta()
|
|
||||||
end
|
|
||||||
|
|
||||||
for i = 1, #to_save do
|
for i = 1, #to_save do
|
||||||
local meta_name = to_save[i]
|
local meta_name = to_save[i]
|
||||||
|
meta:set_string(meta_name, slz(data[meta_name]))
|
||||||
if CORE_VERSION >= 500 then
|
|
||||||
meta:set_string(meta_name, slz(data[meta_name]))
|
|
||||||
else
|
|
||||||
player:set_attribute(meta_name, slz(data[meta_name]))
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 916 B After Width: | Height: | Size: 1.6 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 3.4 KiB |
BIN
textures/craftguide_fire_anim.png
Normal file
BIN
textures/craftguide_fire_anim.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.5 KiB |
BIN
textures/craftguide_furnace_anim.png
Normal file
BIN
textures/craftguide_furnace_anim.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.5 KiB |
Reference in New Issue
Block a user