Minor style cleanup

This commit is contained in:
JPG 2016-12-17 19:15:02 +01:00
parent e5cb84d02e
commit 6705549a31
1 changed files with 39 additions and 27 deletions

View File

@ -84,14 +84,17 @@ function craftguide:get_tooltip(item, recipe_type, cooktime, groups)
end
function craftguide:get_recipe(player_name, tooltipl, item, recipe_num, recipes)
local formspec, recipe_type = "", recipes[recipe_num].type
if #recipes > 1 then formspec = formspec..
local formspec, recipes_total = "", #recipes
if recipes_total > 1 then
formspec = formspec..
"button[0,"..(iY+3)..";2,1;alternate;Alternate]"..
"label[0,"..(iY+2)..".5;Recipe "..
recipe_num.." of "..#recipes.."]"
recipe_num.." of "..recipes_total.."]"
end
local recipe_type = recipes[recipe_num].type
if recipe_type == "cooking" then
formspec = formspec.."image["..(xoffset-0.8)..","..(iY+1)..
formspec = formspec..
"image["..(xoffset-0.8)..","..(iY+1)..
".5;0.5,0.5;default_furnace_front.png]"
end
@ -123,11 +126,12 @@ function craftguide:get_recipe(player_name, tooltipl, item, recipe_num, recipes)
local groups = extract_groups(v)
local label = groups and "\nG" or ""
local item_r = self:group_to_item(v)
local tooltip = self:get_tooltip(item_r, recipe_type,
width, groups)
local tooltip = self:get_tooltip(
item_r, recipe_type, width, groups)
formspec = formspec.."item_image_button["..X..","..Y..
";"..btn_size..","..btn_size..";"..item_r..
formspec = formspec..
"item_image_button["..X..","..Y..";"..
btn_size..","..btn_size..";"..item_r..
";"..item_r..";"..label.."]"..tooltip
end
end
@ -149,15 +153,16 @@ function craftguide:get_formspec(player_name, is_fuel)
tooltip[clear;Reset]
field_close_on_enter[craftguide_filter, false] ]]..
"button["..(iX-3)..".4,0;0.8,0.95;prev;<]"..
"label["..(iX-2)..".1,0.18;"..
colorize(data.pagenum).." / "..data.pagemax.."]"..
"label["..(iX-2)..".1,0.18;"..colorize(data.pagenum)..
" / "..data.pagemax.."]"..
"button["..(iX-1)..".2,0;0.8,0.95;next;>]"..
"field[0.3,0.32;2.6,1;craftguide_filter;;"..
minetest.formspec_escape(data.filter).."]"
if not next(data.items) then
formspec = formspec.."label["..(xoffset -
(iX%2 == 0 and 1.5 or 1))..",2;No item to show]"
formspec = formspec..
"label["..(xoffset - (iX%2 == 0 and 1.5 or 1))..
",2;No item to show]"
end
local first_item = (data.pagenum - 1) * ipp
@ -167,7 +172,8 @@ function craftguide:get_formspec(player_name, is_fuel)
local X = i % iX
local Y = (i % ipp - X) / iX+1
formspec = formspec.."item_image_button["..X..","..Y..";1,1;"..
formspec = formspec..
"item_image_button["..X..","..Y..";1,1;"..
name..";"..name.."_inv;]"
end
@ -195,7 +201,9 @@ function craftguide:get_formspec(player_name, is_fuel)
end
local function player_has_item(T)
for i=1, #T do if T[i] then return true end end
for i=1, #T do
if T[i] then return true end
end
end
local function group_to_items(group)
@ -233,7 +241,9 @@ function craftguide:recipe_in_inv(inv, item_name, recipes_f)
end
end
for i=#show_item_recipes, 1, -1 do
if not show_item_recipes[i] then remove(recipes, i) end
if not show_item_recipes[i] then
remove(recipes, i)
end
end
return recipes, player_has_item(show_item_recipes)
@ -318,7 +328,9 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
else
for item in pairs(fields) do
if not item:find(":") then break end
if item:sub(-4) == "_inv" then item = item:sub(1,-5) end
if item:sub(-4) == "_inv" then
item = item:sub(1,-5)
end
local recipes = minetest.get_all_craft_recipes(item)
local is_fuel = minetest.get_craft_result({