2025-04-05 01:19:52 +02:00
|
|
|
-- Luanti
|
|
|
|
-- Copyright (C) 2014 sapier
|
|
|
|
-- SPDX-License-Identifier: LGPL-2.1-or-later
|
2013-06-23 18:30:21 +02:00
|
|
|
|
2024-09-06 12:11:03 +02:00
|
|
|
MAIN_TAB_W = 15.5
|
|
|
|
MAIN_TAB_H = 7.1
|
|
|
|
TABHEADER_H = 0.85
|
|
|
|
GAMEBAR_H = 1.25
|
|
|
|
GAMEBAR_OFFSET_DESKTOP = 0.375
|
|
|
|
GAMEBAR_OFFSET_TOUCH = 0.15
|
|
|
|
|
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
|
|
|
|
2025-04-20 20:20:49 +02:00
|
|
|
dofile(basepath .. "common" .. DIR_DELIM .. "menu.lua")
|
2017-06-30 19:14:39 +01: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 15:08:57 +00:00
|
|
|
dofile(menupath .. DIR_DELIM .. "serverlistmgr.lua")
|
2021-11-22 12:26:46 -05:00
|
|
|
dofile(menupath .. DIR_DELIM .. "game_theme.lua")
|
2023-10-28 17:33:44 +01:00
|
|
|
dofile(menupath .. DIR_DELIM .. "content" .. DIR_DELIM .. "init.lua")
|
2016-03-31 17:26:39 +09:00
|
|
|
|
2014-04-18 15:39:15 +02:00
|
|
|
dofile(menupath .. DIR_DELIM .. "dlg_config_world.lua")
|
2025-01-19 13:07:04 -05:00
|
|
|
dofile(basepath .. "common" .. 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 16:47:38 +01: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")
|
2025-05-14 22:15:15 +02:00
|
|
|
dofile(menupath .. DIR_DELIM .. "dlg_rebind_keys.lua")
|
2024-11-21 20:34:40 +01:00
|
|
|
dofile(menupath .. DIR_DELIM .. "dlg_clients_list.lua")
|
2025-01-12 16:20:05 +01:00
|
|
|
dofile(menupath .. DIR_DELIM .. "dlg_server_list_mods.lua")
|
2016-03-31 17:26:39 +09:00
|
|
|
|
2023-08-28 16:56:32 +01: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 17:33:20 +01:00
|
|
|
}
|
|
|
|
|
2014-04-18 15:39:15 +02:00
|
|
|
--------------------------------------------------------------------------------
|
2014-11-20 14:59:19 -05: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 14:59:19 -05: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 17:26:39 +09:00
|
|
|
end
|
2020-08-27 21:46:57 +02:00
|
|
|
)
|
2016-03-31 17:26:39 +09: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 14:59:19 -05:00
|
|
|
|
2021-11-22 12:26:46 -05: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 14:59:19 -05:00
|
|
|
-- Create main tabview
|
2024-09-06 12:11:03 +02:00
|
|
|
local tv_main = tabview_create("maintab", {x = MAIN_TAB_W, y = MAIN_TAB_H}, {x = 0, y = 0})
|
2016-03-31 17:26:39 +09: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 14:54:50 +01:00
|
|
|
tv_main:add(tabs.content)
|
2021-03-30 21:49:15 +02:00
|
|
|
tv_main:add(tabs.about)
|
2015-03-30 00:33:07 +10:00
|
|
|
|
2016-03-31 17:26:39 +09:00
|
|
|
tv_main:set_global_event_handler(main_event_handler)
|
2015-03-30 00:33:07 +10: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 14:59:19 -05:00
|
|
|
end
|
2020-12-28 12:56:58 +00:00
|
|
|
|
2023-08-28 16:56:32 +01: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()
|
2025-05-14 22:15:15 +02:00
|
|
|
migrate_keybindings()
|
2023-10-08 17:47:00 +02:00
|
|
|
check_new_version()
|
2013-07-16 20:56:18 +02:00
|
|
|
end
|
|
|
|
|
2024-11-03 16:53:01 +01:00
|
|
|
assert(os.execute == nil)
|
2013-06-23 18:30:21 +02:00
|
|
|
init_globals()
|