2014-04-18 15:39:15 +02:00
|
|
|
--Minetest
|
|
|
|
--Copyright (C) 2014 sapier
|
|
|
|
--
|
|
|
|
--This program is free software; you can redistribute it and/or modify
|
|
|
|
--it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
--the Free Software Foundation; either version 2.1 of the License, or
|
|
|
|
--(at your option) any later version.
|
|
|
|
--
|
|
|
|
--This program is distributed in the hope that it will be useful,
|
|
|
|
--but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
--MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
--GNU Lesser General Public License for more details.
|
|
|
|
--
|
|
|
|
--You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
--with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
--51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
2017-05-21 10:07:05 +02:00
|
|
|
|
2018-12-07 00:32:15 +01:00
|
|
|
local enable_gamebar = PLATFORM ~= "Android"
|
|
|
|
local current_game, singleplayer_refresh_gamebar
|
2020-12-28 13:56:58 +01:00
|
|
|
|
2018-12-07 00:32:15 +01:00
|
|
|
if enable_gamebar then
|
|
|
|
function current_game()
|
|
|
|
local last_game_id = core.settings:get("menu_last_game")
|
2019-08-06 20:30:18 +02:00
|
|
|
local game = pkgmgr.find_by_gameid(last_game_id)
|
2018-12-07 00:32:15 +01:00
|
|
|
|
|
|
|
return game
|
|
|
|
end
|
2014-05-17 15:30:26 +02:00
|
|
|
|
2018-12-07 00:32:15 +01:00
|
|
|
function singleplayer_refresh_gamebar()
|
2015-06-29 15:41:05 +02:00
|
|
|
|
2018-12-07 00:32:15 +01:00
|
|
|
local old_bar = ui.find_by_name("game_button_bar")
|
2015-06-29 15:41:05 +02:00
|
|
|
|
2018-12-07 00:32:15 +01:00
|
|
|
if old_bar ~= nil then
|
|
|
|
old_bar:delete()
|
|
|
|
end
|
2014-04-18 15:39:15 +02:00
|
|
|
|
2018-12-07 00:32:15 +01:00
|
|
|
local function game_buttonbar_button_handler(fields)
|
2020-06-04 22:53:26 +02:00
|
|
|
if fields.game_open_cdb then
|
|
|
|
local maintab = ui.find_by_name("maintab")
|
|
|
|
local dlg = create_store_dlg("game")
|
|
|
|
dlg:set_parent(maintab)
|
|
|
|
maintab:hide()
|
|
|
|
dlg:show()
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2018-12-07 00:32:15 +01:00
|
|
|
for key,value in pairs(fields) do
|
|
|
|
for j=1,#pkgmgr.games,1 do
|
|
|
|
if ("game_btnbar_" .. pkgmgr.games[j].id == key) then
|
|
|
|
mm_texture.update("singleplayer", pkgmgr.games[j])
|
|
|
|
core.set_topleft_text(pkgmgr.games[j].name)
|
|
|
|
core.settings:set("menu_last_game",pkgmgr.games[j].id)
|
|
|
|
menudata.worldlist:set_filtercriteria(pkgmgr.games[j].id)
|
|
|
|
local index = filterlist.get_current_index(menudata.worldlist,
|
|
|
|
tonumber(core.settings:get("mainmenu_last_selected_world")))
|
|
|
|
if not index or index < 1 then
|
|
|
|
local selected = core.get_textlist_index("sp_worlds")
|
|
|
|
if selected ~= nil and selected < #menudata.worldlist:get_list() then
|
|
|
|
index = selected
|
|
|
|
else
|
|
|
|
index = #menudata.worldlist:get_list()
|
|
|
|
end
|
2015-07-04 17:53:00 +02:00
|
|
|
end
|
2018-12-07 00:32:15 +01:00
|
|
|
menu_worldmt_legacy(index)
|
|
|
|
return true
|
2015-07-02 16:26:09 +02:00
|
|
|
end
|
2014-04-18 15:39:15 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-07 00:32:15 +01:00
|
|
|
local btnbar = buttonbar_create("game_button_bar",
|
|
|
|
game_buttonbar_button_handler,
|
|
|
|
{x=-0.3,y=5.9}, "horizontal", {x=12.4,y=1.15})
|
2014-04-18 15:39:15 +02:00
|
|
|
|
2018-12-07 00:32:15 +01:00
|
|
|
for i=1,#pkgmgr.games,1 do
|
|
|
|
local btn_name = "game_btnbar_" .. pkgmgr.games[i].id
|
2017-05-21 10:07:05 +02:00
|
|
|
|
2018-12-07 00:32:15 +01:00
|
|
|
local image = nil
|
|
|
|
local text = nil
|
|
|
|
local tooltip = core.formspec_escape(pkgmgr.games[i].name)
|
2017-05-21 10:07:05 +02:00
|
|
|
|
2018-12-07 00:32:15 +01:00
|
|
|
if pkgmgr.games[i].menuicon_path ~= nil and
|
|
|
|
pkgmgr.games[i].menuicon_path ~= "" then
|
|
|
|
image = core.formspec_escape(pkgmgr.games[i].menuicon_path)
|
|
|
|
else
|
2017-05-21 10:07:05 +02:00
|
|
|
|
2018-12-07 00:32:15 +01:00
|
|
|
local part1 = pkgmgr.games[i].id:sub(1,5)
|
|
|
|
local part2 = pkgmgr.games[i].id:sub(6,10)
|
|
|
|
local part3 = pkgmgr.games[i].id:sub(11)
|
2017-05-21 10:07:05 +02:00
|
|
|
|
2018-12-07 00:32:15 +01:00
|
|
|
text = part1 .. "\n" .. part2
|
|
|
|
if part3 ~= nil and
|
|
|
|
part3 ~= "" then
|
|
|
|
text = text .. "\n" .. part3
|
|
|
|
end
|
2014-04-18 15:39:15 +02:00
|
|
|
end
|
2018-12-07 00:32:15 +01:00
|
|
|
btnbar:add_button(btn_name, text, image, tooltip)
|
2014-04-18 15:39:15 +02:00
|
|
|
end
|
2020-06-04 22:53:26 +02:00
|
|
|
|
|
|
|
local plus_image = core.formspec_escape(defaulttexturedir .. "plus.png")
|
|
|
|
btnbar:add_button("game_open_cdb", "", plus_image, fgettext("Install games from ContentDB"))
|
2018-12-07 00:32:15 +01:00
|
|
|
end
|
|
|
|
else
|
|
|
|
function current_game()
|
|
|
|
return nil
|
2014-04-18 15:39:15 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local function get_formspec(tabview, name, tabdata)
|
|
|
|
local retval = ""
|
2015-06-29 15:41:05 +02:00
|
|
|
|
2014-04-18 15:39:15 +02:00
|
|
|
local index = filterlist.get_current_index(menudata.worldlist,
|
2014-12-12 20:49:19 +01:00
|
|
|
tonumber(core.settings:get("mainmenu_last_selected_world"))
|
2014-04-18 15:39:15 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
retval = retval ..
|
2020-09-30 00:37:03 +02:00
|
|
|
"button[3.9,3.8;2.8,1;world_delete;".. fgettext("Delete") .. "]" ..
|
2021-01-20 23:32:18 +01:00
|
|
|
"button[6.55,3.8;2.8,1;world_configure;".. fgettext("Select Mods") .. "]" ..
|
2020-09-30 00:37:03 +02:00
|
|
|
"button[9.2,3.8;2.8,1;world_create;".. fgettext("New") .. "]" ..
|
|
|
|
"label[3.9,-0.05;".. fgettext("Select World:") .. "]"..
|
|
|
|
"checkbox[0,-0.20;cb_creative_mode;".. fgettext("Creative Mode") .. ";" ..
|
2014-12-12 20:49:19 +01:00
|
|
|
dump(core.settings:get_bool("creative_mode")) .. "]"..
|
2020-09-30 00:37:03 +02:00
|
|
|
"checkbox[0,0.25;cb_enable_damage;".. fgettext("Enable Damage") .. ";" ..
|
2014-12-12 20:49:19 +01:00
|
|
|
dump(core.settings:get_bool("enable_damage")) .. "]"..
|
2020-09-30 00:37:03 +02:00
|
|
|
"checkbox[0,0.7;cb_server;".. fgettext("Host Server") ..";" ..
|
2017-05-21 10:07:05 +02:00
|
|
|
dump(core.settings:get_bool("enable_server")) .. "]" ..
|
2020-09-30 00:37:03 +02:00
|
|
|
"textlist[3.9,0.4;7.9,3.45;sp_worlds;" ..
|
2014-04-18 15:39:15 +02:00
|
|
|
menu_render_worldlist() ..
|
|
|
|
";" .. index .. "]"
|
2017-05-21 10:07:05 +02:00
|
|
|
|
|
|
|
if core.settings:get_bool("enable_server") then
|
|
|
|
retval = retval ..
|
2020-09-30 00:37:03 +02:00
|
|
|
"button[7.9,4.75;4.1,1;play;".. fgettext("Host Game") .. "]" ..
|
|
|
|
"checkbox[0,1.15;cb_server_announce;" .. fgettext("Announce Server") .. ";" ..
|
2017-05-21 10:07:05 +02:00
|
|
|
dump(core.settings:get_bool("server_announce")) .. "]" ..
|
2020-09-30 00:37:03 +02:00
|
|
|
"field[0.3,2.85;3.8,0.5;te_playername;" .. fgettext("Name") .. ";" ..
|
2017-05-21 10:07:05 +02:00
|
|
|
core.formspec_escape(core.settings:get("name")) .. "]" ..
|
2020-09-30 00:37:03 +02:00
|
|
|
"pwdfield[0.3,4.05;3.8,0.5;te_passwd;" .. fgettext("Password") .. "]"
|
2017-05-21 10:07:05 +02:00
|
|
|
|
|
|
|
local bind_addr = core.settings:get("bind_address")
|
|
|
|
if bind_addr ~= nil and bind_addr ~= "" then
|
|
|
|
retval = retval ..
|
2020-09-30 00:37:03 +02:00
|
|
|
"field[0.3,5.25;2.5,0.5;te_serveraddr;" .. fgettext("Bind Address") .. ";" ..
|
2017-05-21 10:07:05 +02:00
|
|
|
core.formspec_escape(core.settings:get("bind_address")) .. "]" ..
|
2020-09-30 00:37:03 +02:00
|
|
|
"field[2.85,5.25;1.25,0.5;te_serverport;" .. fgettext("Port") .. ";" ..
|
2017-05-21 10:07:05 +02:00
|
|
|
core.formspec_escape(core.settings:get("port")) .. "]"
|
|
|
|
else
|
|
|
|
retval = retval ..
|
2020-09-30 00:37:03 +02:00
|
|
|
"field[0.3,5.25;3.8,0.5;te_serverport;" .. fgettext("Server Port") .. ";" ..
|
2017-05-21 10:07:05 +02:00
|
|
|
core.formspec_escape(core.settings:get("port")) .. "]"
|
|
|
|
end
|
|
|
|
else
|
|
|
|
retval = retval ..
|
2020-09-30 00:37:03 +02:00
|
|
|
"button[7.9,4.75;4.1,1;play;" .. fgettext("Play Game") .. "]"
|
2017-05-21 10:07:05 +02:00
|
|
|
end
|
|
|
|
|
2014-04-18 15:39:15 +02:00
|
|
|
return retval
|
|
|
|
end
|
|
|
|
|
|
|
|
local function main_button_handler(this, fields, name, tabdata)
|
|
|
|
|
2017-05-21 10:07:05 +02:00
|
|
|
assert(name == "local")
|
2014-04-18 15:39:15 +02:00
|
|
|
|
|
|
|
local world_doubleclick = false
|
|
|
|
|
|
|
|
if fields["sp_worlds"] ~= nil then
|
|
|
|
local event = core.explode_textlist_event(fields["sp_worlds"])
|
2015-03-15 14:52:10 +01:00
|
|
|
local selected = core.get_textlist_index("sp_worlds")
|
2015-06-29 15:41:05 +02:00
|
|
|
|
2015-06-30 19:58:06 +02:00
|
|
|
menu_worldmt_legacy(selected)
|
2015-03-15 14:52:10 +01:00
|
|
|
|
2014-04-18 15:39:15 +02:00
|
|
|
if event.type == "DCL" then
|
|
|
|
world_doubleclick = true
|
|
|
|
end
|
|
|
|
|
2015-03-15 14:52:10 +01:00
|
|
|
if event.type == "CHG" and selected ~= nil then
|
2014-12-12 20:49:19 +01:00
|
|
|
core.settings:set("mainmenu_last_selected_world",
|
2015-03-15 14:52:10 +01:00
|
|
|
menudata.worldlist:get_raw_index(selected))
|
2014-05-18 19:40:02 +02:00
|
|
|
return true
|
2014-04-18 15:39:15 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if menu_handle_key_up_down(fields,"sp_worlds","mainmenu_last_selected_world") then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
if fields["cb_creative_mode"] then
|
2014-12-12 20:49:19 +01:00
|
|
|
core.settings:set("creative_mode", fields["cb_creative_mode"])
|
2015-03-15 14:52:10 +01:00
|
|
|
local selected = core.get_textlist_index("sp_worlds")
|
2015-06-29 15:41:05 +02:00
|
|
|
menu_worldmt(selected, "creative_mode", fields["cb_creative_mode"])
|
2015-03-15 14:52:10 +01:00
|
|
|
|
2014-04-18 15:39:15 +02:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
if fields["cb_enable_damage"] then
|
2014-12-12 20:49:19 +01:00
|
|
|
core.settings:set("enable_damage", fields["cb_enable_damage"])
|
2015-03-15 14:52:10 +01:00
|
|
|
local selected = core.get_textlist_index("sp_worlds")
|
2015-06-29 15:41:05 +02:00
|
|
|
menu_worldmt(selected, "enable_damage", fields["cb_enable_damage"])
|
2015-03-15 14:52:10 +01:00
|
|
|
|
2014-04-18 15:39:15 +02:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2017-05-21 10:07:05 +02:00
|
|
|
if fields["cb_server"] then
|
|
|
|
core.settings:set("enable_server", fields["cb_server"])
|
|
|
|
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
if fields["cb_server_announce"] then
|
|
|
|
core.settings:set("server_announce", fields["cb_server_announce"])
|
|
|
|
local selected = core.get_textlist_index("srv_worlds")
|
|
|
|
menu_worldmt(selected, "server_announce", fields["cb_server_announce"])
|
|
|
|
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
if fields["play"] ~= nil or world_doubleclick or fields["key_enter"] then
|
2014-04-18 15:39:15 +02:00
|
|
|
local selected = core.get_textlist_index("sp_worlds")
|
2015-07-04 15:08:32 +02:00
|
|
|
gamedata.selected_world = menudata.worldlist:get_raw_index(selected)
|
2017-05-21 10:07:05 +02:00
|
|
|
|
2020-04-12 01:05:55 +02:00
|
|
|
if selected == nil or gamedata.selected_world == 0 then
|
|
|
|
gamedata.errormessage =
|
|
|
|
fgettext("No world created or selected!")
|
|
|
|
return true
|
|
|
|
end
|
2017-05-21 10:07:05 +02:00
|
|
|
|
2020-04-12 01:05:55 +02:00
|
|
|
-- Update last game
|
|
|
|
local world = menudata.worldlist:get_raw_element(gamedata.selected_world)
|
|
|
|
if world then
|
|
|
|
local game = pkgmgr.find_by_gameid(world.gameid)
|
|
|
|
core.settings:set("menu_last_game", game.id)
|
|
|
|
end
|
2017-05-21 10:07:05 +02:00
|
|
|
|
2020-04-12 01:05:55 +02:00
|
|
|
if core.settings:get_bool("enable_server") then
|
|
|
|
gamedata.playername = fields["te_playername"]
|
|
|
|
gamedata.password = fields["te_passwd"]
|
|
|
|
gamedata.port = fields["te_serverport"]
|
|
|
|
gamedata.address = ""
|
|
|
|
|
|
|
|
core.settings:set("port",gamedata.port)
|
|
|
|
if fields["te_serveraddr"] ~= nil then
|
|
|
|
core.settings:set("bind_address",fields["te_serveraddr"])
|
2017-05-21 10:07:05 +02:00
|
|
|
end
|
2015-07-04 15:08:32 +02:00
|
|
|
else
|
2020-04-12 01:05:55 +02:00
|
|
|
gamedata.singleplayer = true
|
2014-04-18 15:39:15 +02:00
|
|
|
end
|
2020-04-12 01:05:55 +02:00
|
|
|
|
|
|
|
core.start()
|
|
|
|
return true
|
2014-04-18 15:39:15 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
if fields["world_create"] ~= nil then
|
|
|
|
local create_world_dlg = create_create_world_dlg(true)
|
|
|
|
create_world_dlg:set_parent(this)
|
|
|
|
this:hide()
|
2014-05-17 15:30:26 +02:00
|
|
|
create_world_dlg:show()
|
2018-12-07 00:32:15 +01:00
|
|
|
mm_texture.update("singleplayer", current_game())
|
2014-04-18 15:39:15 +02:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
if fields["world_delete"] ~= nil then
|
|
|
|
local selected = core.get_textlist_index("sp_worlds")
|
|
|
|
if selected ~= nil and
|
|
|
|
selected <= menudata.worldlist:size() then
|
|
|
|
local world = menudata.worldlist:get_list()[selected]
|
|
|
|
if world ~= nil and
|
|
|
|
world.name ~= nil and
|
|
|
|
world.name ~= "" then
|
|
|
|
local index = menudata.worldlist:get_raw_index(selected)
|
|
|
|
local delete_world_dlg = create_delete_world_dlg(world.name,index)
|
|
|
|
delete_world_dlg:set_parent(this)
|
|
|
|
this:hide()
|
2014-05-17 15:30:26 +02:00
|
|
|
delete_world_dlg:show()
|
|
|
|
mm_texture.update("singleplayer",current_game())
|
2014-04-18 15:39:15 +02:00
|
|
|
end
|
|
|
|
end
|
2017-05-21 10:07:05 +02:00
|
|
|
|
2014-04-18 15:39:15 +02:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
if fields["world_configure"] ~= nil then
|
|
|
|
local selected = core.get_textlist_index("sp_worlds")
|
|
|
|
if selected ~= nil then
|
|
|
|
local configdialog =
|
|
|
|
create_configure_world_dlg(
|
|
|
|
menudata.worldlist:get_raw_index(selected))
|
2017-05-21 10:07:05 +02:00
|
|
|
|
2014-04-18 15:39:15 +02:00
|
|
|
if (configdialog ~= nil) then
|
|
|
|
configdialog:set_parent(this)
|
|
|
|
this:hide()
|
2014-05-17 15:30:26 +02:00
|
|
|
configdialog:show()
|
|
|
|
mm_texture.update("singleplayer",current_game())
|
2014-04-18 15:39:15 +02:00
|
|
|
end
|
|
|
|
end
|
2017-05-21 10:07:05 +02:00
|
|
|
|
2014-04-18 15:39:15 +02:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-07 00:32:15 +01:00
|
|
|
local on_change
|
|
|
|
if enable_gamebar then
|
|
|
|
function on_change(type, old_tab, new_tab)
|
|
|
|
if (type == "ENTER") then
|
|
|
|
local game = current_game()
|
2017-05-21 10:07:05 +02:00
|
|
|
|
2018-12-07 00:32:15 +01:00
|
|
|
if game then
|
|
|
|
menudata.worldlist:set_filtercriteria(game.id)
|
|
|
|
core.set_topleft_text(game.name)
|
|
|
|
mm_texture.update("singleplayer",game)
|
|
|
|
end
|
2019-02-18 22:04:43 +01:00
|
|
|
|
|
|
|
singleplayer_refresh_gamebar()
|
|
|
|
ui.find_by_name("game_button_bar"):show()
|
2018-12-07 00:32:15 +01:00
|
|
|
else
|
|
|
|
menudata.worldlist:set_filtercriteria(nil)
|
2019-02-18 22:04:43 +01:00
|
|
|
local gamebar = ui.find_by_name("game_button_bar")
|
|
|
|
if gamebar then
|
|
|
|
gamebar:hide()
|
|
|
|
end
|
2018-12-07 00:32:15 +01:00
|
|
|
core.set_topleft_text("")
|
|
|
|
mm_texture.update(new_tab,nil)
|
2014-04-18 15:39:15 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
2016-03-31 10:26:39 +02:00
|
|
|
return {
|
2017-05-21 10:07:05 +02:00
|
|
|
name = "local",
|
2018-01-25 20:59:24 +01:00
|
|
|
caption = fgettext("Start Game"),
|
2014-04-18 15:39:15 +02:00
|
|
|
cbf_formspec = get_formspec,
|
|
|
|
cbf_button_handler = main_button_handler,
|
|
|
|
on_change = on_change
|
2016-03-31 10:26:39 +02:00
|
|
|
}
|