mirror of
https://github.com/minetest-mods/craftguide.git
synced 2024-11-26 04:23:44 +01:00
Implement visual feedbacks on nav buttons
This commit is contained in:
parent
edbed14d9b
commit
35b2ecfdc1
63
init.lua
63
init.lua
@ -89,6 +89,11 @@ local PNG = {
|
|||||||
book = "craftguide_book.png",
|
book = "craftguide_book.png",
|
||||||
sign = "craftguide_sign.png",
|
sign = "craftguide_sign.png",
|
||||||
selected = "craftguide_selected.png",
|
selected = "craftguide_selected.png",
|
||||||
|
|
||||||
|
search_hover = "craftguide_search_icon_hover.png",
|
||||||
|
clear_hover = "craftguide_clear_icon_hover.png",
|
||||||
|
prev_hover = "craftguide_next_icon_hover.png^\\[transformFX",
|
||||||
|
next_hover = "craftguide_next_icon_hover.png",
|
||||||
}
|
}
|
||||||
|
|
||||||
local FMT = {
|
local FMT = {
|
||||||
@ -100,7 +105,7 @@ local FMT = {
|
|||||||
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]",
|
||||||
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^\\[colorize:yellow:255]",
|
arrow = "image_button[%f,%f;0.8,0.8;%s;%s;;;false;%s]",
|
||||||
}
|
}
|
||||||
|
|
||||||
craftguide.group_stereotypes = {
|
craftguide.group_stereotypes = {
|
||||||
@ -922,14 +927,29 @@ local function get_panels(data, fs)
|
|||||||
|
|
||||||
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 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 3.25 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([[
|
||||||
|
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(FMT.button .. FMT.button,
|
||||||
|
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(FMT.arrow .. FMT.arrow,
|
fs[#fs + 1] = fmt(FMT.arrow .. FMT.arrow,
|
||||||
x_arrow + (is_recipe and xof_r or xof_u), y_arrow, PNG.prev,
|
x_arrow + (is_recipe and xof_r or xof_u),
|
||||||
fmt("prev_%s", btn_suffix), PNG.prev,
|
y_arrow, PNG.prev, prev_name, PNG.prev_hover,
|
||||||
x_arrow + 1.8, y_arrow, PNG.next,
|
x_arrow + 1.8, y_arrow, PNG.next, next_name, PNG.next_hover)
|
||||||
fmt("next_%s", btn_suffix), PNG.next)
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local rcp = is_recipe and v[data.rnum] or v[data.unum]
|
local rcp = is_recipe and v[data.rnum] or v[data.unum]
|
||||||
@ -968,22 +988,41 @@ local function make_formspec(name)
|
|||||||
]],
|
]],
|
||||||
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([[
|
fs[#fs + 1] = fmt([[
|
||||||
image_button[%f,-0.05;0.85,0.85;%s;search;;;false;%s^\[colorize:yellow:255]
|
style[search;border=false;bgimg=%s;bgimg_hovered=%s]
|
||||||
image_button[%f,-0.05;0.85,0.85;%s;clear;;;false;%s^\[colorize:red:255]
|
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]
|
||||||
]],
|
]],
|
||||||
sfinv_only and 2.6 or 2.54, PNG.search, PNG.search,
|
PNG.search, PNG.search_hover,
|
||||||
sfinv_only and 3.3 or 3.25, PNG.clear, PNG.clear)
|
PNG.clear, PNG.clear_hover,
|
||||||
|
PNG.prev, PNG.prev_hover,
|
||||||
|
PNG.next, PNG.next_hover)
|
||||||
|
|
||||||
fs[#fs + 1] = fmt("label[%f,%f;%s / %u]",
|
fs[#fs + 1] = fmt(FMT.button .. FMT.button .. FMT.button .. FMT.button,
|
||||||
sfinv_only and 6.35 or (ROWS * 7.85) / 11,
|
sfinv_only and 2.6 or 2.54, -0.12, 0.85, 1, "search", "",
|
||||||
0.06, clr("yellow", data.pagenum), data.pagemax)
|
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.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(FMT.arrow .. FMT.arrow,
|
fs[#fs + 1] = fmt(FMT.arrow .. FMT.arrow,
|
||||||
sfinv_only and 5.45 or (ROWS * 6.83) / 11,
|
sfinv_only and 5.45 or (ROWS * 6.83) / 11,
|
||||||
-0.05, PNG.prev, "prev_page", PNG.prev,
|
-0.05, PNG.prev, "prev_page", PNG.prev,
|
||||||
sfinv_only and 7.2 or (ROWS * 8.75) / 11,
|
sfinv_only and 7.2 or (ROWS * 8.75) / 11,
|
||||||
-0.05, PNG.next, "next_page", PNG.next)
|
-0.05, PNG.next, "next_page", PNG.next)
|
||||||
|
end
|
||||||
|
|
||||||
|
fs[#fs + 1] = fmt("label[%f,%f;%s / %u]",
|
||||||
|
sfinv_only and 6.35 or (ROWS * 7.85) / 11,
|
||||||
|
0.06, clr("yellow", data.pagenum), data.pagemax)
|
||||||
|
|
||||||
if #data.items == 0 then
|
if #data.items == 0 then
|
||||||
local no_item = S("No item to show")
|
local no_item = S("No item to show")
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 5.7 KiB |
Loading…
Reference in New Issue
Block a user