Add formspec theming, remove sfinv's dependency on default
authorAndrew Ward <rw@rubenwardy.com>
Wed, 28 Mar 2018 17:28:26 +0000 (18:28 +0100)
committerGitHub <noreply@github.com>
Wed, 28 Mar 2018 17:28:26 +0000 (18:28 +0100)
game_api.txt
mods/default/init.lua
mods/sfinv/README.md
mods/sfinv/api.lua
mods/sfinv/depends.txt [deleted file]

index 1ef2679229d85d803e0c72b5ae3e8dfe1d9f2d69..86938f26efc0c5ed41faf8d36699e2e1fa83caf0 100644 (file)
@@ -548,6 +548,9 @@ set a players home position and teleport a player to home position.
 Sfinv API
 ---------
 
+It is recommended that you read this link for a good introduction to the
+sfinv API by its author: https://rubenwardy.com/minetest_modding_book/en/chapters/sfinv.html
+
 ### sfinv Methods
 
 **Pages**
@@ -752,15 +755,15 @@ GUI and formspecs
 
 `default.gui_bg`
 
- * Background color formspec element
+ * Deprecated, remove from mods.
 
 `default.gui_bg_img`
 
- * Image overlay formspec element for the background to use in formspecs
+ * Deprecated, remove from mods.
 
 `default.gui_slots`
 
- * `listcolors` formspec element that is used to format the slots in formspecs
+ * Deprecated, remove from mods.
 
 `default.gui_survival_form`
 
index 2d5a9bd2e5b341756afc77ddef250c76048e006c..5fef4be825da5e594e3288ff91e5d01629e4cd16 100644 (file)
@@ -9,9 +9,16 @@ default = {}
 default.LIGHT_MAX = 14
 
 -- GUI related stuff
-default.gui_bg = "bgcolor[#080808BB;true]"
-default.gui_bg_img = "background[5,5;1,1;gui_formbg.png;true]"
-default.gui_slots = "listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]"
+default.gui_bg     = ""
+default.gui_bg_img = ""
+default.gui_slots  = ""
+
+minetest.register_on_joinplayer(function(player)
+       player:set_formspec_prepend([[
+                       bgcolor[#080808BB;true]
+                       background[5,5;1,1;gui_formbg.png;true]
+                       listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF] ]])
+end)
 
 function default.get_hotbar_bg(x,y)
        local out = ""
index 6ff33923f5f1c287ff2be447d548c5c8adaea056..0b152a0ed83f140c1043f1a36a88b2f508846a24 100644 (file)
@@ -5,6 +5,8 @@ Simple Fast Inventory
 
 A cleaner, simpler, solution to having an advanced inventory in Minetest.
 
+Available for use outside of MTG here: <https://forum.minetest.net/viewtopic.php?t=19765>
+
 Written by rubenwardy.  
 License: MIT
 
index fdb652b8d7d3dca8073b6e38e619a79630df54d2..b9ddb39bba63df3eff43595ba889c24ada1861cf 100644 (file)
@@ -36,10 +36,7 @@ function sfinv.get_nav_fs(player, context, nav, current_idx)
        end
 end
 
-local theme_main = "bgcolor[#080808BB;true]" .. default.gui_bg ..
-               default.gui_bg_img
-
-local theme_inv = default.gui_slots .. [[
+local theme_inv = [[
                list[current_player;main;0,4.7;8,1;]
                list[current_player;main;0,5.85;8,3;8]
        ]]
@@ -47,7 +44,6 @@ local theme_inv = default.gui_slots .. [[
 function sfinv.make_formspec(player, context, content, show_inv, size)
        local tmp = {
                size or "size[8,8.6]",
-               theme_main,
                sfinv.get_nav_fs(player, context, context.nav_titles, context.nav_idx),
                content
        }
diff --git a/mods/sfinv/depends.txt b/mods/sfinv/depends.txt
deleted file mode 100644 (file)
index 4ad96d5..0000000
+++ /dev/null
@@ -1 +0,0 @@
-default