]> git.lizzy.rs Git - dragonfireclient.git/blob - builtin/mainmenu/tab_settings.lua
Improve content store layout (#7806)
[dragonfireclient.git] / builtin / mainmenu / tab_settings.lua
1 --Minetest
2 --Copyright (C) 2013 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
20 local labels = {
21         leaves = {
22                 fgettext("Opaque Leaves"),
23                 fgettext("Simple Leaves"),
24                 fgettext("Fancy Leaves")
25         },
26         node_highlighting = {
27                 fgettext("Node Outlining"),
28                 fgettext("Node Highlighting"),
29                 fgettext("None")
30         },
31         filters = {
32                 fgettext("No Filter"),
33                 fgettext("Bilinear Filter"),
34                 fgettext("Trilinear Filter")
35         },
36         mipmap = {
37                 fgettext("No Mipmap"),
38                 fgettext("Mipmap"),
39                 fgettext("Mipmap + Aniso. Filter")
40         },
41         antialiasing = {
42                 fgettext("None"),
43                 fgettext("2x"),
44                 fgettext("4x"),
45                 fgettext("8x")
46         }
47 }
48
49 local dd_options = {
50         leaves = {
51                 table.concat(labels.leaves, ","),
52                 {"opaque", "simple", "fancy"}
53         },
54         node_highlighting = {
55                 table.concat(labels.node_highlighting, ","),
56                 {"box", "halo", "none"}
57         },
58         filters = {
59                 table.concat(labels.filters, ","),
60                 {"", "bilinear_filter", "trilinear_filter"}
61         },
62         mipmap = {
63                 table.concat(labels.mipmap, ","),
64                 {"", "mip_map", "anisotropic_filter"}
65         },
66         antialiasing = {
67                 table.concat(labels.antialiasing, ","),
68                 {"0", "2", "4", "8"}
69         }
70 }
71
72 local getSettingIndex = {
73         Leaves = function()
74                 local style = core.settings:get("leaves_style")
75                 for idx, name in pairs(dd_options.leaves[2]) do
76                         if style == name then return idx end
77                 end
78                 return 1
79         end,
80         NodeHighlighting = function()
81                 local style = core.settings:get("node_highlighting")
82                 for idx, name in pairs(dd_options.node_highlighting[2]) do
83                         if style == name then return idx end
84                 end
85                 return 1
86         end,
87         Filter = function()
88                 if core.settings:get(dd_options.filters[2][3]) == "true" then
89                         return 3
90                 elseif core.settings:get(dd_options.filters[2][3]) == "false" and
91                                 core.settings:get(dd_options.filters[2][2]) == "true" then
92                         return 2
93                 end
94                 return 1
95         end,
96         Mipmap = function()
97                 if core.settings:get(dd_options.mipmap[2][3]) == "true" then
98                         return 3
99                 elseif core.settings:get(dd_options.mipmap[2][3]) == "false" and
100                                 core.settings:get(dd_options.mipmap[2][2]) == "true" then
101                         return 2
102                 end
103                 return 1
104         end,
105         Antialiasing = function()
106                 local antialiasing_setting = core.settings:get("fsaa")
107                 for i = 1, #dd_options.antialiasing[2] do
108                         if antialiasing_setting == dd_options.antialiasing[2][i] then
109                                 return i
110                         end
111                 end
112                 return 1
113         end
114 }
115
116 local function antialiasing_fname_to_name(fname)
117         for i = 1, #labels.antialiasing do
118                 if fname == labels.antialiasing[i] then
119                         return dd_options.antialiasing[2][i]
120                 end
121         end
122         return 0
123 end
124
125 local function dlg_confirm_reset_formspec(data)
126         return  "size[8,3]" ..
127                 "label[1,1;" .. fgettext("Are you sure to reset your singleplayer world?") .. "]" ..
128                 "button[1,2;2.6,0.5;dlg_reset_singleplayer_confirm;" .. fgettext("Yes") .. "]" ..
129                 "button[4,2;2.8,0.5;dlg_reset_singleplayer_cancel;" .. fgettext("No") .. "]"
130 end
131
132 local function dlg_confirm_reset_btnhandler(this, fields, dialogdata)
133
134         if fields["dlg_reset_singleplayer_confirm"] ~= nil then
135                 local worldlist = core.get_worlds()
136                 local found_singleplayerworld = false
137
138                 for i = 1, #worldlist do
139                         if worldlist[i].name == "singleplayerworld" then
140                                 found_singleplayerworld = true
141                                 gamedata.worldindex = i
142                         end
143                 end
144
145                 if found_singleplayerworld then
146                         core.delete_world(gamedata.worldindex)
147                 end
148
149                 core.create_world("singleplayerworld", 1)
150                 worldlist = core.get_worlds()
151                 found_singleplayerworld = false
152
153                 for i = 1, #worldlist do
154                         if worldlist[i].name == "singleplayerworld" then
155                                 found_singleplayerworld = true
156                                 gamedata.worldindex = i
157                         end
158                 end
159         end
160
161         this.parent:show()
162         this:hide()
163         this:delete()
164         return true
165 end
166
167 local function showconfirm_reset(tabview)
168         local new_dlg = dialog_create("reset_spworld",
169                 dlg_confirm_reset_formspec,
170                 dlg_confirm_reset_btnhandler,
171                 nil)
172         new_dlg:set_parent(tabview)
173         tabview:hide()
174         new_dlg:show()
175 end
176
177 local function formspec(tabview, name, tabdata)
178         local tab_string =
179                 "box[0,0;3.75,4.5;#999999]" ..
180                 "checkbox[0.25,0;cb_smooth_lighting;" .. fgettext("Smooth Lighting") .. ";"
181                                 .. dump(core.settings:get_bool("smooth_lighting")) .. "]" ..
182                 "checkbox[0.25,0.5;cb_particles;" .. fgettext("Particles") .. ";"
183                                 .. dump(core.settings:get_bool("enable_particles")) .. "]" ..
184                 "checkbox[0.25,1;cb_3d_clouds;" .. fgettext("3D Clouds") .. ";"
185                                 .. dump(core.settings:get_bool("enable_3d_clouds")) .. "]" ..
186                 "checkbox[0.25,1.5;cb_opaque_water;" .. fgettext("Opaque Water") .. ";"
187                                 .. dump(core.settings:get_bool("opaque_water")) .. "]" ..
188                 "checkbox[0.25,2.0;cb_connected_glass;" .. fgettext("Connected Glass") .. ";"
189                                 .. dump(core.settings:get_bool("connected_glass")) .. "]" ..
190                 "dropdown[0.25,2.8;3.5;dd_node_highlighting;" .. dd_options.node_highlighting[1] .. ";"
191                                 .. getSettingIndex.NodeHighlighting() .. "]" ..
192                 "dropdown[0.25,3.6;3.5;dd_leaves_style;" .. dd_options.leaves[1] .. ";"
193                                 .. getSettingIndex.Leaves() .. "]" ..
194                 "box[4,0;3.75,4.5;#999999]" ..
195                 "label[4.25,0.1;" .. fgettext("Texturing:") .. "]" ..
196                 "dropdown[4.25,0.55;3.5;dd_filters;" .. dd_options.filters[1] .. ";"
197                                 .. getSettingIndex.Filter() .. "]" ..
198                 "dropdown[4.25,1.35;3.5;dd_mipmap;" .. dd_options.mipmap[1] .. ";"
199                                 .. getSettingIndex.Mipmap() .. "]" ..
200                 "label[4.25,2.15;" .. fgettext("Antialiasing:") .. "]" ..
201                 "dropdown[4.25,2.6;3.5;dd_antialiasing;" .. dd_options.antialiasing[1] .. ";"
202                                 .. getSettingIndex.Antialiasing() .. "]" ..
203                 "label[4.25,3.45;" .. fgettext("Screen:") .. "]" ..
204                 "checkbox[4.25,3.6;cb_autosave_screensize;" .. fgettext("Autosave Screen Size") .. ";"
205                                 .. dump(core.settings:get_bool("autosave_screensize")) .. "]" ..
206                 "box[8,0;3.75,4.5;#999999]"
207
208         local video_driver = core.settings:get("video_driver")
209         local shaders_supported = video_driver == "opengl"
210         local shaders_enabled = false
211         if shaders_supported then
212                 shaders_enabled = core.settings:get_bool("enable_shaders")
213                 tab_string = tab_string ..
214                         "checkbox[8.25,0;cb_shaders;" .. fgettext("Shaders") .. ";"
215                                         .. tostring(shaders_enabled) .. "]"
216         else
217                 core.settings:set_bool("enable_shaders", false)
218                 tab_string = tab_string ..
219                         "label[8.38,0.2;" .. core.colorize("#888888",
220                                         fgettext("Shaders (unavailable)")) .. "]"
221         end
222
223         if PLATFORM == "Android" then
224                 tab_string = tab_string ..
225                         "button[8,4.75;3.95,1;btn_reset_singleplayer;"
226                         .. fgettext("Reset singleplayer world") .. "]"
227         else
228                 tab_string = tab_string ..
229                         "button[8,4.75;3.95,1;btn_change_keys;"
230                         .. fgettext("Change Keys") .. "]"
231         end
232
233         tab_string = tab_string ..
234                 "button[0,4.75;3.95,1;btn_advanced_settings;"
235                 .. fgettext("Advanced Settings") .. "]"
236
237
238         if core.settings:get("touchscreen_threshold") ~= nil then
239                 tab_string = tab_string ..
240                         "label[4.3,4.1;" .. fgettext("Touchthreshold (px)") .. "]" ..
241                         "dropdown[3.85,4.55;3.85;dd_touchthreshold;0,10,20,30,40,50;" ..
242                         ((tonumber(core.settings:get("touchscreen_threshold")) / 10) + 1) .. "]"
243         end
244
245         if shaders_enabled then
246                 tab_string = tab_string ..
247                         "checkbox[8.25,0.5;cb_bumpmapping;" .. fgettext("Bump Mapping") .. ";"
248                                         .. dump(core.settings:get_bool("enable_bumpmapping")) .. "]" ..
249                         "checkbox[8.25,1;cb_tonemapping;" .. fgettext("Tone Mapping") .. ";"
250                                         .. dump(core.settings:get_bool("tone_mapping")) .. "]" ..
251                         "checkbox[8.25,1.5;cb_generate_normalmaps;" .. fgettext("Generate Normal Maps") .. ";"
252                                         .. dump(core.settings:get_bool("generate_normalmaps")) .. "]" ..
253                         "checkbox[8.25,2;cb_parallax;" .. fgettext("Parallax Occlusion") .. ";"
254                                         .. dump(core.settings:get_bool("enable_parallax_occlusion")) .. "]" ..
255                         "checkbox[8.25,2.5;cb_waving_water;" .. fgettext("Waving Water") .. ";"
256                                         .. dump(core.settings:get_bool("enable_waving_water")) .. "]" ..
257                         "checkbox[8.25,3;cb_waving_leaves;" .. fgettext("Waving Leaves") .. ";"
258                                         .. dump(core.settings:get_bool("enable_waving_leaves")) .. "]" ..
259                         "checkbox[8.25,3.5;cb_waving_plants;" .. fgettext("Waving Plants") .. ";"
260                                         .. dump(core.settings:get_bool("enable_waving_plants")) .. "]"
261         else
262                 tab_string = tab_string ..
263                         "label[8.38,0.7;" .. core.colorize("#888888",
264                                         fgettext("Bump Mapping")) .. "]" ..
265                         "label[8.38,1.2;" .. core.colorize("#888888",
266                                         fgettext("Tone Mapping")) .. "]" ..
267                         "label[8.38,1.7;" .. core.colorize("#888888",
268                                         fgettext("Generate Normal Maps")) .. "]" ..
269                         "label[8.38,2.2;" .. core.colorize("#888888",
270                                         fgettext("Parallax Occlusion")) .. "]" ..
271                         "label[8.38,2.7;" .. core.colorize("#888888",
272                                         fgettext("Waving Water")) .. "]" ..
273                         "label[8.38,3.2;" .. core.colorize("#888888",
274                                         fgettext("Waving Leaves")) .. "]" ..
275                         "label[8.38,3.7;" .. core.colorize("#888888",
276                                         fgettext("Waving Plants")) .. "]"
277         end
278
279         return tab_string
280 end
281
282 --------------------------------------------------------------------------------
283 local function handle_settings_buttons(this, fields, tabname, tabdata)
284
285         if fields["btn_advanced_settings"] ~= nil then
286                 local adv_settings_dlg = create_adv_settings_dlg()
287                 adv_settings_dlg:set_parent(this)
288                 this:hide()
289                 adv_settings_dlg:show()
290                 --mm_texture.update("singleplayer", current_game())
291                 return true
292         end
293         if fields["cb_smooth_lighting"] then
294                 core.settings:set("smooth_lighting", fields["cb_smooth_lighting"])
295                 return true
296         end
297         if fields["cb_particles"] then
298                 core.settings:set("enable_particles", fields["cb_particles"])
299                 return true
300         end
301         if fields["cb_3d_clouds"] then
302                 core.settings:set("enable_3d_clouds", fields["cb_3d_clouds"])
303                 return true
304         end
305         if fields["cb_opaque_water"] then
306                 core.settings:set("opaque_water", fields["cb_opaque_water"])
307                 return true
308         end
309         if fields["cb_connected_glass"] then
310                 core.settings:set("connected_glass", fields["cb_connected_glass"])
311                 return true
312         end
313         if fields["cb_autosave_screensize"] then
314                 core.settings:set("autosave_screensize", fields["cb_autosave_screensize"])
315                 return true
316         end
317         if fields["cb_shaders"] then
318                 if (core.settings:get("video_driver") == "direct3d8" or
319                                 core.settings:get("video_driver") == "direct3d9") then
320                         core.settings:set("enable_shaders", "false")
321                         gamedata.errormessage = fgettext("To enable shaders the OpenGL driver needs to be used.")
322                 else
323                         core.settings:set("enable_shaders", fields["cb_shaders"])
324                 end
325                 return true
326         end
327         if fields["cb_bumpmapping"] then
328                 core.settings:set("enable_bumpmapping", fields["cb_bumpmapping"])
329                 return true
330         end
331         if fields["cb_tonemapping"] then
332                 core.settings:set("tone_mapping", fields["cb_tonemapping"])
333                 return true
334         end
335         if fields["cb_generate_normalmaps"] then
336                 core.settings:set("generate_normalmaps", fields["cb_generate_normalmaps"])
337                 return true
338         end
339         if fields["cb_parallax"] then
340                 core.settings:set("enable_parallax_occlusion", fields["cb_parallax"])
341                 return true
342         end
343         if fields["cb_waving_water"] then
344                 core.settings:set("enable_waving_water", fields["cb_waving_water"])
345                 return true
346         end
347         if fields["cb_waving_leaves"] then
348                 core.settings:set("enable_waving_leaves", fields["cb_waving_leaves"])
349         end
350         if fields["cb_waving_plants"] then
351                 core.settings:set("enable_waving_plants", fields["cb_waving_plants"])
352                 return true
353         end
354         if fields["btn_change_keys"] then
355                 core.show_keys_menu()
356                 return true
357         end
358         if fields["cb_touchscreen_target"] then
359                 core.settings:set("touchtarget", fields["cb_touchscreen_target"])
360                 return true
361         end
362         if fields["btn_reset_singleplayer"] then
363                 showconfirm_reset(this)
364                 return true
365         end
366
367         --Note dropdowns have to be handled LAST!
368         local ddhandled = false
369
370         for i = 1, #labels.leaves do
371                 if fields["dd_leaves_style"] == labels.leaves[i] then
372                         core.settings:set("leaves_style", dd_options.leaves[2][i])
373                         ddhandled = true
374                 end
375         end
376         for i = 1, #labels.node_highlighting do
377                 if fields["dd_node_highlighting"] == labels.node_highlighting[i] then
378                         core.settings:set("node_highlighting", dd_options.node_highlighting[2][i])
379                         ddhandled = true
380                 end
381         end
382         if fields["dd_filters"] == labels.filters[1] then
383                 core.settings:set("bilinear_filter", "false")
384                 core.settings:set("trilinear_filter", "false")
385                 ddhandled = true
386         elseif fields["dd_filters"] == labels.filters[2] then
387                 core.settings:set("bilinear_filter", "true")
388                 core.settings:set("trilinear_filter", "false")
389                 ddhandled = true
390         elseif fields["dd_filters"] == labels.filters[3] then
391                 core.settings:set("bilinear_filter", "false")
392                 core.settings:set("trilinear_filter", "true")
393                 ddhandled = true
394         end
395         if fields["dd_mipmap"] == labels.mipmap[1] then
396                 core.settings:set("mip_map", "false")
397                 core.settings:set("anisotropic_filter", "false")
398                 ddhandled = true
399         elseif fields["dd_mipmap"] == labels.mipmap[2] then
400                 core.settings:set("mip_map", "true")
401                 core.settings:set("anisotropic_filter", "false")
402                 ddhandled = true
403         elseif fields["dd_mipmap"] == labels.mipmap[3] then
404                 core.settings:set("mip_map", "true")
405                 core.settings:set("anisotropic_filter", "true")
406                 ddhandled = true
407         end
408         if fields["dd_antialiasing"] then
409                 core.settings:set("fsaa",
410                         antialiasing_fname_to_name(fields["dd_antialiasing"]))
411                 ddhandled = true
412         end
413         if fields["dd_touchthreshold"] then
414                 core.settings:set("touchscreen_threshold", fields["dd_touchthreshold"])
415                 ddhandled = true
416         end
417
418         return ddhandled
419 end
420
421 return {
422         name = "settings",
423         caption = fgettext("Settings"),
424         cbf_formspec = formspec,
425         cbf_button_handler = handle_settings_buttons
426 }