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.
|
2013-06-23 18:30:21 +02:00
|
|
|
|
2013-07-15 22:56:53 +02:00
|
|
|
mt_color_grey = "#AAAAAA"
|
2017-02-11 11:39:41 +01:00
|
|
|
mt_color_blue = "#6389FF"
|
2022-06-05 17:47:38 +02:00
|
|
|
mt_color_lightblue = "#99CCFF"
|
2017-02-11 11:39:41 +01:00
|
|
|
mt_color_green = "#72FF63"
|
|
|
|
mt_color_dark_green = "#25C191"
|
2020-12-23 15:42:18 +01:00
|
|
|
mt_color_orange = "#FF8800"
|
2022-05-07 17:45:17 +02:00
|
|
|
mt_color_red = "#FF3300"
|
2013-07-15 22:56:53 +02:00
|
|
|
|
2014-04-18 15:39:15 +02:00
|
|
|
local menupath = core.get_mainmenu_path()
|
|
|
|
local basepath = core.get_builtin_path()
|
|
|
|
defaulttexturedir = core.get_texturepath_share() .. DIR_DELIM .. "base" ..
|
|
|
|
DIR_DELIM .. "pack" .. DIR_DELIM
|
2013-06-23 18:30:21 +02:00
|
|
|
|
2017-06-30 20:14:39 +02:00
|
|
|
dofile(basepath .. "common" .. DIR_DELIM .. "filterlist.lua")
|
|
|
|
dofile(basepath .. "fstk" .. DIR_DELIM .. "buttonbar.lua")
|
|
|
|
dofile(basepath .. "fstk" .. DIR_DELIM .. "dialog.lua")
|
|
|
|
dofile(basepath .. "fstk" .. DIR_DELIM .. "tabview.lua")
|
|
|
|
dofile(basepath .. "fstk" .. DIR_DELIM .. "ui.lua")
|
2020-05-15 16:38:19 +02:00
|
|
|
dofile(menupath .. DIR_DELIM .. "async_event.lua")
|
2014-04-18 15:39:15 +02:00
|
|
|
dofile(menupath .. DIR_DELIM .. "common.lua")
|
2021-01-22 16:08:57 +01:00
|
|
|
dofile(menupath .. DIR_DELIM .. "serverlistmgr.lua")
|
2021-11-22 18:26:46 +01:00
|
|
|
dofile(menupath .. DIR_DELIM .. "game_theme.lua")
|
2023-10-28 18:33:44 +02:00
|
|
|
dofile(menupath .. DIR_DELIM .. "content" .. DIR_DELIM .. "init.lua")
|
2016-03-31 10:26:39 +02:00
|
|
|
|
2014-04-18 15:39:15 +02:00
|
|
|
dofile(menupath .. DIR_DELIM .. "dlg_config_world.lua")
|
2022-06-25 18:33:20 +02:00
|
|
|
dofile(menupath .. DIR_DELIM .. "settings" .. DIR_DELIM .. "init.lua")
|
2020-08-27 21:46:57 +02:00
|
|
|
dofile(menupath .. DIR_DELIM .. "dlg_create_world.lua")
|
|
|
|
dofile(menupath .. DIR_DELIM .. "dlg_delete_content.lua")
|
|
|
|
dofile(menupath .. DIR_DELIM .. "dlg_delete_world.lua")
|
2022-06-05 17:47:38 +02:00
|
|
|
dofile(menupath .. DIR_DELIM .. "dlg_register.lua")
|
2020-08-27 21:46:57 +02:00
|
|
|
dofile(menupath .. DIR_DELIM .. "dlg_rename_modpack.lua")
|
2022-08-02 21:34:17 +02:00
|
|
|
dofile(menupath .. DIR_DELIM .. "dlg_version_info.lua")
|
2023-10-08 17:47:00 +02:00
|
|
|
dofile(menupath .. DIR_DELIM .. "dlg_reinstall_mtg.lua")
|
2016-03-31 10:26:39 +02:00
|
|
|
|
2023-08-28 17:56:32 +02:00
|
|
|
local tabs = {
|
|
|
|
content = dofile(menupath .. DIR_DELIM .. "tab_content.lua"),
|
|
|
|
about = dofile(menupath .. DIR_DELIM .. "tab_about.lua"),
|
|
|
|
local_game = dofile(menupath .. DIR_DELIM .. "tab_local.lua"),
|
|
|
|
play_online = dofile(menupath .. DIR_DELIM .. "tab_online.lua")
|
2022-06-25 18:33:20 +02:00
|
|
|
}
|
|
|
|
|
2014-04-18 15:39:15 +02:00
|
|
|
--------------------------------------------------------------------------------
|
2014-11-20 20:59:19 +01:00
|
|
|
local function main_event_handler(tabview, event)
|
2014-04-18 15:39:15 +02:00
|
|
|
if event == "MenuQuit" then
|
|
|
|
core.close()
|
2013-12-11 23:07:38 +01:00
|
|
|
end
|
2014-04-18 15:39:15 +02:00
|
|
|
return true
|
2013-12-11 23:07:38 +01:00
|
|
|
end
|
|
|
|
|
2013-06-23 18:30:21 +02:00
|
|
|
--------------------------------------------------------------------------------
|
2014-04-18 15:39:15 +02:00
|
|
|
local function init_globals()
|
2014-11-20 20:59:19 +01:00
|
|
|
-- Init gamedata
|
2013-06-23 18:30:21 +02:00
|
|
|
gamedata.worldindex = 0
|
2013-11-26 18:15:31 +01:00
|
|
|
|
2020-08-27 21:46:57 +02:00
|
|
|
menudata.worldlist = filterlist.create(
|
|
|
|
core.get_worlds,
|
|
|
|
compare_worlds,
|
|
|
|
-- Unique id comparison function
|
|
|
|
function(element, uid)
|
|
|
|
return element.name == uid
|
|
|
|
end,
|
|
|
|
-- Filter function
|
|
|
|
function(element, gameid)
|
|
|
|
return element.gameid == gameid
|
2016-03-31 10:26:39 +02:00
|
|
|
end
|
2020-08-27 21:46:57 +02:00
|
|
|
)
|
2016-03-31 10:26:39 +02:00
|
|
|
|
2020-08-27 21:46:57 +02:00
|
|
|
menudata.worldlist:add_sort_mechanism("alphabetic", sort_worlds_alphabetic)
|
|
|
|
menudata.worldlist:set_sortmode("alphabetic")
|
2014-11-20 20:59:19 +01:00
|
|
|
|
2021-11-22 18:26:46 +01:00
|
|
|
mm_game_theme.init()
|
2023-10-18 20:18:50 +02:00
|
|
|
mm_game_theme.set_engine() -- This is just a fallback.
|
2020-08-27 21:46:57 +02:00
|
|
|
|
2014-11-20 20:59:19 +01:00
|
|
|
-- Create main tabview
|
2023-08-28 23:36:54 +02:00
|
|
|
local tv_main = tabview_create("maintab", {x = 15.5, y = 7.1}, {x = 0, y = 0})
|
2016-03-31 10:26:39 +02:00
|
|
|
|
2020-08-27 21:46:57 +02:00
|
|
|
tv_main:set_autosave_tab(true)
|
|
|
|
tv_main:add(tabs.local_game)
|
|
|
|
tv_main:add(tabs.play_online)
|
2018-04-17 15:54:50 +02:00
|
|
|
tv_main:add(tabs.content)
|
2021-03-30 21:49:15 +02:00
|
|
|
tv_main:add(tabs.about)
|
2015-03-29 16:33:07 +02:00
|
|
|
|
2016-03-31 10:26:39 +02:00
|
|
|
tv_main:set_global_event_handler(main_event_handler)
|
2015-03-29 16:33:07 +02:00
|
|
|
tv_main:set_fixed_size(false)
|
2014-06-14 11:22:09 +02:00
|
|
|
|
2020-08-27 21:46:57 +02:00
|
|
|
local last_tab = core.settings:get("maintab_LAST")
|
|
|
|
if last_tab and tv_main.current_tab ~= last_tab then
|
|
|
|
tv_main:set_tab(last_tab)
|
2014-11-20 20:59:19 +01:00
|
|
|
end
|
2020-12-28 13:56:58 +01:00
|
|
|
|
2023-08-28 17:56:32 +02:00
|
|
|
tv_main:set_end_button({
|
|
|
|
icon = defaulttexturedir .. "settings_btn.png",
|
|
|
|
label = fgettext("Settings"),
|
|
|
|
name = "open_settings",
|
|
|
|
on_click = function(tabview)
|
|
|
|
local dlg = create_settings_dlg()
|
|
|
|
dlg:set_parent(tabview)
|
|
|
|
tabview:hide()
|
|
|
|
dlg:show()
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
2014-04-18 15:39:15 +02:00
|
|
|
ui.set_default("maintab")
|
|
|
|
tv_main:show()
|
|
|
|
ui.update()
|
2023-10-08 17:47:00 +02:00
|
|
|
|
|
|
|
check_reinstall_mtg()
|
|
|
|
check_new_version()
|
2013-07-16 20:56:18 +02:00
|
|
|
end
|
|
|
|
|
2013-06-23 18:30:21 +02:00
|
|
|
init_globals()
|