Fix singleplayer dialogs missing game customization
parent
c3984569c0
commit
87b4bce594
|
@ -118,7 +118,6 @@ local function main_button_handler(this, fields, name, tabdata)
|
||||||
end
|
end
|
||||||
|
|
||||||
if fields["world_create"] ~= nil then
|
if fields["world_create"] ~= nil then
|
||||||
print("create world dialog")
|
|
||||||
local create_world_dlg = create_create_world_dlg(true)
|
local create_world_dlg = create_create_world_dlg(true)
|
||||||
create_world_dlg:set_parent(this)
|
create_world_dlg:set_parent(this)
|
||||||
create_world_dlg:show()
|
create_world_dlg:show()
|
||||||
|
|
|
@ -15,6 +15,13 @@
|
||||||
--with this program; if not, write to the Free Software Foundation, Inc.,
|
--with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
--51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
--51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
|
||||||
|
local function current_game()
|
||||||
|
local last_game_id = core.setting_get("menu_last_game")
|
||||||
|
local game, index = gamemgr.find_by_gameid(last_game_id)
|
||||||
|
|
||||||
|
return game
|
||||||
|
end
|
||||||
|
|
||||||
local function singleplayer_refresh_gamebar()
|
local function singleplayer_refresh_gamebar()
|
||||||
|
|
||||||
local old_bar = ui.find_by_name("game_button_bar")
|
local old_bar = ui.find_by_name("game_button_bar")
|
||||||
|
@ -137,11 +144,11 @@ local function main_button_handler(this, fields, name, tabdata)
|
||||||
end
|
end
|
||||||
|
|
||||||
if fields["world_create"] ~= nil then
|
if fields["world_create"] ~= nil then
|
||||||
print("create world dialog")
|
|
||||||
local create_world_dlg = create_create_world_dlg(true)
|
local create_world_dlg = create_create_world_dlg(true)
|
||||||
create_world_dlg:set_parent(this)
|
create_world_dlg:set_parent(this)
|
||||||
create_world_dlg:show()
|
|
||||||
this:hide()
|
this:hide()
|
||||||
|
create_world_dlg:show()
|
||||||
|
mm_texture.update("singleplayer",current_game())
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -156,8 +163,9 @@ local function main_button_handler(this, fields, name, tabdata)
|
||||||
local index = menudata.worldlist:get_raw_index(selected)
|
local index = menudata.worldlist:get_raw_index(selected)
|
||||||
local delete_world_dlg = create_delete_world_dlg(world.name,index)
|
local delete_world_dlg = create_delete_world_dlg(world.name,index)
|
||||||
delete_world_dlg:set_parent(this)
|
delete_world_dlg:set_parent(this)
|
||||||
delete_world_dlg:show()
|
|
||||||
this:hide()
|
this:hide()
|
||||||
|
delete_world_dlg:show()
|
||||||
|
mm_texture.update("singleplayer",current_game())
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -173,8 +181,9 @@ local function main_button_handler(this, fields, name, tabdata)
|
||||||
|
|
||||||
if (configdialog ~= nil) then
|
if (configdialog ~= nil) then
|
||||||
configdialog:set_parent(this)
|
configdialog:set_parent(this)
|
||||||
configdialog:show()
|
|
||||||
this:hide()
|
this:hide()
|
||||||
|
configdialog:show()
|
||||||
|
mm_texture.update("singleplayer",current_game())
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -191,13 +200,12 @@ local function on_change(type, old_tab, new_tab)
|
||||||
end
|
end
|
||||||
|
|
||||||
if (type == "ENTER") then
|
if (type == "ENTER") then
|
||||||
local last_game_id = core.setting_get("menu_last_game")
|
local game = current_game()
|
||||||
local game, index = gamemgr.find_by_gameid(last_game_id)
|
|
||||||
|
|
||||||
if game then
|
if game then
|
||||||
menudata.worldlist:set_filtercriteria(game.id)
|
menudata.worldlist:set_filtercriteria(game.id)
|
||||||
core.set_topleft_text(game.name)
|
core.set_topleft_text(game.name)
|
||||||
mm_texture.update(new_tab,game)
|
mm_texture.update("singleplayer",game)
|
||||||
end
|
end
|
||||||
buttonbar:show()
|
buttonbar:show()
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue