2018-04-17 15:54:50 +02:00
|
|
|
--Minetest
|
|
|
|
--Copyright (C) 2014 sapier
|
|
|
|
--Copyright (C) 2018 rubenwardy <rw@rubenwardy.com>
|
|
|
|
--
|
|
|
|
--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.
|
|
|
|
|
2023-10-28 18:33:44 +02:00
|
|
|
|
|
|
|
local function get_content_icons(packages_with_updates)
|
|
|
|
local ret = {}
|
|
|
|
for _, content in ipairs(packages_with_updates) do
|
|
|
|
ret[content.virtual_path or content.path] = { type = "update" }
|
|
|
|
end
|
|
|
|
return ret
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2023-08-13 14:28:16 +02:00
|
|
|
local packages_raw, packages
|
2018-04-17 15:54:50 +02:00
|
|
|
|
2023-09-23 18:20:23 +02:00
|
|
|
local function update_packages()
|
2023-08-13 14:28:16 +02:00
|
|
|
if not pkgmgr.global_mods then
|
2018-04-17 15:54:50 +02:00
|
|
|
pkgmgr.refresh_globals()
|
|
|
|
end
|
2023-08-13 14:28:16 +02:00
|
|
|
if not pkgmgr.games then
|
2018-04-17 15:54:50 +02:00
|
|
|
pkgmgr.update_gamelist()
|
|
|
|
end
|
|
|
|
|
2023-09-17 19:45:28 +02:00
|
|
|
packages_raw = {}
|
|
|
|
table.insert_all(packages_raw, pkgmgr.games)
|
|
|
|
table.insert_all(packages_raw, pkgmgr.get_texture_packs())
|
|
|
|
table.insert_all(packages_raw, pkgmgr.global_mods:get_list())
|
2018-04-17 15:54:50 +02:00
|
|
|
|
2023-09-17 19:45:28 +02:00
|
|
|
local function get_data()
|
|
|
|
return packages_raw
|
|
|
|
end
|
2018-04-17 15:54:50 +02:00
|
|
|
|
2023-09-17 19:45:28 +02:00
|
|
|
local function is_equal(element, uid) --uid match
|
|
|
|
return (element.type == "game" and element.id == uid) or
|
|
|
|
element.name == uid
|
2018-04-17 15:54:50 +02:00
|
|
|
end
|
|
|
|
|
2023-09-17 19:45:28 +02:00
|
|
|
packages = filterlist.create(get_data, pkgmgr.compare_package,
|
|
|
|
is_equal, nil, {})
|
|
|
|
end
|
|
|
|
|
2023-09-23 18:20:23 +02:00
|
|
|
local function on_change(type)
|
|
|
|
if type == "ENTER" then
|
2023-10-18 20:18:50 +02:00
|
|
|
mm_game_theme.set_engine()
|
2023-09-23 18:20:23 +02:00
|
|
|
update_packages()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-09-17 19:45:28 +02:00
|
|
|
local function get_formspec(tabview, name, tabdata)
|
2023-09-23 18:20:23 +02:00
|
|
|
if not packages then
|
|
|
|
update_packages()
|
|
|
|
end
|
|
|
|
|
2023-08-13 14:28:16 +02:00
|
|
|
if not tabdata.selected_pkg then
|
2018-04-17 15:54:50 +02:00
|
|
|
tabdata.selected_pkg = 1
|
|
|
|
end
|
|
|
|
|
2022-04-24 21:09:11 +02:00
|
|
|
local use_technical_names = core.settings:get_bool("show_technical_names")
|
|
|
|
|
2023-10-28 18:33:44 +02:00
|
|
|
local packages_with_updates = update_detector.get_all()
|
|
|
|
local update_icons = get_content_icons(packages_with_updates)
|
|
|
|
local update_count = #packages_with_updates
|
|
|
|
local contentdb_label
|
|
|
|
if update_count == 0 then
|
|
|
|
contentdb_label = fgettext("Browse online content")
|
|
|
|
else
|
|
|
|
contentdb_label = fgettext("Browse online content [$1]", update_count)
|
|
|
|
end
|
|
|
|
|
2023-08-13 14:28:16 +02:00
|
|
|
local retval = {
|
|
|
|
"label[0.4,0.4;", fgettext("Installed Packages:"), "]",
|
2023-10-28 18:33:44 +02:00
|
|
|
"tablecolumns[color;tree;image,align=inline,width=1.5",
|
|
|
|
",tooltip=", fgettext("Update available?"),
|
|
|
|
",0=", core.formspec_escape(defaulttexturedir .. "blank.png"),
|
|
|
|
",4=", core.formspec_escape(defaulttexturedir .. "cdb_update_cropped.png"),
|
|
|
|
";text]",
|
2023-08-13 14:28:16 +02:00
|
|
|
"table[0.4,0.8;6.3,4.8;pkglist;",
|
2023-10-28 18:33:44 +02:00
|
|
|
pkgmgr.render_packagelist(packages, use_technical_names, update_icons),
|
2023-08-13 14:28:16 +02:00
|
|
|
";", tabdata.selected_pkg, "]",
|
2018-04-17 15:54:50 +02:00
|
|
|
|
2023-10-28 18:33:44 +02:00
|
|
|
"button[0.4,5.8;6.3,0.9;btn_contentdb;", contentdb_label, "]"
|
2023-08-13 14:28:16 +02:00
|
|
|
}
|
2018-04-17 15:54:50 +02:00
|
|
|
|
|
|
|
local selected_pkg
|
|
|
|
if filterlist.size(packages) >= tabdata.selected_pkg then
|
|
|
|
selected_pkg = packages:get_list()[tabdata.selected_pkg]
|
|
|
|
end
|
|
|
|
|
2023-08-13 14:28:16 +02:00
|
|
|
if selected_pkg then
|
|
|
|
-- Check for screenshot being available
|
2018-04-17 15:54:50 +02:00
|
|
|
local screenshotfilename = selected_pkg.path .. DIR_DELIM .. "screenshot.png"
|
|
|
|
local screenshotfile, error = io.open(screenshotfilename, "r")
|
|
|
|
|
|
|
|
local modscreenshot
|
2023-08-13 14:28:16 +02:00
|
|
|
if not error then
|
2018-04-17 15:54:50 +02:00
|
|
|
screenshotfile:close()
|
|
|
|
modscreenshot = screenshotfilename
|
2023-08-13 14:28:16 +02:00
|
|
|
else
|
|
|
|
modscreenshot = defaulttexturedir .. "no_screenshot.png"
|
2018-04-17 15:54:50 +02:00
|
|
|
end
|
|
|
|
|
2018-09-07 03:46:58 +02:00
|
|
|
local desc = fgettext("No package description available")
|
2024-02-24 20:13:07 +01:00
|
|
|
if selected_pkg.description and selected_pkg.description:trim() ~= "" then
|
|
|
|
desc = core.formspec_escape(selected_pkg.description)
|
2018-09-07 03:46:58 +02:00
|
|
|
end
|
|
|
|
|
2024-02-24 20:13:07 +01:00
|
|
|
local info = core.get_content_info(selected_pkg.path)
|
|
|
|
|
2022-04-24 21:09:11 +02:00
|
|
|
local title_and_name
|
|
|
|
if selected_pkg.type == "game" then
|
|
|
|
title_and_name = selected_pkg.name
|
|
|
|
else
|
|
|
|
title_and_name = (selected_pkg.title or selected_pkg.name) .. "\n" ..
|
|
|
|
core.colorize("#BFBFBF", selected_pkg.name)
|
|
|
|
end
|
|
|
|
|
2023-10-28 18:33:44 +02:00
|
|
|
local desc_height = 3.2
|
2023-08-13 14:28:16 +02:00
|
|
|
|
|
|
|
if selected_pkg.is_modpack then
|
2023-10-28 18:33:44 +02:00
|
|
|
desc_height = 2.1
|
|
|
|
|
2023-08-13 14:28:16 +02:00
|
|
|
table.insert_all(retval, {
|
2023-10-28 18:33:44 +02:00
|
|
|
"button[7.1,4.7;8,0.9;btn_mod_mgr_rename_modpack;",
|
2023-08-13 14:28:16 +02:00
|
|
|
fgettext("Rename"), "]"
|
|
|
|
})
|
|
|
|
elseif selected_pkg.type == "mod" then
|
|
|
|
-- Show dependencies for mods
|
|
|
|
desc = desc .. "\n\n"
|
|
|
|
local toadd_hard = table.concat(info.depends or {}, "\n")
|
|
|
|
local toadd_soft = table.concat(info.optional_depends or {}, "\n")
|
|
|
|
if toadd_hard == "" and toadd_soft == "" then
|
|
|
|
desc = desc .. fgettext("No dependencies.")
|
2018-04-17 15:54:50 +02:00
|
|
|
else
|
2023-08-13 14:28:16 +02:00
|
|
|
if toadd_hard ~= "" then
|
|
|
|
desc = desc ..fgettext("Dependencies:") ..
|
|
|
|
"\n" .. toadd_hard
|
|
|
|
end
|
|
|
|
if toadd_soft ~= "" then
|
2018-04-17 15:54:50 +02:00
|
|
|
if toadd_hard ~= "" then
|
2023-08-13 14:28:16 +02:00
|
|
|
desc = desc .. "\n\n"
|
2018-04-17 15:54:50 +02:00
|
|
|
end
|
2023-08-13 14:28:16 +02:00
|
|
|
desc = desc .. fgettext("Optional dependencies:") ..
|
|
|
|
"\n" .. toadd_soft
|
2018-04-17 15:54:50 +02:00
|
|
|
end
|
|
|
|
end
|
2023-08-13 14:28:16 +02:00
|
|
|
elseif selected_pkg.type == "txp" then
|
2023-10-28 18:33:44 +02:00
|
|
|
desc_height = 2.1
|
|
|
|
|
2023-08-13 14:28:16 +02:00
|
|
|
if selected_pkg.enabled then
|
|
|
|
table.insert_all(retval, {
|
2023-10-28 18:33:44 +02:00
|
|
|
"button[7.1,4.7;8,0.9;btn_mod_mgr_disable_txp;",
|
2023-08-13 14:28:16 +02:00
|
|
|
fgettext("Disable Texture Pack"), "]"
|
|
|
|
})
|
|
|
|
else
|
|
|
|
table.insert_all(retval, {
|
2023-10-28 18:33:44 +02:00
|
|
|
"button[7.1,4.7;8,0.9;btn_mod_mgr_use_txp;",
|
2023-08-13 14:28:16 +02:00
|
|
|
fgettext("Use Texture Pack"), "]"
|
|
|
|
})
|
2018-04-17 15:54:50 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-10-28 18:33:44 +02:00
|
|
|
table.insert_all(retval, {
|
|
|
|
"image[7.1,0.2;3,2;", core.formspec_escape(modscreenshot), "]",
|
|
|
|
"label[10.5,1;", core.formspec_escape(title_and_name), "]",
|
|
|
|
"box[7.1,2.4;8,", tostring(desc_height), ";#000]",
|
|
|
|
"textarea[7.1,2.4;8,", tostring(desc_height), ";;;", desc, "]",
|
|
|
|
})
|
2019-03-05 08:12:58 +01:00
|
|
|
|
|
|
|
if core.may_modify_path(selected_pkg.path) then
|
2023-08-13 14:28:16 +02:00
|
|
|
table.insert_all(retval, {
|
|
|
|
"button[7.1,5.8;4,0.9;btn_mod_mgr_delete_mod;",
|
2023-10-28 18:33:44 +02:00
|
|
|
fgettext("Uninstall"), "]"
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
if update_icons[selected_pkg.virtual_path or selected_pkg.path] then
|
|
|
|
table.insert_all(retval, {
|
|
|
|
"button[11.1,5.8;4,0.9;btn_mod_mgr_update;",
|
|
|
|
fgettext("Update"), "]"
|
2023-08-13 14:28:16 +02:00
|
|
|
})
|
2019-03-05 08:12:58 +01:00
|
|
|
end
|
2018-04-17 15:54:50 +02:00
|
|
|
end
|
2023-08-13 14:28:16 +02:00
|
|
|
|
2023-08-28 23:36:54 +02:00
|
|
|
return table.concat(retval)
|
2018-04-17 15:54:50 +02:00
|
|
|
end
|
|
|
|
|
2021-02-24 11:50:19 +01:00
|
|
|
local function handle_doubleclick(pkg)
|
|
|
|
if pkg.type == "txp" then
|
|
|
|
if core.settings:get("texture_path") == pkg.path then
|
|
|
|
core.settings:set("texture_path", "")
|
|
|
|
else
|
|
|
|
core.settings:set("texture_path", pkg.path)
|
|
|
|
end
|
|
|
|
packages = nil
|
2022-02-12 20:24:20 +01:00
|
|
|
|
|
|
|
mm_game_theme.init()
|
2023-10-18 20:18:50 +02:00
|
|
|
mm_game_theme.set_engine()
|
2021-02-24 11:50:19 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-04-17 15:54:50 +02:00
|
|
|
local function handle_buttons(tabview, fields, tabname, tabdata)
|
2023-08-13 14:28:16 +02:00
|
|
|
|
|
|
|
if fields.pkglist then
|
|
|
|
local event = core.explode_table_event(fields.pkglist)
|
2018-04-17 15:54:50 +02:00
|
|
|
tabdata.selected_pkg = event.row
|
2021-02-24 11:50:19 +01:00
|
|
|
if event.type == "DCL" then
|
|
|
|
handle_doubleclick(packages:get_list()[tabdata.selected_pkg])
|
|
|
|
end
|
2018-04-17 15:54:50 +02:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2023-08-13 14:28:16 +02:00
|
|
|
if fields.btn_contentdb then
|
2018-04-17 15:54:50 +02:00
|
|
|
local dlg = create_store_dlg()
|
|
|
|
dlg:set_parent(tabview)
|
|
|
|
tabview:hide()
|
|
|
|
dlg:show()
|
|
|
|
packages = nil
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2023-08-13 14:28:16 +02:00
|
|
|
if fields.btn_mod_mgr_rename_modpack then
|
2018-06-11 00:40:00 +02:00
|
|
|
local mod = packages:get_list()[tabdata.selected_pkg]
|
|
|
|
local dlg_renamemp = create_rename_modpack_dlg(mod)
|
2018-04-17 15:54:50 +02:00
|
|
|
dlg_renamemp:set_parent(tabview)
|
|
|
|
tabview:hide()
|
|
|
|
dlg_renamemp:show()
|
2018-06-11 00:40:00 +02:00
|
|
|
packages = nil
|
2018-04-17 15:54:50 +02:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2023-08-13 14:28:16 +02:00
|
|
|
if fields.btn_mod_mgr_delete_mod then
|
2018-04-17 15:54:50 +02:00
|
|
|
local mod = packages:get_list()[tabdata.selected_pkg]
|
|
|
|
local dlg_delmod = create_delete_content_dlg(mod)
|
|
|
|
dlg_delmod:set_parent(tabview)
|
|
|
|
tabview:hide()
|
|
|
|
dlg_delmod:show()
|
|
|
|
packages = nil
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2023-10-28 18:33:44 +02:00
|
|
|
if fields.btn_mod_mgr_update then
|
|
|
|
local pkg = packages:get_list()[tabdata.selected_pkg]
|
2023-11-05 19:01:19 +01:00
|
|
|
local dlg = create_store_dlg(nil, pkgmgr.get_contentdb_id(pkg))
|
2023-10-28 18:33:44 +02:00
|
|
|
dlg:set_parent(tabview)
|
|
|
|
tabview:hide()
|
|
|
|
dlg:show()
|
|
|
|
packages = nil
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2022-02-12 20:24:20 +01:00
|
|
|
if fields.btn_mod_mgr_use_txp or fields.btn_mod_mgr_disable_txp then
|
|
|
|
local txp_path = ""
|
|
|
|
if fields.btn_mod_mgr_use_txp then
|
|
|
|
txp_path = packages:get_list()[tabdata.selected_pkg].path
|
|
|
|
end
|
2018-04-17 15:54:50 +02:00
|
|
|
|
2022-02-12 20:24:20 +01:00
|
|
|
core.settings:set("texture_path", txp_path)
|
2018-04-17 15:54:50 +02:00
|
|
|
packages = nil
|
2022-02-12 20:24:20 +01:00
|
|
|
|
|
|
|
mm_game_theme.init()
|
2023-10-18 20:18:50 +02:00
|
|
|
mm_game_theme.set_engine()
|
2018-04-17 15:54:50 +02:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
return {
|
|
|
|
name = "content",
|
2023-10-28 18:33:44 +02:00
|
|
|
caption = function()
|
|
|
|
local update_count = update_detector.get_count()
|
|
|
|
if update_count == 0 then
|
|
|
|
return fgettext("Content")
|
|
|
|
else
|
|
|
|
return fgettext("Content [$1]", update_count)
|
|
|
|
end
|
|
|
|
end,
|
2018-04-17 15:54:50 +02:00
|
|
|
cbf_formspec = get_formspec,
|
|
|
|
cbf_button_handler = handle_buttons,
|
2023-09-17 19:45:28 +02:00
|
|
|
on_change = on_change
|
2018-04-17 15:54:50 +02:00
|
|
|
}
|