Skip to content

Commit

Permalink
Add sfinv.get_page()
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenwardy committed Nov 28, 2018
1 parent 068e0b1 commit 1fa8180
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions game_api.txt
Expand Up @@ -569,6 +569,7 @@ sfinv API by its author: https://rubenwardy.com/minetest_modding_book/en/chapter
**Pages**

* sfinv.set_page(player, pagename) - changes the page
* sfinv.get_page(player) - get the current page name. Will never return nil
* sfinv.get_homepage_name(player) - get the page name of the first page to show to a player
* sfinv.register_page(name, def) - register a page, see section below
* sfinv.override_page(name, def) - overrides fields of an page registered with register_page.
Expand Down
5 changes: 5 additions & 0 deletions mods/sfinv/api.lua
Expand Up @@ -135,6 +135,11 @@ function sfinv.set_page(player, pagename)
sfinv.set_player_inventory_formspec(player, context)
end

function sfinv.get_page(player)
local context = sfinv.contexts[player:get_player_name()]
return context and context.page or sfinv.get_homepage_name(player)
end

minetest.register_on_joinplayer(function(player)
if sfinv.enabled then
sfinv.set_player_inventory_formspec(player)
Expand Down

0 comments on commit 1fa8180

Please sign in to comment.