]> git.lizzy.rs Git - minetest.git/blob - builtin/mainmenu/tab_singleplayer.lua
Right mouse button behaviour for craft/inventory If right mousebutton clicked once...
[minetest.git] / builtin / mainmenu / tab_singleplayer.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 local function current_game()
19         local last_game_id = core.setting_get("menu_last_game")
20         local game, index = gamemgr.find_by_gameid(last_game_id)
21         
22         return game
23 end
24
25 local function singleplayer_refresh_gamebar()
26         
27         local old_bar = ui.find_by_name("game_button_bar")
28         
29         if old_bar ~= nil then
30                 old_bar:delete()
31         end
32
33         local function game_buttonbar_button_handler(fields)
34                 for key,value in pairs(fields) do
35                         for j=1,#gamemgr.games,1 do
36                                 if ("game_btnbar_" .. gamemgr.games[j].id == key) then
37                                         mm_texture.update("singleplayer", gamemgr.games[j])
38                                         core.set_topleft_text(gamemgr.games[j].name)
39                                         core.setting_set("menu_last_game",gamemgr.games[j].id)
40                                         menudata.worldlist:set_filtercriteria(gamemgr.games[j].id)
41                                         return true
42                                 end
43                         end
44                 end
45         end
46
47         local btnbar = buttonbar_create("game_button_bar",
48                 game_buttonbar_button_handler,
49                 {x=-0.3,y=5.65}, "horizontal", {x=12.4,y=1.15})
50
51         for i=1,#gamemgr.games,1 do
52                 local btn_name = "game_btnbar_" .. gamemgr.games[i].id
53                 
54                 local image = nil
55                 local text = nil
56                 local tooltip = core.formspec_escape(gamemgr.games[i].name)
57                 
58                 if gamemgr.games[i].menuicon_path ~= nil and
59                         gamemgr.games[i].menuicon_path ~= "" then
60                         image = core.formspec_escape(gamemgr.games[i].menuicon_path)
61                 else
62                 
63                         local part1 = gamemgr.games[i].id:sub(1,5)
64                         local part2 = gamemgr.games[i].id:sub(6,10)
65                         local part3 = gamemgr.games[i].id:sub(11)
66                         
67                         text = part1 .. "\n" .. part2
68                         if part3 ~= nil and
69                                 part3 ~= "" then
70                                 text = text .. "\n" .. part3
71                         end
72                 end
73                 btnbar:add_button(btn_name, text, image, tooltip)
74         end
75 end
76
77 local function get_formspec(tabview, name, tabdata)
78         local retval = ""
79         
80         local index = filterlist.get_current_index(menudata.worldlist,
81                                 tonumber(core.setting_get("mainmenu_last_selected_world"))
82                                 )
83
84         retval = retval ..
85                         "button[4,4.15;2.6,0.5;world_delete;".. fgettext("Delete") .. "]" ..
86                         "button[6.5,4.15;2.8,0.5;world_create;".. fgettext("New") .. "]" ..
87                         "button[9.2,4.15;2.55,0.5;world_configure;".. fgettext("Configure") .. "]" ..
88                         "button[8.5,4.95;3.25,0.5;play;".. fgettext("Play") .. "]" ..
89                         "label[4,-0.25;".. fgettext("Select World:") .. "]"..
90                         "vertlabel[0,-0.25;".. fgettext("SINGLE PLAYER") .. "]" ..
91                         "checkbox[0.5,0.25;cb_creative_mode;".. fgettext("Creative Mode") .. ";" ..
92                         dump(core.setting_getbool("creative_mode")) .. "]"..
93                         "checkbox[0.5,0.7;cb_enable_damage;".. fgettext("Enable Damage") .. ";" ..
94                         dump(core.setting_getbool("enable_damage")) .. "]"..
95                         "textlist[4,0.25;7.5,3.7;sp_worlds;" ..
96                         menu_render_worldlist() ..
97                         ";" .. index .. "]"
98         return retval
99 end
100
101 local function main_button_handler(this, fields, name, tabdata)
102
103         assert(name == "singleplayer")
104
105         local world_doubleclick = false
106
107         if fields["sp_worlds"] ~= nil then
108                 local event = core.explode_textlist_event(fields["sp_worlds"])
109
110                 if event.type == "DCL" then
111                         world_doubleclick = true
112                 end
113
114                 if event.type == "CHG" then
115                         core.setting_set("mainmenu_last_selected_world",
116                                 menudata.worldlist:get_raw_index(core.get_textlist_index("sp_worlds")))
117                         return true
118                 end
119         end
120
121         if menu_handle_key_up_down(fields,"sp_worlds","mainmenu_last_selected_world") then
122                 return true
123         end
124
125         if fields["cb_creative_mode"] then
126                 core.setting_set("creative_mode", fields["cb_creative_mode"])
127                 return true
128         end
129
130         if fields["cb_enable_damage"] then
131                 core.setting_set("enable_damage", fields["cb_enable_damage"])
132                 return true
133         end
134
135         if fields["play"] ~= nil or
136                 world_doubleclick or
137                 fields["key_enter"] then
138                 local selected = core.get_textlist_index("sp_worlds")
139                 
140                 if selected ~= nil then
141                         gamedata.selected_world = menudata.worldlist:get_raw_index(selected)
142                         gamedata.singleplayer   = true
143                         
144                         core.start()
145                 end
146                 return true
147         end
148
149         if fields["world_create"] ~= nil then
150                 local create_world_dlg = create_create_world_dlg(true)
151                 create_world_dlg:set_parent(this)
152                 this:hide()
153                 create_world_dlg:show()
154                 mm_texture.update("singleplayer",current_game())
155                 return true
156         end
157
158         if fields["world_delete"] ~= nil then
159                 local selected = core.get_textlist_index("sp_worlds")
160                 if selected ~= nil and
161                         selected <= menudata.worldlist:size() then
162                         local world = menudata.worldlist:get_list()[selected]
163                         if world ~= nil and
164                                 world.name ~= nil and
165                                 world.name ~= "" then
166                                 local index = menudata.worldlist:get_raw_index(selected)
167                                 local delete_world_dlg = create_delete_world_dlg(world.name,index)
168                                 delete_world_dlg:set_parent(this)
169                                 this:hide()
170                                 delete_world_dlg:show()
171                                 mm_texture.update("singleplayer",current_game())
172                         end
173                 end
174                 
175                 return true
176         end
177
178         if fields["world_configure"] ~= nil then
179                 local selected = core.get_textlist_index("sp_worlds")
180                 if selected ~= nil then
181                         local configdialog =
182                                 create_configure_world_dlg(
183                                                 menudata.worldlist:get_raw_index(selected))
184                         
185                         if (configdialog ~= nil) then
186                                 configdialog:set_parent(this)
187                                 this:hide()
188                                 configdialog:show()
189                                 mm_texture.update("singleplayer",current_game())
190                         end
191                 end
192                 
193                 return true
194         end
195 end
196
197 local function on_change(type, old_tab, new_tab)
198         local buttonbar = ui.find_by_name("game_button_bar")
199         
200         if ( buttonbar == nil ) then
201                 singleplayer_refresh_gamebar()
202                 buttonbar = ui.find_by_name("game_button_bar")
203         end
204         
205         if (type == "ENTER") then
206                 local game = current_game()
207                 
208                 if game then
209                         menudata.worldlist:set_filtercriteria(game.id)
210                         core.set_topleft_text(game.name)
211                         mm_texture.update("singleplayer",game)
212                 end
213                 buttonbar:show()
214         else
215                 menudata.worldlist:set_filtercriteria(nil)
216                 buttonbar:hide()
217                 core.set_topleft_text("")
218                 mm_texture.update(new_tab,nil)
219         end
220 end
221
222 --------------------------------------------------------------------------------
223 tab_singleplayer = {
224         name = "singleplayer",
225         caption = fgettext("Singleplayer"),
226         cbf_formspec = get_formspec,
227         cbf_button_handler = main_button_handler,
228         on_change = on_change
229         }