Ignore .name directories and files
[oweals/minetest.git] / builtin / mainmenu / tab_texturepacks.lua
1 --Minetest
2 --Copyright (C) 2014 sapier
3 --
4 --This program is free software; you can redistribute it and/or modify
5 --it under the terms of the GNU Lesser General Public License as published by
6 --the Free Software Foundation; either version 2.1 of the License, or
7 --(at your option) any later version.
8 --
9 --This program is distributed in the hope that it will be useful,
10 --but WITHOUT ANY WARRANTY; without even the implied warranty of
11 --MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 --GNU Lesser General Public License for more details.
13 --
14 --You should have received a copy of the GNU Lesser General Public License along
15 --with this program; if not, write to the Free Software Foundation, Inc.,
16 --51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18 --------------------------------------------------------------------------------
19 local function filter_texture_pack_list(list)
20         local retval = {"None"}
21         for _, item in ipairs(list) do
22                 if item ~= "base" then
23                         table.insert(retval, item)
24                 end
25         end
26         return retval
27 end
28
29 --------------------------------------------------------------------------------
30 local function render_texture_pack_list(list)
31         local retval = ""
32
33         for i, v in ipairs(list) do
34                 if v:sub(1,1) ~= "." then
35                         if retval ~= "" then
36                                 retval = retval ..","
37                         end
38
39                         retval = retval .. core.formspec_escape(v)
40                 end
41         end
42
43         return retval
44 end
45
46 --------------------------------------------------------------------------------
47 local function get_formspec(tabview, name, tabdata)
48         
49         local retval = "label[4,-0.25;".. fgettext("Select texture pack:") .. "]"..
50                         "vertlabel[0,-0.25;".. fgettext("TEXTURE PACKS") .. "]" ..
51                         "textlist[4,0.25;7.5,5.0;TPs;"
52
53         local current_texture_path = core.setting_get("texture_path")
54         local list = filter_texture_pack_list(core.get_dirlist(core.get_texturepath(), true))
55         local index = tonumber(core.setting_get("mainmenu_last_selected_TP"))
56
57         if index == nil then index = 1 end
58
59         if current_texture_path == "" then
60                 retval = retval ..
61                         render_texture_pack_list(list) ..
62                         ";" .. index .. "]"
63                 return retval
64         end
65
66         local infofile = current_texture_path ..DIR_DELIM.."info.txt"
67         local infotext = ""
68         local f = io.open(infofile, "r")
69         if f==nil then
70                 infotext = fgettext("No information available")
71         else
72                 infotext = f:read("*all")
73                 f:close()
74         end
75
76         local screenfile = current_texture_path..DIR_DELIM.."screenshot.png"
77         local no_screenshot = nil
78         if not file_exists(screenfile) then
79                 screenfile = nil
80                 no_screenshot = defaulttexturedir .. "no_screenshot.png"
81         end
82
83         return  retval ..
84                         render_texture_pack_list(list) ..
85                         ";" .. index .. "]" ..
86                         "image[0.65,0.25;4.0,3.7;"..core.formspec_escape(screenfile or no_screenshot).."]"..
87                         "textarea[1.0,3.25;3.7,1.5;;"..core.formspec_escape(infotext or "")..";]"
88 end
89
90 --------------------------------------------------------------------------------
91 local function main_button_handler(tabview, fields, name, tabdata)
92         if fields["TPs"] ~= nil then
93                 local event = core.explode_textlist_event(fields["TPs"])
94                 if event.type == "CHG" or event.type == "DCL" then
95                         local index = core.get_textlist_index("TPs")
96                         core.setting_set("mainmenu_last_selected_TP",
97                                 index)
98                         local list = filter_texture_pack_list(core.get_dirlist(core.get_texturepath(), true))
99                         local current_index = core.get_textlist_index("TPs")
100                         if current_index ~= nil and #list >= current_index then
101                                 local new_path = core.get_texturepath()..DIR_DELIM..list[current_index]
102                                 if list[current_index] == "None" then new_path = "" end
103
104                                 core.setting_set("texture_path", new_path)
105                         end
106                 end
107                 return true
108         end
109         return false
110 end
111
112 --------------------------------------------------------------------------------
113 tab_texturepacks = {
114         name = "texturepacks",
115         caption = fgettext("Texturepacks"),
116         cbf_formspec = get_formspec,
117         cbf_button_handler = main_button_handler,
118         on_change = nil
119         }