diff options
author | RealBadAngel <mk@realbadangel.pl> | 2013-02-26 19:01:33 -0800 |
---|---|---|
committer | RealBadAngel <mk@realbadangel.pl> | 2013-02-26 19:01:33 -0800 |
commit | 65c01a3cf22eeafad80eb9f177c4971a29456d8f (patch) | |
tree | 40a743834811d54d1fd24669d2f89135e5b56063 /unified_inventory/api.lua | |
parent | 63968475613fab2e10514326a3a8ea4d348d0246 (diff) | |
parent | 21e6261e3f339d69c7612daaf861c0c166640cef (diff) |
Merge pull request #10 from VanessaE/master
Added graphical backgrounds to all Unified Inventory pages
Diffstat (limited to 'unified_inventory/api.lua')
-rw-r--r-- | unified_inventory/api.lua | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/unified_inventory/api.lua b/unified_inventory/api.lua index 2eb0b3e..845451b 100644 --- a/unified_inventory/api.lua +++ b/unified_inventory/api.lua @@ -123,6 +123,34 @@ unified_inventory.get_formspec = function(player,page) -- player inventory formspec = formspec .. "list[current_player;main;0,4.5;8,4;]" + -- backgrounds + formspec = formspec .. "background[-0.19,-0.2,;14.38,10.55;ui_form_bg.png]" + if page=="craft" then + formspec = formspec .. "background[0.12,1.05,;7.8,7.4;ui_crafting_form.png]" + end + if page=="craftguide" then + formspec = formspec .. "background[0.12,1.05,;7.8,7.4;ui_craftguide_form.png]" + end + if page=="misc" then + formspec = formspec .. "background[0.12,1.05,;7.8,7.4;ui_misc_form.png]" + end + if page=="bags" then + formspec = formspec .. "background[0.12,1.05,;7.8,7.4;ui_bags_main_form.png]" + end + + for i=1,4 do + if page=="bag"..i then + local slots = player:get_inventory():get_stack(page, 1):get_definition().groups.bagslots + if slots == 8 then + formspec = formspec .. "background[0.12,1.05,;7.8,7.4;ui_bags_sm_form.png]" + elseif slots == 16 then + formspec = formspec .. "background[0.12,1.05,;7.8,7.4;ui_bags_med_form.png]" + elseif slots == 24 then + formspec = formspec .. "background[0.12,1.05,;7.8,7.4;ui_bags_lg_form.png]" + end + end + end + -- main buttons formspec = formspec .. "button[0,9;1.8,.5;craft;Craft]" formspec = formspec .. "button[1.6,9;1.8,.5;craftguide;Craft Guide]" |