]> git.lizzy.rs Git - dragonfireclient.git/blob - builtin/mainmenu/tab_local.lua
Fix games not updating on deletion
[dragonfireclient.git] / builtin / mainmenu / tab_local.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 enable_gamebar = PLATFORM ~= "Android"
20 local current_game, singleplayer_refresh_gamebar
21 if enable_gamebar then
22         function current_game()
23                 local last_game_id = core.settings:get("menu_last_game")
24                 local game, index = pkgmgr.find_by_gameid(last_game_id)
25
26                 return game
27         end
28
29         function singleplayer_refresh_gamebar()
30
31                 local old_bar = ui.find_by_name("game_button_bar")
32
33                 if old_bar ~= nil then
34                         old_bar:delete()
35                 end
36
37                 local function game_buttonbar_button_handler(fields)
38                         for key,value in pairs(fields) do
39                                 for j=1,#pkgmgr.games,1 do
40                                         if ("game_btnbar_" .. pkgmgr.games[j].id == key) then
41                                                 mm_texture.update("singleplayer", pkgmgr.games[j])
42                                                 core.set_topleft_text(pkgmgr.games[j].name)
43                                                 core.settings:set("menu_last_game",pkgmgr.games[j].id)
44                                                 menudata.worldlist:set_filtercriteria(pkgmgr.games[j].id)
45                                                 local index = filterlist.get_current_index(menudata.worldlist,
46                                                         tonumber(core.settings:get("mainmenu_last_selected_world")))
47                                                 if not index or index < 1 then
48                                                         local selected = core.get_textlist_index("sp_worlds")
49                                                         if selected ~= nil and selected < #menudata.worldlist:get_list() then
50                                                                 index = selected
51                                                         else
52                                                                 index = #menudata.worldlist:get_list()
53                                                         end
54                                                 end
55                                                 menu_worldmt_legacy(index)
56                                                 return true
57                                         end
58                                 end
59                         end
60                 end
61
62                 local btnbar = buttonbar_create("game_button_bar",
63                         game_buttonbar_button_handler,
64                         {x=-0.3,y=5.9}, "horizontal", {x=12.4,y=1.15})
65
66                 for i=1,#pkgmgr.games,1 do
67                         local btn_name = "game_btnbar_" .. pkgmgr.games[i].id
68
69                         local image = nil
70                         local text = nil
71                         local tooltip = core.formspec_escape(pkgmgr.games[i].name)
72
73                         if pkgmgr.games[i].menuicon_path ~= nil and
74                                 pkgmgr.games[i].menuicon_path ~= "" then
75                                 image = core.formspec_escape(pkgmgr.games[i].menuicon_path)
76                         else
77
78                                 local part1 = pkgmgr.games[i].id:sub(1,5)
79                                 local part2 = pkgmgr.games[i].id:sub(6,10)
80                                 local part3 = pkgmgr.games[i].id:sub(11)
81
82                                 text = part1 .. "\n" .. part2
83                                 if part3 ~= nil and
84                                         part3 ~= "" then
85                                         text = text .. "\n" .. part3
86                                 end
87                         end
88                         btnbar:add_button(btn_name, text, image, tooltip)
89                 end
90         end
91 else
92         function current_game()
93                 return nil
94         end
95 end
96
97 local function get_formspec(tabview, name, tabdata)
98         local retval = ""
99
100         local index = filterlist.get_current_index(menudata.worldlist,
101                                 tonumber(core.settings:get("mainmenu_last_selected_world"))
102                                 )
103
104         retval = retval ..
105                         "button[4,3.95;2.6,1;world_delete;".. fgettext("Delete") .. "]" ..
106                         "button[6.5,3.95;2.8,1;world_configure;".. fgettext("Configure") .. "]" ..
107                         "button[9.2,3.95;2.5,1;world_create;".. fgettext("New") .. "]" ..
108                         "label[4,-0.25;".. fgettext("Select World:") .. "]"..
109                         "checkbox[0.25,0.25;cb_creative_mode;".. fgettext("Creative Mode") .. ";" ..
110                         dump(core.settings:get_bool("creative_mode")) .. "]"..
111                         "checkbox[0.25,0.7;cb_enable_damage;".. fgettext("Enable Damage") .. ";" ..
112                         dump(core.settings:get_bool("enable_damage")) .. "]"..
113                         "checkbox[0.25,1.15;cb_server;".. fgettext("Host Server") ..";" ..
114                         dump(core.settings:get_bool("enable_server")) .. "]" ..
115                         "textlist[4,0.25;7.5,3.7;sp_worlds;" ..
116                         menu_render_worldlist() ..
117                         ";" .. index .. "]"
118
119         if core.settings:get_bool("enable_server") then
120                 retval = retval ..
121                                 "button[8.5,4.8;3.2,1;play;".. fgettext("Host Game") .. "]" ..
122                                 "checkbox[0.25,1.6;cb_server_announce;" .. fgettext("Announce Server") .. ";" ..
123                                 dump(core.settings:get_bool("server_announce")) .. "]" ..
124                                 "label[0.25,2.2;" .. fgettext("Name/Password") .. "]" ..
125                                 "field[0.55,3.2;3.5,0.5;te_playername;;" ..
126                                 core.formspec_escape(core.settings:get("name")) .. "]" ..
127                                 "pwdfield[0.55,4;3.5,0.5;te_passwd;]"
128
129                 local bind_addr = core.settings:get("bind_address")
130                 if bind_addr ~= nil and bind_addr ~= "" then
131                         retval = retval ..
132                                 "field[0.55,5.2;2.25,0.5;te_serveraddr;" .. fgettext("Bind Address") .. ";" ..
133                                 core.formspec_escape(core.settings:get("bind_address")) .. "]" ..
134                                 "field[2.8,5.2;1.25,0.5;te_serverport;" .. fgettext("Port") .. ";" ..
135                                 core.formspec_escape(core.settings:get("port")) .. "]"
136                 else
137                         retval = retval ..
138                                 "field[0.55,5.2;3.5,0.5;te_serverport;" .. fgettext("Server Port") .. ";" ..
139                                 core.formspec_escape(core.settings:get("port")) .. "]"
140                 end
141         else
142                 retval = retval ..
143                                 "button[8.5,4.8;3.2,1;play;".. fgettext("Play Game") .. "]"
144         end
145
146         return retval
147 end
148
149 local function main_button_handler(this, fields, name, tabdata)
150
151         assert(name == "local")
152
153         local world_doubleclick = false
154
155         if fields["sp_worlds"] ~= nil then
156                 local event = core.explode_textlist_event(fields["sp_worlds"])
157                 local selected = core.get_textlist_index("sp_worlds")
158
159                 menu_worldmt_legacy(selected)
160
161                 if event.type == "DCL" then
162                         world_doubleclick = true
163                 end
164
165                 if event.type == "CHG" and selected ~= nil then
166                         core.settings:set("mainmenu_last_selected_world",
167                                 menudata.worldlist:get_raw_index(selected))
168                         return true
169                 end
170         end
171
172         if menu_handle_key_up_down(fields,"sp_worlds","mainmenu_last_selected_world") then
173                 return true
174         end
175
176         if fields["cb_creative_mode"] then
177                 core.settings:set("creative_mode", fields["cb_creative_mode"])
178                 local selected = core.get_textlist_index("sp_worlds")
179                 menu_worldmt(selected, "creative_mode", fields["cb_creative_mode"])
180
181                 return true
182         end
183
184         if fields["cb_enable_damage"] then
185                 core.settings:set("enable_damage", fields["cb_enable_damage"])
186                 local selected = core.get_textlist_index("sp_worlds")
187                 menu_worldmt(selected, "enable_damage", fields["cb_enable_damage"])
188
189                 return true
190         end
191
192         if fields["cb_server"] then
193                 core.settings:set("enable_server", fields["cb_server"])
194
195                 return true
196         end
197
198         if fields["cb_server_announce"] then
199                 core.settings:set("server_announce", fields["cb_server_announce"])
200                 local selected = core.get_textlist_index("srv_worlds")
201                 menu_worldmt(selected, "server_announce", fields["cb_server_announce"])
202
203                 return true
204         end
205
206         if fields["play"] ~= nil or world_doubleclick or fields["key_enter"] then
207                 local selected = core.get_textlist_index("sp_worlds")
208                 gamedata.selected_world = menudata.worldlist:get_raw_index(selected)
209
210                 if core.settings:get_bool("enable_server") then
211                         if selected ~= nil and gamedata.selected_world ~= 0 then
212                                 gamedata.playername = fields["te_playername"]
213                                 gamedata.password   = fields["te_passwd"]
214                                 gamedata.port       = fields["te_serverport"]
215                                 gamedata.address    = ""
216
217                                 core.settings:set("port",gamedata.port)
218                                 if fields["te_serveraddr"] ~= nil then
219                                         core.settings:set("bind_address",fields["te_serveraddr"])
220                                 end
221
222                                 --update last game
223                                 local world = menudata.worldlist:get_raw_element(gamedata.selected_world)
224                                 if world then
225                                         local game, index = pkgmgr.find_by_gameid(world.gameid)
226                                         core.settings:set("menu_last_game", game.id)
227                                 end
228
229                                 core.start()
230                         else
231                                 gamedata.errormessage =
232                                         fgettext("No world created or selected!")
233                         end
234                 else
235                         if selected ~= nil and gamedata.selected_world ~= 0 then
236                                 gamedata.singleplayer = true
237                                 core.start()
238                         else
239                                 gamedata.errormessage =
240                                         fgettext("No world created or selected!")
241                         end
242                         return true
243                 end
244         end
245
246         if fields["world_create"] ~= nil then
247                 local create_world_dlg = create_create_world_dlg(true)
248                 create_world_dlg:set_parent(this)
249                 this:hide()
250                 create_world_dlg:show()
251                 mm_texture.update("singleplayer", current_game())
252                 return true
253         end
254
255         if fields["world_delete"] ~= nil then
256                 local selected = core.get_textlist_index("sp_worlds")
257                 if selected ~= nil and
258                         selected <= menudata.worldlist:size() then
259                         local world = menudata.worldlist:get_list()[selected]
260                         if world ~= nil and
261                                 world.name ~= nil and
262                                 world.name ~= "" then
263                                 local index = menudata.worldlist:get_raw_index(selected)
264                                 local delete_world_dlg = create_delete_world_dlg(world.name,index)
265                                 delete_world_dlg:set_parent(this)
266                                 this:hide()
267                                 delete_world_dlg:show()
268                                 mm_texture.update("singleplayer",current_game())
269                         end
270                 end
271
272                 return true
273         end
274
275         if fields["world_configure"] ~= nil then
276                 local selected = core.get_textlist_index("sp_worlds")
277                 if selected ~= nil then
278                         local configdialog =
279                                 create_configure_world_dlg(
280                                                 menudata.worldlist:get_raw_index(selected))
281
282                         if (configdialog ~= nil) then
283                                 configdialog:set_parent(this)
284                                 this:hide()
285                                 configdialog:show()
286                                 mm_texture.update("singleplayer",current_game())
287                         end
288                 end
289
290                 return true
291         end
292 end
293
294 local on_change
295 if enable_gamebar then
296         function on_change(type, old_tab, new_tab)
297                 local buttonbar = ui.find_by_name("game_button_bar")
298
299                 if ( buttonbar == nil ) then
300                         singleplayer_refresh_gamebar()
301                         buttonbar = ui.find_by_name("game_button_bar")
302                 end
303
304                 if (type == "ENTER") then
305                         local game = current_game()
306
307                         if game then
308                                 menudata.worldlist:set_filtercriteria(game.id)
309                                 core.set_topleft_text(game.name)
310                                 mm_texture.update("singleplayer",game)
311                         end
312                         buttonbar:show()
313                 else
314                         menudata.worldlist:set_filtercriteria(nil)
315                         buttonbar:hide()
316                         core.set_topleft_text("")
317                         mm_texture.update(new_tab,nil)
318                 end
319         end
320 end
321
322 --------------------------------------------------------------------------------
323 return {
324         name = "local",
325         caption = fgettext("Start Game"),
326         cbf_formspec = get_formspec,
327         cbf_button_handler = main_button_handler,
328         on_change = on_change
329 }